
/*----------------------------------------------
  🎨 Global Styles
----------------------------------------------*/
:root {
  --primary: #dc3545; /* Red */
  --highlight: #ffffff; /* White */
  --contrast: #000000; /* Black */
  --neutral: #f8f9fa; /* Light gray */
  --background: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--background);
  color: var(--contrast);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin: 0;
}

p, li {
  color: #555;
  font-size: 1rem;
  line-height: 1.8;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--primary);
}

.container h2 {
  font-size: 2.5rem;
  font-family: 'Dancing Script', cursive;
}
div.bottom:before {
  content : "";
  position: absolute;
  left    : 25px;
  bottom  : 0;
  height  : 15px;
  width   : 70%;
  border-bottom:5px solid #dc3545;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes type {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes cursor {
  50% { border-color: transparent; }
}

@keyframes rotateBounce {
  0% { transform: scale(1) rotate(0deg); }
  30% { transform: scale(1.2) rotate(15deg); }
  60% { transform: scale(0.95) rotate(-10deg); }
  100% { transform: scale(1) rotate(0deg); }
}

/*----------------------------------------------
  🎨 Navbar
----------------------------------------------*/
.stat-numbers::after {
  content: "+";
  font-weight: bold;
  margin-left: 2px;
}
.stat-numbers {
    font-size: 27px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #dc3545;
    font-family: 'Dancing Script';
}
.navbar.transparent {
    background-color: rgb(255 255 255);
  box-shadow: none;
}
img.logotct{width: 120px;}
.navbar.scrolled {
  background-color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.navbar-brand:focus, .navbar-brand:hover {
    color: #dc3545;
}
.navbar-brand {
  font-size: 2rem;
  font-family: 'Dancing Script', cursive;
  color: var(--primary);
  font-weight: bold;
}

.navbar .nav-link {
  color: #000;
}

.navbar.scrolled .nav-link {
  color: var(--primary) !important;
}
.justicent{    justify-content: center;
    display: flex
;}
.navbar-toggler {
  border: none;
  font-size: 1.2rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background-color: #fff;
  z-index: 1050;
  transition: left 0.3s ease-in-out;
  box-shadow: 2px 0 12px rgba(0, 0, 0, 0.1);
  padding: 2rem 1.5rem;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu .close-btn {
  font-size: 1.875rem;
  color: #333;
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu ul {
  list-style: none;
  padding-left: 0;
  margin-top: 80px;
}

.mobile-menu ul li {
  margin: 20px 0;
}

.mobile-menu ul li a {
  color: #1d1f2b;
  font-size: 1.2rem;
  text-decoration: none;
  font-weight: 500;
}
.event-card p  {    font-size: 14px!important;}
@media (min-width: 992px) {
  .mobile-menu,
  .mobile-toggler {
    display: none !important;
  }
}
 .btn-close.white {filter: invert(1) grayscale(100%) brightness(200%);    position: relative;
    z-index: 9;
    opacity: 9;}
/*----------------------------------------------
  🎨 Hero Section (#topform-section)
----------------------------------------------*/
#topform-section {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 120vh;
    align-items: center;
    justify-content: center;
    z-index: 9;
}
#about h4{color:#000;        font-family: 'Dancing Script';
    font-size: 27px;
    padding-top: 5px;
    padding-bottom: 5px;}
#about img{height:600px;}
.bgslido{  background: url('../img/slider.jpg') center/cover fixed;
 background-size: cover;
    background-attachment: fixed;
    background-blend-mode: multiply;
    display: flex;
    align-items: center;
    min-height: 350px;
    background-position: bottom;}
.hero-section {
  padding: 100px 20px;
  text-align: center;
  position: relative;
}
.event-date {
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}

.event-date i {
  margin-right: 8px;
}

.event-title {
  position: relative;
}

.event-title h1 {
  font-size: 4rem;
  font-family: sans-serif;
  font-weight: 900;
  color: transparent;
     background: linear-gradient(58deg, #dc3545, #3e3d3f);
  -webkit-background-clip: text;
  background-clip: text;
  overflow: hidden;
  white-space: nowrap;
  animation: type 1.5s steps(90) 1.5s 1 normal both, cursor 1s step-end infinite;
}

.event-title img {
width: 60px;
    position: absolute;
       left: -60px;
      top: 23px;
}

.event-location {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
}

.event-location i {
  margin-right: 6px;
}

.event-description {
  font-size: 2rem;
  font-weight: 700;
    color: #dc3545;
  line-height: 1.3;
  max-width: 700px;
  margin: 0 auto;
}

.countdown-container {
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  max-width: 600px;
  position: absolute;
  bottom: 20px;
  left: 500px;
}

.countdown {
  display: flex;
  justify-content: space-around;
}

.time-box {
  color: var(--highlight);
  padding: 1rem;
  border-radius: 0.75rem;
  width: 100px;
  flex: 1 1 80px;
}

.time-box h3 {
  font-size: 2rem !important;
  margin: 0;
      color: #000;
  animation: float 3s ease-in-out infinite;
}

.time-box span {
  font-size: 0.9rem;
  opacity: 0.9;
    color: #000;font-weight: 700;
}

.nav-pills {
  overflow-x: auto;
  flex-wrap: nowrap;
  width: 100%;
}

.nav-pills .nav-item {
  flex: 0 0 auto;
      width: 47%;
    margin-right: 10px;
}

.nav-pills .nav-link {
  background: var(--highlight);
  color: var(--primary);
  font-size: 0.875rem;
  width: 80%;
}

.nav-pills .nav-link.active {
  background-color: var(--primary);
  color: #fff!important;
  font-weight: bold;
}

.nav-link:focus,
.nav-link:hover {
      color: #000000;;
}

.form-control-icon {
  position: relative;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--highlight);
  background: var(--primary);
  width: 32px;
  height: 32px;
  border-radius: 50%;
     padding: 10px;
    FONT-SIZE: 13PX;
}

.form-section input,
.form-section select {
  padding-left: 50px;
  font-size: 0.8125rem;
  border-radius: 37px;
  height: 45px;
}

.form-section input:focus,
.form-section select:focus,
.form-section textarea:focus {
  box-shadow: none !important;
  border-color: var(--primary) !important;
}


  .country-option img {
    width: 20px;
    height: 14px;
    margin-right: 8px;
  }


      .form-control.with-icon,
    .form-select.with-icon,
    textarea.with-icon {
      padding-left: 2.5rem;padding-left: 50px;
    font-size: 0.8125rem;
    border-radius: 37px;
    height: 45px;
    }
.addy .form-control-icon {
    left: 21px!important;
    top: 27px!important;
    padding: 8px!important;
}
.delic .form-control-icon {padding: 9px 8px!important;}
    .form-control-icon {
      position: absolute;
    left: 20px;
    transform: translateY(-50%);
    color: #ffffff;
    pointer-events: none;
    z-index: 2;
    top: 23px;
    }

    textarea.with-icon {
      padding-top: 0.75rem;
      padding-bottom: 0.75rem;
    }

.input-wrapper{width: 100%;}

  .invalid-feedback {
  display: none;
}

.was-validated .form-control:invalid ~ .invalid-feedback,
.was-validated .form-select:invalid ~ .invalid-feedback,
.was-validated textarea:invalid ~ .invalid-feedback {
  display: block;
}

.calicon .form-control-icon {
    top: 23px;
    left: 15px;
}

.calicon textarea {
  height: 70px;
  padding-left: 50px;
  font-size: 0.8125rem;
}



@media (max-width: 768px) {


  .housing-page img {
    margin-top: 15px;}
  #topform-section {
    min-height: auto;
  }
.hero-slide::after{display: none;}
  .hero-section {
    padding: 160px 20px 0 0;

  }

  .event-title img {
          width: 60px;
        left: -60px;
        top: 30px;
  }

  .event-title h1 {
    font-size: 2rem;
  }

  .event-description {
    font-size: 1.4rem;
  }

  .countdown-container {
    position: absolute;
    top: 100px;
    left: 0 !important;
    width: 100%;
  }

  .countdown {
    gap: 0.5rem;
  }

  .time-box {
    padding: 0.75rem;
  }

  .form-section {
    padding: 20px;
  }

  .form-section input,
  .form-section select {
    font-size: 1rem;
  }

  .playbtn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .event-title {
    font-size: 2rem;
  }

  .event-description {
    font-size: 1.4rem;
  }
}

