@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: #35619e;
    --primary-color-light: #1d4a89;
    --primary-color-dark: #021a3f;
    --secondary-color: #1d4a89;
    --secondary-color-light: #a9bafe;
    --secondary-color-dark: #001534;
    --bg-color: #fafafa;
    /* --third-color: #e74c3c;
    --third-color-light: #ec7063;
    --third-color-dark: #80170c; */
    --text-color: #f0f0f0;
    --dark-text-color: #161616;
    --body-color: #e5e5e5;
    --light-text-color: #7a7a7a;
}

body{
    font-family: 'Jura', sans-serif;
    background-color: var(--body-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    cursor: auto;
    color: var(--secondary-color);
    /* height: 200vh; */
}

.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.3s ease;
  }
  
  .main-header.scrolled {
      background: var(--bg-color);
      transition: all 0.3s ease;
      /* backdrop-filter: blur(10px); */
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.379);
      /* 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: 40px;
    max-width: 120px
    /* mix-blend-mode: difference; */
  }

  .logo .logo-text{
    font-size: 20px;
    font-weight: bold;
    margin-left: 5px;
    /* margin-top: 5px; */
  }
  
  .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: var(--text-color);
    font-weight: 500;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 10px;
    border-radius: 5px;
    font-size: 14px;
    border: 2px solid transparent;
    gap: 5px;
    /* transition: all 0.2s ease; */
    /* background-color: var(--primary-color); */
  }
  
  .main-header.scrolled .nav-links a{
      color: var(--secondary-color-dark);
  }
  
  .main-header.scrolled .nav-links a:hover {
    background-color: var(--primary-color-dark);
    color: white;
  }
  .nav-links a:hover {
    background-color: var(--secondary-color-dark);
    border: 2px solid var(--secondary-color);
    color: white;
  }
  
  .nav-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .icon-btn {
    background: var(--secondary-color-dark);
    padding: 8px 10px;
    border-radius: 4px;
    display: flex;
    font-size: 14px;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--secondary-color);
    color: white;
    font-size: 16px;
    text-decoration: none;
  }
  
  .icon-btn:hover{
      background: var(--primary-color);
      color: var(--secondary-color);
  }

    .gradient-btn {
        position: relative;
        overflow: hidden;
        background: linear-gradient(to right, var(--secondary-color), var(--secondary-color-dark));
        border: none;
        padding: 10px 16px;
        border-radius: 8px;
        color: var(--bg-color);
        justify-content: center;
        display: flex;
        text-decoration: none;
        align-items: center;
        font-weight: 600;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

  .gradient-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shimmer 5s linear infinite;
  /* animation-delay: 3s; */
}


@keyframes shimmer {
  0% {
    left: -75%;
  }
  30% {
    left: 125%;
  }
  100%{
    left: 125%;
  }
}
  
  .gradient-btn:hover {
    transform: scale(1.05);
  }
  .gradient-btn:active{
    border: 2px solid var(--text-color);
  }

  .threeD-btn{
    box-shadow: 3px 1px 0px var(--secondary-color-dark),
    3px 2px 0px var(--secondary-color-dark),
    3px 3px 0px var(--secondary-color-dark),
    3px 4px 0px var(--secondary-color-dark),
    3px 5px 0px var(--secondary-color-dark);
    transition: .3s ease;
  }

  .threeD-btn:hover{
    transform: scale(1);
    box-shadow: none;
    transform: translateY(4px);
  }

   .download-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 3px solid var(--text-color);
  border-radius: 2px;
  overflow: hidden;
  padding: 0px 2px;
  margin-right: 3px;
}

.downloading-animate {
  animation: downloading 1s linear infinite;
}

