
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Oswald:wght@500&display=swap");

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root{
    --golden-gradient: linear-gradient(135deg, #FFD700, #FFEA00);
    --primary-color: #ecad29;
    --primary-color-light: #fcf043;
    --primary-color-dark: #997d00;
    --secondary-color: #2b2711;
    --secondary-color-light: #aaff5f;
    --secondary-color-dark: #0d7438;
    --third-color: #e74c3c;
    --third-color-light: #ec7063;
    --third-color-dark: #80170c;
    --text-color: #333;
    --background-color: #f0f0f0;
}

body{
    font-family: 'Poppins', sans-serif;
    background-color: #0f0f0f;
    color: #fff;
    /* height: 200vh; */
    /* font-size: 12px; */
    /* position: relative; */
    /* overflow: hidden; */
    overflow-x: hidden;
    font-family: "Inter", sans-serif;
}

@keyframes ZoomIn {
  0% {
    transform: scale(0.9);
    /* opacity: 0.8; */
    }
    50% {
      transform: scale(1);
      /* opacity: 1; */
    }
    100%{
      transform: scale(0.9);
      /* opacity: 0.8; */
    }

}


.gradient-gold-text {
    background: linear-gradient(45deg, #C9990A, #FFD700, #C9990A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
  }
  

.gradient-gold-bg {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-light), var(--primary-color), var(--primary-color-light));
    background-size: 300% 300%;
    animation: shine 5s infinite;
  }
  
  @keyframes shine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  

