@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: teal/emerald */
            --primary-color: #0b7ab7;      
            --primary-color-light: #62b5e2; 
            --primary-color-dark:  #01466b; 
            /* Secondary: orange/coral */
            --secondary-color: #1c4054;     
            --secondary-color-light: #2f6e8f;  
            --secondary-color-dark: #0e3043;  
            
            --third-color: #f4ab36; /* Accent: amber/gold */  
            --third-color-light: #f7c163;
            --third-color-dark: #c88719;

            /* Backgrounds & text for DARK THEME */
            --bg-color: #f9f8f4; 
            --body-color: #ffff;         
            --text-color: #0f0f0f;       
            --dark-text-color: #0e3043;    
            --light-text-color: #62b5e2;
        }


body{
    font-family: 'Jura', sans-serif;
    background-color: var(--body-color);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
    color: var(--secondary-color);
    /* height: 200vh; */
}

a{
    text-decoration: none;
    cursor: pointer;
}

.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    /* background: rgba(255, 255, 255, 0.251); */
    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: 60px;
    max-width: 150px;
    object-fit: contain;

    mix-blend-mode: darken;
  }

  .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: var(--secondary-color);
    /* color: var(--bg-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 {
    background: linear-gradient(to right, var(--primary-color), var(--primary-color-dark));
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    color: var(--bg-color);
    /* 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);
  }

  
  
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 30px;
    transition: all 0.3s cubic-bezier(.4,2,.6,1);
  }
  .hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color-light);
    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);
  }
  
  .main-header.scrolled .hamburger{
    top: 20px;
  }
  
  
  /* 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(--secondary-color-light);
      }

      .main-header{
        /* border-radius: 0px 0px 10px 10px; */
        border-bottom: 2px solid var(--secondary-color);
        /* box-shadow: 0px 5px 5px grey; */
        background: var(--bg-color);
      }

      .main-header .logo img{
        height: 40px;
      }
      
      .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;
      }
  }


  /* 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: 9999;
    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;
    }

    .stickyRefresh_captcha{
      position: absolute;
    right: -6px;
    top: -4px;
    /* border-radius: 5px; */
      /* top: 20px; */
      /* height: 100%; */
      /* width: 40px; */
    }
  
  .submit-btn {
    /* background:var(--secondary-color); */
    color: #fff;
    padding: 10px;
    border: none;
    width: 100%;
    margin-top: 10px;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .captcha-placeholder {
    background: #f2f2f2;
    padding: 20px;
    text-align: center;
    color: #777;
    font-size: 14px;
    border-radius: 4px;
    /* margin: 10px; */
  }
  
  .consent-text {
    font-size: 10px;
    margin-top: 10px;
    color: #121e3e;
    font-weight: 300;
    text-align: center;
  }
  
  /* Hide Form */
  .sticky-form.hidden {
    transform: translateX(100%);
  }
  
  .show-form-btn {
    position: fixed;
    top: 100px;
    right: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    /* background: var(--primary-color); */
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 8px 0 0 8px;
    cursor: pointer;
    z-index: 999;
    /* display: none; */
    animation: vibrate 0.3s ease infinite;
    animation-delay: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-play-state: running;
  }

  .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: #f5a623;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  display: none;
}

.otp-section {
  display: none;
  gap: 10px;
  margin-bottom: 15px;
   position: relative;
}