@keyframes downloading {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}

  
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 30px;
  }
  .hamburger span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    display: block;
    transition: all 0.3s cubic-bezier(.4,2,.6,1);
  }

    .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 navbar for smaller device*/
  @media (max-width: 1024px) {
      .navbar-container {
          flex-direction: column;
          align-items: flex-start;
          background: transparent;
          backdrop-filter: blur(10px);
          /* z-index: 10000; */
        }
  
      .nav-links
     {
      position: static; /* fix for hidden links */
      width: 100%;
      /* background: #fff; */
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 10px 0px;
      display: flex;
      position: absolute;
      max-width: 300px;
      top: 75px;
      /* width: 100%; */
      transition: .3s ease;
      left: -100%;
      border-right: 2px solid var(--primary-color-light);
      background: rgba(255, 255, 255, 0.588);
    }

    .nav-buttons{
      /* position: static; */
      width: 100%;
      /* background: #fff; */
      /* flex-direction: column; */
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      padding: 10px 20px;
      /* display: none; */
    }

    .nav-buttons button{
      display: flex;
      justify-content: center;
      align-items: center;
      
    }
    
    .nav-buttons.inNav{
      display: flex;
      position: absolute;
      max-width: 300px;
      top: 355px;
      /* width: 100%; */
      transition: .3s ease;
      left: -100%;
      border-right: 2px solid var(--primary-color-light);
      border-bottom: 2px solid var(--primary-color-light);
      border-bottom-right-radius: 10px;
      background: rgba(255, 255, 255, 0.588);
    }
  
    .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;
        color: var(--dark-text-color);
      }

      .main-header{
        /* border-radius: 0px 0px 10px 10px; */
        border-bottom: 2px solid var(--secondary-color);
        /* box-shadow: 0px 5px 5px grey; */
      }
      
      .main-header.scrolled{
        /* border-radius: 0px 0px 10px 10px; */
        border-bottom: 2px solid var(--secondary-color);
        /* box-shadow: 0px 5px 5px grey; */
      }


      .main-header.scrolled .nav-links a{
        color: var(--secondary-color);
      }
      .main-header.scrolled .nav-links a:hover{
        color: var(--bg-color);
        background: var(--secondary-color);
      }
    
      .nav-buttons {
        gap: 10px;
        margin-top: 10px;
      }
    
      .main-header.nav-open .nav-links,
    .main-header.nav-open .nav-buttons {
      display: flex;
      left :0px;
      /* box-shadow: 1px 0px 10px black; */
      background: white;
    }

    .main-header.scrolled .nav-links{
      top: 72px;
    }
    .main-header.scrolled .inNav{
      top: 346px;
    }
  
    .nav-buttons{
      /* flex-direction: row; */
    }
  
    
      .hamburger {
        display: flex;
      }
  }


  /* Notification styling*/
  .notice_text{
    margin: 20px 10px;
    padding: 10px 20px;
    background-color: #f4ab36;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  
  #notificationContainer {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
  }
  
  .notification {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 300px;
    padding: 15px;
    margin-bottom: 10px;
    background-color: #f4ab36;
    color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: slideIn 0.5s ease-out;
    position: relative;
    overflow: hidden;
  }

  .success{
    background-color: #0dcb75;
  }

  .error{
    background-color: #f43636;
  }
  
  .notification .message {
    font-size: 14px;
    flex: 1;
  }
  
  .notification .close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
  }
  
  .notification .progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.7);
    animation: progress 5s linear;
  }
  
  @keyframes slideIn {
    from {
      transform: translateX(100%);
    }
    to {
      transform: translateX(0);
    }
  }
  
  @keyframes progress {
    from {
      width: 100%;
    }
    to {
      width: 0;
    }
  }
  


    /* Notification */
  .notice_text{
    margin: 20px 10px;
    padding: 10px 20px;
    background-color: #f4ab36;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  
  #notificationContainer {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
  }
  
  .notification {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 300px;
    padding: 15px;
    margin-bottom: 10px;
    background-color: #f4ab36;
    color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: slideIn 0.5s ease-out;
    position: relative;
    overflow: hidden;
  }

  .success{
    background-color: #0dcb75;
  }

  .error{
    background-color: #f43636;
  }
  
  .notification .message {
    font-size: 14px;
    flex: 1;
  }
  
  .notification .close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
  }
  
  .notification .progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.7);
    animation: progress 5s linear;
  }
  
  @keyframes slideIn {
    from {
      transform: translateX(100%);
    }
    to {
      transform: translateX(0);
    }
  }
  
  @keyframes progress {
    from {
      width: 100%;
    }
    to {
      width: 0;
    }
  }
  

   .sticky-form {
    position: fixed;
    top: 90px;
    right: 0;
    width: 300px;
    /* background: white; */
    background: #fefeffca;
    backdrop-filter: blur(10px);
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    z-index: 999;
    padding: 20px;
    border: 2px solid var(--secondary-color);
    border-right: none;
    transition: transform 0.3s ease;
    border-radius: 8px 0 0 8px;
  }
  
  .form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    font-weight: bold;
    gap: 20px;
    margin-bottom: 10px;
  }
  
  #toggleFormBtn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
  }
  
  
  .sticky-form 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;
    }
    
    input:focus {
      border-color: #fff;
      /* background: #fff; */
      box-shadow: 0 0 5px rgba(0, 86, 210, 0.3);
    }
  
    input::placeholder {
      color: #293a70;
      font-size: 13px;
    }
  
  .submit-btn {
    /* background: #0056d2;
    color: #fff;
    padding: 10px;
    border: none;
    width: 100%;
    margin-top: 10px;
    border-radius: 4px;
    cursor: pointer; */
  }

  
  .consent-text {
    font-size: 10px;
    margin-top: 10px;
    color: #121e3e;
    font-weight: 300;
    text-align: center;
  }
  
  /* Hide Form */
  .sticky-form.hidden {
    transform: translateX(100%);
  }
  
  .show-form-btn {
    position: fixed;
    top: 30%;
    right: -45px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    transform: rotate(90deg);
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    z-index: 99;
    /* display: none; */
    /* animation: vibrate 0.3s ease infinite; */
    animation-delay: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-play-state: running;
  }

  .animate-vibration{
    animation: vibrate 0.3s ease infinite;
  }
  
  .animate-zoom{
    animation: ZoomIn 2s ease infinite;
  }

  .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); }
    }

  @keyframes ZoomIn {
    0% {
      transform: scale(0.9);
      /* opacity: 0.8; */
      }
      50% {
        transform: scale(1);
        /* opacity: 1; */
      }
      100%{
        transform: scale(0.9);
        /* opacity: 0.8; */
      }

  }
  
  .form-icons {
      display: flex;
      justify-content: space-around;
      margin-top: 20px;
      padding-top: 10px;
      border-top: 1px solid #ddd;
    }
    
    /* .form-icons a {
      background: #0056d2;
      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: #003fa6;
    } */
    
    
    
    
       /* 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(--secondary-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: 2px solid var(--secondary-color);
  border-radius: 4px;
}

.verify-btn {
  position: absolute;
  right: 8px;
  bottom: 20px;
  padding: 6px 12px;
  background: var(--secondary-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%;
  }
  
  

    

    
    
    
    

      /* 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: rgba(255, 255, 255, 0.986);
    backdrop-filter: blur(10px);
    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(--secondary-color);
  }
  
  .close-btn {
    position: absolute;
    top: 10px; right: 15px;
    font-size: 30px;
    cursor: pointer;
    color: var(--third-color);
  }

  .form_container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  .logo {
    width: 120px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    
  }
  
  .highlight {
    color: var(--third-color);
    font-weight: bold;
  }

  .form_container form{
    /* display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; */
    display: grid;
    align-content: center;
  }
  
  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: none;
    border-bottom: 2px solid var(--secondary-color);
    border-radius: 5px;
    background: transparent;
    color: var(--secondary-color);
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
    /* box-shadow: 0 4px 20px var(--primary-color-light); */
  }
  
  .form-group label {
    position: absolute;
    top: 50%;
    left: 15px;
    color: var(--secondary-color);
    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(--secondary-color-dark);
    background: var(--bg-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: absolute;
    right: -1px;
    top: -4px;
    height: 100%;
    width: 40px;
  }
  
  
  .captcha_canvas{
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    position: relative;
    top: 2px;
  }
  
  .captcha-box canvas {
    /* background: #f0f0f0; */
    margin-bottom: 5px;
    border: 2px solid var(--secondary-color);
    border-radius: 5px;
  }
  
  .captcha-box button {
    margin: 5px 0;
    padding: 5px 10px;
    cursor: pointer;
    background: var(--secondary-color);
    color: var(--primary-color-dark);
    border: none;
    border-radius: 5px;
    font-size: 14px;
    height: 40px;
    /* position: absolute;
    right: -1px;
    top: -4px; */
    /* border: 2px solid var(--secondary-color); */
  }
  
  .captcha-box input {
    width: 100%;
    padding: 8px;
    margin: 5px 0;
    box-sizing: border-box;
  }
  
  .btn {
    /* margin-top: 20px; */
    padding: 10px 20px;
    background-color: var(--secondary-color);
    border: none;
    color: white;
    text-decoration: none;
    border: 2px solid var(--secondary-color-light);
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
  }

  .btn:hover{
    background-color: var(--secondary-color-light);
    background: transparent;
    color: var(--secondary-color-light);
    border: 2px solid var(--secondary-color-light);
  }
  
  .consent {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 5px;
    font-size: 12px;
    text-align: left;
    margin: 10px 0;
  }
  
  .consent p{
    color: rgb(25, 38, 104);
    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;
  }

   /* Icon Animation */
   .animated-download {
    position: relative;
    animation: downloadMove .5s infinite ease-in-out;
  }
  
  @keyframes downloadMove {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(5px);
    }
    100% {
      transform: translateY(0);
    }
  }
  
  @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;
    }
  }
  




  .project-footer {
    background-color: var(--primary-color);
    color: var(--bg-color);
    font-size: 13px;
    padding: 20px;
    text-align: center;
    line-height: 1.6;
  }
  
  .project-footer a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
  }
  
  .project-footer a:hover {
    text-decoration: underline;
  }
  
  .project-footer p {
    margin: 10px 0;
  }
  
  .section-title{
    font-size: clamp(28px, 5vw, 40px);
    margin-bottom: 20px;
    font-weight: 600;
    /* border: 3px solid var(--secondary-color); */
    /* padding: 10px; */
    border-radius: 20px;
    color: var(--secondary-color);
    position: relative;
    z-index: 1;
  }

