*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.top-container{
    background-image: url(../assets/images/bg/2nd-page-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    /* background-attachment: fixed; */
    background-size: 100% 100%;
    /* background-size: cover; */
    width: 100%;
    height: 120%;
}



.header__logo a{
        text-decoration: none;
        color: white;
        font-family: "Freckle Face", serif;
        font-weight: 400;
        font-style: normal;
        font-size: 25px;
        
    }
.header__logo{
    display: flex;
    padding-right: 10px;
    align-items: center;
    padding-top: 15px;
    padding-left:15px;
    gap: 5px;
    /* max-width: 1500px; */
    /* margin: 0 auto; */
}

.main-nav .menu .menu-item a{
    
}

#site-header-inner{
    /* display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4em 2em; */
    display: flex;
    justify-content: space-between;
}
/* .menu{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
} */


.main-nav{
    /* display: flex;
    justify-content: center;
    align-items: center; */
    display: grid;
    max-width: 1080px;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(101px, 1fr));

    grid-template-rows: auto;

    align-items: center;

    align-content: center;
    align-self: auto;   
    /* background-color: #2F2242; */
    padding-left: 30px;
    border-radius: 0px 0px 20px 20px;

    background: linear-gradient(45deg,#29092f,#040404,#390648,#2e2766,#806969);
    background-size:300% 300%;
    animation: color 5s ease-in-out infinite;
    z-index: 99;
}

.header__logo__secondary{
    display: flex;
    justify-content: center;
    align-items:center ;
    padding-right: 12px;
    /* gap: 20px; */
}

/* rolling text  */

.rolling-text {
    display: inline-block;
    text-decoration: none;
    color: white;
    font-weight:600;
    font-family: 'Arial Narrow Bold', sans-serif;
    overflow: hidden;
    transition: 0.7s;
}
#home2{
    color:  #2F7AF0;
}

.rolling-text:hover{
    background-color: #2F2242;
    padding: 5px 1px;
    border-radius: 15px;
    font-size: 18px;
    color: #2F7AF0;
    box-shadow: 0 0 0 8px #2F2242,
                0 0 0 8px #ef5305;
}



.home{
    /* min-height: 100vh;
    max-width: 2000px; */
    max-width: 1280px; /* Maximum width set to 1200px */
    margin: 0 auto;    /* Center the container */
    width: 100%;       /* Make it responsive */
    /* display: grid;
    grid-template-columns: repeat(auto-fit,minmax(17rem,1fr)); */
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.home-img img{
    padding-top: 50px;

display: block;
  width: 100%;
  height: auto;

    width: 371px;
    height: 711px;
}
.two-pic{
    position: relative;
    display: inline-block;
}
.overlay-text{
  position: absolute;
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%); 
  /* background-color: #ca1313;  */
  color: #fff; 
  padding: 10px 20px; 
  font-size: 20px; 
  text-align: center;


  color: rgb(255, 255, 255);
    text-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 42px rgb(209, 74, 21), 0 0 82px rgb(243, 138, 17), 0 0 92px rgb(219, 173, 114), 0 0 102px rgb(16, 77, 56), 0 0 151px rgb(59, 128, 57);
    /* font-size: 64px; */
    line-height: 1.5;

    font-weight:800;
    font-family: 'Arial Narrow Bold', sans-serif;

}

.home-text{
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    color: white;
    font-family: "Irish Grover", serif;
    font-weight: 400;
}
#thoda-bada{
    padding: 15px;
    font-size: 19px;
}



.circle {
    height: 24px;
    width: 24px;
    border-radius: 24px;
    background-color: black;
    position: fixed; 
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999999; /* so that it stays on top of all other elements */
  }

.video-front{
    padding-top:10px ;
    /* display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute; */
    position: relative;
    text-align: center;
    color: white;
}
.video-front img{
    width: 1519px;
    height: 700px;
}

.centered{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: grid;
    gap: 15px;
    font-weight:600;
    font-family: 'Arial Narrow Bold', sans-serif;
}

.centered h3{
    color: #AF85C1;
    font-size: 25px;
}

.centered h1{
    color: #FFDBDB;
    font-size: 50px;
}

