*{ 
    box-sizing: border-box;
    margin: 0;
    padding: 0; 
    font-family: roboto, Helvetica, Arial, sans-serif;
    scroll-behavior: smooth;
  }
  
  :root{
      --primary-color: rgb(4, 71, 172);
      --primary-color-light: #2ea1ff;
      --primary-color-dark: #00204e;
      --secondary-color: #34c534;
      --secondary-color-light: #5cf373;
      --secondary-color-dark: #00670a;
      --third-color: #2ea1ff;
      --text-white: #ffffff;
      --text-color: #333;
      --bg-color: #f9f9f9;
      --border-radius: 5px;
      --box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  
  body {
    background-color: var(--text-white);
    /* background-image: url('assets/bg-img.jpg'); */
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed; /* keeps the image fixed */
    background-position: center center;
    color: var(--text-color);
  }
  
  
  /* body.menu-open {
      overflow: hidden;
    } */
  
  .main-header {
    position: fixed;
    top: 0;
    width: 100%;
    /*background: #ddeeffaa;*/
      /*backdrop-filter: blur(10px);*/
    /* box-shadow: 0 2px 5px rgba(0,0,0,0.1); */
    z-index: 100;
    transition: all 0.3s ease;
  }
  
  .main-header.scrolled {
      /* background: var(--secondary-color); */
      /* backdrop-filter: blur(10px); */
      background: #ddeeffaa;
      backdrop-filter: blur(10px);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      /* padding: 6px 0; */
    }
  
  .navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    /* max-width: 1200px; */
    margin: auto;
    transition: all 0.3s ease;
  }
  
  .main-header.scrolled .navbar-container {
      padding: 6px 20px;
    }
  
    
  
  .logo img {
    max-height: 60px;
    /* mix-blend-mode: difference; */
  }

  .logo h2{
    font-weight: 700;
    color: white;
  }
  
  .main-header.scrolled .logo img {
      max-height: 40px;
    }
  
    /* Desktop view */
  .nav-links {
      display: flex;
      /* gap: 15px; */
    }
  
  .nav-links a {
    /* margin: 0 10px; */
    text-decoration: none;
    /*color: var(--primary-color);*/
    color: white;
    font-weight: 800;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 10px;
    border-radius: 5px;
    gap: 5px;
  
  }
  
  .main-header.scrolled .nav-links a{
      color: var(--primary-color);
  }
  
  .main-header.scrolled .nav-links a:hover {
    background-color:var(--primary-color);
    color: white;
  }
  .nav-links a:hover {
    background-color: var(--primary-color);
    color: white;
  }
  
  .nav-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .visit-btn {
    background: var(--primary-color);
    color: white;
    padding: 8px 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid var(--primary-color);
  }
  
  .visit-btn:hover {
    background: transparent;
    color: var(--primary-color);
  }
  
  .icon-btn {
    background: var(--secondary-color);
    padding: 8px 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: .3s ease;
  }
  
  .icon-btn:hover{
      background: var(--secondary-color-dark);
      /* color: white; */
      scale: 1.05;
  }

  .icon-btn span{
    font-size: 14px;
  }
  
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 30px;
  }
  .hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s cubic-bezier(.4,2,.6,1);
    display: block;
  }

    .hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  
  /* Responsive */
  @media (max-width: 1024px) {
      .navbar-container {
          flex-direction: column;
          align-items: flex-start;
          background: #678458aa
          /* z-index: 10000; */
        }
  
      .nav-links,
    .nav-buttons {
      position: static; /* fix for hidden links */
      width: 100%;
      /* background: #fff; */
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 10px 20px;
      display: none;
    }
  
    .nav-links{
      gap: 0;
    }
    
      .nav-links a {
        /* margin: 10px 0; */
        padding: 10px 0;
        display: flex;
        justify-content: center;
        border-radius: 0px;
        width: 100%;
        border-bottom: 1px solid #9c9c9c;
      }
    
      .nav-buttons {
        gap: 10px;
        margin-top: 10px;
      }
    
      .main-header.nav-open .nav-links,
    .main-header.nav-open .nav-buttons {
      display: flex;
    }
  
    .nav-buttons{
      flex-direction: row;
    }
  
    
      .hamburger {
        display: flex;
      }
      .inNav{
        display: flex;
        flex-wrap: wrap ;
      }
  }
  
  
  .notice_text{
    margin: 20px 10px;
    padding: 10px 20px;
    background-color: #f4ab36;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  
  #notificationContainer {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
  }
  
  .notification {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 300px;
    padding: 15px;
    margin-bottom: 10px;
    background-color: #f4ab36;
    color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: slideIn 0.5s ease-out;
    position: relative;
    overflow: hidden;
  }
  
  .success{
    background-color: #0dcb75;
  }
  
  .error{
    background-color: #f43636;
  }
  
  .notification .message {
    font-size: 14px;
    flex: 1;
  }
  
  .notification .close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
  }
  
  .notification .progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.7);
    animation: progress 5s linear;
  }
  
  @keyframes slideIn {
    from {
      transform: translateX(100%);
    }
    to {
      transform: translateX(0);
    }
  }
  
  @keyframes progress {
    from {
      width: 100%;
    }
    to {
      width: 0;
    }
  }
  
  .sticky-form {
    position: fixed;
    top: 100px;
    right: -10px;
    width: 300px;
    background: rgba(255, 255, 255, 0.874);
    /* background: var(--primary-color); */
    backdrop-filter: blur(10px);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.415);
    z-index: 99;
    padding: 20px;
    transition: transform 0.3s ease;
    border-radius: 8px 0 0 8px;
  }
  
  .form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .form-header .logo {
    /* width: 180px; */
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 50px;
    width: 100%;
  }
  
  #toggleFormBtn {
    background: none;
    position: absolute;
    border: none;
    font-size: 20px;
    cursor: pointer;
    top: 10px;
    right: 20px;
  }
  
  input {
      width: 100%;
      padding: 12px 15px;
      margin: 10px 0;
      border: none;
      /* border-bottom: 1px solid #fffcfc; */
      border-radius: 6px;
      color: var(--primary-color);
      background: transparent;
      border-bottom: 2px solid var(--primary-color);
      font-size: 14px;
      transition: all 0.3s ease;
      outline: none;
    }
    
    input:focus {
      border: 2px solid var(--primary-color);
      background: var(--secondary-light-color);
      box-shadow: 0 0 5px rgba(182, 210, 0, 0.3);
    }
  
    input::placeholder {
      color: #3e4770;
      font-size: 13px;
    }
  
  .submit-btn {
    background: var(--secondary-color);
    color: #fff;
    padding: 10px;
    border: none;
    width: 100%;
    margin-top: 10px;
    border-radius: 4px;
    cursor: pointer;
  }

  .submit-btn:hover{
    background: var(--secondary-color-dark)
  }
  
  .captcha-placeholder {
    background: #f2f2f2;
    padding: 20px;
    text-align: center;
    color: #777;
    font-size: 14px;
    border-radius: 4px;
    /* margin: 10px; */
  }
  
  .consent-text {
    font-size: 10px;
    margin-top: 10px;
    color: #343434;
    font-weight: 300;
    text-align: center;
  }
  
  /* Hide Form */
  .sticky-form.hidden {
    transform: translateX(100%);
  }

  .sticky-form .captcha-box {
    display: flex;
    justify-content: center;
    align-items: center;
    /* flex-direction: row-reverse; */
    margin-top: 10px;
    text-align: left;
  }
  
  .sticky-form .captcha-box div{
    position: relative;
  }
  
  
  
  .sticky-form .captcha-box div .refresh_captcha{
    position: absolute;
    /* top: -20px; */
    /* height: 100%; */
    width: 40px;
    /* right: 18px; */
    /* top: 241px; */
  }
  
  .sticky-form .captcha_canvas{
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    position: relative;
    top: 2px;
  }
  
  .sticky-form .captcha-box canvas {
    /* background: #f0f0f0; */
    /* margin-bottom: 5px; */
    border: 2px solid var(--primary-color);
    border-radius: 5px;
  }
  
  .sticky-form .captcha-box button {
    margin: 5px 0;
    /* padding: 5px 10px; */
    cursor: pointer;
    background: var(--primary-color);
    color: white;
    width: 40px;
    border: none;
    border-radius: 3px;
    font-size: 14px;
    height: 40px;
    /* position: absolute;
    right: 128px;
    top: 241px; */
    /* border: 2px solid var(--primary-color); */
  }
  
  .sticky-form .captcha-box input {
    width: 100%;
    padding: 10px;
    /* margin: 5px 0; */
    box-sizing: border-box;
  }

  
  
  .show-form-btn {
    position: fixed;
    top: 140px;
    right: 0;
    display: flex;
    gap: 5px;
    justify-content: space-around;
    align-items: center;
    background: var(--primary-color);
    color: white;
    border: none;
    /* font-size: 18px; */
    padding: 10px 15px;
    font-weight: 800;
    border-radius: 8px 0 0 8px;
    cursor: pointer;
    z-index: 9;
    /* display: none; */
    animation: vibrate 0.3s ease infinite;
    animation-delay: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-play-state: running;
  }
  
  .show-form-btn i{
      font-size: 18px;
  }
  
  
  @keyframes vibrate {
      0% { transform: translate(0); }
      20% { transform: translate(-1px, 1px); }
      40% { transform: translate(-1px, -1px); }
      60% { transform: translate(1px, 1px); }
      80% { transform: translate(1px, -1px); }
      100% { transform: translate(0); }
    }
  
  .form-icons {
      display: flex;
      justify-content: space-around;
      margin-top: 20px;
      padding-top: 10px;
      border-top: 1px solid #ddd;
    }
    
    .form-icons a {
      background: var(--secondary-color);
      color: white;
      padding: 10px;
      border-radius: 50%;
      font-size: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      transition: background 0.3s ease;
    }
  
    .form-icons a:last-child{
      animation: bounce 1.5s infinite ease-in-out;
    }
    
    .form-icons a:hover {
      background: var(--secondary-color-dark);
    }
    
    
        /* Add these styles to your existing CSS For sticky form otp */
