 :root {
      --orange-light: #FFA500;
      --orange-dark: #FF4500;
      --hover-color: #f5a623;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
    }

    header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky; /* Sticky behavior */
  top: 0;
  z-index: 1000;
}


    .logo img {
      height: 40px;
    }

    .menu {
      display: flex;
      gap: 20px;
    }

    .menu a {
      text-decoration: none;
      color: #333;
      font-weight: 500;
      transition: color 0.3s;
    }

    .menu a:hover {
      color: orange;
    }

    .auth-buttons {
      display: flex;
      gap: 10px;
    }

    .auth-buttons button {
      padding: 8px 16px;
      border: none;
      border-radius: 5px;
      background-color: orange;
      color: white;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    .auth-buttons button:hover {
      background-color: #e69500;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
    }

    .hamburger div {
      width: 25px;
      height: 3px;
      background-color: #333;
    }

    .mobile-menu {
      display: none;
      flex-direction: column;
      background-color: white;
      position: absolute;
      top: 70px;
      left: 0;
      width: 100%;
      padding: 20px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .mobile-menu a {
      text-decoration: none;
      color: #333;
      padding: 10px 0;
      border-bottom: 1px solid #eee;
    }

    .mobile-menu a:hover {
      color: orange;
    }

    @media (max-width: 768px) {
      .menu, .auth-buttons {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .mobile-menu.show {
        display: flex;
      }
    }
.hero {
  position: relative;
  width: 100%; /* Full width */
  height: 200%; /* Full height */
  background: url('images/e04c992e-fe47-49fe-8e68-31fbeace1eca.png') no-repeat center center/cover;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding: 20px;
  overflow: hidden; /* Prevent overflow */
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(6, 26, 66, 0.8); /* Blue filter */
  z-index: 1;
}

.content {
  position: relative;
  z-index: 2;
  max-width: 100%;
  width: 100%;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: bold;
  line-height: 1.2;
}

h1 span {
  font-size: 3rem;
  display: block;
}

p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #d0d9f3;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.primary-btn,
.secondary-btn {
  padding: 12px 22px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.primary-btn {
  background-color: #093e8e;
  color: white;
}

.primary-btn:hover {
  background-color: #062e6e;
}

.secondary-btn {
  background-color: white;
  color: #093e8e;
}

.secondary-btn:hover {
  background-color: #e4e7f0;
}

.search-box {
  display: flex;
  flex-direction: row;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  max-width: 550px;
  width: 100%;
}

.search-box select {
  flex: 1;
  padding: 14px;
  border: none;
  font-size: 1rem;
  appearance: none;
  outline: none;
}

.search-box button {
  background-color: #ff7a00;
  color: white;
  padding: 14px 22px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.search-box button:hover {
  background-color: #e06800;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h1 span {
    font-size: 2.2rem;
  }

  .buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .search-box {
    flex-direction: column;
  }

  .search-box select,
  .search-box button {
    width: 100%;
    border-radius: 0;
  }

  .search-box button {
    border-top: 1px solid #ccc;
  }
}
.search-box {
  margin-bottom: 20px;
}

.search-box input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

.slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 20px;
}

.card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  flex: 0 0 260px;
  min-width: 260px;
  padding: 16px;
  text-align: center;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
}

.btn {
  background: #007bff;
  color: white;
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  font-size: 14px;
}

.nav-btn {
  background: white;
  border: 1px solid #ccc;
  border-radius: 50%;
  font-size: 20px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.nav-btn.left {
  left: -20px;
}

.nav-btn.right {
  right: -20px;
}

.view-all {
  margin-top: 20px;
  text-align: center;
}
 .visa-carousel {
      display: flex;
      overflow-x: auto;
      gap: 20px;
      scroll-behavior: smooth;
      padding: 20px 0;
    }
    .visa-card {
      flex: 0 0 260px;
      background: #fff;
      border-radius: 12px;
      padding: 20px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      transition: transform 0.3s ease;
    }
    .visa-card:hover {
      transform: translateY(-5px);
    }
    .visa-card h3 {
      margin: 0;
      font-size: 20px;
      color: #1a1a1a;
    }
    .visa-card span {
      font-size: 14px;
      color: #777;
    }
    .visa-card p {
      margin: 10px 0;
      color: #333;
    }
    .apply-btn {
      display: block;
      margin-top: 20px;
      background: linear-gradient(to right, #ff7300, #ffa700);
      color: white;
      text-align: center;
      padding: 12px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 600;
    }
    .controls {
      display: flex;
      gap: 10px;
      margin-top: 10px;
    }
    .controls button {
      border: none;
      background: #eee;
      padding: 8px 14px;
      font-size: 18px;
      cursor: pointer;
      border-radius: 6px;
    }
    .start-btn {
      margin-top: 30px;
      display: inline-block;
      background: #002a72;
      color: white;
      padding: 14px 24px;
      border-radius: 8px;
      font-size: 18px;
      text-decoration: none;
    }
    .insurance-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.insurance-section h2 {
  font-size: 28px;
  color: #102a57;
  margin-bottom: 20px;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.carousel {
  display: flex;
  gap: 20px;
  transition: transform 0.3s ease-in-out;
}

.card {
  background: #e9f6ff;
  border-radius: 12px;
  padding: 20px;
  min-width: 280px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.card:nth-child(2) {
  background: #eef1ff;
}
.card:nth-child(3) {
  background: #fbecff;
}
.card:nth-child(4) {
  background: #eaffef;
}

.card h4 {
  margin: 0;
  font-size: 16px;
  color: #555;
}

.card h2 {
  font-size: 28px;
  color: #000;
  margin: 10px 0;
}

.card p {
  font-size: 16px;
  margin: 10px 0;
  color: #333;
}

.card ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 15px;
}

.card ul li {
  margin-bottom: 8px;
  color: #0a8438;
  font-weight: 500;
}

.buy-btn {
  background: #ff8a34;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  background: #fff;
  border: 2px solid #ccc;
  border-radius: 8px;
  padding: 10px;
  cursor: pointer;
  z-index: 2;
}

.left-btn {
  left: -10px;
}

.right-btn {
  right: -10px;
}
.testimonial-section {
  text-align: center;
  padding: 50px 20px;
  max-width: 1200px;
  margin: auto;
}

.testimonial-section h2 {
  color: #0a0a23;
  font-size: 32px;
  margin-bottom: 10px;
}

.testimonial-section p {
  color: #555;
  font-size: 18px;
  margin-bottom: 40px;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-cards {
  display: flex;
  transition: transform 0.4s ease-in-out;
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  flex: 0 0 300px;
  text-align: center;
}

.card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.card h3 {
  color: #0a0a23;
  font-size: 20px;
  margin: 0;
}

.card span {
  color: #888;
  font-size: 14px;
  display: block;
  margin-bottom: 15px;
}

.card p {
  font-style: italic;
  color: #333;
}

.slider-buttons {
  margin-top: 20px;
}

.slider-buttons button {
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 10px 15px;
  font-size: 18px;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 5px;
  transition: background 0.2s;
}

.slider-buttons button:hover {
  background-color: #e9e9e9;
}
.reviews-section {
  max-width: 1300px;
  margin: auto;
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  color: #07224b;
  margin-bottom: 40px;
}

.slider-container {
  position: relative;
  overflow: hidden;
}

.slider {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}

.review-card {
  background: white;
  border-radius: 16px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
  flex-shrink: 0;
  text-align: left;
}

.profile-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #eee;
  margin-bottom: 10px;
}

.review-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #111;
}

.review-card span {
  display: block;
  color: #777;
  font-size: 14px;
  margin-bottom: 10px;
}

.stars {
  color: #f8ce0b;
  font-size: 16px;
  margin-bottom: 10px;
}

.review-card p {
  font-size: 15px;
  color: #333;
  line-height: 1.5;
}

.nav-buttons {
  position: absolute;
  right: 10px;
  bottom: -40px;
  display: flex;
  gap: 10px;
}

.nav-buttons button {
  width: 35px;
  height: 35px;
  background: white;
  border: 1px solid #ccc;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s;
}

.nav-buttons button:hover {
  background: #f0f0f0;
}
.promotions {
  padding: 40px;
  max-width: 1200px;
  margin: auto;
}

.promotions h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #0b1f47;
}

.promotions h2 span {
  color: #0b1f47;
  font-weight: 700;
}

.promo-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 30%;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  color: white;
  position: relative;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.card h3 {
  font-size: 1.2rem;
  margin: 0 0 10px;
}

.card p {
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.4;
}

.card h4 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 10px;
}

.card span {
  font-size: 0.85rem;
  display: block;
  margin-bottom: 20px;
}

.card button {
  background: #fff;
  color: #0b1f47;
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.card .label {
  position: absolute;
  top: 20px;
  right: 20px;
  background: white;
  color: #0b1f47;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 20px;
}

/* Background Colors */
.card.blue {
  background: linear-gradient(135deg, #3a5af4, #456dfc);
}

.card.purple {
  background: linear-gradient(135deg, #9b34ef, #a74dfc);
}

.card.orange {
  background: linear-gradient(135deg, #f48023, #f57c00);
}
.wallet-cards,
.lead-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background: white;
  border-radius: 12px;
  padding: 24px;
  flex: 1 1 calc(25% - 20px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  min-width: 220px;
}

.card h1 {
  font-size: 2rem;
  color: #1a1a1a;
  margin: 10px 0;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 600;
}

.card p {
  font-size: 0.9rem;
  margin-bottom: 16px;
}

button {
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
}

/* Button Variants */
.orange-btn {
  background: #ff8400;
  color: white;
}

.green-btn {
  background: #2ecc71;
  color: white;
}

.dark-btn {
  background: #0b1f47;
  color: white;
}

.white-btn {
  background: #f5f6f7;
  color: #0b1f47;
  border: 1px solid #e0e0e0;
}

/* Responsive */
@media (max-width: 900px) {
  .card {
    flex: 1 1 100%;
  }
}
.intro {
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: #3d3d3d;
  font-size: 1rem;
  line-height: 1.5;
}

/* Grid container */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

/* Individual feature cards */
.feature-card {
  background: #fff;
  border-radius: 8px;
  padding: 20px 24px;
  box-shadow: 0 2px 10px rgb(0 0 0 / 0.05);
  transition: box-shadow 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 5px 20px rgb(0 0 0 / 0.12);
}

.feature-card .icon {
  font-size: 28px;
  color: #3b82f6; /* Blue color */
  margin-bottom: 10px;
}

.feature-card h3 {
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0 0 8px 0;
}

.feature-card p {
  font-weight: 400;
  font-size: 0.95rem;
  color: #4b5563;
  margin: 0;
  line-height: 1.4;
}

/* Highlight last card */
.feature-card.highlight {
  border: 2px dashed #3b82f6;
  background: #f0f7ff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.feature-card.highlight h3 a {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
}

.feature-card.highlight h3 a:hover {
  text-decoration: underline;
}

.feature-card.highlight p {
  color: #6b7280;
  margin-top: 6px;
  font-weight: 400;
  font-size: 0.9rem;
}

/* Responsive text center on small */
@media (max-width: 480px) {
  body {
    padding: 20px 12px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    text-align: center;
  }
}
/* Container for invoice and CTA */
  .invoice-section {
    max-width: 1100px;
    margin: 50px auto 40px auto;
    background: #fff;
    display: flex;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgb(0 0 0 / 0.1);
    overflow: hidden;
  }

  .invoice-left {
    background-color: #0d47a1; /* Strong blue */
    color: white;
    padding: 40px 30px;
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .invoice-left h2 {
    font-weight: 700;
    margin-bottom: 24px;
    font-size: 24px;
  }

  .invoice-left ul {
    margin-bottom: 30px;
  }

  .invoice-left ul li {
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 16px;
    display: flex;
    align-items: center;
  }

  .invoice-left ul li::before {
    content: '✓';
    display: inline-block;
    margin-right: 12px;
    color: #56b981; /* checkmark green */
    font-weight: 700;
    font-size: 18px;
  }

  .invoice-left button {
    background: #fff;
    color: #0d47a1;
    font-weight: 600;
    padding: 10px 18px;
    width: fit-content;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .invoice-left button:hover {
    background-color: #cfd8dc;
  }

  .invoice-right {
    padding: 40px 50px;
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .invoice-right .icon {
    background-color: #dbeafe;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 18px;
  }

  /* simple document icon with inline svg */
  .invoice-right .icon svg {
    fill: #3b82f6;
    width: 22px;
    height: 22px;
  }

  .invoice-right h3 {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 12px;
  }

  .invoice-right p {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 24px;
    color: #4a4a4a;
  }

  .invoice-right button {
    background-color: #2563eb;
    border: none;
    color: white;
    font-weight: 600;
    padding: 12px 25px;
    font-size: 15px;
    cursor: pointer;
    border-radius: 6px;
    width: fit-content;
    transition: background-color 0.3s ease;
  }

  .invoice-right button:hover {
    background-color: #1e40af;
  }

  /* Subtext below the invoice section */
  .compatible-text {
    text-align: center;
    color: #777;
    font-size: 14px;
    margin: 20px 0 40px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Footer */
  footer {
    background-color: #f9fafe;
    padding: 40px 30px;
    font-size: 14px;
    color: #444;
  }

  footer .footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  footer .footer-column {
    flex: 1 1 200px;
    margin: 0 10px 20px 10px;
    min-width: 180px;
  }

  footer .footer-column h4 {
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 15px;
  }

  footer .footer-column h4 span {
    color: #f97316; /* orange */
  }

  footer .footer-column p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.4;
  }

  footer .footer-column ul li {
    margin-bottom: 10px;
  }

  footer .footer-column ul li a {
    color: #444;
    font-weight: 500;
    transition: color 0.2s ease;
  }

  footer .footer-column ul li a:hover {
    color: #f97316;
  }

  /* Social icons container */
  .social-icons {
    display: flex;
    gap: 12px;
    margin-top: 8px;
  }

  .social-icons a {
    color: #555;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
  }

  .social-icons a:hover {
    color: #f97316;
  }

  /* Simple icons from fontawesome style fallback */
  .social-icons a svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
  }

  /* Footer bottom */
  .footer-bottom {
    max-width: 1100px;
    margin: 30px auto 20px auto;
    font-size: 13px;
    color: #888;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }

  @media(max-width: 800px) {
    .invoice-section {
      flex-direction: column;
      max-width: 90%;
    }
    .invoice-left, .invoice-right {
      width: 100%;
    }
    footer .footer-container {
      flex-direction: column;
      align-items: flex-start;
    }
    footer .footer-column {
      margin-left: 0;
      margin-right: 0;
      margin-bottom: 25px;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 8px;
    }
  }