.centered p{
    padding-top: 16px;
}


                                    /* Card start */
 
 
 .gradient-container {
    

    /* iske chakkar me ho raha tha error */
    /* height: 100vh;
    width: 100%; */

    background: linear-gradient(45deg,#29092f,#040404,#390648,#2e2766,#806969);
    background-size:300% 300%;
    animation: color 3s ease-in-out infinite;


    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
  }

  @keyframes color{
    0% {
        background-position: 0 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0 50%;
    }
  }
  
  /* .gradient-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
    border-radius: 20px;
    padding: 20px;
  } */

  .cards{
    /* display: flex; */
    /* justify-items:center; */
    /* justify-content: space-between; */
    /* padding: 0 180px; */
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1em 6em;
    padding: 60px 27px;


/* iske chakkar me ho raha tha error */
    /* height: 100vh;
    width: 100%; */






    /* background: linear-gradient(45deg,#100425,#201533,#1d1271); */
    background: linear-gradient(45deg,#100425,#322d58,#201533);
   /* background-color: red; */
    background-size:300% 300%;
    animation: color 4s ease-in-out infinite;
    border-radius: 20px;

  }

  .card a img{
    width: 250px;
    height: 300px;
    border-radius: 20px;
    padding: 5px;
  }

  .cards a{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    /* display: grid; */

  }
  

  .cards a p {
    color: white;
    padding-bottom: 10px;
    font-family: "Chakra Petch", serif;
  }
  #btns{
    color: rgb(234, 14, 14);
  }
 

  
 
                                                /* Card  end*/

/* footer  */
.footer {
    text-align: center;
    padding: 40px 20px;
    background-color: #0B0C1E;
}

.footer h1 {
    font-size: 1.5rem;
    margin: 0;
}

.footer p {
    font-size: 1rem;
    margin: 10px 0;
}

.footer .social-icons {
    margin: 20px 0;
}

.footer .social-icons a {
    margin: 0 10px;
    color: #FFFFFF;
    font-size: 1.5rem;
    text-decoration: none;
}

.footer .quick-links {
    margin: 20px 0;
    font-size: 1rem;
}

.footer .quick-links span {
    display: block;
}

.footer .email {
    margin: 10px 0;
    font-size: 1rem;
}

.footer .legal {
    margin-top: 30px;
    font-size: 0.9rem;
    color: #B8B8B8;
    display: flex;
    justify-content: space-between;
    /* max-width: 600px; */
    align-items: center;
}

.footer .legal a {
    color: #B8B8B8;
    text-decoration: none;
}

.footer .legal a:hover {
    text-decoration: underline;
}

.footer h1{
    color: white;
    font-size: 36px;
    font-family: "Chakra Petch", serif;
}
.footer h4{
    color: white;
    font-size: 20px;
    font-family: "Chakra Petch", serif;
    padding-top: 12px;
}

.footer p, .footer a, .legal p{
    color: white;
    font-family: "Chakra Petch", serif;
    text-decoration: none;
    font-weight: 400;
    font-size: 15px;
}

.footer-line{
  width: 100%;
  height: 2px;
  background-color: #fff;
  margin: 0 auto 10px auto;
  opacity: 0.5;
}

.social-icons a:hover{
    color: #2F7AF0;
    transition: 0.3s;
    font-size: 34px;
}


/*  */


.hamburger{
    cursor: pointer;
    display: none;
}
.bar{
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background: white;
}

  
@media screen and (max-width: 600px) {
   .cards{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
   }
}


@media (max-width: 1100px){
    .hamburger{
        display: block;
    }

    .hamburger.active .bar:nth-child(2){
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1){
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3){
        transform: translateY(-8px) rotate(-45deg);
    }

    .main-nav{
        position: fixed;
        left: -100%;
        top: 8%;
        gap: 0;
        flex-direction: column;
        background-color: #262626;
        /* width: 100%; */
        width: 38%;
        /* justify-content: center; */
        text-align: center;
        transition: 0.3s;

        display: flex;
    }

    .menu-item{
        margin: 16px 0;

    }
    .main-nav.active{
        left: 0;
    }
}

/* gif arrange kar rahe hai  */

@media (max-width: 1520px){
    .video-front img{
        width: 1467px;
        height: 693px;
    }
}
@media (max-width: 1470px){
    .video-front img{
        width: 1414px;
        height: 693px;
    }
}
@media (max-width: 1420px){
    .video-front img{
        width: 1367px;
        height: 690px;
    }
}
@media (max-width: 1370px){
    .video-front img{
        width: 1316px;
        height: 681px;
    }
    .cards{
        grid-template-columns: repeat(3, 1fr);
        gap: 1em 6em;
    }
}
@media (max-width: 1320px){
    .video-front img{
        width: 1268px;
        height: 674px;
    }
}
@media (max-width: 1270px){
    .video-front img{
        width: 1217px;
        height: 674px;
    }
}
@media (max-width: 1220px){
    .video-front img{
        width: 1168px;
        height: 671px;
    }
}
@media (max-width: 1170px){
    .video-front img{
        width: 1123px;
        height: 671px;
    }
}
@media (max-width: 1120px){
    .video-front img{
        width: 1068px;
        height: 640px;
    }
}
@media (max-width: 1070px){
    .video-front img{
        width: 1017px;
        height: 616px;
    }
}
@media (max-width: 1020px){
    .video-front img{
        width: 972px;
        height: 603px;
    }
    .cards{
        grid-template-columns: repeat(3, 1fr);
        gap: 1em 4em;
    }

}
@media (max-width: 970px){
    .video-front img{
        width: 920px;
        height: 582px;
    }
    .cards{
        grid-template-columns: repeat(3, 1fr);
        gap: 1em 3em;
    }
    .btn{
        display: none;
    }



}
@media (max-width: 920px){
    .video-front img{
        width: 867px;
        height: 561px;
    }
    .cards{
        grid-template-columns: repeat(3, 1fr);
        gap: 1em 2em;
    }

}
@media (max-width: 870px){
    .video-front img{
        width: 820px;
        height: 554px;
    }
    .cards{
        grid-template-columns: repeat(2, 1fr);
        gap: 1em 3em;
    }
}
@media (max-width: 820px){
    .video-front img{
        width: 767px;
        height: 548px;
    }
}
@media (max-width: 770px){
    .video-front img{
        width: 719px;
        height: 538px;
    }
}
@media (max-width: 720px){
    .video-front img{
        width: 669px;
        height: 546px;
    }
}
@media (max-width: 670px){
    .video-front img{
        width: 619px;
        height: 523px;
    }
}
@media (max-width: 620px){
    .video-front img{
        width: 576px;
        height: 518px;
    }
}
@media (max-width: 600px){
    .video-front img{
        width: 576px;
        height: 518px;
    }
    .cards {
        grid-template-columns: repeat(1, 0fr);
        gap: 1em 3em;
    }

    .card a img {
        width: 381px;
        height: 456px;
    }
}

@media (max-width: 563px){
    .video-front img {
        width: 553px;
        height: 514px;
    }
}
@media (max-width: 450px){
    .card a img {
        width: 299px;
        height: 389px;
    }
}

/* .btn {
    padding: 15px 40px;
    border: none;
    outline: none;
    color: white;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 12px;
} */




/* Main Event Section */
.event-section {
    position: relative;
    width: 100%;
    min-height: 100vh; /* Full screen height */
    background: url('../assets/images/events/EVENTS.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

/* Dark Overlay for Better Text Visibility */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Transparent black overlay */
}

/* Content Styling */
.content {
    position: relative;
    z-index: 2; /* Ensures text is above overlay */
    padding: 20px;
    max-width: 80%;
}

/* Headings */
.content h3 {
    font-size: 2rem;
    font-weight: bold;
}

.content h1 {
    font-size: 3.5rem;
    margin: 10px 0;
}

.content p {
    font-size: 1.2rem;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content h3 {
        font-size: 1.5rem;
    }
    .content h1 {
        font-size: 2.5rem;
    }
    .content p {
        font-size: 1rem;
    }    
    


    .event-section {
        position: relative;
        
        background: url('../assets/images/events/EVENTS-SMALL.jpg') no-repeat center center/cover;
       
       
    }


}

footer {
    background-color: #0a0a19;
    color: white;
    padding: 40px 0;
    font-family: Arial, sans-serif;
    line-height: 1.8;
}


.quicklinks .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px; 
}



.quicklinks .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap; 
  max-width: 1200px;
  margin: 0 auto;
}