.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: #2b2711a5;
    font-family: Copperplate, "Copperplate Gothic Light", fantasy;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.568);
    border-bottom: 2px solid var(--primary-color);
    border-radius: 0px 0px 10px 10px;
    transition: all 0.3s ease;
    z-index: 999;
  }
  
  .main-header.scrolled {
    /* background: var(--background-color); */
    background: #2b2711;
      /* background: var(--primary-color); */
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      /* 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: 10px;
    }
  
  .nav-links a {
    /* margin: 0 10px; */
    text-decoration: none;
    /* color: #002355; */
    color: var(--primary-color);
    /* background: linear-gradient(45deg, #C9990A, #FFD700, #C9990A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold; */
    font-weight: 500;
    font-size: 12px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 10px;
    border-radius: 5px;
    gap: 5px;
    /* transition: all 0.2s ease; */
    /* background-color: var(--primary-color); */
  }
  
  .main-header.scrolled .nav-links a{
      color: var(--primary-color);
  }
  
  .main-header.scrolled .nav-links a:hover {
      color: var(--text-color);
    background: var(--golden-gradient);
  }
  .nav-links a:hover {
      color: var(--text-color);
      /* background: var(--primary-color); */
    background: var(--golden-gradient);
  }
  
  .nav-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .visit-btn {
    /* background: linear-gradient(135deg, #FFD700, #FFEA00); */

    color: var(--text-color);
    padding: 6px 10px;
    position: relative;
    border: none;
    border-radius: 4px;
    flex-wrap: nowrap;
    cursor: pointer;
    font-size: 12px;
    text-decoration: none;
    border: 2px solid var(--primary-color);
    overflow: hidden;
  }
  
  .visit-btn:hover {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
  }
  
 i{
    /* margin-right: 10px; */
    font-size: 14px;
    /* text-decoration: underline; */
  }
  
  .icon-btn {
    background: var(--primary-color-dark);
    padding: 8px 10px;
    border-radius: 4px;
    display: flex;
    font-size: 16px;
    align-items: center;
    justify-content: center;
    /* border: 2px solid var(--primary-color); */
    color: white;
    font-size: 16px;
    text-decoration: none;
  }
  
  .icon-btn:hover{
      background: white;
      color: var(--primary-color-dark);
  }

  

  .download-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-right: 10px; */
    font-size: 14px;
    gap: 4px;
    font-weight: 700;
    /* overflow: hidden; */
  }

  .download-btn .arrow{
    background: transparent;
    width: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 2px;
    border-bottom: 3px solid var(--text-color);
  }
  
  .download-btn .arrow i{
    animation: downloading 1s infinite linear;
  }

  .download-btn:hover .arrow{
    background: transparent;
    width: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 3px solid var(--primary-color);
  }
  
 
  @keyframes downloading {
    0% {
      transform: translate(0px ,-22px);
    }
    100%{
      transform: translate(0px, 18px);
    }
  }
  
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 28px;
    z-index: 110; /* ensure above nav */
  }
  .hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    display: block;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(.4,2,.6,1);
    position: relative;
  }

  .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);
  }

  .floating-contact {
    position: fixed;
    bottom: 50px;
    right: 20px;
    display: flex;
    border:2px solid var(--primary-color);
    flex-direction: column;
    border-radius: 30px;
    gap: 5px;
    backdrop-filter: blur(10px);
    padding: 2px;
    z-index: 999;
  }
  
  .contact-btn {
    width: 40px;
    height: 40px;
    /* background-color: var(--primary-color); */
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    border: 2px solid var(--primary-color);
    align-items: center;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
    text-decoration: none;
  }
  
  .contact-btn.phone {
    /* background-color: var(--primary-color); */
  }

  .contact-btn.phone:hover{
    background: linear-gradient(45deg, #C9990A, #FFD700, #C9990A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    font-weight: 500;
  }
  
  .contact-btn:hover {
    transform: scale(1.1);
    background-color: transparent;
    background: linear-gradient(45deg, #C9990A, #FFD700, #C9990A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    font-weight: 500;

  }

  .phone-download{
    display: none;
  }

  .phone-download.active{
    display: none;
  }

  @keyframes ringing {
    0%{
      rotate: 1deg;
    }
    50%{
      rotate:-1deg;
    }
    100%{
      rotate:1deg;
    }
  }
  
  
  /* Responsive navbar for smaller device*/
  @media (max-width: 1024px) {
      .navbar-container {
          flex-direction: column;
          align-items: flex-start;
          background: #2b2711a5;
          /* z-index: 10000; */
        }
  
      .nav-links,
    .nav-buttons {
      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-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(--primary-color);
      }
      
      .main-header.scrolled{
        /* border-radius: 0px 0px 10px 10px; */
        border-bottom: 2px solid var(--primary-color-dark);
      }

      .main-header.scrolled .nav-links a{
        color: var(--primary-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;
    }

    .phone-download{
      display: flex;
      position: absolute;
      top: 20px;
      right: 40px;
      scale: 0.8;
    }
  
    
      .hamburger {
        display: flex;
      }
  }
  

  
  .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: absolute;
    top: 120px;
    left: 50px;
    max-width: 350px;
    width: 100%;
    background: #2b2711be;
    /* background: var(--primary-color); */
    backdrop-filter: blur(10px);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.415);
    z-index: 100;
    padding: 20px;
    transition: transform 0.3s ease;
    border: 2px solid var(--primary-color);
    /* border-radius: 0px 8px 8px 0px; */
    border-radius: 10px;
  }
  
  .form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .form-header .logo {
    /* width: 180px; */
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 50px;
    width: 100%;
  }
  .form-header span{
    color: whitesmoke;
  }
  
  #toggleFormBtn {
    background: none;
    position: absolute;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: var(--primary-color);
    top: 10px;
    right: 20px;
    display: none;
  }
  
  /* Add these styles to your existing CSS */