/* Hero Section */

.hero {
  display: flex;
  flex-direction: row;
  min-height: 100vh;
  width: 100%;
  background-color: var(--secondary-color);
  color: #fff;
  overflow: hidden;
}

.hero-image {
  width: 50%;
  background: url('assets/image/bg-banner.jpg') no-repeat center center/cover;
  /* clip-path: ellipse(100% 100% at 0% 50%); */
  overflow: hidden;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
}

.hero-content {
  width: 50%;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.bank-loan-container{
  background: var(--secondary-color-dark);
  color: goldenrod;
  font-weight: 800;
  display: flex;
  justify-content: center;
  align-items: center;gap: 10px;
  /* flex-direction: column; */
  font-size: 24px;
  align-self: flex-start;
  margin-bottom: 10px;
}


.hero-content h1 {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #fff;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.usp-list{
  width: 100%;
  margin-bottom: 20px;
  list-style: none;
}

.usp-list li {
  display: flex;
  align-items: flex-start;
  text-align: left;
  margin-bottom: 10px;
}
.usp-list li::marker {
  content: "<i class="fa-solid fa-hand-point-right"></i>";
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin-right: 10px;
}

.btn-enquire {
  display: inline-block;
  background-color: transparent;
  border: 2px solid #fff;
  padding: 12px 30px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-enquire:hover {
  background-color: #fff;
  color: var(--secondary-color);
}

/* === RESPONSIVENESS === */
@media (max-width: 991px) {
  .hero {
    flex-direction: column;
  }

  .hero-image {
    width: 100%;
    height: 50vh;
    /* clip-path: ellipse(100% 100% at 50% 0%); */
    border-radius: 0;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
  }

  .hero-content {
    padding: 40px 20px;
    text-align: center;
    width: 100%;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}





.price-section {
    /* background: var(--primary-color); */
    padding: 80px 20px;
    color: var(--dark-text-color);
    width: 100%;
  }
  
  .section-heading {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 40px;
  }

  .price-section-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  .price-table-wrapper {
    overflow-x: auto;
    margin-bottom: 40px;
    border: 2px solid var(--secondary-color);
    border-radius: 10px;
  }
  
  .price-table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
    border-radius: 10px;
    overflow-x: auto;
    overflow: hidden;
  }
  
  .price-table thead {
    background: var(--primary-color-dark);
  }
  
  .price-table th, .price-table td {
    padding: 20px;
    text-align: left;
    color: var(--dark-text-color);
  }
  
  .price-table th {
    color: var(--secondary-color);
    font-weight: bold;
  }
  
  .price-table tbody tr {
    border-top: 1px solid rgba(23, 11, 11, 0.714);
  }
  
  .price-table tbody tr:last-child {
    border-bottom: none;
  }

  @media screen and (max-width: 768px) {
    .price-table {
      display: block;
      border: none;
      background: transparent;
    }

    .price-table-wrapper{
      border: none;
      width: 100%;
    }
  
    .price-table thead {
      display: none;
    }
  
    .price-table tbody {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 20px;
      /* width: 100%; */
      padding: 20px;
    }
  
    .price-table tr {
      display: block;
      background: var(--primary-color);
      padding: 16px;
      border-radius: 10px;
      width: 100%;
      max-width: 500px;
      border-left: 2px solid var(--secondary-color);
      border-right: 2px solid var(--secondary-color);
      /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.738); */
    }
  
    .price-table td {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 8px 0;
      border: none;
      font-size: 15px;
      color: var(--bg-color);
    }
  
    .price-table td::before {
      content: attr(data-label);
      font-weight: bold;
      color: var(--secondary-color);
    }

    .price-table td:first-child {
      font-weight: bold;
      color: var(--secondary-color);
      font-size: 20px;
    }
  
    .price-table td:last-child {
      justify-content: center;
    }

    .more_disclaimer{
      display: none;
    }
  }



  
  .costing-box {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  .costing-box img {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  
  .full-btn {
    padding: 12px 24px;
    font-size: 1rem;
  }
  
    .price-btn {
      background: var(--primary-color);
      color: white;
      border: none;
      padding: 8px 16px;
      font-size: 14px;
      cursor: pointer;
      border-radius: 3px;
    }
    
    .price-btn:hover {
      background-color: var(--primary-color-dark);
    }
  
    .price-image {
      max-width: 450px;
      width: 100%;
      text-align: center;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 10px;
    }
    
    .price-image img {
        width: 100%;
        height: 250px;
        /* Fixed height */
        object-fit: cover;
        /* Ensures image covers the container */
        display: block;
        border: 1px solid #ccc;
    }
    .full-btn {
      margin-top: 10px;
      width: 100%;
    }
  
    .image-overlay-wrapper {
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      overflow: hidden;
      width: 100%;
    }
    
    .image-overlay-wrapper img {
        width: 100%;
        height: 250px;
        /* Same fixed height */
        object-fit: cover;
        display: block;
    }
    
    .image-overlay {
      position: absolute;
      bottom: 0%;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(50, 51, 55, 0.593);
      backdrop-filter: blur(5px);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: bottom 0.4s ease;
    }
  
    .image-overlay-wrapper:hover{
      cursor: pointer;
      box-shadow: 0 10px 25px rgba(51, 51, 51, 0.842);
    }
    
    .image-overlay-wrapper:hover .image-overlay {
      bottom: 0;
    }
    
    .overlay-btn {
      background: #fff;
      color: var(--secondary-color);
      border: none;
      padding: 10px 20px;
      font-weight: bold;
      border-radius: 25px;
      cursor: pointer;
      transition: 0.3s ease;
    }
    
    .overlay-btn:hover {
      background: var(--secondary-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: #012f0a51; */
      backdrop-filter: blur(10px);
      width: 100%;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      
      /* margin: 10px 20px; */
      /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);  */
  }

  .main-card-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    /* max-width: 1200px; */
    width: 100%;
  }









.project-highlights {
  background-color: var(--secondary-color);
  color: #fff;
  padding: 60px 20px;
  position: relative;
  width: 100%;
  margin-bottom: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.project-highlights::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  background: var(--secondary-color);
  height: 60px;
  /* clip-path: ellipse(100% 100% at 100% 0%); */
  border-bottom-right-radius: 150%;
  border-bottom-left-radius: 150%;
}

.container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.amenities-heading {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 20px;
  font-weight: 600;
}

.project-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  /* gap: 60px; */
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  margin-bottom: 50px;
}

@media(max-width: 768px){
  .project-details {
    justify-content: flex-start;
  }
}

.project-detail-bx{
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}

.project-details p {
  /* flex: 1 1 250px; */
  margin: 5px 0;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
}

.feature {
  text-align: center;
  max-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* flex-wrap: wrap; */
}

.feature img {
  width: 60px;
  margin-bottom: 10px;
  filter: brightness(0) invert(1);
}

.feature p {
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  color: #d3dce3;
}




.investment-section {
  display: flex;
  flex-wrap: wrap;
  padding: 0px 40px;
  min-height: 100vh;
  /* background: linear-gradient(to right, #e9f0f5 50%, var(--secondary-color) 50%); */
}

.investment-image {
  flex: 1;
  min-height: 400px;
  background: url('assets/image/bg-banner.jpg') no-repeat center center / cover;
}

.investment-content {
  flex: 1;
  padding: 60px 40px;
  background-color: var(--secondary-color);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.investment-content h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.5rem);
  margin-bottom: 20px;
}

