@import url("https://pro.fontawesome.com/releases/v6.0.0-beta1/css/all.css");
@import url("https://fonts.googleapis.com/css2?family=Jura:wght@500;600;900&display=swap");


*{ 
  box-sizing: border-box;
  margin: 0;
  padding: 0; 
  /* font-family: roboto, Helvetica, Arial, sans-serif; */
  scroll-behavior: smooth;
}

:root{
    --primary-color: #52a448;
    --primary-dark-color: #9a4099;
    --text-color: #333;
    --bg-color: #172235;
    --border-radius: 5px;
    --box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    --font-style: 'Jura', sans-serif;
}

body{
    background-color: #dbe4e9;
    font-family: 'Jura', sans-serif;
}

/* body.menu-open {
    overflow: hidden;
  } */

.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffffffa2;
    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(--primary-dark-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: 60px;
  max-width: 200px
  /* mix-blend-mode: difference; */
}

.main-header.scrolled .logo img {
    max-height: 50px;
  }

  /* Desktop view */
.nav-links {
    display: flex;
    /* gap: 0px; */
  }

.nav-links a {
  margin: 0 10px;
  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;
  /* transition: all 0.2s ease; */
  /* background-color: var(--primary-color); */
}

.main-header.scrolled .nav-links a{
    color: white;
}

.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);
  border: 2px solid 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-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: #333;
  display: block;
}


/* Responsive navbar for smaller device*/
@media (max-width: 1024px) {
    .navbar-container {
        flex-direction: column;
        align-items: flex-start;
        background: #ffff;
        /* 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;
    }
    
      .main-header.scrolled .nav-links a{
      color: var(--primary-dark-color);
  }
  
    .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: 80px;
  right: 0;
  width: 300px;
  /* background: white; */
  background: #ffffffa2;
  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 #ccc;
    border-radius: 6px;
    background: #f9f9f9;
    font-size: 14px;
    transition: all 0.3s ease;
    outline: none;
  }
  
  input:focus {
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 5px rgba(0, 86, 210, 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: var(--primary-color);
  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: var(--primary-color);
  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: white;
  /* 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 .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;
}

.popup .close-btn {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 34px;
  cursor: pointer;
}

.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: #f0f0f0;
  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: #7a7a7a;
  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;
} */

.hero-slider {
    position: relative;
    overflow: hidden;
  }
  
  .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;
  }

  .running-num {
    /* font-size: 2.5rem; */
    font-weight: bold;
    color: var(--primary-dark-color);
  }
  
  .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;
  }
  

  .hero-info-box {
    position: absolute;
    /* top: 20%; */
    top: 80px;
    /* left: 20px; */
    max-width: 450px;
    background: rgba(255, 255, 255, 0.612);
    backdrop-filter: blur(10px);
    padding: 25px;
    /* padding-top: 20px; */
    border-radius: 10px;
    margin: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    z-index: 3;
  }

  .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;
    margin-bottom: 20px;
    
  }
  
  .hero-info-box h3 {
    color: rgb(8, 0, 71);
    margin: 10px 0;
    animation: scaleFadeIn 0.6s ease forwards alternate infinite;
  }
  
  .hero-info-box p {
    font-size: 14px;
    margin: 5px 0;
    line-height: 20px;;
  }

  .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);
  }

  .explore-more a{
    color: white;
    text-decoration: none;
  }
  
  .explore-more:hover {
    background: var(--primary-dark-color);
    /* color: var(--primary-dark-color); */
  }
  
  .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: black;
    margin-bottom: 5px;
    font-size: 18px;
    text-align: left;
  }
  
  @media (max-width: 488px){
        .slides{
      padding-top: 70px;
      width: 100vw;
      height: 30vh;
      /* aspect-ratio: 12/7 !important; */
    }
    .slider-nav{
      top: 25%;
    }
  }

  .overview-section {
    position: relative;
    padding: 80px 20px;
    background: #fff;
    display: flex;
    flex-direction: column;
    /* align-items: flex-start;
    justify-content: space-between; */
    background: #fafafa;
    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-dark-color);
    margin-bottom: 5px;
  }
  
  .overview-content h4 {
    font-size: 22px;
    color: #008060;
    margin-bottom: 20px;
  }
  
  .overview-content p {
    font-size: 17px;
    color: #333;
    line-height: 1.6;
    text-align: justify;
  }
  
  .brochure-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 10px 20px;
    color: var(--primary-dark-color);
    border: 1px solid var(--primary-dark-color);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
  }
  
  .brochure-btn:hover {
    background-color: var(--primary-dark-color);
    color: #fff;
  }
  
  .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);
    }
  }
  
  .overview-stats {
    margin-top: 50px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    /* background-color: var(--primary-color); */
    /* border: 2px solid var(--primary-dark-color); */
    color: var(--primary-dark-color);
    padding: 10px 80px;
    border-radius: 10px;
    text-align: center;
  }
  
  .stat {
    flex: 1 1 200px;
    margin: 15px;
    /* background: var(--primary-dark-color); */
    min-height: 150px;
    min-width: 150px;
    display: flex;
    justify-content: center;
    border-radius: 10px;
    align-items: center;
    flex-direction: column;
    border: 2px solid var(--primary-dark-color);
  }
  
  .stat-number {
    font-size: 36px;
    font-weight: bold;
  }
  
  .stat-label {
    font-size: 16px;
    margin-top: 8px;
    /* color: #fafafa; */
    color: var(--primary-color);
  }
  
  
  .vertical-title {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 24px;
    font-weight: 500;
    color: var(--primary-dark-color);
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
  }
  

  .amenities-section {
    position: relative;
    padding: 40px 20px;
    background: #fafafa;
    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 #0071ce;
    padding: 15px;
    text-align: center;
    transition: 0.3s ease;
  }
  
  .amenity-box img {
    width: 50px;
    height: auto;
    margin-bottom: 10px;
  }
  
  .amenity-box p {
    font-weight: 600;
    color: #000;
  } */

  .amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .amenity-box {
    background: #fff;
    border-radius: 8px;
    padding: 16px 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    font-size: 16px;
    gap: 12px;
    transition: 0.3s;
  }
  
  .amenity-box ion-icon {
    font-size: 22px;
    color: var(--primary-dark-color);
  }
  
  .amenity-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  

  @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: #fafafa;
    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;
  }

  .highlight-grid ul li ion-icon{
    font-size: 20px;
    color: var(--primary-color);
  }

  .price-cards-section {
    padding: 60px 20px;
    background: #fafafa;
    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;
    padding: 5px;    
  }
  
  .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: white;
    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: var(--primary-color);
  }

  .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;
  }
  
  .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);
    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-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: #fafafa;
    overflow: hidden;
    margin: 10px 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); 
}
  