.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;
  transition: all 0.3s ease;
}
.otp-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.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;
}
  
  input {
      width: 100%;
      padding: 12px 15px;
      margin: 10px 0;
      border: none;
      /* border-bottom: 1px solid #fffcfc; */
      border-radius: 6px;
      color: var(--primary-color);
      background: transparent;
      border-bottom: 2px solid var(--primary-color);
      font-size: 14px;
      transition: all 0.3s ease;
      outline: none;
    }
    
    input:focus {
      border: 2px solid var(--primary-color);
      background: var(--secondary-light-color);
      box-shadow: 0 0 5px rgba(182, 210, 0, 0.3);
    }
  
    input::placeholder {
      color: var(--primary-color-dark);
      font-size: 13px;
    }
  
  .submit-btn {
    /* background: var(--primary-color); */
    color: var(--secondary-color);
    padding: 10px;
    border: none;
    width: 100%;
    margin-top: 10px;
    border-radius: 4px;
    cursor: pointer;
  }

  .submit-btn:hover{
    background: var(--primary-color-dark)
  }
  
  .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: #8b8e6e;
    font-weight: 300;
    text-align: center;
  }
  
  /* Hide Form */
  .sticky-form.hidden {
    transform: translateX(-400px);
  }

  .sticky-form .captcha-box {
    display: flex;
    justify-content: center;
    align-items: center;
    /* flex-direction: row-reverse; */
    margin-top: 10px;
    text-align: left;
  }
  
  .sticky-form .captcha-box div{
    position: relative;
  }
  
  
  
  .sticky-form .captcha-box div .refresh_captcha{
    position: absolute;
    /* top: -20px; */
    /* height: 100%; */
    width: 40px;
    /* right: 18px; */
    /* top: 241px; */
  }
  
  .sticky-form .captcha_canvas{
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    position: relative;
    top: 2px;
  }
  
  .sticky-form .captcha-box canvas {
    /* background: #f0f0f0; */
    /* margin-bottom: 5px; */
    border: 2px solid var(--primary-color);
    border-radius: 5px;
  }
  
  .sticky-form .captcha-box button {
    margin: 5px 0;
    /* padding: 5px 10px; */
    cursor: pointer;
    background: var(--primary-color);
    color: white;
    width: 40px;
    border: none;
    border-radius: 3px;
    font-size: 14px;
    height: 40px;
    /* position: absolute;
    right: 128px;
    top: 241px; */
    /* border: 2px solid var(--primary-color); */
  }
  
  .sticky-form .captcha-box input {
    width: 100%;
    padding: 10px;
    /* margin: 5px 0; */
    box-sizing: border-box;
  }

  
  
  .show-form-btn {
    position: absolute;
    top: 140px;
    left: -2px;
    display: flex;
    gap: 5px;
    justify-content: space-around;
    align-items: center;
    /* background: var(--primary-color); */
    color: var(--secondary-color);
    /* border: 2px solid var(--secondary-color); */
    border: none;
    /* font-size: 18px; */
    padding: 10px 15px;
    font-weight: 800;
    border-radius: 0px 8px 8px 0px;
    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;
    display :none;
  }
  
  .show-form-btn i{
      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); }
    }
  
  .form-icons {
      display: flex;
      justify-content: space-around;
      margin-top: 20px;
      padding-top: 10px;
      border-top: 1px solid #ddd;
    }
    
    .form-icons a {
      /* background: var(--primary-color); */
      color: var(--secondary-color);
      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: var(--primary-color-dark);
    }
  
      /* Overlay Styles */
.overlay {
  display: block;
  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 {
  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.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: 5px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  /* gap: 20px; */
  overflow-y: auto;
  box-shadow: var(--shadow);
  /* max-height: 90vh; */
  /* margin: 10px; */
}

.form-container{
  padding: 30px;
}






.popup .illustration{
  height: 100%;
  width: 200px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 40px;
  /* background: url(assets/img/m3m5.png); */
  padding-bottom: 20px;
  padding-left: 30px;
}

.popup .illustration h2{
  font-size: 24px;
  /* text-align: left; */
  color: var(--primary-color);
  /* margin-bottom: 10px; */
}

.illustrate-item{
  width: 100%;;
  /* height: 60px; */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
}

.illustrate-item img{
  width: 70px;
  height: 100%;
  object-fit: cover;
  /* mix-blend-mode:multiply; */
  /* border-radius: 50%; */
}
.illustrate-item p{
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  width: 70px;
  color: black;
}

.illustrate-item a{
  background: var(--primary-color);
  border-radius: 5px;
  padding: 5px;
  text-align: left;
  font-size: 13px;
  color: var(--secondary-color);
  text-decoration: none;
  transition: 0.3s ease
}

.illustrate-item a:hover{
  scale: 1.05;
  background: var(--primary-color-dark);
}

.popup .close-btn {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 30px;
  cursor: pointer;
  color: var(--primary-color);
}

.popup .logo {
  /* width: 180px; */
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 70px;
  width: 100%;
}

.popup .logo img{
  height: 80px;
  /* aspect-ratio: 12/9; */
  /* width: 100%; */
  /* object-fit: contain; */
}

.highlight {
  color: var(--primary-color);
  font-weight: bold;
}

form input, select {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
}

 .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%;
  }

