@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: #d08b45;
    --secondary-color-light: #fedca9;
    --secondary-color-dark: #563910;
    --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
    /* mix-blend-mode: difference; */
  }

  .logo .logo-text{
    font-size: 20px;
    font-weight: bold;
    margin-left: 5px;
    /* margin-top: 5px; */
  }
  
  .main-header.scrolled .logo img {
      max-height: 50px;
    }
  
    /* Desktop view */
  .nav-links {
      display: flex;
      gap: 0px;
    }
  
  .nav-links a {
    /* margin: 0 10px; */
    text-decoration: none;
    /* color: #002355; */
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 10px;
    border-radius: 5px;
    font-size: 14px;
    border: 2px solid transparent;
    gap: 5px;
    /* transition: all 0.2s ease; */
    /* background-color: var(--primary-color); */
  }
  
  .main-header.scrolled .nav-links a{
      color: var(--secondary-color-dark);
  }
  
  .main-header.scrolled .nav-links a:hover {
    background-color: var(--primary-color-dark);
    color: white;
  }
  .nav-links a:hover {
    background-color: var(--secondary-color-dark);
    border: 2px solid var(--secondary-color);
    color: white;
  }
  
  .nav-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .icon-btn {
    background: var(--secondary-color-dark);
    padding: 8px 10px;
    border-radius: 4px;
    display: flex;
    font-size: 14px;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--secondary-color);
    color: white;
    font-size: 16px;
    text-decoration: none;
  }
  
  .icon-btn:hover{
      background: var(--primary-color);
      color: var(--secondary-color);
  }

    .gradient-btn {
        position: relative;
        overflow: hidden;
        background: linear-gradient(to right, var(--secondary-color), var(--secondary-color-dark));
        border: none;
        padding: 10px 16px;
        border-radius: 8px;
        color: var(--bg-color);
        justify-content: center;
        display: flex;
        text-decoration: none;
        align-items: center;
        font-weight: 600;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

  .gradient-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shimmer 5s linear infinite;
  /* animation-delay: 3s; */
}


@keyframes shimmer {
  0% {
    left: -75%;
  }
  30% {
    left: 125%;
  }
  100%{
    left: 125%;
  }
}
  
  .gradient-btn:hover {
    transform: scale(1.05);
  }
  .gradient-btn:active{
    border: 2px solid var(--text-color);
  }

  .threeD-btn{
    box-shadow: 3px 1px 0px var(--secondary-color-dark),
    3px 2px 0px var(--secondary-color-dark),
    3px 3px 0px var(--secondary-color-dark),
    3px 4px 0px var(--secondary-color-dark),
    3px 5px 0px var(--secondary-color-dark);
    transition: .3s ease;
  }

  .threeD-btn:hover{
    transform: scale(1);
    box-shadow: none;
    transform: translateY(4px);
  }

   .download-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 3px solid var(--text-color);
  border-radius: 2px;
  overflow: hidden;
  padding: 0px 2px;
  margin-right: 3px;
}

.downloading-animate {
  animation: downloading 1s linear infinite;
}

