*{ 
  box-sizing: border-box;
  margin: 0;
  padding: 0; 
  font-family: roboto, Helvetica, Arial, sans-serif;
  scroll-behavior: smooth;
}

:root{
    --primary-color: #ebb561;
    --primary-dark-color: #a46d28;
    --secondary-color: #313e2a;
    --secondary-light-color: #678458;
    --text-color: #333;
    --bg-color: #f9f9f9;
    --border-radius: 5px;
    --box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

body {
  background-color: var(--secondary-color);
  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;
}


/* body.menu-open {
    overflow: hidden;
  } */

.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #678458aa;
    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); */
    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: 45px;
  /* mix-blend-mode: difference; */
}

.main-header.scrolled .logo img {
    max-height: 40px;
  }

  /* Desktop view */
.nav-links {
    display: flex;
    gap: 10px;
  }

.nav-links a {
  margin: 0px;
  text-decoration: none;
  /* color: #002355; */
  color: white;
  font-weight: 500;
  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: var(--secondary-color);
}
.nav-links a:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.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: #eee;
  padding: 8px 10px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 20px;
  text-decoration: none;
}

.icon-btn:hover{
    background: var(--primary-dark-color);
    color: white;
}

.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;
    }
}


.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: 99999;
}

.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: 0;
  width: 300px;
  /* background: white; */
  background: #94c08ca2;
  backdrop-filter: blur(10px);
  box-shadow: -2px 0 10px rgba(0,0,0,0.1);
  z-index: 9999;
  padding: 20px;
  transition: transform 0.3s ease;
  border-radius: 8px 0 0 8px;
}

.form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  margin-bottom: 10px;
}

#toggleFormBtn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}



input {
    width: 100%;
    padding: 12px 15px;
    margin: 10px 0;
    border: none;
    border-bottom: 1px solid #cccccc;
    border-radius: 6px;
    color: var(--primary-color);
    background: var(--secondary-color);
    font-size: 14px;
    transition: all 0.3s ease;
    outline: none;
  }
  
  input:focus {
    border-color: var(--primary-color);
    background: var(--secondary-light-color);
    box-shadow: 0 0 5px rgba(182, 210, 0, 0.3);
  }

  input::placeholder {
    color: #888;
    font-size: 13px;
  }

.submit-btn {
  background: var(--primary-color);
  color: #fff;
  padding: 10px;
  border: none;
  width: 100%;
  margin-top: 10px;
  border-radius: 4px;
  cursor: pointer;
}

.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%);
}

.show-form-btn {
  position: fixed;
  top: 100px;
  right: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 8px 0 0 8px;
  cursor: pointer;
  z-index: 999;
  /* 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 ion-icon{
    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(--primary-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(--primary-dark-color);
  }
  
  
     /* 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: none;
  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;
}

.popup {
  background: rgba(5, 49, 1, 0.738);
  backdrop-filter: blur(10px);
  border: 2px solid var(--primary-color);
  /* background: red; */
  width: 100%;
  max-width: 500px;
  padding: 30px;
  border-radius: 8px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 20px;
  overflow-y: auto;
  /* max-height: 90vh; */
  /* margin: 10px; */
}

/* .popup {
  background: white;
  overflow-y: auto;
  width: 100%;
  max-width: 500px;
  padding: 30px;
  border-radius: 8px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
} */

.popup h3{
  color: var(--primary-color);
}


.popup .illustration{
  height: 100%;
  width: 200px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  padding-bottom: 20px;
}

.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: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

.illustrate-item img{
  width: 60px;
  height: 100%;
  object-fit: cover;
  /* mix-blend-mode: color-burn; */
  /* border-radius: 50%; */
}
.illustrate-item p{
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  width: 70px;
  color: white;
}

.popup .close-btn {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 20px;
  cursor: pointer;
  background: var(--primary-color)
}

.logo {
  width: 180px;
  margin-bottom: 10px;
}