.form-group {
  position: relative;
  /* margin-bottom: 20px; */
}

.form-group input {
  /* all: unset; */
  width: 100%;
  border: none;
  padding: 12px 15px;
  border-bottom: 2px solid var(--primary-color);
  border-radius: 5px;
  background: transparent;
  color: var(--primary-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(--primary-color-dark);
  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: 3px 10px;
  color: var(--primary-color);
  background: var(--secondary-color);
  border-radius: 10px;
}

.form-group input:focus{
  border: 2px solid var(--primary-color);
}

.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;
}



.refresh_captcha{
  position: relative;
  /* top: -20px; */
  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: white;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  height: 40px;
  position: absolute;
  right: 1px;
  top: -4px;
  /* border: 2px solid var(--secondary-color); */
}

.captcha-box input {
  width: 100%;
  padding: 8px;
  /* margin: 5px 0; */
  box-sizing: border-box;
}

.btn {
  /* margin-top: 20px; */
  padding: 10px 20px;
  background-color: var(--secondary-color);
  border: none;
  color: white;
  text-decoration: none;
  border: 2px solid var(--primary-color);
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
}

.btn:hover{
  /* background-color: var(--primary-color-light); */
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.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: gray;
  font-size: 11px;
}

.consent-check{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  
}

.register-btn {
  background: #0056d2;
  color: white;
  border: none;
  padding: 12px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  margin-top: 10px;
}

.register-btn:hover{
  background: #003fa6;
}

.bottom-call {
  margin-top: 20px;
  background: #0056d2;
  color: white;
  padding: 10px;
  font-weight: bold;
}

.bottom-call:hover{
  background: #003fa6;
}

@media (max-width: 488px) {
  
  .popup {
    /* width: 90%; */
    /* padding: 20px; */
    flex-direction: column;
  }
  
  .popup .illustration{
    display: none;
    /* height: auto; */
    flex-direction: column;
    gap: 10px;
  }

  .illustrate-item{
    width: 40px;
    height: auto;
  }

  .captcha-box {
    flex-direction: column;
  }
  
  .illustrate-item img{
    width: 40px;
    height: auto;
  }
  .illustrate-item p{
    font-size: 12px;
  }
}