@keyframes downloading {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}

  
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 30px;
  }
  .hamburger span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    display: block;
    transition: all 0.3s cubic-bezier(.4,2,.6,1);
  }

    .hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  
  
  /* Responsive navbar for smaller device*/
  @media (max-width: 1024px) {
      .navbar-container {
          flex-direction: column;
          align-items: flex-start;
          background: transparent;
          backdrop-filter: blur(10px);
          /* z-index: 10000; */
        }
  
      .nav-links
     {
      position: static; /* fix for hidden links */
      width: 100%;
      /* background: #fff; */
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 10px 0px;
      display: flex;
      position: absolute;
      max-width: 300px;
      top: 65px;
      /* width: 100%; */
      transition: .3s ease;
      left: -100%;
      border-right: 2px solid var(--primary-color-light);
      background: rgba(255, 255, 255, 0.588);
    }

    .nav-buttons{
      /* position: static; */
      width: 100%;
      /* background: #fff; */
      /* flex-direction: column; */
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      padding: 10px 20px;
      /* display: none; */
    }

    .nav-buttons button{
      display: flex;
      justify-content: center;
      align-items: center;
      
    }
    
    .nav-buttons.inNav{
      display: flex;
      position: absolute;
      max-width: 300px;
      top: 355px;
      /* width: 100%; */
      transition: .3s ease;
      left: -100%;
      border-right: 2px solid var(--primary-color-light);
      border-bottom: 2px solid var(--primary-color-light);
      border-bottom-right-radius: 10px;
      background: rgba(255, 255, 255, 0.588);
    }
  
    .nav-links{
      gap: 0;
    }
    
      .nav-links a {
        /* margin: 10px 0; */
        padding: 10px 0;
        display: flex;
        justify-content: center;
        border-radius: 0px;
        width: 100%;
        border-bottom: 1px solid #9c9c9c;
        color: var(--dark-text-color);
      }

      .main-header{
        /* border-radius: 0px 0px 10px 10px; */
        border-bottom: 2px solid var(--secondary-color);
        /* box-shadow: 0px 5px 5px grey; */
      }
      
      .main-header.scrolled{
        /* border-radius: 0px 0px 10px 10px; */
        border-bottom: 2px solid var(--secondary-color);
        /* box-shadow: 0px 5px 5px grey; */
      }


      .main-header.scrolled .nav-links a{
        color: var(--secondary-color);
      }
      .main-header.scrolled .nav-links a:hover{
        color: var(--bg-color);
        background: var(--secondary-color);
      }
    
      .nav-buttons {
        gap: 10px;
        margin-top: 10px;
      }
    
      .main-header.nav-open .nav-links,
    .main-header.nav-open .nav-buttons {
      display: flex;
      left :0px;
      /* box-shadow: 1px 0px 10px black; */
      background: white;
    }

    .main-header.scrolled .nav-links{
      top: 62px;
    }
    .main-header.scrolled .inNav{
      top: 346px;
    }
  
    .nav-buttons{
      /* flex-direction: row; */
    }
  
    
      .hamburger {
        display: flex;
      }
  }

  /* 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;
  }

 
 /* 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: 30%;
    right: -45px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    transform: rotate(90deg);
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    z-index: 99;
    /* display: none; */
    /* animation: vibrate 0.3s ease infinite; */
    animation-delay: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-play-state: running;
  }

  .animate-vibration{
    animation: vibrate 0.3s ease infinite;
  }
  
  .animate-zoom{
    max-width: 250px;
    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;
  }

  .form_container h3{
    font-size: 26px;
  }
  
  .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;
    }
  }


   .thank-you-section{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 700px;
    flex-direction: column;
    border: 3px solid white;
    padding: 20px 40px;
    border-radius: 20px;
    background: transparent;
    backdrop-filter: blur(5px);
    box-shadow: 10px 10px 20px rgba(0,0,0,0.5);
}

.typing {
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: bold;
  border-right: 3px solid rgb(64, 100, 200);
  white-space: nowrap;
  overflow: hidden;
  width: 0;
  animation: typing 2s steps(20, end) forwards, blink 0.6s step-end infinite;
}

@keyframes typing {
  from { width: 0; }
  to { width: 9ch; } /* Length of "Thank You!" */
}

@keyframes blink {
  50% { border-color: transparent; }
}

.thank-you-section p {
  font-size: 1.6rem;
  margin-top: 20px;
  opacity: 0;
  animation: fadeReveal 1s 2s forwards;
}

.buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  animation: fadeReveal 1s 3s forwards;
}

.home-btn {
  margin-top: 30px;
  padding: 12px 30px;
  background: rgb(64, 100, 200);
  border: 2px solid #fff;
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 25px;
  transition: background 0.3s ease;
  opacity: 0;
  animation: fadeReveal 1s 3s forwards;
}

.home-btn:hover {
  background: rgb(16, 59, 179);
}

@keyframes fadeReveal {
  to { opacity: 1; }
}




.bank-loan-container{
  background: var(--secondary-color-dark);
  color: red;
  font-weight: 800;
  display: flex;
  justify-content: center;
  align-items: center;gap: 10px;
  /* flex-direction: column; */
  font-size: 24px;
}

.bank-loan-container span{
}