.input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.otp-btn {
  position: absolute;
  right: 8px;
  padding: 6px 12px;
  background: #f5a623;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  display: none;
}

.otp-section {
  display: none;
  gap: 10px;
  margin-bottom: 15px;
   position: relative;
}

.otp-section input {
  flex: 1;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.verify-btn {
  position: absolute;
  right: 8px;
  bottom: 20px;
  padding: 6px 12px;
  background: #f5a623;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  /*display: none;*/
}

/* Validation states */
.verified {
  border: 2px solid #4CAF50 !important;
}

.not-verified {
  border: 2px solid #f44336 !important;
}

/*For popup Otp Section*/

 .form-group-row{
    display: flex;
    width :100%;
    align-items: center;
    justify-content: center;
    gap: 10px;
    /* flex-wrap: wrap; */
  }

  .form-group-row .form-group{
    width: 100%;
  }

  .form-group-row .form-group input{
    width: 100%;
  }

  .form-group-row .btn{
    padding: 10px 6px;
    width: 50%;
  }
  
  .btn{
    background: var(--primary-color);
    color: white;
    padding: 8px 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid var(--primary-dark-color);
    text-decoration: none;
  }

    
    
  
      /* Overlay Styles */
.overlay {
  display: block;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  padding: 10px;
  z-index: 1000;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  cursor: pointer;
}

.overlay.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.popup {
  background: rgba(255, 255, 255, 1);
  backdrop-filter: blur(10px);
  /* border: 2px solid var(--secondary-color); */
  /* background: red; */
  width: 100%;
  max-width: 500px;
  /* padding: 30px; */
  border-radius: 5px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  /* gap: 20px; */
  overflow-y: auto;
  box-shadow: var(--shadow);
  /* max-height: 90vh; */
  /* margin: 10px; */
}

.form-container{
  padding: 30px;
}






.popup .illustration{
  height: 100%;
  width: 200px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 50px;
  /* background: url(assets/img/m3m5.png); */
  padding-bottom: 20px;
  padding-left: 30px;
}

.popup .illustration h2{
  font-size: 24px;
  /* text-align: left; */
  color: var(--primary-color);
  /* margin-bottom: 10px; */
}

.illustrate-item{
  width: 100%;;
  /* height: 60px; */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
}

.illustrate-item img{
  width: 60px;
  height: 100%;
  object-fit: cover;
  /* mix-blend-mode:multiply; */
  /* border-radius: 50%; */
}
.illustrate-item p{
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  width: 70px;
  color: black;
}

.illustrate-item a{
  background: var(--primary-color);
  border-radius: 5px;
  padding: 5px;
  text-align: left;
  font-size: 13px;
  color: white;
  text-decoration: none;
  transition: 0.3s ease
}

.illustrate-item a:hover{
  scale: 1.05;
  background: var(--secondary-color-dark);
}

.close-btn {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 30px;
  cursor: pointer;
  color: var(--secondary-color);
}

.popup .logo {
  /* width: 180px; */
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 70px;
  width: 100%;
}

.popup .logo img{
  height: 80px;
  /* aspect-ratio: 12/9; */
  /* width: 100%; */
  /* object-fit: contain; */
}

.highlight {
  color: var(--primary-color);
  font-weight: bold;
}

form input, select {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
}

.form-group {
  position: relative;
  /* margin-bottom: 20px; */
}

.form-group input {
  /* all: unset; */
  width: 100%;
  border: none;
  padding: 12px 15px;
  border-bottom: 2px solid var(--secondary-color);
  border-radius: 5px;
  background: transparent;
  color: var(--secondary-color);
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
  /* box-shadow: 0 4px 20px var(--primary-color-light); */
}

.form-group label {
  position: absolute;
  top: 50%;
  left: 15px;
  color: var(--secondary-color-light);
  background: transparent;
  padding: 0 5px;
  transform: translateY(-50%);
  transition: 0.3s ease;
  pointer-events: none;
}

/* When input is focused or filled */
.form-group input:focus + label,
.form-group input:not(:placeholder-shown):valid + label {
  top: 8px;
  left: 10px;
  font-size: 12px;
  padding: 3px 10px;
  color: var(--secondary-color);
  background: rgba(255, 255, 255, 0.923);
  border-radius: 10px;box-shadow: none;
}

.form-group input:focus{
  border: 2px solid var(--secondary-color);
}

.phone-field {
  display: flex;
  gap: 10px;
}

.captcha-box {
  display: flex;
  justify-content: center;
  align-items: center;
  /* flex-direction: row-reverse; */
  margin-top: 10px;
  text-align: left;
}



.refresh_captcha{
  position: relative;
  /* top: -20px; */
  height: 100%;
  width: 40px;
}

.captcha_canvas{
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  position: relative;
  top: 2px;
}

.captcha-box canvas {
  /* background: #f0f0f0; */
  /* margin-bottom: 5px; */
  border: 2px solid var(--secondary-color);
  border-radius: 5px;
}

.captcha-box button {
  margin: 5px 0;
  padding: 5px 10px;
  cursor: pointer;
  background: var(--secondary-color);
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  height: 40px;
  position: absolute;
  right: 1px;
  top: -4px;
  /* border: 2px solid var(--secondary-color); */
}

.captcha-box input {
  width: 100%;
  padding: 8px;
  /* margin: 5px 0; */
  box-sizing: border-box;
}

.btn {
  /* margin-top: 20px; */
  padding: 10px 20px;
  background-color: var(--secondary-color);
  border: none;
  color: white;
  text-decoration: none;
  border: 2px solid var(--secondary-color-light);
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
}

.btn:hover{
  background-color: var(--secondary-color-light);
  background: transparent;
  color: var(--secondary-color-light);
  border: 2px solid var(--secondary-color-light);
}

.consent {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 5px;
  font-size: 12px;
  text-align: left;
  margin: 10px 0;
}

.consent p{
  color: gray;
  font-size: 11px;
}

.consent-check{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  
}

.register-btn {
  background: #0056d2;
  color: white;
  border: none;
  padding: 12px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  margin-top: 10px;
}

.register-btn:hover{
  background: #003fa6;
}

.bottom-call {
  margin-top: 20px;
  background: #0056d2;
  color: white;
  padding: 10px;
  font-weight: bold;
}

.bottom-call:hover{
  background: #003fa6;
}

@media (max-width: 488px) {
  
  .popup {
    /* width: 90%; */
    /* padding: 20px; */
    flex-direction: column;
  }
  
  .popup .illustration{
    display: none;
    /* height: auto; */
    flex-direction: column;
    gap: 10px;
  }

  .illustrate-item{
    width: 40px;
    height: auto;
  }

  .captcha-box {
    flex-direction: column;
  }
  
  .illustrate-item img{
    width: 40px;
    height: auto;
  }
  .illustrate-item p{
    font-size: 12px;
  }
}


  section{
      /* height: 100vh; */
      /* border: 2px solid var(--primary-color); */
      background: white;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
  }
  
  .hero-slider {
      position: relative;
      /* height: 100vh; */
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      
    }

    .condition{
      position: absolute;
      color: rgb(68, 68, 68);
      bottom: 10px;
      right: 5px;
      z-index: 10;
      font-size: clamp(8px, 2vw, 12px);
    }
    
    .slides {
      height: 100vh;
      width: 100%;
      /* height: 100%; */
      position: relative;
    }
    
    .slide {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transition: opacity 1s ease;
      z-index: 1;
    }

    
    .slide.active {
      opacity: 1;
      z-index: 2;
    }
    
    .slider-nav {
      position: absolute;
      top: 50%;
      width: 100%;
      display: flex;
      justify-content: space-between;
      transform: translateY(-50%);
      z-index: 3;
    }
    
    .slider-nav span {
      background: rgba(0,0,0,0.4);
      color: #fff;
      padding: 10px 15px;
      cursor: pointer;
      font-size: 24px;
      user-select: none;
      border-radius: 4px;
    }
    
    .pagination-dots {
      position: absolute;
      bottom: 120px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
      z-index: 4;
    }
    
    .pagination-dots .dot {
      width: 12px;
      height: 12px;
      background: rgba(255, 255, 255, 0.5);
      border-radius: 50%;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .pagination-dots .dot.active {
      background: #ffffff;
      width: 14px;
      height: 14px;
    }
    
    @media (max-width: 768px) {
      .slides {
        height: 50vh;
      }

      .slider-nav{
        transform: translateY(-20%);
        top: 30vh;
      }
    }

    @media (max-width: 548px) {
        .main-header {
            backdrop-filter: blur(0px);
            background: transparent;
        }
        .main-header .navbar-container{
            background: transparent;
        }
        .main-header.scrolled {
            backdrop-filter: blur(10px);
            background: transparent;
        }
        .main-header.scrolled .navbar-container{
            background: #678458aa;
        }
      .slides {
        height: 30vh;
      }
      .slider-nav{
        transform: translateY(0%);
        top: 20vh;
      }
    }
    
.hero-content {
    position: absolute;
    z-index: 2;
    max-width: 600px;
    left: 0px;
    /* top: 110px; */
    padding: 20px;
    z-index: 10;
  }
  
 


  @media(max-width: 768px){
    .hero{
      flex-direction: column;
      padding: 0;
      padding-top: 75px;
    }
    /* .home-slider{
      padding-bottom: 0px;
    } */
    .hero-content {
      position: relative;
      top: 0;
      left: 0;
      padding: 20px;
      max-width: 90%;
    }
  }
  
  .hero-content h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 10px;
    text-align: center;
    
  }
  
  .hero-content h1 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 10px;
    /*color: var(--secondary-color);*/
    color: white;
    /*background: rgba(81, 81, 81, 0.492);*/
    /*backdrop-filter: blur(10px);*/
    /*border: 2px solid var(--secondary-color);*/
    padding: 10px;
    border-radius: 10px;
    text-align: center;
  }

  .heading-wrapper {
  text-align: center;
  font-family: 'Arial', sans-serif;
 
  /* padding: 30px; */
  color: #fff;
}