.hero{
  position: relative;
  overflow: hidden;
  height: 100vh;
}

  .card {
    position: absolute;
    left: 0;
    top: 0;
    background-position: center;
    background-size: cover;
    box-shadow: 6px 6px 10px 2px rgba(0, 0, 0, 0.6);
    /* border: var(--primary-color); */
  }

  .hero::before{
    content: '';
    display: none;
    position: absolute;
    top: 0;
    background: url('assets/Elan\ The\ Emperor\ 0001.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* background: rgba(189, 5, 5, 0.541); */
    /* opacity: 0.5; */
    backdrop-filter: blur(10px);
    width: 100%;
    height: 100%;
    z-index: 99;

  }
  
  #btn {
    position: absolute;
    top: 690px;
    left: 16px;
    z-index: 99;
  }
  
  .card-content {
    position: absolute;
    left: 0;
    top: 0;
    color: white;
    padding-left: 16px;
  }
  
  .content-place {
    margin-top: 6px;
    font-size: 13px;
    font-weight: 500;
  }
  
  .content-place {
    font-weight: 500;
    background: linear-gradient(135deg, #a8a800, #fcff4a, #FFD700, #C9990A);
    background-size: 300% 300%;
    animation: shine 5s infinite;
    color: var(--text-color);
    padding: 5px;
    border-radius: 5px;
  }
  
  .content-title-1,
  .content-title-2 {
    font-weight: 600;
    font-size: 20px;
  }
  
  .content-start {
    width: 30px;
    height: 5px;
    border-radius: 99px;
    background-color: #FFFFFFDD;
  }
  
  .details {
    z-index: 22;
    position: absolute;
    top: 240px;
    left: 60px;
  }
  .details .place-box {
    height: 46px;
    overflow: hidden;
  }
  .details .place-box .text {
    padding-top: 16px;
    font-size: 20px;
    /* color: var(--primary-color); */
    background: linear-gradient(45deg, #C9990A, #FFD700, #C9990A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    display: none;
  }
  .details .place-box .text:before {
    top: 0;
    left: 0;
    position: absolute;
    content: "";
    width: 30px;
    height: 4px;
    border-radius: 99px;
    background-color: var(--primary-color);
  }
  .details .title-1,
  .details .title-2 {
    font-weight: 600;
    font-size: 72px;
    font-family: Copperplate, "Copperplate Gothic Light", fantasy;
    /* color: var(--primary-color); */
    background: linear-gradient(45deg, #C9990A, #FFD700, #C9990A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
  }
  .details .title-box-1,
  .details .title-box-2 {
    margin-top: 2px;
    height: 100px;
    overflow: hidden;
    display: none;
  }
  .details > .desc {
    margin-top: 16px;
    width: 500px;
    display: none;
  }
  .details > .cta {
    width: 500px;
    margin-top: 24px;
    display: flex;
    align-items: center;
    z-index: 100;
    display: none;
  }
  
  .details > .cta:hover .bookmark,
  .details > .cta:hover .discover {
  
      background: transparent;
  }
  
  .details > .cta > .bookmark {
    border: none;
    background-color: #ecad29;
    width: 36px;
    height: 36px;
    border-radius: 99px;
    color: white;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    border: 2px solid #ffffff;
    border-right: none;
    display: grid;
    place-items: center;
    cursor: pointer;
  }
  
  .details > .cta > .discover {
      border: 2px solid #ffffff;
      background-color: #ecad29;
      height: 36px;
      border-radius: 99px;
      border-bottom-left-radius: 0;
      border-top-left-radius: 0;
      color: #ffffff;
      border-left: none;
      padding: 4px 24px;
      padding-left: 0;
      font-size: 12px;
      /* margin-left: 16px; */
      text-transform: uppercase;
      cursor: pointer;
      font-weight: 600;
  }
  .details > .cta > .discover:hover {
      background: transparent;
      /* color: black; */
  }
  
  
  .indicator {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 5px;
    z-index: 60;
    background-color: #ecad29;
  }
  
  .pagination {
    position: absolute;
    left: 0px;
    top: 0px;
    display: inline-flex;
  }
  .pagination > .arrow {
    z-index: 60;
    width: 50px;
    height: 50px;
    border-radius: 999px;
    border: 2px solid var(--primary-color);
    color :var(--primary-color);
    display: grid;
    place-items: center;
    cursor: pointer;
  }

  .pagination > .arrow:hover{
    background: var(--primary-color);
    color: var(--secondary-color);
  }
  .pagination > .arrow:nth-child(2) {
    margin-left: 20px;
  }
  .pagination > .arrow svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
    color: var(--primary-color);
  }
  .pagination .progress-sub-container {
    margin-left: 24px;
    z-index: 60;
    width: 500px;
    height: 50px;
    display: flex;
    align-items: center;
  }
  .pagination .progress-sub-container .progress-sub-background {
    width: 500px;
    height: 3px;
    background-color: #ffffff33;
  }
  .pagination .progress-sub-container .progress-sub-background .progress-sub-foreground {
    height: 3px;
    background-color: var(--primary-color);
  }
  .pagination .slide-numbers {
    width: 50px;
    height: 50px;
    overflow: hidden;
    z-index: 60;
    position: relative;
  }
  .pagination .slide-numbers .item {
    width: 50px;
    height: 50px;
    position: absolute;
    color: white;
    top: 0;
    left: 0;
    display: grid;
    place-items: center;
    font-size: 32px;
    font-weight: bold;
  }
  
  .cover {
    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    z-index: 100;
  }

  @media (max-width: 850px){
    .indicator, .demo, .details, .cover{
      display: none;
    }

    .hero::before{
      display: block;
    }

    /* .hero{
      height: 200vh;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
    } */
     
    .show-form-btn{
      display: flex;
    }

    #toggleFormBtn{
      display: block;
    }

    .sticky-form{
      /* position:relative; */
      left: 0px;
    }

    .pagination{
      display: none;
    }
  }


  .gradient-text {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(
      270deg,
      var(--secondary-color),
      var(--secondary-color-light),
      var(--secondary-color-dark),
      var(--secondary-color)
    );
    background-size: 800% 800%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: moveGradient 6s ease infinite;
    text-align: center;
    margin: 60px 0;
  }
  
  @keyframes moveGradient {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }

  section{
    padding: 2rem 6rem;
    background: var(--secondary-color);
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  @media (max-width: 768px) {
    section{
      padding: 2rem 1rem;
    }
  }

  .overview {
    /* background-color: var(--primary-color); */
    padding: 80px 20px;
    text-align: center;
  }

  
  .overview-grid {
    /* display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
  }

  .overview-container{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    gap: 40px;
  }

  .section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
  }
  
  .section-subtitle {
    font-size: 1.1rem;
    color: white;
    width: 100%;
    max-width: 600px;
    /* margin-inline: auto; */
  }

  .overview-video{
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 500px;
    width: 100%;
    aspect-ratio: 12/7;
  }

  .overview-video video {
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
  }
  
  .overview-card {
    /* background: var(--primary-color); */
    border: 2px solid var(--secondary-color);
    /* color: var(--secondary-color-light); */
    width: 100%;
    max-width: 300px;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  .overview-card:hover {
    transform: translateY(-5px) scale(1.1);
  }
  
  .overview-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
  }
  
  .overview-card p {
    color: var(--text-color);
    font-size: 1rem;
  }


  .price-section {
    /* background: var(--primary-color); */
    padding: 80px 20px;
    color: var(--text-color);
  }

  .price_container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width :100%;
  }

  .price-section-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    width :100%;
  }
  
  .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: whitesmoke;
  }
  
  .price-table th {
    color: var(--secondary-color);
    font-weight: bold;
  }

  .price-table tbody{
    border: 2px solid var(--primary-color);
  }
  
  .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;
    }

    .section-subtitle{
      font-size: 16px;
    }

    .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: transparent;
      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);
      border: 2px solid var(--primary-color);
    }
  
    .price-table td {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 8px 0;
      border: none;
      font-size: 15px;
      color: white;
    }
  
    .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(--primary-color);
      font-size: 20px;
    }
  
    .price-table td:last-child {
      justify-content: center;
    }

    .more_disclaimer{
      display: none;
    }
  }
  
  
  .gradient-btn {
    background: linear-gradient(to right, var(--primary-color), var(--primary-color-light));
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    color: #000;
    /* 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);
  }

  
  .costing-box {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  .costing-box img {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  
  .full-btn {
    padding: 12px 24px;
    font-size: 1rem;
  }
  


   .price-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 3px;
  }
  
  .price-btn:hover {
    background-color: var(--primary-dark-color);
  }

  .price-image {
    max-width: 350px;
    width: 100%;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
  }
  
  .price-image img {
      width: 100%;
      height: 250px;
      /* Fixed height */
      object-fit: cover;
      /* Ensures image covers the container */
      display: block;
      border: 1px solid #ccc;
  }
  .full-btn {
    margin-top: 10px;
    /* width: 100%; */
  }

  .image-overlay-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--secondary-color);
  }
  
  .image-overlay-wrapper img {
      width: 100%;
      height: 250px;
      /* Same fixed height */
      object-fit: cover;
      display: block;
  }
  
  .image-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(50, 51, 55, 0.593);
    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(--primary-color), var(--primary-color-light));
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    color: #000;
    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;
    font-family: Copperplate, "Copperplate Gothic Light", fantasy;
    /* color: var(--secondary-color); */
    margin-bottom: 40px;
  }

  .site-plan-section{
    padding: 60px 20px;
    /* background: var(--primary-color); */
    overflow: hidden;
    /* margin: 10px 20px; */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); 
}