.highlight {
  color: red;
  font-weight: bold;
}

form input, select {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
}

.phone-field {
  display: flex;
  gap: 10px;
}

.captcha-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 10px;
  text-align: left;
}

.refresh_captcha{
  position: relative;
  top: -20px;
}

.captcha-box canvas {
  background: var(--secondary-color);
  margin-bottom: 5px;
  border: 1px solid #ccc;
}

.captcha-box button {
  margin: 5px 0;
  padding: 5px 10px;
  cursor: pointer;
  background: var(--primary-color);
  color: white;
  border: none;
  font-size: 14px;
}

.captcha-box input {
  width: 100%;
  padding: 8px;
  margin: 5px 0;
  box-sizing: border-box;
}



.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: #ffebb7;
  font-size: 11px;
}

.consent-check{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  
}

.register-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 12px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  margin-top: 10px;
}

.register-btn:hover{
  background: var(--primary-dark-color);
}

.bottom-call {
  margin-top: 20px;
  background: var(--primary-color);
  color: white;
  padding: 10px;
  font-weight: bold;
}

.bottom-call:hover{
  background: var(--primary-dark-color);
}

@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;
  }
  
  .illustrate-item img{
    width: 40px;
    height: auto;
  }
  .illustrate-item p{
    font-size: 12px;
  }
}

section{
    /* height: 100vh; */
    border: 2px solid var(--primary-color);
}