.bhk-heading {
  font-size: 24px;
  color: var(--bg-color); /* deep blue */
   background: linear-gradient(to right, #34186c00, #26156922, #270c6779, #130c76, #071273, #031e69, #495564,  #050d7e79, #011b8322, #10066900); 
  font-weight: 800;
  padding: 10px;
  width: 100%;
  /* margin: 10px 0; */
}

.price-strip {
  background-color: #c35b2d; 
  background: linear-gradient(to right, #82554200, #8255423b, #ca6c4489, #c35b2d, #c35b2d, #ca6c4489, #8255423b, #82554200); 
  display: inline-block;
  padding: 10px 30px;
  /* width: 500px; */
  width: 100%;
  font-size: 24px;
  font-weight: bold;
  text-wrap: nowrap;
  color: white;
  /* margin: 15px 0; */
}

.payment-plan {
  color: var(--bg-color); /* bright blue */
  font-weight: bold;
    background: linear-gradient(to right, #34186c00, #26156922, #270c6779, #130c76, #071273, #031e69, #495564,  #050d7e79, #011b8322, #10066900); 
  font-size: 24px;
  padding: 10px;
  width: 100%;
  margin: 10px 0;
  text-transform: uppercase;
}

  
  .hero-highlights {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 25px;
  }
  
  .highlight-box {
    background: transparent;
    backdrop-filter: blur(5px);
    border-radius: 12px;
    padding: 15px 25px;
    color: white;
    min-width: 150px;
    border: 2px solid var(--secondary-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .highlight-box .label {
    font-size: 0.9rem;
    font-weight: 500;
  }
  
  .highlight-box .value {
    font-size: 1.4rem;
    font-weight: 700;
  }

  .usp_points{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 6px;
    animation: ZoomIn 2s ease infinite;
  }

  .usp_points li{
    display: flex;
    justify-content: center;
    align-items: center;
    
  }

  .usp_points li::marker{
    content: '';
  }

  .usp_points li ion-icon{
    /* font-size: 1.5rem; */
    color: var(--secondary-color);
    margin-right: 5px;
  }

  .offer_detail{
    color: var(--bg-color);
    margin-top: 20px;
  }

  .offer_detail span{
    font-size: 34px;
    color: white;
  }
  
  .starting-price {
    font-size: 1.3rem;
    margin-top: 10px;
    color: var(--secondary-color-light)
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .hero-content h1 {
      /* font-size: 2.2rem; */
      background: rgba(20, 20, 79, 0.612);
    }
  
    .hero-content h2 {
      font-size: 1.1rem;
    }
  
    .highlight-box {
      min-width: 120px;
      padding: 12px 18px;
    }
  
    .hero-highlights {
      gap: 10px;
    }
  }

  @keyframes ZoomIn {
    0% {
      transform: scale(0.9);
      /* opacity: 0.8; */
      }
      50% {
        transform: scale(1);
        /* opacity: 1; */
      }
      100%{
        transform: scale(0.9);
        /* opacity: 0.8; */
      }

  }
  
  
    .overview-section {
      position: relative;
      padding: 80px 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      /* background: #012f0a51; */
      backdrop-filter: blur(10px);
      overflow: hidden;
      /* margin: 10px 20px; */
      /* border-radius: 5px; */
      /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); */
    }
    
    .overview-content {
      max-width: 85%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      margin: auto;
    }
    
    .overview-content h2 {
      font-size: 30px;
      color: var(--primary-color);
      margin-bottom: 5px;
    }
    
    .overview-content h4 {
      font-size: 22px;
      /* color: white; */
      margin-bottom: 20px;
    }
    
    .overview-content p {
      font-size: 17px;
      /* color: #ffffff; */
      line-height: 1.6;
      text-align: justify;
    }
    
    .brochure-btn {
      display: inline-block;
      margin-top: 30px;
      padding: 10px 20px;
      color: white;
      border: 1px solid var(--primary-color);
      background: var(--primary-color);
      border-radius: 6px;
      text-decoration: none;
      font-weight: 500;
      transition: 0.3s ease;
    }
    
    .brochure-btn:hover {
      background-color: transparent;
      color: var(--primary-color);
    }
    
    .brochure-btn ion-icon {
      margin-right: 8px;
      vertical-align: middle;
      animation: bounce 1.5s infinite ease-in-out;
    }
    
    @keyframes bounce {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-6px);
      }
    }
    
    .visit-btn {
      background: var(--primary-color);
      color: white;
      padding: 8px 14px;
      position: relative;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      font-size: 14px;
      text-decoration: none;
      border: 1px solid var(--primary-color);
      overflow: hidden;
    }
    
    .visit-btn:hover {
      background: transparent;
      color: var(--primary-color);
      border: 2px solid var(--primary-color);
    }
    
    .visit-btn i{
      margin-right: 10px;
      font-size: 14px;
      /* text-decoration: underline; */
    }
    
    .download-btn{
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      width: 200px;
      /* overflow: hidden; */
    }
  
    .download-btn .arrow{
      background: transparent;
      width: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      border-radius: 2px;
      border-bottom: 3px solid white;
    }
  
    .download-btn:hover .arrow{
      background: transparent;
      width: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      border-bottom: 3px solid var(--primary-color);
    }
    
   
    @keyframes downloading {
      0% {
        transform: translate(5px ,-22px);
      }
      100%{
        transform: translate(5px, 18px);
      }
    }
    
    .vertical-title {
      writing-mode: vertical-rl;
      transform: rotate(180deg);
      font-size: 24px;
      font-weight: 500;
      color: var(--primary-color);
      position: absolute;
      right: 20px;
      top: 50%;
      transform: translateY(-50%) rotate(180deg);
    }
    
  
    .amenities-section {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      padding: 40px 20px;
      /* background: #012f0a51; */
      backdrop-filter: blur(10px);
      overflow: hidden;
      /* margin: 10px 20px; */
      /* border-radius: 5px; */
      /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); */
    }
    
    .amenities-heading {
      text-align: center;
      margin-bottom: 30px;
      font-size: 34px;
      color: var(--primary-color);
      font-weight: bold;
    }
    
    .amenities-container {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      /* grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); */
      gap: 20px;
      max-width: 1200px;
      margin: auto;
    }
    
    .amenity-box {
      /* background: #fff; */
      border: 1px dashed var(--primary-color);
      padding: 15px;
      text-align: center;
      transition: 0.3s ease;
    }

    .card {
      width: 100%;
      max-width: 180px;
      /* height: 254px; */
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      padding: 20px;
      border-radius: 15px;
      box-shadow: 1px 5px 60px 0px #7ba6ed6b;
      cursor: pointer;
      position: relative;
      margin: 5px;
      transition: .3s ease;
     }
  
     .card:hover{
      transform: translateY(-10px);
     }
     
     .card .card-border-top {
      width: 60%;
      height: 3%;
      position: absolute;
      background: var(--secondary-color);
      top: 0;
      /* margin: auto; */
      border-radius: 0px 0px 15px 15px;
     }
     
     .card span {
      font-weight: 600;
      color: var(--secondary-color);
      text-align: center;
      display: block;
      padding-top: 10px;
      font-size: 16px;
     }
     
     .card .job {
      font-weight: 400;
      color: white;
      display: block;
      text-align: center;
      padding-top: 3px;
      font-size: 12px;
     }
     
     .card .img {
      width: 100%;
      max-width: 120px;
      height: 90px;
      padding: 5px;
      display: flex;
      align-items: center;
      justify-content: center;
      /* background: #043daf; */
      /* border: 2px dashed #043daf; */
      border-radius: 15px;
      /* margin: auto; */
      /* margin-top: 25px; */
     }
  
     .card .img img{
      width: 100%;
      /* height: 100%; */
     }

     .card .img i{
      font-size: 34px;
      color: var(--primary-color);
     }
     
     .card button {
      padding: 8px 25px;
      display: block;
      margin: auto;
      border-radius: 8px;
      border: none;
      margin-top: 30px;
      background: var(--primary-color);
      color: white;
      font-weight: 600;
     }
     
     .card button:hover {
      background: var(--primary-color-dark);
     }
    
    .amenity-box img {
      width: 50px;
      aspect-ratio: 1/1;
      height: auto;
      margin-bottom: 10px;
    }
    
    .amenity-box p {
      font-weight: 600;
      color: var(--primary-color);
    }
    
  
    @keyframes scaleFadeIn {
      0% {
        /* opacity: 0; */
        transform: scale(1);
      }
      100% {
        /* opacity: 1; */
        transform: scale(1.1);
      }
    }
  
    .highlight-section {
      /* background-color: #f9f9f9; */
      padding: 60px 20px;
      /* font-family: Arial, sans-serif; */
      /* background: #012f0a51; */
      backdrop-filter: blur(10px);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      overflow: hidden;
      /* margin: 10px 20px; */
      /* border-radius: 5px; */
      /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); */
    }
    
    /* .highlight-section h2 {
      text-align: center;
      color: #1b5e20;
      font-size: 28px;
      margin-bottom: 40px;
    } */
    
    .highlight-grid {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      flex-wrap: wrap;
      /* grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); */
      gap: 30px;
      /* max-width: 1200px; */
      margin: auto;
    }
    
    .highlight-grid ul {
      list-style: none;
      padding: 0;
      margin: 0;
      max-width: 600px;
      width: 100%;
    }
    
    .highlight-grid li {
      margin-bottom: 15px;
      line-height: 1.6;
      color: var(--text-color);
    }
  
    .highlight-grid ul li i{
      font-size: 20px;
      color: var(--secondary-color);
    }
  
    .price-cards-section {
      padding: 60px 20px;
      /* background: #012f0a51; */
      backdrop-filter: blur(10px);
      overflow: hidden;
      /* margin: 10px 20px; */
      /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); */
  }
  
  .section-heading{
      text-align: center;
      margin-bottom: 30px;
      font-size: 44px;
      color: var(--primary-color);
      font-weight: bold;
  }
    
    .section-heading span {
      border: 2px solid var(--primary-color);
      padding: 5px 25px;
      border-radius: 30px;
      color: var(--primary-color);
      font-size: 22px;
    }
  
    .main-card-container {
      display: flex;
      gap: 30px;
      width: 100%;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
    }
  
    /* @media (max-width: 1290px) {
      .main-card-container {
        flex-direction: column;
      }
    } */
    
    .card-container {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      width: 100%;
      padding: 0;
      gap: 30px;
      /* justify-content: center; */
      /* background: red; */
      /* margin-top: 40px; */
      /* min-width: 300px; */
      padding: 5px;
      /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.668); */
      
    }
    
    .price-card {
      background: var(--primary-color);
      border-radius: 16px;
      display: flex;
      width: 100%;
      max-width: 500px;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      gap: 10px;
      padding: 20px;
      /* max-width: 300px; */
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
    }
    
    .price-card:hover {
      transform: translateY(-5px);
    }
  
    .price-img{
        max-width: 500px;
        min-width: 300px;
        width: 100%;
        border-radius: 16px;
        height: 100%;
        /* display: flex; */
        justify-content: center;
        align-items: center;
        overflow: hidden;;
        position: relative;
      }
  
      .price-img{
          width: 100%;
          height: 100%;
          object-fit: cover;
          object-position: center;
      }
      
    .price-card h3 {
      font-size: 20px;
      color: var(--secondary-color);
      margin-bottom: 10px;
      text-align: center;
    }
    
    .price {
      font-size: 24px;
      font-weight: bold;
      color: var(--text-white);
      margin-bottom: 20px;
    }
    
    .features {
      list-style: none;
      padding: 0;
      margin: 0 0 20px;
      text-align: left;
    }
    
    .features li {
      margin-bottom: 10px;
      padding-left: 20px;
      position: relative;
      color: var(--secondary-color);
      /* list-style-type: disc; */
    }
  
    .features li::before {
      content: "";
      width: 8px;
      height: 8px;
      background: var(--secondary-color);
      border-radius: 50%;
      position: absolute;
      left: 0;
      top: 5px;
      color: var(--secondary-color);
      font-weight: bold;
    }
    
    .card-btn {
      background-color: var(--text-white);
      color: var(--primary-color);
      border: none;
      padding: 10px 18px;
      border-radius: 25px;
      font-size: 14px;
      cursor: pointer;
      transition: 0.3s ease;
    }
    
    .card-btn:hover {
      background-color: var(--primary-color-dark);
      color: var(--text-white)
    }
    
    .price-section {
    /* background: var(--primary-color); */
    padding: 80px 20px;
    color: var(--text-color);
  }
  
  .section-heading {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 40px;
  }

  .price-section-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  .price-table-wrapper {
    overflow-x: auto;
    margin-bottom: 40px;
    border: 2px solid var(--secondary-color);
    border-radius: 10px;
  }
  
  .price-table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
    border-radius: 10px;
    overflow-x: auto;
    overflow: hidden;
  }
  
  .price-table thead {
    background: var(--primary-color-dark);
  }
  
  .price-table th, .price-table td {
    padding: 20px;
    text-align: left;
    color: var(--text-color);
  }
  
  .price-table th {
    color: var(--secondary-color);
    font-weight: bold;
  }
  
  .price-table tbody tr {
    border-top: 1px solid rgba(23, 11, 11, 0.714);
  }
  
  .price-table tbody tr:last-child {
    border-bottom: none;
  }

  @media screen and (max-width: 768px) {
    .price-table {
      display: block;
      border: none;
      background: transparent;
    }

    .price-table-wrapper{
      border: none;
      width: 100%;
    }
  
    .price-table thead {
      display: none;
    }
  
    .price-table tbody {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 20px;
      /* width: 100%; */
      padding: 20px;
    }
  
    .price-table tr {
      display: block;
      background: var(--primary-color);
      padding: 16px;
      border-radius: 10px;
      width: 100%;
      max-width: 500px;
      border-left: 2px solid var(--secondary-color);
      border-right: 2px solid var(--secondary-color);
      /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.738); */
    }
  
    .price-table td {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 8px 0;
      border: none;
      font-size: 15px;
      color: var(--bg-color);
    }
  
    .price-table td::before {
      content: attr(data-label);
      font-weight: bold;
      color: var(--secondary-color);
    }

    .price-table td:first-child {
      font-weight: bold;
      color: var(--secondary-color);
      font-size: 20px;
    }
  
    .price-table td:last-child {
      justify-content: center;
    }

    .more_disclaimer{
      display: none;
    }
  }

   .gradient-btn {
    background: linear-gradient(to right, var(--secondary-color), var(--secondary-color-dark));
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    color: var(--bg-color);
    /* display: flex; */
    justify-content: center;
    text-decoration: none;
    align-items: center;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .gradient-btn:hover {
    transform: scale(1.05);
  }

  
  .costing-box {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  .costing-box img {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  
  .full-btn {
    padding: 12px 24px;
    font-size: 1rem;
  }
  
    .price-btn {
      background: var(--primary-color);
      color: white;
      border: none;
      padding: 8px 16px;
      font-size: 14px;
      cursor: pointer;
      border-radius: 3px;
    }
    
    .price-btn:hover {
      background-color: var(--primary-color-dark);
    }
  
    .price-image {
      max-width: 450px;
      width: 100%;
      text-align: center;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 10px;
    }
    
    .price-image img {
        width: 100%;
        height: 250px;
        /* Fixed height */
        object-fit: cover;
        /* Ensures image covers the container */
        display: block;
        border: 1px solid #ccc;
    }
    .full-btn {
      margin-top: 10px;
      width: 100%;
    }
  
    .image-overlay-wrapper {
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      overflow: hidden;
      width: 100%;
    }
    
    .image-overlay-wrapper img {
        width: 100%;
        height: 250px;
        /* Same fixed height */
        object-fit: cover;
        display: block;
    }
    
    .image-overlay {
      position: absolute;
      bottom: 0%;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(50, 51, 55, 0.593);
      backdrop-filter: blur(5px);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: bottom 0.4s ease;
    }
  
    .image-overlay-wrapper:hover{
      cursor: pointer;
      box-shadow: 0 10px 25px rgba(51, 51, 51, 0.842);
    }
    
    .image-overlay-wrapper:hover .image-overlay {
      bottom: 0;
    }
    
    .overlay-btn {
      background: #fff;
      color: var(--primary-color);
      border: none;
      padding: 10px 20px;
      font-weight: bold;
      border-radius: 25px;
      cursor: pointer;
      transition: 0.3s ease;
    }
    
    .overlay-btn:hover {
      background: var(--primary-color-dark);
      color: #fff;
    }
  
    .sub-title {
      font-size: 34px;
      color: var(--primary-color);
      margin-bottom: 30px;
      text-align: center;
    }
  
    .site-plan-section{
      padding: 60px 20px;
      /* background: #012f0a51; */
      backdrop-filter: blur(10px);
      overflow: hidden;
      /* margin: 10px 20px; */
      /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);  */
  }


   .gallery-section{
    padding: 40px 20px;
    /* background: #012f0a51; */
    backdrop-filter: blur(10px);
    margin: 10px 20px;
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); */
    text-align: center;
}

.section-title{
    text-align: center;
    margin-bottom: 2rem;
    font-size: 42px;
    color: var(--primary-color);
}

#ribbon {
		padding: .34em 1em;
    /* display: block; */
		margin: 0;
		margin-top: 5%;
    bottom: 60px;
    /* width: 400px; */
		position:relative;
		color: #ffffff;
		font: 32px 'Patua One', sans-serif;
		text-align: center;
		letter-spacing:0.1em;
		text-shadow: 0px -1px 0px rgba(0,0,0,0.3);
		box-shadow: inset 0px 1px 0px rgba(255,255,255,.3),
					inset 0px 0px 20px rgba(0,0,0,0.1),
					0px 1px 1px rgba(0,0,0,0.4);
		 background: -webkit-linear-gradient(top,var(--primary-color), var(--primary-color));
      display: inline-block;
	}
	