.main-card-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    /* flex-direction: column; */
    gap: 50px;
    margin-top: 20px;
    width: 100%;
}


  .gallery-section{
    padding: 40px 20px;
    /* background: #012f0a51; */
    backdrop-filter: blur(10px);
    /* margin: 10px 20px; */
    /* height: 100vh; */
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); */
    text-align: center;
}

.section-title{
    text-align: center;
    margin-bottom: 2rem;
    font-size: 42px;
    color: var(--primary-color);
    font-family: Copperplate, "Copperplate Gothic Light", fantasy;
}

.gallery-imgs{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.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);
}

.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 */
.gallery-overlay {
    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%);
}

.gallery-overlay .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: rgba(0, 0, 0, 0.6);
  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);
}



.location-section {
  padding: 40px 20px;
  /* background-color: #fff; */
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #000;
}

.location-content {
  display: flex;
  flex-wrap: wrap;
  width :100%;
  gap: 40px;
  justify-content: center;
  align-items: center;
}

.location-map img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.location-details {
  background-color: var(--primary-color);
  color: white;
  padding: 40px 30px;
  border-radius: 10px;
  max-width: 500px;
  width: 100%;
  text-align: left;
}

.location-details ul {
  list-style-type: disc;
  padding-left: 20px;
}

.location-details li {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.6;
}