.brands-section{
  padding: 60px 20px;
  background: #fafafa;
  overflow: hidden;
  margin: 10px 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); 
}

.slider-container {
  /* width: 70%; */
  width: 95%;
  padding: 20px 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
  border: 2px solid white;
}

/* Wrapper to enable smooth horizontal scroll */
.cards-wrapper {
  display: flex;
  gap: 36px;
  overflow-x: auto;
  /* scroll-behavior: smooth; */
  white-space: nowrap;
  scrollbar-width: none; 
  -ms-overflow-style: none;
}

.cards-wrapper::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome, Safari */
}

.slider-card {
  width: 150px;
  height: 150px;
  flex-shrink: 0;
  /* background-color: #0c9eff69; */
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  border-radius: 8px;
  border: 2px dotted #0c9eff69;
}

.slider-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

#triangle{
  width: 400px;
  position: absolute;
  height: 400px;
  display: block;
  left: 100px;
  top: -250px;
  transform: rotate(90deg);
  background-color: rgb(227, 49, 49);
  clip-path: path("M 0,0 L 0,400 L 400,196 Z");
  z-index:-1;
}

#triangle2{
  width: 400px;
  position: absolute;
  height: 400px;
  right: 100px;
  top: 50px;
  display: block;
  transform: rotate(270deg);
  background-color: rgb(80, 185, 79);
  clip-path: path("M 0,0 L 0,400 L 400,196 Z");
  z-index:-1;
}

@media(max-width: 998px){
  .slider-card{
      width: 120px;
      height: 120px;
  }
  .map-box{
    /* width: 90%; */
    max-width: 800px;
  }
}

@media(max-width: 768px){
  .slider-card{
      width: 100px;
      height: 100px;
  }
}

