*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root{
    --third-color: #e74c3c;
    --third-color-light: #ec7063;
    --third-color-dark: #80170c;
    --primary-color: linear-gradient(45deg, #4b0801, var(--third-color-dark), var(--third-color), var(--third-color-dark), #4b0801);
    --primary-color-light: #1d4a89;
    --primary-color-dark: #000306;
    --secondary-color: #9d7558;
    --secondary-color-light: #fee2a9;
    --secondary-color-dark: #30120f;
    --text-color: #f0f0f0;
}



 /* 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: 99999;
  }
  
  .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: 60px;
    /* height: calc(100% - 60px); */
    right: 0;
    width: 340px;
    background: white;
    /* background: rgba(12, 12, 12, 0.475); */
    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;
  }
  
  .form-header h2{
      font-weight: 700;
  }
  
  #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: #888;
      font-size: 13px;
    }

    .stickyRefresh_captcha{
      position: absolute;
    right: -6px;
    top: -4px;
    /* border-radius: 5px; */
      /* top: 20px; */
      /* height: 100%; */
      /* width: 40px; */
    }
  
  .submit-btn {
    background: #0056d2;
    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;
    line-height: 1.4;
    color: #848484;
    font-weight: 300;
    text-align: center;
  }
  
  /* Hide Form */
  .sticky-form.hidden {
    transform: translateX(100%);
  }
  
  .show-form-btn {
    position: fixed;
    top: 160px;
    right: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #0056d2;
    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;
  top: 20px;
  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%;
  }
  
  

    .gradient-btn {
    background: linear-gradient(to right, var(--secondary-color), var(--secondary-color-dark));
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    color: #ffffff;
    /* display: flex; */
    justify-content: center;
    text-decoration: none;
    align-items: center;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
    
    
    

      /* .popup-overlay Styles */
.popup-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: 99999;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  
  .popup-overlay.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }
  
  .popup {
    background: rgb(255, 255, 255);
    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;
    z-index: 1001;
    /* max-height: 90vh; */
    /* margin: 10px; */
  }
  
 
  
  
  
  .popup .illustration{
    height: 100%;
    width: 200px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    gap: 30px;
    padding-bottom: 20px;
  }
  
  .popup .illustration h2{
    font-size: 24px;
    /* text-align: left; */
    color: var(--secondary-color);
    /* margin-bottom: 10px; */
  }
  
  .illustrate-item{
    width: 100%;;
    /* height: 60px; */
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
  }
  
  .illustrate-item img{
    width: 60px;
    height: 100%;
    object-fit: cover;
    /* mix-blend-mode: color-burn; */
    /* border-radius: 50%; */
  }
  .illustrate-item p{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    width: 70px;
    font-size: 14px;
    color: var(--secondary-color);
  }
  
  .close-btn {
    position: absolute;
    top: 10px; right: 15px;
    font-size: 30px;
    cursor: pointer;
    color: var(--third-color);
  }

  .form_container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  .form_container h3{
      font-size: 14px;
      text-align: justify;
      color: black;
      margin-bottom: 10px;
  }
  
  .form-container .highlight{
      color: var(--secondary-color);
  }
  
  .logo {
    width: 180px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    
  }

  .popup-logo{
    width: 220px;
    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: 0px;
  }
  
  .form-group input {
    width: 100%;
    margin: 0;
    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: 0px;
    left: 10px;
    font-size: 12px;
    padding: 0px 10px;
    color:var(--primary-color);
    background: var(--secondary-color);
    border-radius: 10px;
  }


  
  
  
  .phone-field {
    display: flex;
    gap: 10px;
  }
  
  .captcha-box {
    display: flex;
    justify-content: center;
    align-items: center;
    /* flex-direction: row-reverse; */
    margin-top: 10px;
    text-align: left;
    gap: 5px;
  }

  
  
  .refresh_captcha{
    position: absolute;
    right: -1px;
    top: -4px;
    height: 100%;
    width: 40px;
  }
  
  
  .captcha_canvas{
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    position: relative;
    top: 2px;
  }
  
  .captcha-box canvas {
    /* background: #f0f0f0; */
    margin-bottom: 5px;
    border: 2px solid var(--secondary-color);
    border-radius: 5px;
  }
  
  .captcha-box button {
    margin: 5px 0;
    padding: 5px 10px;
    cursor: pointer;
    background: var(--secondary-color);
    color: var(--primary-color-dark);
    border: none;
    border-radius: 5px;
    font-size: 14px;
    height: 40px;
    /* position: absolute;
    right: -1px;
    top: -4px; */
    /* border: 2px solid var(--secondary-color); */
  }
  
  .captcha-box input {
    width: 100%;
    padding: 8px;
    margin: 5px 0;
    box-sizing: border-box;
  }
  
  .btn {
    /* margin-top: 20px; */
    padding: 10px 20px;
    /* background-color: var(--secondary-color); */
    border: none;
    color: white;
    text-decoration: none;
    border: 2px solid var(--secondary-color-light);
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
  }

  .btn:hover{
    background-color: var(--secondary-color-light);
    background: transparent;
    color: var(--secondary-color-light);
    /* border: 2px solid var(--secondary-color-light); */
  }
  
  .form-consent {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 5px;
    font-size: 12px;
    text-align: justify;
    margin: 10px 0;
  }
  
  .form-consent p{
    color: gray;
    font-size: 11px;
    line-height: 1.4;
  }
  
  .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 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; }
}
