@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: #020e20;
    --secondary-color: #3f52ff;
    --secondary-color-light: #a9cffe;
    --secondary-color-dark: #102056;
    --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);
    /* color: var(--secondary-color); */
    /* height: 200vh; */
}

a{
  text-decoration: none;
}

.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: 150px;
  }

  .logo .logo-text{
    font-size: 20px;
    font-weight: bold;
    margin-left: 5px;
    color: var(--secondary-color);
    /* 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;
  }

  .nav-buttons button{
    display: flex;
    justify-content: center;
    align-items: center;
    
  }
  
  .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;
  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%;
  }
}


  .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 20px;
      display: none;
    }

    .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.inNav{
      display: none;
      
    }
  
    .nav-links{
      gap: 0;
    }
    
      .nav-links a {
        /* margin: 10px 0; */
        padding: 10px 0;
        display: flex;
        justify-content: center;
        border-radius: 0px;
        width: 100%;
        border-bottom: 1px solid #9c9c9c;
        color: var(--bg-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;
    }
  
    .nav-buttons{
      /* flex-direction: row; */
    }
  
    
      .hamburger {
        display: flex;
      }
  }

  .bottom-nav-buttons{
    position: fixed;
    bottom: 0;
    z-index: 2;
     display: flex;
    justify-content: center;
    align-items: center;
    /* flex-direction: row; */
    gap: 10px;
    width: 100%;
    background: var(--bg-color);
    padding: 5px;
    display: none;
  }

  .bottom-nav-buttons .gradient-btn{
    display: flex;
    justify-content: center;
    align-items: center;    
    width: 30%;
    animation-play-state: paused;
  }

  .bottom-nav-buttons .gradient-btn span{
    display: none;
  }

  @media(max-width: 498px){
    .bottom-nav-buttons{
      display: flex;
    }
  }

  


    /* 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);
    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: 50%;
    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: 1px solid #ddd;
  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.953); */
    background: var(--secondary-color);
    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;
    padding: 10px;
    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: 20px;
    background: var(--secondary-color);
  }
  
  .popup .illustration h2{
    font-size: 24px;
    /* text-align: left; */
    color: var(--text-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);
  }

  .form_container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 16px;
    border-radius: 5px;
     background: var(--bg-color);
     box-shadow: 0px 0px 10px #333;
  }
  
  .logo {
    width: 180px;
    /* margin-bottom: 10px; */
    display: flex;
    justify-content: center;
    align-items: flex-end;
    
  }
  
  .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(--secondary-color-dark);
    background: var(--bg-color);
    border-radius: 10px;
  }
  
  
  
  .phone-field {
    display: flex;
    gap: 10px;
  }
  
 
  .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;
    }
  }


     /* Hero Section */
    .hero {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 0px 20px;
      /* padding-top: 60px; */
      gap: 40px;
      min-height: 100vh;
      /* background-color: var(--bg-dark-color); */
      position: relative;
      background: url('assets/image/4.webp') center center / cover no-repeat fixed;
      color: #fff;
      z-index: 1;
      /* background-color: rgba(0, 0, 0, 0.875); */
      /* background: url('assets/image/banner.webp') no-repeat center center/cover; */
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.69);
      z-index: -1;
    }

  

    .hero-content {
      max-width: 650px;
      /* width: 50%; */
      margin-left: 40px;
      display: flex;
      justify-content: center;
      align-items: flex-start;
      flex-direction: column;
      gap: 20px;
      z-index: 2;
    }

    .hero-content h1{
      font-size: clamp(1.6rem, 6vw, 3rem);
    }

    .hero-content p{
      font-size: clamp(1rem, 3vw, 1.3rem);
    }

    .hero-content p i{
      color: var(--secondary-color);
    }

    .tagline {
      background-color: var(--secondary-color);
      display: inline-block;
      padding: 6px 12px;
      border-radius: 999px;
      font-weight: bold;
      /* margin-bottom: 20px; */
    }

    .hero h1 {
      /* font-size: 40px; */
      /* margin-bottom: 20px; */
      text-align: left;
      color: var(--text-color);
    }
    
    .highlight {
        color: var(--secondary-color);
    }
    
    .hero p {
        color: #ccc;
        /* margin-bottom: 20px; */
        text-align: left;
    }

    ul.features {
      list-style: none;
      margin-bottom: 20px;
      display: flex;
      justify-content: center;
      align-items: flex-start;
      flex-direction: column;
      color: var(--text-color);
      gap: 5px;
    }

    ul.features li i{
        color: var(--secondary-color);
    }

    /* ul.features li::before {
      content: '✔️ ';
      margin-right: 8px;
    } */

    .hero-buttons {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .hero-buttons .explore-btn {
      background-color: var(--secondary-color);
      padding: 12px 24px;
      color: white;
      border-radius: 6px;
      font-weight: bold;
      text-decoration: none;
      /* border: 2px solid var(--secondary-color); */
      transition: .3s ease;
    }
    
    .hero-buttons .explore-btn:hover{   
        box-shadow: 0px 0px 10px var(--secondary-color);
    }

    .hero-buttons .call-btn {
      font-weight: bold;
      border: 2px solid var(--secondary-color);
      border-radius: 5px;
      padding: 10px;
      color: var(--secondary-color);
      cursor: pointer;
      transition: .3s ease;
      background: transparent;
      backdrop-filter: blur(10px);
    }

    .hero-buttons .call-btn:hover{
      background: var(--secondary-color);
      box-shadow:0px 0px 10px var(--secondary-color);
      color: var(--text-color);
    }

    .hero-image {
      position: relative;
      max-width: 700px;
      /* aspect-ratio: 12/9; */
      z-index:2;
    }
    
    .hero-image img {
        width: 100%;
        height: 60vh;
        /* aspect-ratio: 12/9; */
        border-radius: 16px;
        border: 2px solid var(--secondary-color);
        box-shadow: 0px 5px 10px var(--secondary-color);
    }

    .stat-box {
      position: absolute;
      background-color: #33333364;
      backdrop-filter: blur(10px);
      color: var(--text-color);
      padding: 15px;
      border-radius: 10px;
      font-size: 14px;
      border: 2px solid var(--secondary-color)
    }

    .stat-box strong {
      color: var(--secondary-color);
      font-size: 18px;
    }

    .stat-top {
      top: -20px;
      right: 20px;
    }

    .stat-bottom {
      bottom: -20px;
      left: 20px;
    }

     /* Responsive */
    @media (min-width: 768px) {
      .hero {
        flex-direction: row;
        justify-content: space-between;
      }
    /* .hero-content {
        text-align: center;
      } */
      .hero-buttons {
        justify-content: center;
      }
    }

    @media (max-width: 768px) {
        
      .hero{
        padding-top: 80px;
      }
      .hero-content{
        margin-left: 0px;
        width: 100%;
        justify-content: center;
        align-items: center;
      }
      .hero-content h1{
        text-align: center;
      }
      .hero-content p{
        text-align: center;
      }
      .hero-buttons {
        justify-content: center;
      }
      .hero-image img{
        height: 40vh;
      }
    }





    .gallery-section{
    padding: 40px 20px;
    background: #fffced76;
    backdrop-filter: blur(10px);
    margin: 10px 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.section-title{
    text-align: center;
    margin-bottom: 2rem;
    font-size: 42px;
    font-size: clamp(24px, 5vw, 42px);
    color: var(--secondary-color);
    text-transform: uppercase;
    /* text-shadow:
    1px 1px 0 var(--secondary-color-dark),
    2px 2px 0 var(--secondary-color-dark),
    3px 3px 0 var(--secondary-color-dark); */
    /* 4px 4px 0 var(--secondary-color-dark),
    5px 5px 0 var(--secondary-color-dark); */
    position: relative;
    display: flex;
    text-align: center;
}

/* .section-title::before{
    content: '';
    display: block;
    position: absolute;
    width: 60px;
    height: 4px;
    left: -80px;
    top:25px;
    background: var(--secondary-color);
}

.section-title::after{
    content: '';
    display: block;
    position: absolute;
    width: 60px;
    height: 4px;
    right: -80px;
    top:25px;
    background: var(--secondary-color);
} */


.gallery-imgs{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.gallery-imgs .gal-img-con{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
  }

  .gal-img-con h4{
    color: var(--dark-text-color);
    font-size: 20px;
    max-width: 280px;
  }

  .gal-img-con p{
    color: var(--dark-text-color);
  }

.gallery-imgs img{
    width: 100%;
    max-width: 300px;
    min-width: 120px;
    aspect-ratio: 16/9;
    /* border-left: 5px solid var(--primary-color);
    border-right: 5px solid var(--primary-color); */
    /* border-radius: 10px; */
    object-fit: cover;
    cursor: pointer;
    transition: 0.3s ease;
}

.gallery-imgs img:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 15px #000ba0f8;
}

.gallery-imgs:hover img:not(:hover) {
    /* filter: opacity(0.7) blur(5px); */
    transition: filter 0.3s ease;
}

.gallery-imgs img {
    transition: 0.3s ease;
}


/* Overlay Styles */
.overlay-gal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    cursor: pointer;
}

.overlay-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    position: absolute;
    border-radius: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.gal-close-btn {
    position: absolute;
    top: 15px;
    right: 5px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.close-btn:hover {
    color: #bbb;
}

.nav-btn {
  position: absolute;
  z-index: 1001;
  background: var(--secondary-color);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 5px;
}
.prev-btn {
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

.next-btn {
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.play-pause-btn {
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}


.nav-btn:hover {
    background-color: rgba(255, 255, 255, 0.4);
}




.hospitality-section {
  padding: 40px 20px;
    background: #fffced76;
    backdrop-filter: blur(10px);
    margin: 10px 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
}

.hospitality-container {
  /* max-width: 1200px; */
  width: 100%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

@media(max-width: 1024px){
    .hospitality-container{
        flex-direction: column;
    }
    .hospitality-left{
        width: 100%;
    }
}

.hospitality-left {
  /* flex: 1 1 45%; */
  width: 45%;
  /* min-width: 500px; */
  /* height: 800px; */
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 60px;
}

.image-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
  
}

.main-img {
  width: 100%;
  border-radius: 16px;
  /* aspect-ratio: 12/7; */
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.room-img {
  width: 70%;
  position: absolute;
  bottom: -120px;
  right: -20px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  border: 4px solid #fff;
}

@media(max-width: 1024px){
    .hospitality-container{
        flex-direction: column;
    }
    .hospitality-left{
        width: 100%;
    }
    .room-img{
        
    }
    .hospitality-left{
      padding-bottom: 100px;
    }
}



.badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #8e724f;
  color: white;
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.badge span {
  line-height: 1.2;
}

.hospitality-right {
  flex: 1 1 50%;
}

.sub-heading {
  text-transform: uppercase;
  color: #a18c7d;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
}

.hospitality-right h2 {
  font-size: 32px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.description {
  color: #5c5147;
  line-height: 1.6;
  margin-bottom: 16px;
}

.features {
  /* display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px; */
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  /* max-width: 400px; */
  width: 100%;
  gap: 20px;
  margin: 30px 0;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature div{
  text-align: left;
}

.feature .icon {
  background: #efe7de;
  color: #3d2b1f;
  padding: 10px;
  border-radius: 10px;
  font-size: 18px;
}

.feature .icon i{
  color: var(--secondary-color);
}

.cta-btn {
  background: #8e724f;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: #735e3e;
}




.new-section {
  padding: 40px 20px;
    background: #fffced76;
    backdrop-filter: blur(10px);
    margin: 10px 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.new-section .new-cards {
  /* display: grid;
  grid-template-columns: repeat(3, 1fr); */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 70px;
  justify-items: center;
  width: 100%;
}

.new-section  .new-card {
  background-color: #fff;
  padding: 5px;
  border-radius: 6px;
  box-shadow: 3px 3px 0px var(--secondary-color);
  text-align: center;
  max-width: 330px;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid var(--secondary-color);
}

.new-card:hover {
  transform: translateY(5px);
  box-shadow: none;
}

.icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #1e2246;
  /* margin-bottom: 15px; */
  gap: 10px;
}

.icon i {
  /* height: 64px; */
  /* width: 64px; */
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  /* font-size: 30px; */
  font-size: clamp(16px, 5vw, 20px);
}

.fa-paintbrush {
  background: linear-gradient(to right, var(--secondary-color), var(--secondary-color-dark));
  color: var(--text-color);
}

.fa-code {
  background: linear-gradient(to right, var(--secondary-color), var(--secondary-color-dark));
  color: var(--text-color);
}

.fa-cog {
  background: linear-gradient(to right, var(--secondary-color), var(--secondary-color-dark));
  color: var(--text-color);
}

.fa-user-group {
  background: linear-gradient(to right, var(--secondary-color), var(--secondary-color-dark));
  color: var(--text-color);
}

.fa-clipboard {
  background: linear-gradient(to right, var(--secondary-color), var(--secondary-color-dark));
  color: var(--text-color);
}

.fa-graduation-cap {
  background: linear-gradient(to right, var(--secondary-color), var(--secondary-color-dark));
  color: var(--text-color);
}

.new-section .title {
  font-size: 18px;
  font-size: clamp(14px, 5vw, 18px);
  font-weight: 600;
  margin: 0;
}

/* Default state for .count (not selected) */
.count,
.count:visited {
  display: block;
  text-decoration: none;
  color: #1e2246;
  border: 1px solid #c2c5e2;
  border-radius: 8px;
  padding: 10px 30px;
  margin-top: 40px;
  transition: background-color 0.3s ease;
}

/* Hover state */
.count:hover {
  background-color: #f1f5fe;
}

/* Selected state */
.count.selected {
  background-color: #1e2246;
  color: #fff;
  border: 2px solid #c2c5e2;
  transform: scale(1.05);
  transition: all 0.3s ease;
}

.footer {
  max-width: 845px;
  width: 100%;
  margin-bottom: -30px;
}

/* Responsive Design for Medium Screens (980px) */
@media (max-width: 980px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .card {
    /* padding: 30px; */
    max-width: 280px;
  }

  .icon {
    font-size: 2rem;
    gap: 8px;
  }

  .title {
    font-size: 1.1rem;
  }

  .count {
    font-size: 0.9rem;
  }
}

/* Responsive Design for Smaller Screens (768px and below) */
@media (max-width: 768px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 20px;
  }
}

/* Extra Small Screen Adjustments */
@media (max-width: 480px) {
  .container {
    padding: 30px;
  }

  h1 {
    font-size: 28px;
  }

  .card {
    padding: 15px;
  }

  .title {
    font-size: 1rem;
  }

  .count {
    padding: 8px 20px;
    font-size: 0.8rem;
  }
}



/* Section Styling */
.price-section {
    padding: 40px 20px;
    background: #fffced76;
    backdrop-filter: blur(10px);
    margin: 10px 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .price-card-container{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    gap: 2rem;
  }

  @media (max-width: 768px) {
    .price-card-container {
      flex-direction: column;
      align-items: center;
    }
  }

  .price-title{
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
  }
  
  /* Individual Card */
  .price-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 30px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    width: 300px;
    transition: transform 0.3s ease;
  }
  
  .price-card:hover {
    transform: translateY(-5px);
  }
  
  /* Badge */
  .badge {
    display: inline-block;
    background-color: #333;
      color: var(--text-color);
      padding: 15px;
      border-radius: 10px;
      font-size: 14px;
      border: 2px solid var(--secondary-color)
  }

  .badge i{
    color: var(--secondary-color);
  }
  
  /* Price Text */
  .price {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin: 10px 0;
  }
  
  .price sup {
    font-size: 16px;
    vertical-align: super;
  }
  
  /* Area Info */
  .area-label {
    font-size: 14px;
    color: #777;
    margin: 10px 0;
  }
  
  .area {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin-bottom: 20px;
  }
  
  /* Button */
  .enquire-btn {
    background-color: #004aad;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .enquire-btn:hover {
    background-color: #00348a;
  }

  /* From Uiverse.io by Smit-Prajapati */ 
.parent {
  max-width: 400px;
  max-height: 400px;
  /* width: 400px; */
  width: 100%;
  padding: 20px;
  aspect-ratio: 1/1;
  perspective: 1000px;
}

.card {
  padding-top: 50px;
  /* border-radius: 10px; */
  border: 3px solid rgb(255, 255, 255);
  transform-style: preserve-3d;
  background: linear-gradient(135deg,#0000 18.75%,#f3f3f3 0 31.25%,#0000 0),
      repeating-linear-gradient(45deg,#f3f3f3 -6.25% 6.25%,#ffffff 0 18.75%);
  background-size: 60px 60px;
  background-position: 0 0, 0 0;
  background-color: #f0f0f0;
  width: 100%;
  /* box-shadow: rgba(142, 142, 142, 0.3) 0px 30px 30px -10px; */
   box-shadow: -5px 5px 20px rgb(0, 18, 136);
  transition: all 0.5s ease-in-out;
}

.card.animate-hover {
  background-position: -100px 100px, -100px 100px;
  transform: rotate3d(0.5, 1, 0, 30deg);
}



.content-box {
  /* background: rgba(250, 123, 4, 0.732); */
  background: var(--secondary-color);
  /* border-radius: 10px 100px 10px 10px; */
  transition: all 0.5s ease-in-out;
  padding: 60px 25px 25px 25px;
  transform-style: preserve-3d;
  width: 100%;
  max-width: 500px;
  /* min-width: 300px; */
}

.content-box .card-title {
  display: inline-block;
  color: white;
  font-size: 25px;
  font-weight: 900;
  transition: all 0.5s ease-in-out;
  transform: translate3d(0px, 0px, 50px);
}

.content-box .card-title:hover {
  transform: translate3d(0px, 0px, 60px);
}

.content-box .card-content {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 700;
  color: #f2f2f2;
  transition: all 0.5s ease-in-out;
  transform: translate3d(0px, 0px, 30px);
}

.content-box .card-content:hover {
  transform: translate3d(0px, 0px, 60px);
}

.content-box .see-more {
  cursor: pointer;
  margin-top: 1rem;
  display: inline-block;
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--secondary-color);
  /* border-radius: 5px; */
  background: white;
  padding: 0.5rem 0.7rem;
  transition: all 0.5s ease-in-out;
  transform: translate3d(0px, 0px, 20px);
}

.content-box .see-more:hover {
  transform: translate3d(0px, 0px, 60px);
}

.date-box {
  position: absolute;
  top: 30px;
  right: 30px;
  height: 60px;
  width: 60px;
  background: white;
  border: 1px solid var(--secondary-color);
  /* border-radius: 10px; */
  padding: 10px;
  transform: translate3d(0px, 0px, 80px);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 17px 10px -10px;
}

.date-box span {
  display: block;
  text-align: center;
}

.date-box .month {
  color: var(--secondary-color-dark);
  font-size: 9px;
  font-weight: 700;
}

.date-box .date {
  font-size: 28px;
  font-weight: 900;
  color: var(--secondary-color-dark);
}

.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-dark-color);
  }

  .price-image {
    max-width: 400px;
    width: 100%;
    text-align: center;
    position: relative;
    /* background: var(--body-color); */
    transition: .3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  .price-image:hover ~ image-overlay-wrapper{
    transform: translateY(5px);
    box-shadow: 0px 0px 10px #333;
  }
  
  .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;
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* width: 100%; */
  }
  
  .image-overlay-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 12/8;
    overflow: hidden;
    border: 2px solid var(--secondary-color);
    transition: .3s ease;
  }
  
  .image-overlay-wrapper img {
      width: 100%;
      /* height: 250px; */
      height: 100%;
      /* 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.5s 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: linear-gradient(to right, var(--secondary-color), var(--secondary-color-dark));
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    color: var(--text-color);
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .overlay-btn:hover {
    /* transform: scale(1.05); */
  }

  .sub-title {
    text-align: center;
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 40px;
  }

  .site-plan-section{
    padding: 40px 20px;
    background: #fffced76;
    backdrop-filter: blur(10px);
    margin: 10px 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.main-card-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    /* flex-direction: column; */
    gap: 50px;
    margin-top: 20px;
}





.locations-section {
      padding: 40px 20px;
      /* margin: 10px 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: #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: var(--secondary-color);
      padding: 10px;
      /* margin: auto 0; */
        width: 90%;
        max-width: 300px;
    }

    .btn-group button {
      padding: 10px 20px;
      background-color: var(--dark-text-color);
      color: #fff;
      border: 1px solid var(--dark-text-color);
      cursor: pointer;
      font-size: 14px;
      flex: 1;
      transition: all 0.3s;
    }

    .btn-group button.active,
    .btn-group button:hover {
      background-color: transparent;;
      border-color: var(--bg-color);
    }

    .locations-container {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      max-width: 1200px;
      /* margin: auto; */
      width :100%;
    }

    @media (max-width: 768px){
      .locations-container{
        flex-direction: column;
      }
    }


    .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 i{
      color: var(--secondary-color);
    }

    .location-item p {
      margin: 5px 0;
      font-size: 14px;
    }

    .map-box {
      flex: 1;
      /* min-width: 300px; */
      max-height: 500px;
      margin-top: 40px;
      border-radius: 10px;
      overflow: hidden;
      position: relative;
    }

    .map-box img{
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .map-box::before{
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      background: rgba(110, 110, 110, 0.3);
      backdrop-filter: blur(5px);
      width: 100%;
      height: 100%;
      z-index: 1;
    }

    iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }


    .brands-section {
      padding: 40px 20px;
      /* margin: 10px 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: #fff;
      z-index: 1;
    }

    .brands-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.69);
      z-index: -1;
    }

  .slider-wrapper {
  width: 100%;
  padding: 5px;
  display: flex;
  /* align-items: center; */
  justify-content: center;
  gap: 20px;
  padding: 20px 20px;
  flex-direction: column;
  overflow: hidden;
  border: 2px solid #ccc;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  /* background: green; */

}

.card-slider {
  display: flex;
  transition: transform 0.2s linear;
  will-change: transform;
  cursor: grab;
  /* background: red; */
}

.card-slider.dragging {
  cursor: grabbing;
}


.brand-card {
  min-width: 100px;
  width: 100%;
  max-width: 200px;
  height: 120px;
  margin-right: 10px;
  /* background: var(--primary-color); */
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border-radius: 8px;
  flex-shrink: 0;
}

.brand-card img{
  height: 100%;
  /* border: 2px dotted var(--primary-color); */
  /* aspect-ratio: 12/7; */
  /* mix-blend-mode: color-burn; */
}

.navigation-buttons{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 10px;
}

#prevBtn, #nextBtn {
  background: var(--primary-color);
  color: white;
  border: none;
  font-size: 1rem;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* aspect-ratio: 1/1; */
  border-radius: 10px;
  position: absolute;
  padding: 10px;
  cursor: pointer;
  z-index: 1;
}

#prevBtn{
  left: 10px;
  top: 60px;
}

#nextBtn{
  right: 10px;
  top: 60px;
}


@media(max-width: 768px){
  .brand-card {
    min-width: 80px;
    width: 100%;
    max-width: 150px;
  }
}






.price-section {
    /* background: var(--primary-color); */
    padding: 80px 20px;
    /* color: var(--text-color); */
    color: black;
  }
  
  .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-light);
  }
  
  .price-table th, .price-table td {
    padding: 20px;
    text-align: left;
    color: var(--dark-text-color);
  }
  
  .price-table th {
    color: white;
    font-weight: bold;
  }
  
  .price-table tbody tr {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .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(--text-color);
    }
  
    .price-table td::before {
      content: attr(data-label);
      font-weight: bold;
      color: var(--secondary-color);
    }

    .price-table td:first-child {
      font-weight: bold;
      color: var(--secondary-color);
      font-size: 20px;
    }
  
    .price-table td:last-child {
      justify-content: center;
    }

    .more_disclaimer{
      display: none;
    }
  }
  
  
  .gradient-btn {
    background: linear-gradient(to right, var(--secondary-color), var(--secondary-color-dark));
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    color: #fff;
    /* display: flex; */
    justify-content: center;
    text-decoration: none;
    align-items: center;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .gradient-btn:hover {
    transform: scale(1.05);
  }



    .virtual-tour-section {
    position: relative;
    padding: 50px 20px;
    background: var(--bg-color);
    margin: 10px 20px;
    /* border-radius: 5px; */
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); */
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  .video-wrapper {
    position: relative;
    width: 90%;
    max-width: 800px;
    max-height: 500px;
    margin: auto;
    border-radius: 10px;
    aspect-ratio: 12/7;
    overflow: hidden;
    border: 3px solid var(--secondary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.612);
  }
  
  .video-thumb {
    width: 100%;
    /* height: 100%; */
    border-radius: 10px;
    aspect-ratio: 12/9;
  }
  
  .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.186);
    color: white;
    backdrop-filter: blur(5px);
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
  }