.hero-slider {
    position: relative;
    /* height: 100vh; */
    overflow: hidden;
  }
  
  .slides {
    height: 100vh;
    width: 100%;
    /* height: 100%; */
    position: relative;
  }
  
  .slides video{
    display: none;
    margin-top: 35px;
    width: 100%;
    height: 100%;
  }
  
  .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: 488px) {
      
       .slides{
  margin-top: 83px;
  width: 100vw;
  height: 20vh;
  /* aspect-ratio: 12/7 !important; */
}


.slides .slide{
  display: none;
}
.slides video {
    display: block;
}
.slider-nav{
  top: 25%;
}

.hero-info-box{
  margin: 0;
}

.slides video{
  display: block;
  margin-top: 0;
}

  .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;
  }
  
  .illustrate-item img{
    width: 40px;
    height: auto;
  }
  .illustrate-item p{
    font-size: 12px;
  }
}
  

  .hero-info-box {
    position: absolute;
    /* top: 20%; */
    top: 100px;
    /* left: 20px; */
    max-width: 450px;
    background: rgba(13, 68, 0, 0.601);
    backdrop-filter: blur(10px);
    padding: 25px;
    padding-top: 70px;
    border-radius: 10px;
    margin: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--primary-color);
    z-index: 3;
  }

  .hero-info-box h1{
    color: rgb(255, 185, 55);
  }

  .hero-info-box h2{
    background: var(--primary-dark-color);
    position: absolute;
    top: 20px;
    color: white;
    padding: 5px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer; 
    text-transform: uppercase;
    animation: scaleFadeIn 0.6s ease forwards alternate infinite;
  }
  
  .hero-info-box h3 {
    color: white;
    margin: 10px 0;
  }
  
  .hero-info-box p {
    font-size: 14px;
    margin: 5px 0;
    line-height: 20px;;
    color: rgb(255, 248, 181);
  }

  .site-visit {
    display: none;
    background: #2b7b20;
    color: white;
    padding: 8px 14px;
    border: none;
    font-size: 24px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid var(--primary-color);
    transition: .3s ease;
    animation: ringing 0.3s ease alternate infinite;
  }
  
  .site-visit:hover {
    /* background: transparent; */
    /* color: var(--primary-color); */
    scale: 1.1;
  }

  
  @keyframes ringing{
    0%{
      rotate: -2deg;
    }
    /* 50%{
      rotate: 0deg;
    } */
    100%{
      rotate: 2deg;
    }

  }

  .explore-more{
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    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;
  }

  .explore-more a{
    color: white;
    text-decoration: none;
  }
  
  .explore-more:hover {
    background: var(--primary-dark-color);
    /* color: #0041a1; */
  }


  
  .usp-box {
      background: #2b7b20;
      color: white;
      padding: 10px;
      margin-top: 10px;
      border-radius: 6px;
    }
    .usp-box>div{
        animation: scaleFadeIn 0.6s ease forwards alternate infinite;
    }
    
  .usp-box h4 {
    font-size: 14px;
    margin-bottom: 5px;
    text-align: center;
    color: black;
    /* animation: scaleFadeIn 0.6s ease forwards alternate infinite; */
  }
  
  .usp-box ul {
      padding-left: 15px;
      font-size: 14px;
      list-style: none;
      text-align: center;
      /* animation: scaleFadeIn 0.6s ease forwards alternate infinite; */
    }
    .usp-box ul li{
        /* animation: scaleFadeIn 0.6s ease forwards alternate infinite; */
    }
  
  .offers-box {
    margin-top: 15px;
    text-align: center;
  }
  
  .offers-box h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 18px;
    text-align: left;
  }

  .overview-section {
    position: relative;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    /* align-items: flex-start;
    justify-content: space-between; */
    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%;
    margin: auto;
  }
  
  .overview-content h2 {
    font-size: 36px;
    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;
    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: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: auto;
  }
  
  .amenity-box {
    /* background: #fff; */
    border: 1px dashed var(--primary-color);
    padding: 15px;
    text-align: center;
    transition: 0.3s ease;
  }
  
  .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);
    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: grid;
    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;
  }
  
  .highlight-grid li {
    margin-bottom: 15px;
    line-height: 1.6;
    color: rgb(255, 234, 196);
  }

  .highlight-grid ul li ion-icon{
    font-size: 20px;
    color: var(--primary-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: 40px;
    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: #fff; */
    background: #fff;
    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: #333;
    margin-bottom: 10px;
    text-align: center;
  }
  
  .price {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    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;
    /* list-style-type: disc; */
  }

  .features li::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--primary-color);
    font-weight: bold;
  }
  
  .card-btn {
    background-color: var(--primary-color);
    color: black;
    border: none;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s ease;
  }
  
  .card-btn:hover {
    background-color: var(--primary-dark-color);
  }
  
  .highlighted {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark-color));
    color: #fff;
    background-size: cover;
  }
  
  .highlighted .price,
  .highlighted h3,
  .highlighted .features li::before {
    color: #fff;
  }
  
  .highlighted .card-btn {
    background-color: #fff;
    color: #000;
  }

  .highlighted .card-btn:hover {
    background-color: var(--primary-dark-color);
    color: #fff;
  }

  .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-dark-color);
  }

  .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;
  }
  
  .image-overlay-wrapper img {
      width: 100%;
      height: 250px;
      /* Same fixed height */
      object-fit: cover;
      display: block;
  }
  
  .image-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(50, 51, 55, 0.593);
    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-dark-color);
    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);
}

.gallery-imgs{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.gallery-imgs img{
    width: 100%;
    max-width: 300px;
    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;
}


/* Overlay Styles */
.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;
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
  }

  .map-box{
    width: 45%;
  }
  
  .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: rgb(255, 239, 214);
  }
  
  .location-highlights ion-icon {
    font-size: 20px;
    color: var(--primary-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/g15.jpeg');
    background-position: center;
    background-size: cover;
    max-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: black;
    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; */
    }
  
   .hero-slider{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column-reverse;
    }

    .hero-info-box {
        position: relative;
        top: 0;
    }

    .site-visit {
      z-index: 2;
      display: block;
      position: absolute;
      bottom: 80px;
    }

    .slider-nav{
      display: none;
    }

    .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;
  }
  }

  
