 /* Reset & Base */
    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: white;
      color: #333;
    }

    /* Header */
    header {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 180px;
      background: transparent;
    
      padding: 20px;
     
      top: 0;
      z-index: 100;
    }
    header img {
      max-height: 230px;
      width: auto;
    }

h2 {
  display: inline-block;
  width: 100%;
  text-align: center;
  margin: 2rem 0;
  font-size: 2.5rem;
  font-weight: 800;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(270deg, #007cf0, #00dfd8, #ff6ec4, #007cf0);
  background-size: 800% 800%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textWave 6s ease infinite;
  position: relative;
  padding-bottom: 0.7rem;
}

/* Decorative gradient underline */
h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #00dfd8, #ff6ec4);
  margin: 0.5rem auto 0;
  border-radius: 3px;
}

/* Wave animation */
@keyframes textWave {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


    /* Tabs */
    nav.tabs {
      display: flex;
      justify-content: center; /* Center tabs when enough space */
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      background: transparent;
      padding: 0.5rem 0;
      white-space: nowrap;
    }
    .tab {
      flex: 0 0 auto;
      margin: 0 0.5rem;
      padding: 0.5rem 1rem;
      background: #fff;
      border-radius: 20px;
      border: 2px solid #dee2e6;
      cursor: pointer;
      font-weight: 500;
      transition: all 0.2s ease;
    }
    .tab:hover,
    .tab.active {
      background: #007bff;
      border-color: #0056b3;
      color: #fff;
    }
    nav.tabs::-webkit-scrollbar { display: none; }

  
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.card img {
  display: block;
  margin: 0 auto;
  height: 200px;
  object-fit: cover;
}


.card h3 {
  margin: 0.75rem 1rem 0.5rem;
  font-size: 1.25rem;
}
.card p {
  margin: 0 1rem 1rem;
  line-height: 1.5;
  color: #555;
}

    /* Why Section */
    .why-section { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
    .why-section img { flex: 1; max-width: 500px; border-radius: 12px; width: 100%; }
    .why-section .content { flex: 1; font-size: 1.1rem; line-height: 1.6; }

    /* Points Section */

    .points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;             /* Center the grid container */
  justify-items: stretch;     /* Stretch each .point to fill grid cell */
  text-align: left;           /* Align text inside children */
}

.point {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  width: 100%;                /* Ensure full width in grid cell */
  justify-content: flex-start;/* Align icon and text to the left */
}

.point img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}


   
    /* Form Section */
    form { display: grid; gap: 1rem; max-width: 500px; margin: auto; }
    input, textarea { padding: 0.75rem; border: 1px solid #ced4da; border-radius: 6px; width: 100%; font-size: 1rem; }
    button[type="submit"] { padding: 0.75rem; border: none; border-radius: 6px; background: #007bff; color: #fff; font-size: 1rem; font-weight: 600; cursor: pointer; transition: background 0.2s; }
    button[type="submit"]:hover { background: #0056b3; }

    /* Footer */
    .footer { background: #024b7c; color: #f5f5f5; text-align: center; padding: 2rem 1rem; font-size: 0.9rem; }

    /* Responsive */
    @media (max-width: 768px) {
      /* Tabs align left on mobile */
      nav.tabs { justify-content: flex-start; padding: 0.5rem 1rem; }
      .why-section { flex-direction: column; }
    }


    /* Container for all steps */
.steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 30px 5px;
  max-width: 900px;
  margin: 0 auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Individual step block */
.step {
  background: #ffffff;
  padding: 25px 30px;
  border-left: 5px solid #007bfc;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* Step heading */
.step h3 {
  margin-top: 0;
  color: #003366;
  font-size: 1.25rem;
  margin-bottom: 12px;
}

/* Paragraph text inside step */
.step p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin: 0;
}

/* Apply button */
.apply-btn {
  margin-top: 10px;
  padding: 12px 28px;
  background-color: #007bfc;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.apply-btn:hover {
  background-color: #005ecb;
}

/* Terms accordion (summary/details) */
details {
  font-size: 1rem;
  color: #333;
}

details summary {
  cursor: pointer;
  color: #007bfc;
  font-weight: bold;
  margin-bottom: 10px;
  list-style: none;
}

details ul {
  margin: 10px 0 0 20px;
  padding: 0;
}

details li {
  margin-bottom: 8px;
  color: #555;
  line-height: 1.6;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .step {
    padding: 20px;
  }

  .step h3 {
    font-size: 1.1rem;
  }

  .apply-btn {
    width: 100%;
    font-size: 1rem;
  }
}