.quicklinks .row {
  display: flex;
  flex-wrap: nowrap; 
  width: 100%;
}

.quicklinks .col-md-2 {
  flex: 1; 
  min-width: 200px;
  margin: 6px;
}





.quicklinks h4 {
    font-size: 25px;
    margin-bottom: 4px;
    border-bottom: 2px solid rgb(5, 4, 100);
    padding-bottom: 3px;
}

.quicklinks h6 {
  font-size: 25px;
  margin-bottom: 8px;
  border-bottom: 2px solid rgb(5, 4, 100);
  padding-bottom: 4px;
  color: #FFF;
 
}

.quicklinks h6 span{
 color: white;
 gap: 10px;
}

.quicklinks ul {
    list-style: none;
    padding: 0;
}

.quicklinks ul li {
    margin-bottom: 8px;
  
}

.quicklinks ul li a {
  text-decoration: none;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    gap: 10px;
}


.quicklinks ul li a:hover {
  text-decoration: underline;
  margin-left: 5px;
    color: red;
    transition: color 0.3s;
}

.copy-right {
    text-align: center;
    padding-top: 20px;
    font-size: 14px;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: red;
    color: white;
    padding: 10px;
    border-radius: 50%;
    text-align: center;
    text-decoration: none;
    display: none;
}