.virtual-tour-section {
  position: relative;
  padding: 50px 20px;
  /* background: #fafafa; */
  /* margin: 10px 20px; */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.section-title {
  font-size: 34px;
  color: var(--primary-color);
  margin-bottom: 30px;
  text-align: center;
}

.video-wrapper {
  background: url('assets/Elan\ The\ Emperor\ 0001.jpg');
  background-position: center;
  background-size: cover;
  width: 90%;
  max-width: 900px;
  max-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  aspect-ratio: 16/9;;
  /* margin: auto; */
  border-radius: 10px;
  overflow: hidden;
  border-left: 5px solid var(--primary-color);
  border-right: 5px solid var(--primary-color);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.612);
}

.video-thumb {
  width: 100%;
  border-radius: 10px;
}

.play-btn {
  background: rgba(0, 0, 0, 0.186);
  color: white;
  backdrop-filter: blur(5px);
  width: 100%;
  height: 100%;
  padding: 20px;
  /* border-radius: 50%; */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  cursor: pointer;
  overflow: hidden;
  /* animation: pulse 1.5s infinite; */
  z-index: 1;
}


.play-btn ion-icon{
  font-size: clamp(30px, 5vw, 80px);
  /* position: relative;
  top: 35px;
  left: 40px; */
  color: red;
  animation: pulse 1.5s infinite;
  background: white;
  border-radius: 50%;
  padding: 10px;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}

.video-caption {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 22px;
  color: #fff;
  text-shadow: 0 0 8px #000;
}

.video-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
}

.video-overlay {
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  inset: 0;
}

.video-box {
  position: relative;
  width: 80%;
  max-width: 960px;
  z-index: 1000;
  margin: 50px auto;
}

.video-box iframe {
  width: 100%;
  height: 540px;
  border-radius: 10px;
}


/* .faq{
  padding: 80px 20px;
}

.content-wrapper{
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.accordion {
  padding: 10px;
  width: 100%;
  max-width: 700px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.accordion-item {
  width: 100%;
}

.accordion-title {
  background: #efefef;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #7a7572;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
  border-bottom: 1px solid #514a4a;;
}

.accordion-title:hover {
  background: #e0e0e0;
}

.icon {
  font-size: 1.5em;
  transition: transform 0.3s;
}

.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: #676767;
} */



 
.project-footer {
  background-color: black;
  color: grey;
  font-size: 13px;
  padding: 20px;
  text-align: center;
  line-height: 1.6;
}

.project-footer a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
}

.project-footer a:hover {
  text-decoration: underline;
}

.project-footer p {
  margin: 10px 0;
}


.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(--primary-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;
color: white;
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; }
}