#ribbon:before, #ribbon:after {
		content: "";
		width:.2em;
		bottom:-.5em;
		position:absolute;
		display:block;
		border: .9em solid var(--primary-color);
		box-shadow:0px 1px 0px rgba(0,0,0,0.4);
		z-index:-2;
	}
	
#ribbon:before {
		left:-1.35em;
		border-right-width: .75em;
		border-left-color:transparent;
	}
	
#ribbon:after {
		right:-1.35em;
		border-left-width: .75em;
		border-right-color:transparent;
	}
	
#content:before, #content:after {
		content:"";
		bottom:-.5em;
		position:absolute;
		display:block;
		border-style:solid;
		border-color: var(--primary-color-dark) transparent transparent transparent;
		z-index:-1;
	}
	
#content:before {
	  left: 0;
	  border-width: .5em 0 0 .5em;
	}
	
#content:after {
	  right: 0;
	  border-width: .5em .5em 0 0;
	}
	
	@media (max-width: 568px) {
    #ribbon {
      font-size: 24px;
      padding: .2em 0.5em;
      margin-top: 10%;}
  }

.gallery-imgs{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.gallery-imgs img{
    width: 100%;
    max-width: 400px;
    min-width: 120px;
    aspect-ratio: 16/9;
    border-left: 5px solid var(--primary-color);
    border-right: 5px solid var(--primary-color);
    border-radius: 10px;
    object-fit: cover;
    cursor: pointer;
    transition: 0.3s ease;
}

.gallery-imgs img:hover {
    transform: scale(1.05);
}

.gallery-imgs:hover img:not(:hover) {
    /* filter: opacity(0.7) blur(5px); */
    transition: filter 0.3s ease;
}

.gallery-imgs img {
    transition: 0.3s ease;
}



.gallery-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  cursor: pointer;
}