#back-to-top:hover {
    background: #0056b3;
}  




/*  */


footer {
  background-color: #0a0a19;
  color: white;
  padding: 40px 0;
  font-family: Arial, sans-serif;
  line-height: 1.8;
}

.quicklinks .container {
  max-width: 1200px;
  margin: 0 auto;
}

.quicklinks .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.quicklinks .col-md-2 {
  flex: 1;
  min-width: 200px;
  margin: 10px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .quicklinks .row {
      justify-content: center;
  }
  .quicklinks .col-md-2 {
      flex: 1 1 45%; 
      text-align: left;
  }
}

@media (max-width: 768px) {

  .quicklinks .row {
    justify-content: flex-start;
}
  .quicklinks .col-md-2 {
      flex: 1 1 100%; 
      text-align: left;

  }
}



.quicklinks .col-md-2:nth-child(4) h4 {
  font-size: 25px; 
}



 /*  */
 
 
/* Registration Section Styling */
.registration-section {
    text-align: center;
    padding: 3px 0;
    margin-top: 0px;
    background:linear-gradient(45deg, #29092f, #390648);

}

.registration-title {
    color: rgb(242, 248, 246);
    font-family: "Chakra Petch", serif;
    font-weight: 900;
    font-size: 20px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

/* Reuse the existing button styling */
.tf-button.btn-effect.mobile-register {
    text-decoration: none;
    padding: 10px 15px;
    color: rgb(17, 216, 163);
    border-radius: 5px;
    display: inline-block;
    width: 50%; 
    max-width: 200px;
}

.tf-button.btn-effect.mobile-register .btn {
    background: none;
    border: none;
    color: rgb(187, 2, 30);
    font-family: "Chakra Petch", serif;
    font-weight: 550;
    cursor: pointer;
    width: 100%;
}

/* Ensure it looks good on mobile */
@media (max-width: 768px) {


    .registration-section {
        text-align: center;
        padding: 3px 0;
        margin-top: 0px;
        background:linear-gradient(45deg, #29092f, #390648);
    
    }
    
    .registration-title {
        font-size: 16px;
    }

    .tf-button.btn-effect.mobile-register {
        width: 60%;
        padding: 8px 16px;
        border-radius: 5px;
        display: inline-block;
    }

    .tf-button.btn-effect.mobile-register .btn {
        background: none;
        border: none;
        color: rgb(245, 240, 240);
        font-weight: 600;
        cursor: pointer;
        width: 100%;
        display: block;
    }
}
/* 
@media (max-width: 566px) {
    .registration-title {
        font-size: 14px;
    }

    .tf-button.btn-effect.mobile-register {
        width: 70%;
        padding: 9px 16px;
        border-radius: 5px;
        display: inline-block;
    }

    .tf-button.btn-effect.mobile-register .btn {
        background: none;
        border: none;
        color: rgb(245, 240, 240);
        font-weight: 600;
        cursor: pointer;
        width: 100%;
        display: block;
    }
}
  */
 
 