.otp-section input {
  flex: 1;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.verify-btn {
  position: absolute;
  right: 8px;
  bottom: 20px;
  padding: 6px 12px;
  background: #f5a623;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  /*display: none;*/
}

/* Validation states */
.verified {
  border: 2px solid #4CAF50 !important;
}

.not-verified {
  border: 2px solid #f44336 !important;
}

/*For popup Otp Section*/

 .form-group-row{
    display: flex;
    width :100%;
    align-items: center;
    justify-content: center;
    gap: 10px;
    /* flex-wrap: wrap; */
  }

  .form-group-row .form-group{
    width: 100%;
  }

  .form-group-row .form-group input{
    width: 100%;
  }

  .form-group-row .btn{
    padding: 10px 6px;
    width: 50%;
  }
  
  

    
    
    
    

      /* Overlay Styles */
.overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    padding: 10px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  
  .overlay.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }
  
  .popup {
    background: var(--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;
    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;
    padding: 30px;
    background: var(--secondary-color);
  }
  
  .popup .illustration h2{
    font-size: 24px;
    /* text-align: left; */
    color: var(--body-color);
    /* margin-bottom: 10px; */
  }
  
  .illustrate-item{
    width: 100%;;
    /* height: 60px; */
    display: flex;
    justify-content: flex-start;
    align-items: center;
    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(--body-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;
    background: var(--bg-color);
    padding: 20px;
  }
  
  .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: rgba(255, 255, 255, 0.986);
    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: var(--primary-color);
    color: white;
    border: none;
    padding: 12px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
  }
  
  .register-btn:hover{
    background: var(--primary-color-dark);
  }
  
  .bottom-call {
    margin-top: 20px;
    background: var(--primary-color);
    color: white;
    padding: 10px;
    font-weight: bold;
  }
  
  .bottom-call:hover{
    background: var(--primary-color-dark);
  }

   /* 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;
      border-radius: 8px;
    }

    .form_container{
      padding: 20px;
    }
    
    .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 {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* background-color: rgba(0, 0, 0, 0.285); */
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 2.5rem;
    border-radius: 10px;
    margin-left: 5%;
    max-width: 650px;
    animation: slideInUp 1s ease-out;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.17);
    color: var(--bg-color);
}

.hero-content .sub-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--bg-color);
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.hero-content h3{
  color: var(--bg-color);
  font-weight: 400;
  margin-bottom: 1rem;
}

.hero-content .main-heading {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.3rem, 4vw, 3.5rem);
    text-transform: uppercase;
    line-height: 1.1;
    color: var(--third-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.6rem;
}

.description-list {
    margin-bottom: 2rem;
}

.description-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.description-list li {
    font-size: clamp(0.8rem, 3vw, 1.1rem);
    line-height: 1.8;
    color: var(--bg-color);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    position: relative;
    text-align: left;
    padding-left: 20px;
}