/*----------------------------------------------
  🎨 About Section (#about)
----------------------------------------------*/
.element {
  display: inline-block;
  padding: 10px;
  font-size: 18px;
  text-align: center;
  border: none;
}

/* 1. Border Slide-In from Left */
/* Default setup for all examples */


/* 2. Border Fade-In */
.element2 {
  border-bottom: 4px solid transparent;
  animation: fadeIn 1.5s infinite alternate;
}
@keyframes fadeIn {
  0% { border-bottom-color: transparent; }
  100% { border-bottom-color: #dc3545; }
}



#about {
  padding: 4rem 0;
}

#about img {
  animation: float 2s ease-in-out infinite;
}

@media (max-width: 768px) {
  #about img {
    margin-top: 2rem;
  }
}

/*----------------------------------------------
  🎨 Stats Section
----------------------------------------------*/

    .animated-link {
      position: relative;
      display: inline-block;
      font-size: 24px;
      color: #dc3545;
      text-decoration: none;
      padding-bottom: 5px;
    }

    .animated-link::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      height: 2px;
      width: 0;
      background-color: #dc3545;
      transition: width 0.4s ease;
    }

    .animated-link:hover::after {
      width: 100%;
    }


.stats-section {
  position: relative;
  background: url('../img/venue-bg.jpg') center/cover fixed;
  background-color: rgba(255, 255, 255, 0.94);
  background-blend-mode: multiply;
  padding: 2rem 0;
}

