@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");


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
  }

  :root{
    --primary-color: #042b11 ;
    --primary-color-dark:#02250f;
    --primary-color-light: #057e52;
    --secondary-color: #e19638;
    --secondary-color-light: #f2c94c;
    --secondary-color-dark: #b49901;
    --third-color: #eb1d1d;
    --text-color: rgb(183, 250, 207);
    --font-style: 'Jura', sans-serif;
  }
  
  body {
    font-family: 'Jura', sans-serif;
    /* background: linear-gradient(
      270deg,
      var(--primary-color),
      var(--primary-color-light),
      var(--primary-color-dark),
      var(--primary-color-light),
      var(--primary-color)
    );
    background-size: 400% 400%;
    animation: slideGradient 18s ease infinite; */
    /* background: var(--primary-color-dark); */
    background: url('assets/img/hilight-2.png') center/cover no-repeat;
    background-attachment: fixed; /* Parallax effect */
    color: white;
  }

  @keyframes slideGradient {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  
  
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  width: 100%;
  position: fixed;
  top: 0;
  background: transparent;
  transition: padding 0.4s ease, background 0.4s ease, box-shadow 0.3s ease;
  z-index: 1000;
  border-radius: 0 0 20px 20px;
}

.navbar.scrolled {
  padding: 10px 30px;
  background: var(--primary-color-dark);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-bottom: 2px solid var(--secondary-color);
  border-radius: 0 0 15px 15px;
}

  
  .logo img {
    width: 120px;
  }
  
  .nav-links {
    display: flex;
    gap: 35px;
  }
  
  .nav-item {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: color 0.3s;
  }

  .nav-item ion-icon{
    font-weight: 700;
    font-size: 20px;
  }
  
  .nav-item::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 3px;
    background-color: var(--third-color);
    transition: width 0.3s ease;
  }
  
  .nav-item:hover {
    color:  var(--third-color);
  }
  
  .nav-item:hover::after {
    width: 100%;
  }

  /* .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
  }
  
  .hamburger span {
    height: 3px;
    width: 25px;
    background-color: var(--secondary-color);
    border-radius: 2px;
  } */

  .hamburger {
    width: 30px;
    height: 25px;
    position: relative;
    cursor: pointer;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
  }
  
  .hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--secondary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
  }
  
  /* Toggle to X animation */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  
  @media (max-width: 1024px) {
    .nav-links {
      position: fixed;
      top: 0;
      left: -100%;
      flex-direction: column;
      background: var(--primary-color-dark);
      border-right: 2px solid var(--secondary-color);
      width: 250px;
      height: 100%;
      padding: 60px 20px;
      padding-top: 100px;
      gap: 0;
      transition: left 0.3s ease;
    }

    .nav-item{
        width: 100%;
        justify-content: flex-start;
        /* background: blue; */
        padding: 10px 20px;
        gap: 10px;
    }

    .nav-item:hover {
      background: var(--secondary-color);
      color: var(--third-color);
    }
  
    .nav-links.open {
      left: 0;
      z-index: -1;
    }

    .nav-item:hover::after {
        background: var(--secondary-color);
      }
  
    .hamburger {
      display: flex;
      margin-left: 20px;
    }
  }

  p{
    font-size: clamp(14px, 4vw, 20px);
  }


  /* 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;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.overlay.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.popup {
  background: var(--primary-color-dark);
  border: 2px solid var(--secondary-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 .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(--secondary-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: var(--text-color);
}

.close-btn {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 30px;
  cursor: pointer;
  color: var(--secondary-color);
}

.logo {
  width: 180px;
  margin-bottom: 10px;
}

.highlight {
  color: var(--third-color);
  font-weight: bold;
}

form input, select {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
}

.form-group {
  position: relative;
  /* margin-bottom: 20px; */
}

.form-group input {
  width: 100%;
  padding: 12px 15px;
  border: 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);
  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: 5px;
  color: var(--third-color);
  background: var(--secondary-color);
  border-radius: 10px;
}



.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;
  gap: 5px;
}