.description-list li:before {
    content: '•';
    color: var(--primary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -10px;
}

.hero-section .stat-tiles {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-bottom: 2rem;
}

.hero-section .stat-item {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    /* flex: 1; */
    /* flex-basis: 100; */
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 10px;
}

.hero-section .stat-item .stat-number {
    display: block;
    font-size: clamp(1.2rem, 5vw, 2rem);
    font-weight: 700;
    color: var(--third-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section .stat-item .stat-label {
    display: block;
    font-size: clamp(1.2rem, 5vw, 2rem);
    font-weight: 300;
    letter-spacing: 1px;
    color: var(--bg-color);
}

.cta-button {
    background-color: var(--third-color);
    color: var(--bg-color);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid var(--third-color);
    border-radius: 5px;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--third-color-dark);
    box-shadow: 0 0 15px rgba(184, 134, 11, 0.5);
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section{
    padding-top: 80px; 
  }
    .hero-content {
        text-align: left;
        max-width: 90%;
        margin: 0 auto;
        padding: 2rem;
    }
    .hero-overlay {
        background: rgba(17, 17, 17, 0.8);
    }
    .main-heading {
        /* font-size: 3rem; */
    }
    .stat-tiles {
        flex-direction: column;
        align-items: center;
    }
}



          .container {
            width: 100%;
            max-width: 1200px;
            margin: auto;
            padding: 0 1.5rem;
        }


        .about-section {
            padding: 5rem 0;
        }

        .about-container {
            display: flex;
            align-items: center;
            position: relative;
            min-height: 600px;
        }

        .about-image-wrapper {
            width: 50%;
            height: 500px;
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
        }
        
        .about-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .about-content {
            width: 55%;
            background-color: var(--bg-color);
            padding: 3rem;
            position: relative;
            z-index: 2;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        
        .about-content .sub-heading {
            font-family: 'Oswald', sans-serif;
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }

        .about-content .main-heading {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(2.3rem, 4vw, 3.5rem);
            font-weight: 700;
            line-height: 1.2;
            color: var(--dark-text-color);
            margin-bottom: 1.5rem;
        }

        .about-content .description {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--text-color);
            margin-bottom: 2rem;
        }

        .about-stats {
            display: flex;
            gap: 2rem;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 2px solid var(--primary-color);
        }
        
        .stat-item .stat-number {
            font-family: 'Oswald', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        
        .stat-item .stat-label {
            font-size: 1rem;
            color: var(--text-color);
            font-weight: 500;
        }

        @media (max-width: 992px) {
            .about-container {
                flex-direction: column;
                min-height: auto;
            }
            .about-image-wrapper {
                position: relative;
                width: 100%;
                height: 300px;
                transform: none;
                margin-bottom: 2rem;
            }
            .about-content {
                width: 100%;
                text-align: center;
            }
            .about-stats {
                justify-content: center;
            }
        }






        .amenities-section {
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }
        
        .amenities-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(10%) brightness(0.5);
            z-index: 1;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            z-index: 2;
        }

        .section-title .sub-heading {
            font-family: 'Oswald', sans-serif;
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .section-title .main-heading {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(2.3rem, 4vw, 3.5rem);
            font-weight: 700;
            line-height: 1.2;
            color: white;
        }

        .amenities-container {
            position: relative;
            z-index: 2;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
        }

        .amenity-card {
            background: rgba(26, 26, 26, 0.7);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(209, 210, 210, 0.2);
            padding: 2.5rem;
            text-align: center;
            transition: all 0.3s ease;
            width: 100%;
            max-width: 280px;
        }
        
        .amenity-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-color);
            background: rgba(210, 210, 210, 0.1);
        }

        .amenity-card .icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            transition: transform 0.3s ease;
        }
        
        .amenity-card:hover .icon {
            transform: scale(1.1) rotate(-5deg);
        }

        .amenity-card h3 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--bg-color);
            text-transform: uppercase;
        }

        .amenity-card p {
            font-size: 1rem;
            line-height: 1.6;
            color: var(--light-text-color);
        }






         .gallery-section {
            position: relative;
            height: 85vh;
            max-height: 800px;
            margin: 3rem 0;
        }

        .gallery-center {
            position: absolute;
            top: 70%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            z-index: 10;
            width: 100%;
            max-width: 500px;
            padding: 2.5rem;
            background: rgba(26, 26, 26, 0.85);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
            border: 1px solid var(--primary-color-dark);
        }

        .gallery-center h2 {
            font-size: 2.2rem;
            margin-bottom: 1rem;
            color: var(--primary-color-light);
        }

        .gallery-section .section-title .main-heading {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(2.3rem, 4vw, 3.5rem);
            font-weight: 700;
            line-height: 1.2;
            color: var(--dark-text-color);
        }

        .gallery-center p {
            margin-bottom: 1.8rem;
            color: var(--light-text-color);
            line-height: 1.8;
        }

        .cta-button {
            display: inline-block;
            padding: 14px 35px;
            background: linear-gradient(135deg, var(--secondary-color), var(--secondary-color-dark));
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.4s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
            letter-spacing: 1px;
        }

        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(230, 126, 34, 0.5);
        }

        .semicircle-gallery {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .gallery-item {
            position: absolute;
            width: 220px;
            height: 160px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            z-index: 1;
            border: 3px solid var(--primary-color-dark);
        }

        .gallery-item:hover {
            transform: scale(1.15);
            z-index: 20;
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
            border-color: var(--primary-color-light);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-item::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 30%;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover::after {
            opacity: 1;
        }

        .item-title {
            position: absolute;
            bottom: 10px;
            left: 0;
            width: 100%;
            text-align: center;
            color: white;
            font-weight: 600;
            z-index: 2;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.3s ease;
            font-size: 0.9rem;
            padding: 0 10px;
        }

        .gallery-item:hover .item-title {
            opacity: 1;
            transform: translateY(0);
        }

        /* Positioning the gallery items in a semicircle with proper spacing */
        .gallery-item:nth-child(1) {
            top: 15%;
            left: 8%;
            transform: rotate(-20deg);
        }

        .gallery-item:nth-child(2) {
            top: 5%;
            left: 22%;
            transform: rotate(-12deg);
        }

        .gallery-item:nth-child(3) {
            top: 0%;
            left: 35%;
            transform: rotate(-5deg);
        }

        .gallery-item:nth-child(4) {
            top: 0%;
            right: 35%;
            transform: rotate(5deg);
        }

        .gallery-item:nth-child(5) {
            top: 5%;
            right: 22%;
            transform: rotate(12deg);
        }

        .gallery-item:nth-child(6) {
            top: 15%;
            right: 8%;
            transform: rotate(20deg);
        }

        /* Mobile layout - flexbox */
        .mobile-gallery {
            display: none;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin: 2rem 0;
        }

        .mobile-item {
            width: calc(50% - 20px);
            height: 180px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
            transition: all 0.3s ease;
            border: 3px solid var(--primary-color-dark);
            position: relative;
        }

        .mobile-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: .3s ease;
        }

        .mobile-title {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            text-align: center;
            color: white;
            font-weight: 600;
            z-index: 2;
            padding: 10px;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
        }




        /* Responsive adjustments */
        @media (max-width: 1100px) {
            .gallery-item {
                width: 200px;
                height: 140px;
            }
            
            .gallery-item:nth-child(1) {
                left: 5%;
            }
            
            .gallery-item:nth-child(6) {
                right: 5%;
            }
        }

        @media (max-width: 900px) {
            .gallery-item {
                width: 170px;
                height: 120px;
            }
            
            .gallery-item:nth-child(1) {
                left: 3%;
            }
            
            .gallery-item:nth-child(6) {
                right: 3%;
            }
            
            .gallery-center {
                max-width: 90%;
            }
        }

        @media (max-width: 768px) {
            .gallery-section {
                display: none;
            }
            
            .mobile-gallery {
                display: flex;
            }
            
            .gallery-center {
                position: relative;
                top: auto;
                left: auto;
                transform: none;
                margin: 2rem auto;
                max-width: 100%;
            }

            .mobile-item{
                cursor: pointer;
            }

            .mobile-item:hover img{
                transform: scale(1.1);
            }

        }

        @media (max-width: 576px) {
            .mobile-item {
                width: 100%;
                height: 200px;
            }
            
            .gallery-center {
                padding: 1.5rem;
            }
            
            .gallery-center h2 {
                font-size: 1.8rem;
            }
            
            .gallery-center p {
                font-size: 1rem;
                margin-bottom: 1.5rem;
            }
            
            .cta-button {
                padding: 12px 30px;
                font-size: 1rem;
            }
        }





        .price-section {
            padding: 5rem 0;
            width: 100%;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title .sub-heading {
            font-family: 'Oswald', sans-serif;
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--secondary-color);
            margin-bottom: 0.5rem;
        }

        .price-section .section-title .main-heading {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(2.3rem, 4vw, 3.5rem);
            font-weight: 700;
            line-height: 1.2;
            color: var(--dark-text-color);
        }

        .price-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
        }

        .price-card {
            background-color: var(--bg-color);
            border: 1px solid #e0e0e0;
            text-align: center;
            width: 100%;
            max-width: 300px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
        }
        
        .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .price-card-header {
            padding: 2rem;
        }
        
        .price-card-header .unit-type {
            font-family: 'Oswald', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--dark-text-color);
            text-transform: uppercase;
        }
        
        .price-card-body {
            padding: 2.5rem 2rem;
            background-color: var(--secondary-color);
        }

        .price-card-body .unit-price {
            font-family: 'Oswald', sans-serif;
            font-size: 2.3rem;
            font-weight: 700;
            color: var(--bg-color);
            /* margin-bottom: 2rem; */
        }
        
        .price-card-body .unit-price span {
            font-size: 1rem;
            font-weight: 400;
            color: var(--bg-color);
            display: block;
        }
        
        .feature-list {
            list-style: none;
            padding: 0;
            margin: 0 0 2rem 0;
            margin-top: 20px;
            color: var(--bg-color);
        }
        
        .feature-list li {
            margin-bottom: 0.8rem;
        }
        
        .price-action-btn {
            background-color: var(--bg-color);
            color: var(--secondary-color);
            padding: 1rem 2.5rem;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
            display: inline-block;
            border: 2px solid var(--bg-color);
            text-transform: uppercase;
        }

        .price-action-btn:hover {
            background-color: transparent;
            color: var(--bg-color);
        }
        
        /* Featured Card */
        .price-card.featured {
            border-color: var(--third-color);
        }
        .price-card.featured .price-card-body {
            background-color: var(--third-color);
        }
        .price-card.featured .unit-price {
            color: var(--bg-color);
        }
        .price-card.featured .unit-price span,
        .price-card.featured .feature-list {
            color: rgba(255,255,255,0.8);
        }
        .price-card.featured .price-action-btn {
            background-color: var(--bg-color);
            color: var(--third-color-dark);
            border-color: var(--bg-color);
        }
        .price-card.featured .price-action-btn:hover {
            background-color: transparent;
            color: var(--bg-color);
        }






        .plans-section {
            padding: 5rem 2rem;
            background-color: var(--body-color);
        }

        .plans-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-header h2 {
            font-family: 'Oswald', sans-serif;
            font-size: 3rem;
            color: var(--dark-text-color);
            margin-bottom: 0.5rem;
        }
        
        .section-header p {
            font-size: 1.1rem;
            color: var(--text-color);
            max-width: 600px;
            margin: 0 auto;
        }

        .plan-tabs {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .tab-btn {
            background-color: transparent;
            color: var(--text-color);
            padding: 0.8rem 1.8rem;
            border: 2px solid var(--primary-color-dark);
            cursor: pointer;
            font-size: 1rem;
            font-weight: 700;
            transition: all 0.3s ease;
        }

        .tab-btn.active {
            background-color: var(--primary-color);
            color: var(--bg-color);
            border-color: var(--primary-color);
        }
        
        .tab-btn:hover:not(.active) {
            background-color: var(--primary-color-dark);
            color: var(--bg-color);
        }

        .plan-content {
            display: none;
            animation: fadeIn 0.6s ease;
        }
        
        .plan-content.active {
            display: block;
        }
        
        .plan-details {
            display: flex;
            gap: 2rem;
            align-items: center;
            background-color: var(--bg-color);
            padding: 2rem;
        }
        
        .plan-image {
            flex: 1 1 60%;
        }
        
        .plan-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .plan-info {
            flex: 1 1 40%;
        }

        .plan-info h3 {
            font-family: 'Oswald', sans-serif;
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .plan-info p {
            color: var(--text-color);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .details-list {
            list-style: none;
            padding: 0;
            margin-bottom: 2rem;
        }
        
        .details-list li {
            padding: 0.5rem 0;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--text-color);
        }

        .details-list i {
            color: var(--primary-color);
        }

        .download-btn {
            background-color: var(--secondary-color);
            color: var(--bg-color);
            padding: 0.8rem 1.8rem;
            text-decoration: none;
            cursor: pointer;
            font-weight: 700;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .download-btn:hover {
            background-color: var(--secondary-color-dark);
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @media (max-width: 768px) {
            .plan-details {
                flex-direction: column;
            }
            .section-header h2 {
                font-size: 2.5rem;
            }
        }









        .location-section {
          width: 100%;
          color: var(--dark-text-color);
            max-width: 1200px;
            margin: auto;
            padding: 5rem 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title .sub-heading {
            font-size: 1rem;
            font-weight: 600;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 0.5rem;
        }

        .location-section .section-title .main-heading {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.3rem, 4vw, 3.5rem);
            font-weight: 700;
            line-height: 1.2;
            color: var(--dark-text-color);
        }

        .location-container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 3rem;
        }

        .tab-buttons {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    border-bottom: 2px solid #ddd;
}

.tab-button {
    background-color: transparent;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.tab-button:hover {
    color: var(--primary-color);
}

.tab-button.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

        .location-content, .location-map-wrapper {
            width: 100%;
        }

        @media (min-width: 992px) {
            .location-content {
                flex: 1;
                max-width: 45%;
            }
            .location-map-wrapper {
                flex: 1.5;
            }
        }

        .location-content h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--dark-text-color);
            margin-bottom: 1rem;
        }
        
        .location-content p {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--text-light);
            margin-bottom: 2rem;
        }

        .advantages-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .advantages-list li {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            font-size: 1.1rem;
            font-weight: 500;
        }
        .advantages-list .icon {
            font-size: 1.5rem;
            color: var(--primary-color);
            width: 30px;
        }
        
        .location-map-wrapper {
            border: 1px solid var(--border-color);
            padding: 1rem;
            background-color: #fff;
            box-shadow: 0 15px 30px rgba(0,0,0,0.05);
        }

        .location-map-wrapper img {
            width: 100%;
            height: auto;
            display: block;
        }





        /* Virtual Tour */

        .virtual-tour-section {
            padding: 5rem 0;
            
        }

        .section-title {
            text-align: center;
            font-family: 'Jura', sans-serif;
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--primary-color-dark);
            margin-bottom: 3rem;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--primary-color);
        }

        .virtual-tour-section .section-title .main-heading {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.3rem, 4vw, 3.5rem);
            font-weight: 700;
            line-height: 1.2;
            color: var(--dark-text-color);
        }

        .video-player-wrapper {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            width: 100%;
            max-height: 600px;
            border-radius: 15px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        
        .video-thumbnail-container {
            position: relative;
            width: 100%;
            /* max-width: 800px; */
            /* height: 600px; */
            aspect-ratio: 16 / 9;
            /* padding-bottom: 56.25%; */
            /* height: 0; */
        }
        
        .video-thumbnail {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .video-player-wrapper:hover .video-thumbnail {
            transform: scale(1.05);
        }

        .video-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(8, 80, 113, 0.8) 10%, transparent 60%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 2rem;
            text-align: left;
        }
        
        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 5rem;
            color: rgba(255, 255, 255, 0.85);
            text-shadow: 0 0 30px rgba(0,0,0,0.5);
            transition: all 0.3s ease;
        }
        
        .video-player-wrapper:hover .play-button {
            transform: translate(-50%, -50%) scale(1.1);
            color: #ffffff;
        }

        .video-overlay h3 {
            margin: 0 0 0.5rem 0;
            font-family: 'Jura', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--bg-color);
            text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
        }
        
        .video-overlay p {
            margin: 0;
            font-size: 1.1rem;
            color: var(--body-color);
            line-height: 1.5;
            max-width: 70%;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
        }
  
  