.investment-content p {
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 20px;
}

.investment-content ul {
  list-style: disc inside;
  font-size: clamp(1rem, 1.1vw, 1.1rem);
}

.investment-content li {
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 10px;
}
@media (max-width: 768px) {
  .investment-section {
    flex-direction: column;
    background: var(--secondary-color);
  }

  .investment-image {
    height: 300px;
    width: 100%;
  }

  .investment-content {
    padding: 40px 20px;
  }
}







.growth-section {
  /* background-color: #e9f0f8; */
  padding: 80px 20px;
  text-align: center;
  width: 100%;
}

.growth-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  color: var(--secondary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.growth-container h2 {
  font-size: clamp(1.6rem, 3vw, 2.0rem);
  margin-bottom: 30px;
  font-weight: 600;
  font-style: "IBM Plex Serif", serif;
}

.growth-container p {
  font-size: clamp(0.8rem, 1.2vw, 0.9rem);
  line-height: 1.8;
  margin-bottom: 40px;
  color: var(--dark-text-color);
}

.download-btn {
  background: linear-gradient(to right, #d68f3d, #3e240c);
  color: #fff;
  padding: 12px 30px;
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}




.gallery {
	/* height: 100vh; */
  width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: #c0c7e3;
	background: url('assets/image/bg-banner.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
  position: relative;
}

.gallery::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	/* z-index: 0; */
}

.about-title {
	font-size: 7.5rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: -0.02em;
	position: absolute;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
	pointer-events: none;
	white-space: nowrap;
	font-family: "Arial Black", "Arial Bold", Arial, sans-serif;
	background: linear-gradient(
		to bottom,
		var(--secondary-color) 30%,
		rgb(255 255 255 / 0%) 76%
	);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.carousel-container {
	width: 100%;
	max-width: 1200px;
	height: 450px;
	position: relative;
	perspective: 1000px;
	margin-top: 80px;
}

.carousel-track {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	transform-style: preserve-3d;
	transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card {
	position: absolute;
	width: 480px;
	/* height: 340px; */
  aspect-ratio: 12/7;
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	cursor: pointer;
}

.card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card.center {
	z-index: 10;
	transform: scale(1.1) translateZ(0);
  border: 2px solid var(--secondary-color);
}

.card.center img {
	filter: none;
}

.card.left-2 {
	z-index: 1;
	transform: translateX(-400px) scale(0.8) translateZ(-300px);
	opacity: 0.7;
}

.card.left-2 img {
	filter: grayscale(100%);
}

.card.left-1 {
	z-index: 5;
	transform: translateX(-200px) scale(0.9) translateZ(-100px);
	opacity: 0.9;
}

.card.left-1 img {
	filter: grayscale(100%);
}

.card.right-1 {
	z-index: 5;
	transform: translateX(200px) scale(0.9) translateZ(-100px);
	opacity: 0.9;
}

.card.right-1 img {
	filter: grayscale(100%);
}

.card.right-2 {
	z-index: 1;
	transform: translateX(400px) scale(0.8) translateZ(-300px);
	opacity: 0.7;
}

.card.right-2 img {
	filter: grayscale(100%);
}

.card.hidden {
	opacity: 0;
	pointer-events: none;
}

.member-info {
	text-align: center;
	/* margin-top: 40px; */
	transition: all 0.5s ease-out;
}

.member-name {
	color: var(--secondary-color);
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 10px;
	position: relative;
	display: inline-block;
}

.member-name::before,
.member-name::after {
	content: "";
	position: absolute;
	top: 100%;
	width: 100px;
	height: 2px;
	background: var(--secondary-color);
}

.member-name::before {
	left: -120px;
}

.member-name::after {
	right: -120px;
}

.member-role {
	color: var(--secondary-color-light);
	font-size: 1.5rem;
	font-weight: 500;
	opacity: 0.8;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 10px 0;
	margin-top: -15px;
	position: relative;
}

.member-testimonial{
	color: rgb(255, 255, 255);
	font-size: 1.2rem;
	line-height: 1.6;
	max-width: 600px;
	margin: 20px auto;
	padding: 0 20px;
	text-align: center;
	opacity: 0.9;
}

.dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 20px;
	z-index: 1;
  margin-bottom: 20px;
}

.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(8, 42, 123, 0.2);
	cursor: pointer;
	transition: all 0.3s ease;
}

.dot.active {
	background: var(--secondary-color);
	transform: scale(1.2);
}

.nav-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(8, 42, 123, 0.6);
	color: white;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 20;
	transition: all 0.3s ease;
	font-size: 2rem;
	border: none;
	outline: none;
	font-weight: 700;
	padding-bottom: 8px;
}

.nav-arrow:hover {
	background: var(--secondary-color);
	transform: translateY(-50%) scale(1.1);
}

.nav-arrow.left {
	left: 20px;
	padding-right: 3px;
}

.nav-arrow.right {
	right: 20px;
	padding-left: 3px;
}

@media (max-width: 768px) {
	.about-title {
		font-size: 4.5rem;
	}
	
	body{
		width: 100vw;
		overflow-x: hidden;
	}

	.card {
		width: 280px;
		height: 200px;
	}

	.card.left-2 {
		transform: translateX(-250px) scale(0.8) translateZ(-300px);
	}

	.card.left-1 {
		transform: translateX(-120px) scale(0.9) translateZ(-100px);
	}

	.card.right-1 {
		transform: translateX(120px) scale(0.9) translateZ(-100px);
	}

	.card.right-2 {
		transform: translateX(250px) scale(0.8) translateZ(-300px);
	}

	.member-name {
		font-size: 2rem;
	}

	.member-role {
		font-size: 1.2rem;
	}

	.member-name::before,
	.member-name::after {
		width: 50px;
	}

	.member-name::before {
		left: -70px;
	}

	.member-name::after {
		right: -70px;
	}
}




/* Image Popup Styles */
.image-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.image-popup.active {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.popup-image {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.close-popup-btn {
  position: absolute;
  top: 0px;
  right: 10px;
  color: white;
  font-size: 3rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--secondary-color);
}

.close-popup-btn:hover {
  color: var(--secondary-color-dark);
}

@media (max-width: 768px) {
  .popup-content {
    max-width: 95%;
  }
  
  .close-popup-btn {
    top: -30px;
    font-size: 2.5rem;
  }
}







.amenities {
  /* background-color: var(--secondary-color-light); */
  color: var(--bg-color);
  padding: 60px 20px;
  text-align: center;
  width: 100%;
  position: relative;
}

.amenities ul {
  --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;
  margin-top: 20px;
}
.amenities ul li {
  width: 10em;
  /* display: grid;
  grid-template:
    "role"
    "icon"
    "title"
    "descr";
  align-items: flex-start; */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  padding-block-end: calc(var(--flapH) + 1rem);
  text-align: center;
  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))
  );
  border: 2px solid goldenrod;
  transition: .3s ease-in-out;
}