.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.stats-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.stat-box {
  width: 280px;
  background: radial-gradient(black, transparent);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
      margin-right: 50px;
    margin-left: 50px;
}

.stat-box:hover {
  transform: translateY(-10px);
    box-shadow: 0 10px 30px rgb(220 53 69);
    cursor: pointer;
}

.icon-box {
  width: 80px;
  height: 80px;
  background-color: var(--primary);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.stat-box:hover .icon-box {
  background-color: var(--highlight);
}

.icon-box i {
  font-size: 32px;
  color: var(--highlight);
  transition: transform 0.6s ease;
}

.stat-box:hover .icon-box i {
  transform: rotate(360deg);
  color: var(--primary);
}

.stat-number {
font-size: 27px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #dc3545;
    font-family: 'Dancing Script';
}

.stat-label {
  font-size: 15px;
  color: #cbd5e0;
}

@media (max-width: 768px) {
  .stat-box {
    width: 100%;
  }
}

/*----------------------------------------------
  🎨 Key Dates Section (#keydates)
----------------------------------------------*/
#keydates {
  padding: 4rem 0;
}

#keydates h2 {
  font-size: 2.5rem;
  font-family: 'Dancing Script', cursive;
}

.event-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(80, 87, 55, 0.2);
  border-radius: 12px;
  padding: 20px;
  height: 100%;
  color: var(--contrast);
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(80, 87, 55, 0.2);
}
  .event-card .fas  {font-size: 16px;}
.event-card h5 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #dc3545;
    font-family: 'Dancing Script';
}