.refresh_captcha{
  position: relative;
  /* top: -20px; */
  height: 100%;
}

.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;
}



.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: var(--primary-color-light);
  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;
  }
}



.wrapper {
  max-width: 370px;
  width: 100%;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  border: 1px solid var(--secondary-color);
  background:rgba(5, 61, 0, 0.811);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  visibility: hidden;
  position: absolute;
  z-index: 1;
}


.wrapper.show {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  position: fixed;
  left: 100px;
  bottom: 5px;
  z-index:2;
  transition: .3s ease;
}

/* .close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: transparent;
  color: var(--secondary-color);
  border: none;
  font-size: 20px;
  cursor: pointer;
} */


.wrapper form {
  display: flex;
  flex-direction: column;
}

.wrapper form h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.input-field {
  position: relative;
  border-bottom: 2px solid var(--secondary-color);
  margin: 15px 0;
}

.input-field label {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  color: var(--secondary-color);
  font-size: 16px;
  pointer-events: none;
  transition: 0.15s ease;
}

.input-field input {
  width: 100%;
  height: 40px;
  background: transparent;
  border: none;
  outline: none;
  font-size: 16px;
  color: #fff;
}

.input-field input:focus~label,
.input-field input:valid~label {
  font-size: 0.8rem;
  top: 10px;
  transform: translateY(-120%);
}

.forget {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 25px 0 35px 0;
  color: #fff;
}

#remember {
  accent-color: #fff;
}

.forget label {
  display: flex;
  align-items: center;
}

.forget label p {
  margin-left: 8px;
}

.wrapper a {
  color: #efefef;
  text-decoration: none;
}

.wrapper a:hover {
  text-decoration: underline;
}

button {
  background: #fff;
  color: #000;
  font-weight: 600;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  border-radius: 3px;
  font-size: 16px;
  border: 2px solid transparent;
  transition: 0.3s ease;
}

button:hover {
  color: #fff;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

.register {
  text-align: center;
  margin-top: 30px;
  color: #fff;
}
  
  
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 40px 80px;
  padding-top: 120px;
  gap: 60px;
  position: relative;
  background: url('assets/img/hilight-2.png') center/cover no-repeat;
  background-attachment: fixed; /* Parallax effect */
  z-index: 1;
}


/* Overlay */
.hero::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background: rgba(0, 15, 2, 0.582);
  z-index: -1;
}


.video-background {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
}

.video-background iframe {
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}

.content-overlay {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
  padding-top: 20%;
  background: rgba(0, 0, 0, 0.4); /* Optional black overlay */
}

  
  .hero-left {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    /* flex: 1; */
    background: #0e532576;
    padding: 20px 30px;
    border-radius: 10px;
    border: 2px solid var(--secondary-color);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px var(--primary-color-light);
    gap: 15px;
    width: 100%;
    max-width: 450px;
    min-height: 500px;
    /* background: linear-gradient(
      120deg,
      #d3b407,
      #b87800,
      #cfb001,
      #ffbb00f4
    );
    background-size: 300% 300%;
    animation: moveGradient 5s linear infinite; */
  }
  
  @keyframes moveGradient {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }

  .hero-left p span{
    color: var(--secondary-color);
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 1rem;
  }
  
  p span{
    color: var(--secondary-color);
    font-weight: bold;
    /*display: flex;*/
    /*justify-content: center;*/
    /*align-items: center;*/
    /*font-size: 1rem;*/
  }

  .hero-left h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 10px;
  }
  
  .hero-left p {
    margin: 5px 0;
    font-size: 1.3rem;
  }
  
  .hero-left ul {
    margin-top: 10px;
    list-style: none;
    line-height: 1.8;
    background: linear-gradient(
      120deg,
      #d3b407,
      #b87800,
      #cfb001,
      #ffbb00f4
    );
    background-size: 300% 300%;
    animation: moveGradient 5s linear infinite;
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 20px #d3b407;
    color: var(--text-color);
    border: 2px solid var(--secondary-color);
    animation: zoomIn 1.5s infinite ease-in-out;
  }

  .hero-left ul li{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    font-size: 1.2rem;
  }
  .hero-left ul li::before {
    content: '✨'; /* Or use ✔, ➤, 🔸, 🟡, etc. */
    color: #ffd700; /* Golden color */
    font-size: 1.1rem;
    margin-right: 10px;
    animation: sparkle 1.5s infinite ease-in-out;
  }
  @keyframes sparkle {
    0%, 100% {
      transform: scale(1);
      opacity: 1;
    }
    50% {
      transform: scale(1.3);
      opacity: 0.6;
    }
  }

  @keyframes zoomIn {
    0%, 100% {
      transform: scale(1);
      /* opacity: 1; */
    }
    50% {
      transform: scale(1.1);
      /* opacity: 0.6; */
    }
  }
    
  
  .hero-right {
    flex: 1;
    min-width: 300px;
    max-width: 700px;
    height: 500px;
    /* overflow-x: auto; */
  }
  .swiper {
    width: 100%;
    height: 100%;
    border-radius: 10px;
  }
  .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* aspect-ratio: 1/1; */
    box-shadow: 0 4px 20px var(--primary-color-light);
    border-radius: 5px;
    border: 2px solid var(--secondary-color);
  } 

  /* Position below cube slider */