section{
  width: 100%;
}

  .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-dark);
    text-decoration: none;
    font-weight: bold;
  }
  
  .project-footer a:hover {
    text-decoration: underline;
  }
  
  .project-footer p {
    margin: 10px 0;
  }
  



  .whatsapp-float-btn{
    display: none;
    position: fixed;
    bottom: 0px;   
    left: 50%;         
    transform: translateX(-50%); 
    background-color: #25D366;
    color: white;
    width: 60px;
    /* height: 60px; */
    /* display: flex; */
    align-items: center;
    flex: 1;
    justify-content: center;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: background-color 0.3s ease;
  }

  .wp-btn{
    width: 60px;
    /* height: 60px; */
    padding: 10px;
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
    color: white;
    text-decoration: none;
    /* font-size: 30px; */
  }

  @media (max-width: 768px) {
    .whatsapp-float-btn{
      display: flex;
    }
  }
  
  
  
  
  
  .thank-you-section{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 700px;
    flex-direction: column;
    border: 3px solid var(--secondary-color);
    padding: 20px 40px;
    border-radius: 20px;
    background: 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;
  color: var(--third-color);
  border-right: 3px solid var(--primary-dark-color);
  white-space: nowrap;
  overflow: hidden;
  width: 0;
  animation: typing 2s steps(20, end) forwards, blink 0.6s step-end infinite;
}

@keyframes typing {
  from { width: 0; }
  to { width: 9ch; } /* Length of "Thank You!" */
}

@keyframes blink {
  50% { border-color: transparent; }
}

.thank-you-section p {
  font-size: 1.6rem;
  margin-top: 20px;
  opacity: 0;
  animation: fadeReveal 1s 2s forwards;
  text-align: center;
}

.buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  animation: fadeReveal 1s 3s forwards;
}

.buttons a{
  text-decoration: none; 
}

.home-btn {
  margin-top: 30px;
  padding: 12px 15px;
  background: var(--primary-dark-color);
  border: 2px solid #fff;
  color: #fff;
  font-size: clamp(14px , 2vw, 20px);
  text-decoration: none;
  border-radius: 25px;
  transition: background 0.3s ease;
  opacity: 0;
  animation: fadeReveal 1s 3s forwards;
}

.home-btn:hover {
  background: var(--primary-color);
}

@keyframes fadeReveal {
  to { opacity: 1; }
}
  