@media (max-width: 768px) {
  #keydates .col-md-4 {
    margin-bottom: 1.5rem;
  }
}
#about h6{color:#000;}
/*----------------------------------------------
  🎨 Housing Section (.safe-section)
----------------------------------------------*/
.safe-section h3 , .safe-section h5{font-family: 'Dancing Script', cursive;padding-top: 10px;}
.safe-section {
  padding: 4rem 0;
   background: url('../img/venue-bg.jpg') center/cover fixed;
    background-size: cover;
    background-attachment: fixed;
       background-color: #525050f0;
    background-blend-mode: multiply;
    align-items: center;
    background-position: bottom;
    justify-content: center;
    display: grid;
    min-height: 350px;
    padding-top: 105px;
}
.safe-section img{width: 100%;}
.safe-section p{color: #fff;}
.safe-section li{color: #fff;}
.safe-section h5{Color: #dc3545;}
.safe-section h2 {
  font-size: 2.5rem;
  font-family: 'Dancing Script', cursive;
}

.secure-icon {
  position: absolute;
  top: 10%;
  left: 10%;
  transform: translate(-10%, -10%);
}

.icon-circle {
  border-radius: 50%;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background-color: var(--contrast);
}

.icon-circle i {
  font-size: 24px;
  color: var(--primary);
}

@media (max-width: 768px) {
  .safe-section img {
    margin-bottom: 2rem;
  }
}

/*----------------------------------------------
  🎨 Footer
----------------------------------------------*/
    .stat-number2 i {color: #dc3545!important;
    font-size: 20px;}
   .stat-number2  {color: #dc3545;
    font-family: 'Dancing Script';
    font-size: 25px;}
.stat-label2 {
    font-size: 14px;
    color: #ffffff;
    line-height: 25px;}
.footer {
  background-color: #18181b;
  border-top: 1px solid #333;
  padding: 40px 20px 20px;
  color: #ccc;
}

.footer h5,
.footer h2 {
  color: var(--primary);    font-family: 'Dancing Script';
    font-size: 30px;
}

.footer li {
  margin-bottom: 0;
  font-size: 15px;
  margin-top: 15px;
}

.footer a,
.footer p,
.footer .fas {
  color: #ccc;
  text-decoration: none;
}

.footer a:hover,
.footer .fas:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 15px;
  font-size: 14px;
  text-align: center;
}

.underline {
  padding-top: 5px;
  text-decoration: underline wavy var(--primary);
}


/* contact-us */
  .contactpic {
      position: relative;
    background-image: url(../img/mainbanner.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-color: #898787f0;
    background-blend-mode: multiply;
    align-items: center;
    background-position: bottom;
    justify-content: center;
    display: grid;
    min-height: 300px;
    padding-top: 105px;
    }
    .breadcrumb p    {
    display: ruby;
    color: #fff;
    bottom: 5px;}
    
.contactpic span{
  text-transform: uppercase;
  display: block;
}
.contactpic .text1{
color: #ffffff;
    font-size: 45px;
    font-weight: 800;
    letter-spacing: 8px;
    margin-bottom: 20px;
    position: relative;
    animation: text 2.5s 1;
    font-family: 'Dancing Script';
    margin-top: 30px;
}   i.fa-plus {position: absolute;
    color: #dc3545;
    bottom: 85px;
    right: 177px;
    font-family: 'Dancing Script';
    font-size: 49px;}
  .breadcrumb  {justify-content: center; display:flex; width:100%;  white-space: nowrap; color: #fff;}
 .contform-section   {flex: 1 1 50%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 0 30px rgb(0 0 0 / 12%);
    margin-top: 60px;
    margin-bottom: 20px;
    border-radius: 15px;}
   .contform-section  .form-group {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}
 .contform-section .btn-slide-fill {
    height: 52px;}
@keyframes text {
  0%{
    color: black;
    margin-bottom: -40px;
  }
  30%{
    letter-spacing: 25px;
    margin-bottom: -40px;
  }
}
.breadcrumb a {color: #dc3545;
    text-decoration: none;}
    .form-section {
      flex: 1 1 50%;
        padding: 30px;
      display: flex;
      flex-direction: column;
      justify-content: center;        background: rgba(0, 0, 0, 0.7);
    box-shadow: 0 0 30px rgb(0 0 0 / 12%);
    margin-top: 60px;
    margin-bottom: 20px;
    border-radius: 15px;
    }

    .form-section h5 {
      font-size: 0.9rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 10px;
      color: #555;
    }

    .form-section h2 {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 40px;
    }

    .form-group {
      display: flex;
      gap: 20px;
          margin-bottom: 15px;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 16px 20px;
      border: none;
      border-radius: 10px;
      font-size: 1rem;
      outline: none;    border: 2px solid grey;
    }

    .form-group textarea {
      resize: none;
      height: 60px!important;padding: 12px 20px;
    }

    .btn-submit {
      background-color: #dc3545;
      color: #fff;
      padding: 16px 30px;
      border: none;
      border-radius: 12px;
      font-size: 1rem;
      cursor: pointer;
      font-weight: 600;
      transition: background 0.3s ease;
    }

    .btn-submit:hover {
      background-color: #0d0a0a;
      color:#dc3545;
    }

    .image-section {
      flex: 1 1 50%;
      background: url(../img/contactimg.jpg) center center / cover no-repeat;
      min-height: 500px;      position: relative;
    top: 70px;
    }

@media screen and (max-width: 1199px) and (max-width: 601px){
      
span.regi{font-size: 40px!important;}
      .contactpic .text1 {
    color: #dc3545;
    font-size: 65px;}

      .form-section, .image-section {
        flex: 1 1 100%;
        padding: 40px 20px;
      }

      .form-group {
        flex-direction: column;
      }
    }

    .contact-container {
      display: flex;
      flex-wrap: wrap;
      background-color: #fff;
         box-shadow: 0 0 30px rgb(0 0 0 / 15%);
      border-radius: 10px;
      overflow: hidden;
         margin: 60px 0px;
    }

    .map-section {
      flex: 1 1 60%;
      min-height: 450px;
    }

    .map-section iframe {
      width: 100%;
      border: 0;
    }

    .info-section {
      flex: 1 1 40%;
      padding: 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background-color: #fff;
    }

    .info-section h2 {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 20px;
      color: #1d1f2b;
    }

    .info-section hr {
      border: none;
      border-top: 2px dashed #ccc;
      width: 60px;
      margin-bottom: 30px;
    }

    .info-item {
      display: flex;
      align-items: center;
      margin-bottom: 25px;
    }

    .icon-circle {
      background-color: #f0f0f0;
      border-radius: 50%;
      width: 45px;
      height: 45px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 20px;
      font-size: 20px;
    }
.modal-backdrop.show{z-index: 9;}
    .info-text {
      line-height: 1.5;
    }

    .info-text strong {
      display: block;
      font-weight: 600;
      margin-bottom: 4px;
    }

  @media screen and (max-width: 869px) and (max-width: 601px){
      .contact-container {
        flex-direction: column;
      }

      .map-section,
      .info-section {
        flex: 1 1 100%;
      }

      .info-section {
        padding: 30px 20px;
      }
    }
.continess .form-control:focus {
    color: var(--bs-body-color);
    border-color: #dc3545;
    outline: 0;
    box-shadow: none;
}
/* contact-us end */

/* about us */

   .our-story-section .shadows{
      background: #fff;
      box-shadow: 0 10px 40px rgb(0 0 0 / 24%);    padding: 50px 40px;
    }
.our-story-section{    margin-top: 80px;
    margin-bottom: 50px;}
    .our-story-title {
      font-size: 2rem;
      font-weight: bold;
      color: #333;
    }
 .our-story-section img{height: 500px; object-fit: cover;}
    .our-story-subtitle {
      color: #dc3545;
    font-size: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Dancing Script';
    }

    .our-story-text {
      color: #555;
      font-size: 1rem;
      line-height: 1.8;
    }


    .our-story-img {
      max-width: 100%;
      border-radius: 8px;
    }


@media (max-width: 768px) {
  .contactpic {
    min-height: 300px;
    padding-top: 80px;
    background-position: center;
    text-align: center;
  }

  .contactpic .text1 {
    font-size: 40px;
    letter-spacing: 2px;
    word-break: break-word;
    line-height: 1.2;
    padding: 0 15px;
  }

  .breadcrumb p {
    font-size: 14px;
    bottom: 10px;
    text-align: center;
    width: 100%;
    position: static;
    margin-top: 20px;
  }

  .contact-container {
    flex-direction: column;
    margin: 40px 10px;
  }

  .image-section {
    min-height: 250px;
    top: 0;
    animation: none;
  }

  .contform-section,
  .form-section {
    padding: 20px;
    margin-top: 30px;
  }

  .contform-section .form-group,
  .form-section .form-group {
    flex-direction: column;
    gap: 10px;
  }

  .contactpic .text1::before,
  .contactpic .text1::after {
    display: none;
  }

  .event-title h1 {
    font-size: 2.5rem;
    animation: none;
    background: none;
    color: #fff;
  }


      .our-story-title {
        font-size: 1.5rem;
      }

      .our-story-text {
        font-size: 0.95rem;
      }
    }

/* about us end */

/* play button */

.playbtn {
    position: relative;
    display: inline-block;
    padding: 15px 20px;
    margin-top: 10px;
    color: #dc3545;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.5s;
    font-weight: 600;
    letter-spacing: 4px;
    overflow: hidden;
    border: none;
    background: none;
}
.playbtn:hover {
  background: #dc3545;
  color: #fff;
  box-shadow: 0 0 5px #fff, 0 0 25px #fff, 0 0 50px #fff, 0 0 200px #fff;
  -webkit-box-reflect: below 1px linear-gradient(transparent, #0005);
}

.playbtn span {
  position: absolute;
  display: block;
}

.playbtn span:nth-child(1) {
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg, transparent, #dc3545);
  animation: animate1 1s linear infinite;
}

@keyframes animate1 {
  0% {
    left: -100%;
  }
  50%,
  100% {
    left: 100%;
  }
}

.playbtn span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 10px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #dc3545);
  animation: animate2 1s linear infinite;
  animation-delay: 0.25s;
}

@keyframes animate2 {
  0% {
    top: -100%;
  }
  50%,
  100% {
    top: 100%;
  }
}

.playbtn span:nth-child(3) {
  bottom: 0;
  right: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(270deg, transparent, #dc3545);
  animation: animate3 1s linear infinite;
  animation-delay: 0.5s;
}

@keyframes animate3 {
  0% {
    right: -100%;
  }
  50%,
  100% {
    right: 100%;
  }
}

.playbtn span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 10px;
  height: 100%;
  background: linear-gradient(360deg, transparent, #dc3545);
  animation: animate4 1s linear infinite;
  animation-delay: 0.75s;
}

@keyframes animate4 {
  0% {
    bottom: -100%;
  }
  50%,
  100% {
    bottom: 100%;
  }
}
    .animated-links li {
      position: relative;
      text-decoration: none;
      color: #fff;
      font-weight: bold;

    }

    .animated-links li::after {
      content: "";
      position: absolute;
      left: 0;
        bottom: -6px;
    width: 27%;
      height: 2px;
      background: #dc3545;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }

    .animated-links li:hover::after {
      transform: scaleX(1);
    }

    /* registration */
    .registration-page{margin-top: 50px; margin-bottom: 50px;}
.registration-page img{    height: 575px;
    width: 100%;
    object-fit: cover;
    margin-top: 120px;}
    .housing-page{margin-top: 50px; margin-bottom: 50px;}
.housing-page img{    height: 500px;
    width: 100%;
    object-fit: cover;
    margin-top: 120px;}
   
     /* registration  end*/

     
         .navbar.scrolled {
      background-color: #ffffff;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }

    /* Mobile side menu */
    .mobile-menu {
      position: fixed;
      top: 0;
      left: -100%;
      width: 80%;
      max-width: 300px;
      height: 100vh;
      background-color: #fff;
      z-index: 1050;
      transition: left 0.3s ease-in-out;
      box-shadow: 2px 0 12px rgba(0, 0, 0, 0.1);
      padding: 2rem 1.5rem;
    }

    .mobile-menu.active {
      left: 0;
    }

    .mobile-menu .close-btn {
      font-size: 30px;
      color: #333;
      position: absolute;
      top: 15px;
      right: 20px;
      background: none;
      border: none;
      cursor: pointer;
      z-index: 9999;
    }

    .mobile-menu ul {
      list-style: none;
      padding-left: 0;
      margin-top: 80px;
    }

    .mobile-menu ul li {
      margin: 20px 0;
    }

    .mobile-menu ul li a {
      color: #1d1f2b;
      font-size: 1.2rem;
      text-decoration: none;
      font-weight: 500;
    }
    
img , .image-section{    animation: float 2s ease-in-out infinite;}
    @media (min-width: 992px) {
      .mobile-menu,
      .mobile-toggler {
        display: none !important;
      }
    }

    .navbar-toggler {
      border: none;
      font-size: 1.2rem;
    }

    .navbar-toggler:focus {
      box-shadow: none;
    }
    .btn-slide-fill {
      background: transparent;
      border: 2px solid #dc3545;
      color: #dc3545;
      position: relative;
      overflow: hidden;
    }

    .btn-slide-fill::before {
      content: '';
      position: absolute;
      left: 0; top: 0;
      height: 100%;
      width: 0%;
      background: #dc3545;
      z-index: -1;
      transition: width 0.4s ease;
    }

    .btn-slide-fill:hover {
      color: white;
    }

    .btn-slide-fill:hover::before {
      width: 100%;
    }
   .justicent {align-items: center;
    display: flex;
    justify-content: center;}
    .rolling-text {
    font-size: 15px;
    line-height: 50px;
    height: 60px;
    text-decoration: none;
    overflow: hidden;
    color: #ffffff;
    font-weight: 500;
}
.rolling-text:hover .letter, .rolling-text.play .letter {
  transform: translateY(-100%);
}

.rolling-text .letter {
  display: inline-block;
  transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1);
}

.letter:nth-child(1) {
  transition-delay: 0s;
}

.letter:nth-child(2) {
  transition-delay: 0.015s;
}

.letter:nth-child(3) {
  transition-delay: 0.03s;
}

.letter:nth-child(4) {
  transition-delay: 0.045s;
}

.letter:nth-child(5) {
  transition-delay: 0.06s;
}

.letter:nth-child(6) {
  transition-delay: 0.075s;
}

.letter:nth-child(7) {
  transition-delay: 0.09s;
}

.letter:nth-child(8) {
  transition-delay: 0.105s;
}

 /* #groupform button   {    position: absolute;
    top: 90px;
    right: 32px;
    --bs-btn-close-color: #ffffff;
    z-index: 9999;
    opacity: 9999;
    filter: invert(26) grayscale(100%) brightness(200%);} */
  #groupform.modal-content     {background: none;
    box-shadow: none;
    border: none;}

      .flatpickr-calendar {
      border: 1px solid #dc3545;
    }

    .flatpickr-day.selected,
    .flatpickr-day.startRange,
    .flatpickr-day.endRange,
    .flatpickr-day.inRange {
      background-color: #dc3545;
      color: #fff;
    }

    .flatpickr-day.today {
      border-color: #dc3545;
    }


    /*----------------------------------------------
  🎨 Media Queries
----------------------------------------------*/
@media (min-width: 992px) {
  .mobile-menu,
  .mobile-toggler {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .housing-page img {
    margin-top: 15px;
  }

  #topform-section {
    min-height: auto;
  }

  .hero-slide::after {
    display: none;
  }

  .hero-section {
    padding: 100px 15px 0;
  }

 

  .event-title h1 {
    font-size: 2rem;
  }

  .event-description {
    font-size: 1.4rem;
  }

  .countdown-container {
          position: relative;
        top: -20px;
        width: 100%;
  }

  .countdown {
    gap: 0.5rem;
  }

  .time-box {
    padding: 0.5rem;
  }

  .form-section {
    padding: 15px;
  }

  .form-section input,
  .form-section select {
    font-size: 0.875rem;
  }

  .playbtn {
    width: 100%;
  }

  #about img {
    margin-top: 1.5rem;
  }

  .stat-box {
    width: 100%;
    margin: 0 10px;
  }

  #keydates .col-md-4 {
    margin-bottom: 1rem;
  }

  .safe-section img {
    margin-bottom: 1.5rem;
  }

  .contactpic {
    min-height: 250px;
    padding-top: 60px;
    background-position: center;
    text-align: center;
  }

  .contactpic .text1 {
    font-size: 2rem;
    letter-spacing: 2px;
    word-break: break-word;
    line-height: 1.2;
    padding: 0 10px;
  }

  .breadcrumb p {
    font-size: 13px;
    bottom: 10px;
    text-align: center;
    width: 100%;
    position: static;
    margin-top: 15px;
  }

  .contact-container {
    flex-direction: column;
    margin: 30px 0px;
  }

  .image-section {
    min-height: 200px;
    top: 0;
    animation: none;
  }

  .contform-section,
  .form-section {
    padding: 15px;
    margin-top: 20px;
  }

  .contform-section .form-group,
  .form-section .form-group {
    flex-direction: column;
    gap: 8px;
  }

  .contactpic .text1::before,
  .contactpic .text1::after {
    display: none;
  }

  .event-title h1 {
    font-size: 2rem;
          font-size: 1.75rem;
        font-family: sans-serif;
        font-weight: 900;
        color: transparent;
        background: linear-gradient(58deg, #dc3545, #3e3d3f);
        -webkit-background-clip: text;
        background-clip: text;
        overflow: hidden;
        white-space: nowrap;
        animation: type 1.5s steps(90) 1.5s 1 normal both, cursor 1s step-end infinite;
  }
.our-story-section .shadows {
    background: #fff;
    box-shadow: 0 10px 40px rgb(0 0 0 / 24%);
    padding: 40px 40px;
}
.our-story-section {
    margin-top: 30px;
    margin-bottom: 40px;
}
  .our-story-title {
    font-size: 1.5rem;
  }

  .our-story-text {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .event-title h1 {
    font-size: 2rem;
  }

  .event-description {
            font-size: 25px;
  }

  .container h2 {
    font-size: 1.75rem;
  }

  .navbar-brand {
    font-size: 1.5rem;
  }

  .form-section h2 {
    font-size: 1.5rem;
  }

  .info-section h2 {
    font-size: 1.5rem;
  }

  .our-story-title {
    font-size: 1.25rem;
  }

  .our-story-subtitle {
    font-size: 18px;
  }
}

@media screen and (max-width: 1199px) and (max-width: 601px) {
  span.regi {
    font-size: 2rem !important;
  }

  .contactpic .text1 {
    color: #fff;
    font-size: 2.5rem;margin-bottom: 0px;
        margin-top: 45px;
  }
.registration-page img {
    height: 400px;
    width: 100%;
    object-fit: cover;
    margin-top: 0px;}
  .form-section,
  .image-section {
    flex: 1 1 100%;
    padding: 20px 15px;
  }

  .form-group {
    flex-direction: column;
  }
}

@media screen and (max-width: 869px) and (max-width: 601px) {
  .contact-container {
    flex-direction: column;
  }

  .map-section,
  .info-section {
    flex: 1 1 100%;
  }

  .info-section {
    padding: 20px 15px;
  }
}

@media (min-width: 1200px) {
  .container h2 {
    font-size: 2.5rem;
  }

  .event-title h1 {
    font-size: 3rem;
  }

  .event-description {
            font-size: 28px;
    max-width: 700px;
  }


  .time-box {
    width: 100px;
  }

  .stat-box {
    width: 280px;
    margin: 0 25px;
  }
.nav-link:focus, .nav-link:hover {
    color: var(--primary) !important;
}
.navbar.scrolled .nav-link:hover {
    color: #000000!important;
}
  .form-section h2 {
    font-size: 2.5rem;
            font-family: 'Dancing Script';
  }
.form-section h4{ font-family: 'Dancing Script';        font-size: 30px;}
  .info-section h2 {
    font-size: 2rem;
  }

  .our-story-title {
    font-size: 2rem;
  }

  .our-story-section img {
    height: 500px;        width: 100%;
        object-fit: cover;
  }

  .registration-page img {
    height: 575px;
  }

  .housing-page img {
    height: 500px;
  }
}

.shadowcont{
    padding: 50px;
    display: flex; margin-bottom: 50px;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 0 30px rgb(0 0 0 / 12%);
    margin-top: 60px;
    border-radius: 15px;}
a.navbar-brand h1
        {       font-weight: 900;
    font-family: system-ui;}

.is-invalid~.invalid-feedback{font-weight: 700;}
    /* split css */


/* Base nav link style */
.navbar .nav-link {
  position: relative;
  color: #000;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

/* Border animation on hover */
.navbar .nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: #dc3545; /* or your preferred highlight color */
  transition: width 0.4s ease;
}

/* Animate border on hover */
.navbar .nav-link:hover::after {
  width: 100%;
}

/* Active menu item (clicked) */
.navbar .nav-link.active,
.navbar .nav-item .nav-link.active::after {
  color: #000;
}

/* Show full border if active */
.navbar .nav-link.active::after {
  width: 100%;
  background-color: #fff; /* Same as hover color */
}
/* preloader */
       #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
       
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
        }
        #preloader.active {
            opacity: 1;
            visibility: visible;
        }
        .loader {
            position: relative;
            width: 80px;
            height: 80px;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        @keyframes pulse {
            0% { transform: translate(-50%, -50%) scale(1); }
            50% { transform: translate(-50%, -50%) scale(1.2); }
            100% { transform: translate(-50%, -50%) scale(1); }
        }
        /* Go to Top button styles */
        #myBtn {
            display: none;
            position: fixed;
            bottom: 20px;
            right: 30px;
            z-index: 99;
            border: none;
            outline: none;
            background: linear-gradient(45deg, #dc3545, #dc3545);
            color: white;
            cursor: pointer;
              padding: 2px 11px;
                font-size: 30px;
            border-radius: 50%;
            transition: background 0.3s ease, transform 0.3s ease;
        }
        #myBtn:hover {
            background: linear-gradient(45deg, #000, #dc3545);
            transform: scale(1.1);
        }

        /* Blur content when preloader is active */
