* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Arial", sans-serif;
  }

  body {
    background-color: #0d2245;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    color: #000;
  }

  header {
    width: 100%;
    background: linear-gradient(90deg, #0049b7, #002d72);
    display: flex;
    justify-content: space-between;
    align-items: center;
       padding: 10px 20px;
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    align-items: center;
    display: flex
;
    justify-content: center;
    gap: 159px;
  }

 .progress-bar {
  width: 100%;
  height: 12px;
  background: #1c2e4e;
  border-radius: 0;
  box-shadow: 0 0 4px 0 rgba(255, 255, 255, .25) inset;
  overflow: hidden;
}

.progress-bar span {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: 0 10px 10px 0;
  background-image: linear-gradient(-45deg, #5ad046 25%, #3ebd2b 25%, #3ebd2b 50%, #5ad046 50%, #5ad046 75%, #3ebd2b 75%, #3ebd2b);
  background-size: 10px 10px;
  background-color: #35b920;
  animation: fillBar 8s ease-in-out forwards;
}

/* Animation for smooth left-to-right fill */
@keyframes fillBar {
  from { width: 0%; }
  to { width: 100%; }
}
  .container {
    background-color: white;
    border-radius: 12px;
    width: 90%;
    max-width: 450px;
    margin: 30px 0;
    overflow: hidden;
    text-align: center;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
  }

  .container h1 {
    font-size: 42px;
    font-weight: 800;
    margin-top: 20px;
  }

  .features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 15px 0;
    flex-wrap: wrap;
  }

  .features span {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    gap: 6px;
  }

  .gift-card {
    margin: 20px auto 10px auto;
    width: 70%;
    max-width: 250px;
  }

  .gift-card img {
    width: 100%;
    border-radius: 6px;
  }

  .small-text {
    font-size: 9px;
    color: #555;
    margin-bottom: 10px;
  }

  .timer {
    color: #4770a1;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
  }

  .form-section {
    background-color: #f3f6f9;
    padding: 20px 40px;
  }

  .form-section h2 {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
  }

  input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 2px solid #4caf50;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 15px;
    opacity: .8;
    text-align: center;
  }
  
  .cta-inner{
      font-size: 28px;
      font-weight: 800;
      text-shadow: 1px 1px 1px rgba(0, 0, 0, .3);
  }

  button {
    width: 100%;
    background-color: #12b81e;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
  }

  button:hover {
    background-color: #0fa018;
  }

  /* âœ… FIXED ARROW ICONS */
  #submitBtn::before {
    content: "";
    background: url('Image/left-arr.png') no-repeat center;
    width: 35px;
    height: 35px;
    position: absolute;
    left: -20px;
    top: calc(50% - 12px);
    background-size: contain;
    animation: slide-in-left .6s ease-in-out infinite alternate;
  }

  #submitBtn::after {
    content: "";
    background: url('Image/right-arr.png') no-repeat center;
    width: 35px;
    height: 35px;
    position: absolute;
    right: -20px;
    top: calc(50% - 12px);
    background-size: contain;
    animation: slide-in-right .6s ease-in-out infinite alternate;
  }

  @keyframes slide-in-left {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-5px);
    }
  }

  @keyframes slide-in-right {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(5px);
    }
  }

  .disclaimer {
    font-size: 9px;
    color: #000;
    margin-top: 10px;
    line-height: 1.4;
  }

  .disclaimer a {
    color: #0049b7;
    text-decoration: underline;
  }

  .footer-note {
    font-size: 0.8rem;
    color: white;
    margin: 15px 0;
  }

  footer {
    background-color: #e9edf2;
    text-align: center;
    padding: 15px;
    font-size: 0.8rem;
    width: 100%;
    padding-bottom: 80px;
  }

  footer a {
    color: #000;
    text-decoration: none;
    margin: 0 5px;
  }

  footer a:hover {
    text-decoration: underline;
  }

  .footer-disclaimer {
    font-size: 9px;
    color: #d8d8d8;
    width: 100%;
    line-height: 14px;
    max-width: 60%;
    text-align: center;
    padding: 20px 10px 14px;
  }

  @media (max-width: 676px) {
    .container h1 {
      font-size: 1.5rem;
    }

    button {
      font-size: 1rem;
    }

    .features {
      flex-direction: column;
      align-items: center;
    }

    .footer-disclaimer {
      max-width: 100%;
    }
     header{
         gap: 95px;
     }
  }