.swiper-pagination {
  position: relative;
  margin-top: 20px;
  text-align: center;
}

/* Make them bigger, animated, and attractive */
.swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background-color: var(--primary-color-light);
  opacity: 0.7;
  margin: 0 5px;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.swiper-pagination-bullet:hover {
  transform: scale(1.2);
  background-color: var(--primary-color);
}

.swiper-pagination-bullet-active {
  background-color: var(--third-color);
  transform: scale(1.4);
  opacity: 1;
}

  
  .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);
  }

  .btn ion-icon {
    /* margin-right: 5px; */
    font-size: 20px;
    vertical-align: middle;
    animation: bounce 1.5s infinite ease-in-out;
  }

  @keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-6px);
    }
  }

  .section {
    position: relative;
    padding: 80px 20px;
    /* background: #fff; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background: #023a1633;
    overflow: visible;
    margin: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    z-index: 1;
    border: 2px solid var(--secondary-color);
    backdrop-filter: blur(5px);
  }

  .section-title {
    /* font-size: 34px; */
    font-size: clamp(24px, 5vw, 34px);

    color: var(--secondary-color);
    margin-bottom: 40px;
    text-align: center;
    border: 3px solid var(--secondary-color);
    padding: 10px 20px;
    border-radius: 20px;
  }
  
  .overview-content {
    max-width: 85%;
    margin: auto;
  }
  
  .overview-content h2 {
    /* font-size: 36px; */
    font-size: clamp(24px, 5vw, 36px);
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-weight: 700;
  }
  
  .overview-content h4 {
    /* font-size: 22px; */
    font-size: clamp(16px, 5vw, 22px);
    color: var(--third-color);
    margin-bottom: 20px;
  }
  
  .overview-content p {
    font-size: clamp(14px, 4vw, 18px);
    color: var(--text-color);
    line-height: 1.6;
    text-align: justify;
  }
  
  .brochure-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 10px 20px;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
  }
  
  .brochure-btn:hover {
    background-color: var(--secondary-color);
    color: #fff;
  }
  
  .brochure-btn ion-icon {
    margin-right: 8px;
    font-size: 20px;
    vertical-align: middle;
    animation: bounce 1.5s infinite ease-in-out;
  }
  
  @keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-6px);
    }
  }
  
  
  .vertical-title {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 24px;
    font-weight: 500;
    color: #0056b3;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(360deg);
  }


  h1 {
    text-align: center;
  }


  .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;
    width: 100%;
    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: linear-gradient(135deg, var(--secondary-color-light), var(--secondary-color-dark));
    border-radius: 16px;
    display: flex;
    width: 100%;
    max-width: 400px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    border: 2px solid var(--primary-color);
    /* 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;
    color: var(--primary-color-dark);
    /* list-style-type: disc; */
  }

  .features li::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--primary-color-dark);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--primary-color);
    font-weight: bold;
  }

  .highlighted .features li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: white;
    /* list-style-type: disc; */
  }

  .highlighted .features li::before {
    content: "";
    width: 8px;
    height: 8px;
    background: white;
    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;
    border:2px solid var(--primary-color);
  }
  
  .card-btn:hover {
    background-color: white;
    border:2px solid white;
    color: var(--primary-color);
  }

  .highlighted {
    background: linear-gradient(135deg, var(--secondary-color-light), var(--secondary-color-dark));
    color: #fff;
    background-size: cover;
    border: 2px solid var(--secondary-color);
  }
  
  .highlighted .price,
  .highlighted h3,
  .highlighted .features li::before {
    color: #fff;
  }

  /* .highlighted .price{
    color: var(--primary-color-dark);
  } */
  
  .highlighted .card-btn {
    background-color: #fff;
    color: var(--primary-color);
    border: 2px solid var(--secondary-color);
  }

  .highlighted .card-btn:hover {
    background-color: var(--primary-color-dark);
    color: var(--secondary-color);
  }

  .price-btn {
    background: var(--primary-color);
    color: var(--secondary-color);
    /* border: none; */
    border: 2px solid var(--secondary-color);
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 3px;
  }
  
  .price-btn:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--secondary-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);
    border: 2px solid var(--secondary-color);
    border-radius: 10px;
    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: 2px solid var(--secondary-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(--secondary-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); 
}
  

  
  .section .amenities-list {
    --col-gap: 2rem;
    --barH: 1rem;
    --roleH: 2rem;
    --flapH: 2rem;
  
    width: min(60rem, 90%);
    margin-inline: auto;
  
    display: flex;
    flex-wrap: wrap;
  
    gap: var(--col-gap);
    padding-inline: calc(var(--col-gap) / 2);
  
    justify-content: center;
    align-items: flex-start;
    list-style: none;
  }
  .section .amenities-list li {
    width: 10em;
    display: grid;
    grid-template:
      "role"
      "icon"
      "title"
      "descr";
    align-items: flex-start;
    gap: 1rem;
    padding-block-end: calc(var(--flapH) + 1rem);
    text-align: center;
    border: 2px solid var(--secondary-color);
    border-top: transparent;
    background: var(--accent-color);
    background-image: linear-gradient(
      rgba(0, 0, 0, 0.6) var(--roleH),
      rgba(0, 0, 0, 0.4) calc(var(--roleH) + 0.5rem),
      rgba(0, 0, 0, 0) calc(var(--roleH) + 0.5rem + 5rem)
    );
    clip-path: polygon(
      calc(var(--col-gap) / -2 - 5px) 0,
      calc(100% + var(--col-gap) / 2 + 5px) 0,
      calc(100% + var(--col-gap) / 2 + 5px ) calc(100% - var(--flapH)),
      50% 100%,
      calc(var(--col-gap) / -2 - 5px) calc(100% - var(--flapH))
    );
  }
  
  /* bar */
  .section .amenities-list li::before {
    content: "";
    grid-area: role;
    height: var(--barH);
    width: calc(100% + var(--col-gap));
    margin-left: calc(var(--col-gap) / -2);
    margin-top: calc(var(--roleH) / 2 - var(--barH) / 2);
    background: grey;
    z-index: -1;
    background-image: linear-gradient(
      rgba(255, 255, 255, 0.4),
      rgba(255, 255, 255, 0.2) 30%,
      rgba(255, 255, 255, 0.1) 40%,
      rgba(0, 0, 0, 0.1) 60%,
      rgba(0, 0, 0, 0.2) 70%,
      rgba(0, 0, 0, 0.4)
    );
  }
  
  /* role */
  .section .amenities-list li::after {
    content: "";
    grid-area: role;
    border: 2px solid var(--secondary-color);
    background: var(--accent-color);
    background-image: linear-gradient(
      rgba(255, 255, 255, 0.4),
      rgba(255, 255, 255, 0.2) 30%,
      rgba(255, 255, 255, 0.1) 40%,
      rgba(0, 0, 0, 0.1) 60%,
      rgba(0, 0, 0, 0.2) 70%,
      rgba(0, 0, 0, 0.4)
    );
    height: var(--roleH);
  }
  
  .section .amenities-list li .icon,
  .section .amenities-list li .title,
  .section .amenities-list li .descr {
    padding-inline: 1rem;
    color: white;
    text-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.5);
  }
  
  .section .amenities-list li .icon {
    font-size: 3rem;
  }
  .section .amenities-list li .title {
    font-size: 1.25rem;
    font-weight: 700;
  }
  
  .section .amenities-list li .descr {
    font-size: 0.9rem;
  }
  
  .thank-you-section{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 700px;
    flex-direction: column;
    border: 3px solid var(--secondary-color);
    padding: 20px 40px;
    border-radius: 20px;
    background: #023a16b1;
    backdrop-filter: blur(5px);
    box-shadow: 10px 10px 20px rgba(0,0,0,0.5);
}

