.info-section {
  background-color: #001f4d; /* Navy Blue */
  color: white;
}

.info-section h1,
.info-section h2,
.info-section p {
  color: white;
}

.info-section .text-warning {
  color: #ffc107 !important; /* keep the yellow highlight */
}

.info-section ul.list-group .list-group-item {
  background-color: transparent;
  color: white;
  border: 1px solid white;
  border-radius: 12px;
  margin-bottom: 10px;
  font-weight: 500;
}

.info-section ul.list-group .list-group-item:last-child {
  margin-bottom: 0;
}

 .small-list .list-group-item {
    font-size: 0.9rem;       /* Smaller text */
    padding: 0.4rem 0.75rem; /* Less padding */
    line-height: 1.4;
  }

  .highlighted-offer {
    font-size: 1.6rem;        /* Increased size for the offer line */
    color: #ff9800;           /* Optional: makes it more eye-catching */
  }


    /* Main Content Left */
    .main-left h1 {
      font-size: 2.8rem;
      font-weight: 900;
      color: #007bff;
      line-height: 1.2;
      margin-bottom: 1rem;
    }
    .highlight-badge {
      background-color: #ffca2c;
      color: #212529;
      font-weight: 700;
      padding: 0.3rem 1rem;
      border-radius: 25px;
      font-size: 1rem;
      vertical-align: middle;
      box-shadow: 0 2px 6px rgb(255 202 44 / 0.7);
    }
    .main-left h2 {
      font-weight: 700;
      font-size: 1.6rem;
      margin-bottom: 1.5rem;
      color: #212529;
    }
    .main-left h2 span {
      color: #333;
      font-weight: 900;
      background: #e2e2e2;
      padding: 0.3rem 0.8rem;
      border-radius: 10px;
      box-shadow: inset 0 0 8px #b5b5b5;
    }
    .main-left p {
      font-style: italic;
      font-size: 1.1rem;
      color: #555;
      margin-bottom: 2rem;
      max-width: 520px;
    }

    /* Success List Items */
    .success-list li {
      background: linear-gradient(135deg, #f1f4f2 0%, #f3f5f4 100%);
      color: rgb(18, 17, 17);
      font-weight: 600;
      padding: 0.75rem 1rem;
      border-radius: 12px;
      margin-bottom: 1rem;
      box-shadow: 0 4px 10px rgba(248, 249, 249, 0.4);
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 1.1rem;
      transition: background 0.3s ease;
    }
    .success-list li:hover {
      background: #f7fdf9;
      box-shadow: 0 6px 14px rgb(30 126 52 / 0.6);
      cursor: default;
    }

    /* Icon styling inside list */
    .success-list li::before {
      content: "✅";
      font-size: 1.3rem;
      margin-right: 0.5rem;
    }

    /* Form section styling (kept mostly same, just minor polish) */
    .form-section {
      background: #fff;
      border-radius: 15px;
      padding: 2rem;
      box-shadow: 0 4px 15px rgb(0 0 0 / 0.1);
      transition: box-shadow 0.3s ease;
    }
    .form-section:hover {
      box-shadow: 0 8px 25px rgb(0 0 0 / 0.15);
    }
    .form-section h3 {
      font-weight: 800;
      margin-bottom: 2rem;
      color: #007bff;
      text-transform: uppercase;
      letter-spacing: 1.5px;
    }
    .form-control:focus {
      box-shadow: 0 0 0 0.25rem rgb(0 123 255 / 0.25);
      border-color: #007bff;
    }
    .btn-primary {
      font-weight: 700;
      letter-spacing: 1.2px;
      font-size: 1.1rem;
      padding: 0.65rem;
      border-radius: 10px;
      transition: background 0.3s ease;
    }
    .btn-primary:hover {
      background: #0056b3;
    }

    /* Certificate Image */
    .certificate-img {
      max-width: 350px;
      border-radius: 20px;
      box-shadow: 0 6px 20px rgb(0 123 255 / 0.3);
      transition: transform 0.3s ease;
    }
    .certificate-img:hover {
      transform: scale(1.05);
    }

    /* Additional Highlights Section */
    .additional-highlights li {
      background: #343a40;
      color: white;
      padding: 1rem 1.25rem;
      border-radius: 12px;
      margin-bottom: 1rem;
      font-size: 1.1rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      box-shadow: 0 4px 12px rgb(52 58 64 / 0.4);
      transition: background 0.3s ease;
      cursor: default;
    }
    .additional-highlights li:hover {
      background: #495057;
    }
    .additional-highlights li span {
      font-size: 1.6rem;
    }

    /* Festive Offer Box */
    .festive-offer {
      background: #ffc107;
      color: #212529;
      border-radius: 18px;
      padding: 1.5rem 2rem;
      box-shadow: 0 8px 24px rgb(255 193 7 / 0.5);
      font-weight: 700;
      user-select: none;
    }
    .festive-offer h5 {
      font-size: 1.4rem;
      margin-bottom: 0.5rem;
      letter-spacing: 1.2px;
      text-transform: uppercase;
    }
    .festive-offer p {
      font-size: 1.25rem;
      font-style: italic;
    }

    /* Responsive tweaks */
    @media (max-width: 767px) {
      .main-left h1 {
        font-size: 2rem;
      }
      .main-left h2 {
        font-size: 1.3rem;
      }
      .success-list li {
        font-size: 1rem;
      }
      .additional-highlights li {
        font-size: 1rem;
      }
.step-box {
      border: 2px solid #003366;
      padding: 20px;
      border-radius: 10px;
      text-align: center;
      margin-bottom: 20px;
      height: 100%;
    }
    .step-icon {
      font-size: 50px;
      color: #0066ff;
      margin-bottom: 10px;
    }
    .promo-banner {
      background-color: #002c77;
      color: #fff;
      padding: 20px;
      text-align: center;
      font-weight: bold;
      font-size: 1.2rem;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      margin: 30px 0;
      border-radius: 10px;
    }
    .side-tab {
      position: fixed;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
      writing-mode: vertical-rl;
      background: #111;
      color: white;
      padding: 10px;
      font-weight: bold;
      border-radius: 0 5px 5px 0;
      cursor: pointer;
      z-index: 1000;
    }
      .license-box {
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
      padding: 20px;
      margin: 15px 0;
      background-color: #fff;
      border-radius: 8px;
    }
    .apply-now {
      position: fixed;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
      background-color: #000;
      color: #fff;
      padding: 10px 20px;
      writing-mode: vertical-rl;
      text-orientation: mixed;
      font-weight: bold;
      cursor: pointer;
      z-index: 1000;
      border-radius: 0 5px 5px 0;
    }
     .process-box {
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
      padding: 20px;
      margin-bottom: 20px;
    }

    .apply-now-btn {
      position: fixed;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
      background-color: #000;
      color: #fff;
      padding: 10px 20px;
      writing-mode: vertical-rl;
      text-orientation: mixed;
      font-weight: bold;
      z-index: 1000;
      cursor: pointer;
      border-radius: 0 5px 5px 0;
    }
     .apply-now-btn {
      position: fixed;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
      background-color: #000;
      color: #fff;
      padding: 10px 20px;
      writing-mode: vertical-rl;
      text-orientation: mixed;
      font-weight: bold;
      z-index: 1000;
      cursor: pointer;
      border-radius: 0 5px 5px 0;
    }
    .section-title {
      border-bottom: 1px solid #ccc;
      padding-bottom: 10px;
    }
    ul.checklist {
      list-style: none;
      padding-left: 0;
    }
    ul.checklist li {
      padding-left: 1.5rem;
      position: relative;
      margin-bottom: 10px;
    }
    ul.checklist li::before {
      content: "✔";
      position: absolute;
      left: 0;
      color: #0d6efd;
      font-weight: bold;
    }
     .apply-now-btn {
      position: fixed;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
      background-color: #212529;
      color: #fff;
      padding: 10px 20px;
      writing-mode: vertical-rl;
      text-orientation: mixed;
      font-weight: bold;
      z-index: 999;
      border-radius: 0 5px 5px 0;
    }
    .testimonial-box {
      background-color: #f8f9fa;
      border-radius: 10px;
      padding: 20px;
      margin-bottom: 30px;
      box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    }
    .testimonial-img {
      width: 100px;
      height: 100px;
      object-fit: cover;
      border-radius: 50%;
      border: 3px solid #fff;
      box-shadow: 0 0 8px rgba(0,0,0,0.2);
    }
     .why-box {
      border: 1px solid #003478;
      border-radius: 5px;
      padding: 20px;
      text-align: center;
      transition: transform 0.3s;
      background-color: #fff;
      box-shadow: 0 0 8px rgba(0,0,0,0.1);
    }

    .why-box:hover {
      transform: scale(1.05);
    }

    .why-box i {
      font-size: 40px;
      margin-bottom: 15px;
      color: #003478;
    }

    .why-title {
      font-weight: bold;
      margin-top: 10px;
    }

    hr {
      border-top: 2px solid #ccc;
      opacity: 1;
    }
  }
 .license-box {
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
      padding: 20px;
      margin: 15px 0;
      background-color: #fff;
      border-radius: 8px;
    }
    .apply-now {
      position: fixed;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
      background-color: #000;
      color: #fff;
      padding: 10px 20px;
      writing-mode: vertical-rl;
      text-orientation: mixed;
      font-weight: bold;
      cursor: pointer;
      z-index: 1000;
      border-radius: 0 5px 5px 0;
    }
      .apply-now-btn {
      position: fixed;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
      background-color: #212529;
      color: white;
      padding: 10px;
      writing-mode: vertical-rl;
      text-orientation: mixed;
      font-weight: bold;
      z-index: 999;
      border-radius: 0 5px 5px 0;
      cursor: pointer;
    }



    .offer-banner {
  background: linear-gradient(90deg, #ff8a00, #e52e71);
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

    .scroll-wrapper {
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}

.scroll-track {
  animation: scrollLeft 30s linear infinite;
}

.testimonial-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #0d6efd;
  box-shadow: 0 0 10px rgba(13, 110, 253, 0.2);
}

.testimonial-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #ffffff;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

  .small-list {
    max-width: 480px;
  }

footer a:hover {
  text-decoration: underline;
  color: #ffc107;
}
footer {
  background-color: #001f4d; /* matches your dark blue */
}

footer a:hover {
  color: #ffc107;
  text-decoration: underline;
}
.icon-box {
      text-align: center;
      margin-bottom: 30px;
    }
    .icon-box img {
      height: 50px;
      margin-bottom: 10px;
    }
    h2 {
      font-weight: bold;
    }