/* 
  .play-btn::before{
    content: '';
    position: absolute;
    top: 40px;
    left: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    animation: pulse 1.5s infinite;
    z-index: -1;
  } */

  .play-btn i{
    font-size: clamp(25px, 5vw, 60px);
    /* position: relative;
    top: 35px;
    left: 40px; */
    /* width: 80px;
    height: 80px; */
    color: var(--secondary-color);
    animation: pulse 1.5s infinite;
    background: white;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding: 10px; */
  }
  
  @keyframes pulse {
    0% { transform:scale(1); opacity: 1; }
    50% { transform:scale(1.1); opacity: 0.7; }
    100% { transform:scale(1); opacity: 1; }
  }

  @media (max-width: 420px) {
    .play-btn i{
      /* color: blue; */
      left: 20px;
      top: 25px;
    }
  }

  .video-title{
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 22px;
    font-size: clamp(10px, 2vw, 22px);
    color: #fff;
    text-shadow: 0 0 8px #000;
    z-index: 2;
    color: var(--bg-color);
  }
  
  .video-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 22px;
    font-size: clamp(10px, 2vw, 22px);
    color: #fff;
    text-shadow: 0 0 8px #000;
    z-index: 1;
  }



    .faq {
      padding: 40px 20px;
      /* margin: 10px 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: #fff;
      z-index: 1;
    }

    .faq::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.69);
      z-index: -1;
    }

  .accordion {
    padding: 10px;
    width: 100%;
    max-width: 1024px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    /* box-shadow: 0px 0px 20px rgb(140, 4, 171); */
    /* background: green; */
  }
  
  .accordion-item {
    /* border-bottom: 2px solid #514a4a; */
    width: 100%;
  }
  
  .accordion-title {
    /* background: #efefef; */
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-color);
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    border-bottom: 1px solid var(--secondary-color);
  }
  
  .accordion-title:hover {
    background: var(--secondary-color);
    /* color: var(--dark-text-color); */
  }
  
  .accordian-icon {
    font-size: 1.5em;
    transition: transform 0.3s;
    color: var(--text-color);
  }
  
  .accordion-content {
    max-height: 0;
    overflow: hidden;
    /* background-color: #efefef; */
    transition: max-height 0.3s ease-in-out, padding 0.3s;
    padding: 0 1em;
    width: 100%;
  }
  
  .accordion-content p {
    margin: 0;
    padding: 1em 0;
    font-size: 0.9em;
    line-height: 1.5;
    width: 100%;
    color: #ffffff;
  }
  
  


.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: orangered;
    text-decoration: none;
    font-weight: bold;
  }
  
  .project-footer a:hover {
    text-decoration: underline;
  }
  
  .project-footer p {
    margin: 10px 0;
  }
  

  @media(max-width: 768px){
    .nav-btn{
        font-size: 1rem;
    }
  }