.amenities ul li:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}


/* bar */
.amenities ul 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 */
.amenities ul li::after {
  content: "";
  grid-area: role;
  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);
}

.amenities ul li .icon,
.amenities ul li .title,
.amenities ul li .descr {
  padding-inline: 1rem;
  color: white;
  text-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.5);
}

.amenities ul li .title{
  font-weight: 600;
  font-size: 1.2rem;
  /* margin-top: 0.5rem; */
}

.amenities ul li .image{
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

.amenities ul li .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.amenitiesul li .icon {
  font-size: 3rem;
}
.amenitiesul li .title {
  font-size: 1.25rem;
  font-weight: 700;
}

.amenitiesul li .descr {
  font-size: 0.9rem;
}

.credits {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
}
.credits a {
  color: var(--color);
}




 .locations-section {
      padding: 40px 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      width: 100%;
      position: relative;
      background: url('assets/image/bg-banner.jpg') center center / cover no-repeat fixed;
      color: #fff;
      z-index: 1;
    }

    .locations-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.69);
      z-index: -1;
    }

    .locations-section h2 {
      text-align: center;
      font-size: 32px;
      margin-bottom: 30px;
    }

    .filters {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-bottom: 20px;
      flex-wrap: wrap;
    }

    .filters input {
      padding: 10px;
      font-size: 14px;
      width: 250px;
      border: none;
      outline: none;
    }

    .btn-group {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin: 20px 0;
      flex-wrap: wrap;
      background: white;
      padding: 10px;
      /* margin: auto 0; */
        width: 90%;
    }

    .btn-group button {
      padding: 10px 20px;
      background-color: #333;
      color: #fff;
      border: 1px solid #555;
      cursor: pointer;
      font-size: 14px;
      flex: 1;
      transition: all 0.3s;
    }

    .btn-group button.active,
    .btn-group button:hover {
      background-color: var(--secondary-color);
      border-color: var(--secondary-color);
    }

    .locations-container {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      max-width: 1200px;
      margin: auto;
      width :100%;
    }

    .locations-list {
      flex: 1;
      min-width: 300px;
      display: flex;
      justify-content: center;
      align-items: flex-start;
      flex-direction: column;
    }
    
    .location-item {
        padding: 15px 0;
        border-bottom: 1px solid #555;
        /* background: orange; */
        width: 100%;
        padding-left: 20px;
    }

    .location-item h4 {
      font-size: 18px;
      font-weight: bold;
    }

    .location-item p {
      margin: 5px 0;
      font-size: 14px;
    }

    .map-box {
      flex: 1;
      min-width: 300px;
      height: 500px;
      margin-top: 40px;
      border-radius: 10px;
      overflow: hidden;
      background: url('assets/image/map-view.webp') center center / cover no-repeat;
      box-shadow: 0px 4px 20px rgba(142, 142, 142, 0.566);
    }

    iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }







    .virtual-tour{
      padding: 40px 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      width: 100%;
      position: relative;
      /* background: url('assets/image/banner.webp') center center / cover no-repeat fixed; */
      color: var(--secondary-color);
      z-index: 1;
    }
    .video-container{
      max-width:800px;
      width: 100%;
      aspect-ratio: 16/9;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      border-radius: 5px;
      background: url('assets/image/bg-banner.jpg') center center / cover no-repeat;
      color: var(--secondary-color);
      z-index: 1;
      border: 10px solid black;
      margin-bottom: 100px;    
    }
    .video-container::before{
      content: 'M3M Sector 97, Noida';
      position: absolute;
      inset: 0;
      display: flex;
      justify-content: center;
      align-items: flex-end;
      padding-bottom: 40px;
      font-size: clamp(14px, 10vw, 20px);      
      background: rgba(0, 0, 0, 0.69);
      color: var(--text-color);
      backdrop-filter: blur(10px);
      z-index: -1;
    }

    .video-container i{
      font-size: clamp(24px, 10vw, 60px);
      color: red;
      background: var(--text-color);
      border-radius: 50%;;
    }

    .stand{
      max-width:300px;
      aspect-ratio: 1/1;
      width: 50vw;
      /* transform: translateY(-190px); */
      /* transition: .3s ease-in-out; */
      position: absolute;
      bottom: 0;
    }

    .virtual-tour-para{
      position: absolute;
      bottom: 20px;
      max-width: 1200px;
      text-align: center;
      margin: 10px;
    }

    @media(max-width: 548px){
      .stand{
        /* transform: translateY(-100px); */
        width: 150px;
        bottom: 60px;
      }
    }
    
    
    .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; }
}