/* @media(max-width: 550px){
  .location-desc .location-desc{
     text-align: center;
  }
} */


  

  .gallery-section {
    padding: 40px 20px;
    background: #fafafa;
    margin: 10px 20px;
    /* border-radius: 5px; */
    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;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: auto;
  }
  
  .gallery-img {
    width: 100%;
    height: 100%;
    aspect-ratio: 12/9;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }
  
  .gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  /* Popup Styles */
  .popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  .popup-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
  }
  
  .galary-close-btn {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
  }

  .location-section {
    padding: 50px 20px;
    background: #fafafa;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 10px 20px;
    /* border-radius: 5px; */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
  
  .location-container {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: 60px;
    justify-content: center;
    align-items: flex-start;
  }

  .map-box{
    width: 100%;
    max-width: 500px;
  }
  
  .map-box iframe {
    border: none;
    width: 100%;
    /* max-width: 00px; */
    height: 300px;
    border-radius: 10px;
  }
  
  .location-highlights ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding: 0;
  }

  .location-highlights{
    padding-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 700px;
  }
  
  .location-highlights li {
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    /* gap: 10px; */
  }

  .bold-text {
    /* font-size: 18px; */
    font-family: 'Poppins', sans-serif;
    /* color: #000000; */
    font-weight: 600;
  }

 .location-highlights li p{
    /* text-align: center; */
    line-height: 1.5;
    width: calc(100% - 30px);
  }
  
  .location-highlights li ion-icon {
    font-size: 20px !important;
    color: var(--primary-dark-color);
    margin-right: 20px;
    width: 30px;
  }

  .location-desc{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 80px;
    margin-top: 40px;
    text-align: center;
    line-height: 1.5;
  }

  .slider-wrapper {
    width: 100%;
    padding: 5px;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    gap: 20px;
    padding: 20px 20px;
    flex-direction: column;
    overflow: hidden;
    border: 2px solid #ccc;
    position: relative;
    overflow: hidden;
    /* background: green; */
  
  }
  
  .card-slider {
    display: flex;
    transition: transform 0.2s linear;
    will-change: transform;
    cursor: grab;
    /* background: red; */
  }
  
  .card-slider.dragging {
    cursor: grabbing;
  }
  
  
  .card {
    min-width: 100px;
    width: 100%;
    max-width: 200px;
    height: 120px;
    margin-right: 10px;
    /* background: var(--primary-color); */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: 8px;
    flex-shrink: 0;
  }
  
  .card img{
    height: 100%;
    /* border: 2px dotted var(--primary-color); */
    /* aspect-ratio: 12/7; */
    /* mix-blend-mode: color-burn; */
  }
  
  .navigation-buttons{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 10px;
  }
  
  #prevBtn, #nextBtn {
    background: var(--primary-color);
    color: white;
    border: none;
    font-size: 1rem;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* aspect-ratio: 1/1; */
    border-radius: 10px;
    position: absolute;
    padding: 10px;
    cursor: pointer;
    z-index: 1;
  }
  
  #prevBtn{
    left: 10px;
    top: 60px;
  }
  
  #nextBtn{
    right: 10px;
    top: 60px;
  }
  
  
  @media(max-width: 768px){
    .card {
      min-width: 80px;
      width: 100%;
      max-width: 150px;
    }
  }


  .virtual-tour-section {
    position: relative;
    padding: 50px 20px;
    background: #fafafa;
    margin: 10px 20px;
    /* border-radius: 5px; */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  
  .video-wrapper {
    position: relative;
    max-width: 90%;
    margin: auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.612);
  }
  
  .video-thumb {
    width: 100%;
    border-radius: 10px;
  }
  
  .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    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::before{
    content: '';
    position: absolute;
    top: 40px;
    left: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    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: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.7; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  }
  
  @media (max-width: 420px) {
    .play-btn ion-icon{
      color: blue;
      left: 20px;
      top: 25px;
    }
  }
  
  .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: #222;
    line-height: 1.6;
  }
  
  .site-footer a {
    color: var(--primary-dark-color);
    font-weight: 500;
    text-decoration: none;
  }
  
  .site-footer a:hover {
    text-decoration: underline;
  }
  
  .site-footer strong {
    color: var(--primary-dark-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 var(--primary-dark-color);
  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;
  text-align: center;
}

.buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  animation: fadeReveal 1s 3s forwards;
}

.buttons a{
  text-decoration: none; 
}

.home-btn {
  margin-top: 30px;
  padding: 12px 15px;
  background: var(--primary-dark-color);
  border: 2px solid #fff;
  color: #fff;
  font-size: clamp(14px , 2vw, 20px);
  text-decoration: none;
  border-radius: 25px;
  transition: background 0.3s ease;
  opacity: 0;
  animation: fadeReveal 1s 3s forwards;
}

.home-btn:hover {
  background: var(--primary-color);
}

@keyframes fadeReveal {
  to { opacity: 1; }
}
  
  
  
  
  
  
  @media (max-width: 768px) {
    .sticky-form {
      /* display: none */
    }
    .show-form-btn {
      /* display: none; */
    }

    .main-header.scrolled .nav-links a{
      color: var(--primary-dark-color);
  }
  
    .hero-slider{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column-reverse;
    }

    .hero-info-box {
        position: relative;
    }

    .pagination-dots {
        display: none;
    }

    
.hero-slider {
    padding-bottom: 100px;
  }

  .map-box{
    width: 90%;
    max-width: 800px;
  }

  .explore-more{
    display: none;
  }

  .overview-stats {
    padding: 10px 20px;
  }
  

  .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;
  }

  .play-btn ion-icon{
    left: 20px;
  }

  .location-highlights{
    width: 100%;
    padding-left: 20px;
  }

  .location-desc{
    padding: 10px 20px;
    /* margin-top: 20px; */
    /* text-align: left; */
  }
  
  }
  