.go-back-btn{
  position: absolute; 
  top: 20px;
  left: 20px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  /* backdrop-filter: blur(5px); */
  border: none;
  /* color: var(--secondary-color); */
  z-index: 999;
  /* transition: color 0.3s ease; */
}

.go-back-btn .home-btn{
  background: #023a16b1;
  color: var(--secondary-color);
  font-size: clamp(24px , 5vw, 34px);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid var(--secondary-color);
  cursor: pointer;
  padding: 5px;
  margin-top: 0;
  transition: color 0.3s ease;
}

.go-back-btn .home-btn:hover{
  background: transparent;
}

.typing {
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: bold;
  border-right: 3px solid var(--secondary-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);
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

@keyframes fadeReveal {
  to { opacity: 1; }
}

  .floating-contact {
    position: fixed;
    bottom: 50px;
    right: 20px;
    display: flex;
    border:2px solid var(--secondary-color);
    flex-direction: column;
    border-radius: 30px;
    gap: 5px;
    backdrop-filter: blur(10px);
    padding: 2px;
    z-index: 999;
  }
  
  .contact-btn {
    width: 40px;
    height: 40px;
    background-color: #25D366; /* WhatsApp Green default */
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    border: 2px solid var(--secondary-color);
    align-items: center;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
    text-decoration: none;
  }
  
  .contact-btn.phone {
    background-color: #00c9ed;
  }
  
  .contact-btn:hover {
    transform: scale(1.1);
    background-color: transparent;
    color: var(--secondary-color);

  }

  .location-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  .map-box{
    width: 100%;
    max-width: 1200px;
    height: 300px;
    aspect-ratio: 16 / 9;
  }
  
  .map-box iframe {
    border: none;
    width: 100%;
    height: 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;
    justify-content: flex-start;
    gap: 10px;
  }

  .location-highlights li p{
    /* text-align: center; */
    line-height: 1.5;
    width: calc(100% - 30px);
  }
  
  .location-highlights ion-icon {
    font-size: 20px;
    color: var(--secondary-color);
    width: 30px;
  }


  /* .gallery-section {
    padding: 40px 20px;
    background: #fafafa;
    margin: 10px 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
  } */
  
  /* .section-title {
    font-size: 34px;
    color: #0056a5;
    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; */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .gallery-img {
    max-width: 320px;
    /* max-height: 250px; */
    aspect-ratio: 16 / 10;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: 2px solid var(--secondary-color);
    box-shadow: 0 4px 20px var(--primary-color-light);
  }
  
  .gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  }
  
  /* 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;
  }

  .virtual-tour-container{
    display: flex;
    justify-content: center;
    align-items: center;
    
  }

  .Site-map-wrapper {
    position: relative;
    max-width: 900px;
    width: 95%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border: 2px solid var(--secondary-color);
    border-radius: 8px;
    box-shadow: 0 4px 20px var(--primary-color-light);
  }

  .Site-map-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5); 
    backdrop-filter: blur(5px);
    border-radius: 8px;
    z-index: 1;
  }

  .virtual-tour-wrapper {
    position: relative;
    max-width: 900px;
    width: 95%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border: 2px solid var(--secondary-color);
    border-radius: 8px;
    box-shadow: 0 4px 20px var(--primary-color-light);
  }
  
  .virtual-tour-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5); /* Or use blue for testing */
    backdrop-filter: blur(5px);
    border-radius: 8px;
    z-index: 1;
  }
  
  .virtual-tour-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .virtual-tour-wrapper .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: #ff0000;
    color: #fff;
    border-radius: 50%;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(20px, 5vw, 40px);
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
  }
  
  .virtual-tour-wrapper .play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.8);
  }

  .Site-map-wrapper .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: black;
    color: #fff;
    border-radius: 50%;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(20px, 5vw, 40px);
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
  }
  
  .Site-map-wrapper .play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.8);
  }
  
  .section-descr{
    font-size: clamp(14px, 3vw, 18px);
    color: var(--text-color);
    line-height: 1.6;
    text-align: justify;
    margin-top: 20px;
    /* padding: 0 30px; */
    width: 85%;
  }


  /*--- footer section ---*/
  .footer-section {
    background: #151414;
    color: #fff;
    padding: 50px 20px;
    font-family: Arial, sans-serif;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* align-items: center; */
    gap: 30px;
    padding-left: 60px;
  }
  
  .footer-col {
    flex: 1;
    min-width: 250px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
  }
  
  .footer-col h2 {
    font-size: 20px;
    margin-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
    display: inline-block;
    padding-bottom: 5px;
  }
  
  .footer-col p,
  .footer-col li {
    color: #ccc;
    font-size: 14px;
    margin: 6px 0;
  }
  
  .footer-col ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-col ul li a {
    color: #ccc;
    text-decoration: none;
  }
  
  .footer-col ul li a:hover {
    color: #fff;
  }

  .social-links{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    flex-direction: column;
  }
  
  .social-links a {
    margin-right: 10px;
    color: var(--secondary-color);
    text-decoration: none;
  }
  
  .social-links a:hover {
    text-decoration: underline;
  }
  
  .subscribe-form {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    
  }
  
  .subscribe-form input {
    padding: 8px;
    width: calc(100% - 100px);
    border: none;
    border-radius: 4px 0 0 4px;
  }
  
  .subscribe-form button {
    padding: 8px;
    width: 100px;
    background: var(--secondary-color);
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    color: #fff;
  }
  
  .footer-bottom {
    margin-top: 40px;
    border-top: 1px solid #444;
    padding-top: 20px;
    padding-left: 20px;
    text-align: left;
    color: #aaa;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .footer-bottom p{
    font-size: clamp(12px, 3vw, 16px);
  }
  
  .footer-bottom a {
    color: var(--secondary-color);
    text-decoration: none;
  }
  
  .footer-links {
    margin-top: 10px;
  }
  
  .footer-links a {
    margin: 0 10px;
    color: #aaa;
    text-decoration: none;
    font-size: clamp(12px, 3vw, 16px);
  }
  
  .footer-links a:hover {
    color: #fff;
  }
  

  
  
  
  /* Responsive */
  @media (max-width: 768px) {
    
    .logo{
      width: 100px;
      margin-bottom: 0;
    }

    .logo img{
      width: 100%;
    }
  
    .navbar .btn{
      padding: 5px;
      font-size: 12px;
    }
    
    .hero{
      padding: 120px 20px;
    }

    .hero-section {
      flex-direction: column;
      text-align: center;
    }

    .wrapper.show {
      left: 10px;
      width: 100%;
    }

    .section {
      padding: 40px 10px;
      margin: 20px 10px;
    }

    /* .card-container{
      flex-direction: column;
    } */

    .footer-container{
      padding-left: 20px;
    }
    /* .footer-bottom{
      padding-left: 20px;
    } */
  }