.overlay-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    position: absolute;
    border-radius: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 5px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.close-btn:hover {
    color: #bbb;
}

.nav-btn {
  position: absolute;
  z-index: 1001;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 5px;
}
.prev-btn {
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

.next-btn {
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.play-pause-btn {
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}


.nav-btn:hover {
    background-color: rgba(255, 255, 255, 0.4);
}



  
  
  
  
  
  
    .location-section {
      padding: 50px 20px;
      /* background: #012f0a51; */
      backdrop-filter: blur(10px);
      /* margin: 10px 20px; */
      /* border-radius: 5px; */
      /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); */
    }
    
    .location-container {
      display: flex;
      flex-wrap: wrap;
      width: 100%;
      gap: 30px;
      justify-content: center;
      align-items: flex-start;
    }
  
    .map-box{
      width: 100%;
      max-width: 600px
    }

    .map-box img{
      border: none;
      width: 100%;
      max-width: 700px;
      height: 300px;
      border-radius: 10px;
    }

    .map-box::before{
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      /* background: rgba(0, 0, 0, 0.5); */
      border-radius: 10px;
      z-index: 1;
      /* backdrop-filter: blur(10px); */
    }
    
    .map-box iframe {
      border: none;
      width: 100%;
      max-width: 700px;
      height: 300px;
      border-radius: 10px;
    }
    
    .location-highlights ul {
      list-style: none;
      padding: 0;
    }
  
    .location-highlights{
      padding-top: 20px;
    }
    
    .location-highlights li {
      font-size: 18px;
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--text-color);
    }
    
    .location-highlights ion-icon {
      font-size: 20px;
      color: var(--secondary-color);
    }
  
  
    .virtual-tour-section {
      position: relative;
      padding: 50px 20px;
      /* background: #012f0a51; */
      backdrop-filter: blur(10px);
      /* margin: 10px 20px; */
      /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); */
      text-align: center;
    }
  
    .section-title {
      font-size: 34px;
      color: var(--primary-color);
      margin-bottom: 30px;
      text-align: center;
    }
    
    .video-wrapper {
      background: url('assets/19_page-0001.jpg');
      background-position: center;
      background-size: cover;
      width: 90%;
      max-width: 900px;
      max-height: 600px;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100%;
      aspect-ratio: 16/9;;
      margin: auto;
      border-radius: 10px;
      overflow: hidden;
      border-left: 5px solid var(--primary-color);
      border-right: 5px solid var(--primary-color);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.612);
    }
    
    .video-thumb {
      width: 100%;
      border-radius: 10px;
    }
    
    .play-btn {
      background: rgba(0, 0, 0, 0.186);
      color: white;
      backdrop-filter: blur(5px);
      width: 100%;
      height: 100%;
      padding: 20px;
      /* border-radius: 50%; */
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 36px;
      cursor: pointer;
      overflow: hidden;
      /* animation: pulse 1.5s infinite; */
      z-index: 1;
    }
  
  
    .play-btn ion-icon{
      font-size: clamp(30px, 5vw, 80px);
      /* position: relative;
      top: 35px;
      left: 40px; */
      color: red;
      animation: pulse 1.5s infinite;
      background: white;
      border-radius: 50%;
      padding: 10px;
    }
    
    @keyframes pulse {
      0% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.1); opacity: 0.7; }
      100% { transform: scale(1); opacity: 1; }
    }
    
    .video-caption {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 22px;
      color: #fff;
      text-shadow: 0 0 8px #000;
    }
    
    .video-popup {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 999;
    }
    
    .video-overlay {
      background-color: rgba(0, 0, 0, 0.8);
      position: absolute;
      inset: 0;
    }
    
    .video-box {
      position: relative;
      width: 80%;
      max-width: 960px;
      z-index: 1000;
      margin: 50px auto;
    }
    
    .video-box iframe {
      width: 100%;
      height: 540px;
      border-radius: 10px;
    }
    
    .close-btn {
      position: absolute;
      /* top: -20px;
      right: -20px; */
      /* background: white; */
      color: var(--secondary-color);
      font-size: 38px;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      text-align: center;
      line-height: 40px;
      cursor: pointer;
    }
    
    .site-footer {
      /* background-color: #e3ebf0; */
      text-align: center;
      padding: 30px 20px;
      font-size: 14px;
      /* color: #fff2cd; */
      line-height: 1.6;
    }
    
    .site-footer a {
      color: var(--primary-color);
      font-weight: 500;
      text-decoration: none;
    }
    
    .site-footer a:hover {
      text-decoration: underline;
    }
    
    .site-footer strong {
      color: var(--primary-color);
    }
    
    
      .thank-you-section{
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      max-width: 700px;
      flex-direction: column;
      border: 3px solid white;
      padding: 20px 40px;
      border-radius: 20px;
      background: transparent;
      backdrop-filter: blur(5px);
      box-shadow: 10px 10px 20px rgba(0,0,0,0.5);
  }
  
  .typing {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: bold;
    border-right: 3px solid rgb(64, 100, 200);
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    animation: typing 2s steps(20, end) forwards, blink 0.6s step-end infinite;
  }
  
  @keyframes typing {
    from { width: 0; }
    to { width: 9ch; } /* Length of "Thank You!" */
  }
  
  @keyframes blink {
    50% { border-color: transparent; }
  }
  
  .thank-you-section p {
    font-size: 1.6rem;
    margin-top: 20px;
    opacity: 0;
    animation: fadeReveal 1s 2s forwards;
  }
  
  .buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    animation: fadeReveal 1s 3s forwards;
  }
  
  .home-btn {
    margin-top: 30px;
    padding: 12px 30px;
    background: rgb(64, 100, 200);
    border: 2px solid #fff;
    color: #fff;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 25px;
    transition: background 0.3s ease;
    opacity: 0;
    animation: fadeReveal 1s 3s forwards;
  }
  
  .home-btn:hover {
    background: rgb(16, 59, 179);
  }
  
  @keyframes fadeReveal {
    to { opacity: 1; }
  }
    
    
    
    @media (max-width: 768px) {
      .sticky-form {
        /* display: none */
      }
      .show-form-btn {
        /* display: none; */
        scale: 0.8;
        right: -20px;
      }
    
      .hero-slider{
          display: flex;
          justify-content: center;
          align-items: center;
          flex-direction: column-reverse;
      }
  
      .hero-info-box {
          position: relative;
          top: 0;
          left: 0;
          margin: 10px;
      }
  
      .pagination-dots {
          display: none;
      }

  
      
  .hero-slider {
      /* padding-bottom: 100px; */
    }
  
    .map-box{
      width: 90%;
    }
  
    .explore-more{
      display: none;
    }
  
    .price-cards-section {
      padding: 40px 15px;
    }
  
    .main-card-container {
      gap: 30px;
    }
  
    .price-card {
      padding: 25px 15px;
      max-width: 100%;
    }
  
    .price-image {
      max-width: 100%;
      padding: 0 10px;
    }
    
    }
    
  