  header {
  background: #fff;
  padding: 15px 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .logo {
  font-size: 1.5em;
  font-weight: 700;
  color: #091653;
  transition: 0.3s ease;
}
header .logo span {
  color: #007ea7;
}
header .logo:hover {
  color: #0f1f63;
  transform: scale(1.05);
  text-shadow: 0 0 20px #1aeeef;
}
/* Navigation */
nav ul {
  display: flex;
  gap: 20px;
}
nav a {
  font-weight: 500;
  padding: 6px 10px;
  transition: color 0.2s;
}
nav a:hover {
  color: #06b6d4;
}
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #eff0f5;
  color: #222;
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: 1.6;
}
.bb {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 40px 0;
  flex-wrap: wrap; /* mobile friendly */
}

.bb .banwane {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.bb .banwane img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.bb .support-text {
  flex: 1;
  min-width: 300px;
}

.bb .support-text h2 {
  color: #1b2141;
  margin-bottom: 10px;
}

.bb .support-text p {
  margin-bottom: 15px;
  font-size: 1rem;
  line-height: 1.6;
}

.bb .support-text ul {
  padding-left: 20px;
}

.bb .support-text li {
  margin-bottom: 8px;
  font-size: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: square;
}
nav ul{
  list-style: none;
}
.hero {
  position: relative;
  height: 60vh;
  min-height: 250px;
  background: url('image/home-banner.png') no-repeat center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 0 15px;
}
.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(25, 12, 148, 0.24);
}
/* Contact Box */
.contact-box { text-align:center; margin:40px 0; }
.phone { font-size:22px; font-weight:600; color:#0466b6; margin-bottom:16px; }
/* Helpline Section */
.helpline-services {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.helpline-text {
  flex: 1;
  min-width: 300px;
}

.helpline-text h2 {
  color: #1b2141;
  margin-bottom: 10px;
}

.helpline-text h4 {
  margin-bottom: 15px;
  font-weight: 600;
  color: #444;
}

.helpline-text ul {
  padding-left: 20px;
}

.helpline-text li {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.6;
}

.helpline-image {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.helpline-image img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

    main {
      max-width: 1100px;
      margin: 40px auto;
      padding: 20px;
    }
    section {
      background: #fff;
      padding: 30px;
      margin-bottom: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }
    h2 {
      color: #1b2141;
      margin-bottom: 15px;
    }
    .phone-number {
      font-size: 1.6rem;
      font-weight: bold;
      color: #1b2141;
    }
    .btn {
      display: inline-block;
      padding: 12px 24px;
      margin-top: 15px;
      background: #1b2141;
      color: #fff;
      text-decoration: none;
      border-radius: 8px;
      transition: background 0.3s;
    }
    .btn:hover {
      background: #e63946;
    }
    ul {
      padding-left: 20px;
    }
/* ===== Footer Styling ===== */
/* Footer */
footer { background:#ffffff; padding:20px; font-size:14px; color:#222; border-top:1px solid #eee; }
.footer-grid { max-width:1100px; margin:auto; padding:40px 20px; display:grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap:30px; text-align:left; }
footer a { display:inline-block; padding:10px 12px; min-height:44px; color:#1a1a1a; text-decoration:underline; }
footer a:hover { color:#005b82; }
.footer-bottom { text-align:center; padding:15px; border-top:1px solid #eee; font-size:13px; color:#333; margin-top:20px; }
.keywords { margin-top:8px; font-size:12px; color:#444; }
/* ===========================
   Responsive Design (Mobile)
=========================== */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  nav ul {
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
  }
  .hero {
    height: auto;
    min-height: 200px;
    padding: 40px 15px;
  }
  .bb, .helpline-services {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .support-text, .helpline-text { text-align: center; }
  section { padding: 20px; }
  footer { text-align: center; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Mobile (≤480px) */
@media (max-width: 480px) {
  .bb, .helpline-services { gap: 15px; }
  .contact-box .phone { font-size: 18px; }
  .cards { grid-template-columns: 1fr; gap: 15px; }
  .card { padding: 15px; font-size: 14px; }
  .card h2, .card h3 { font-size: 16px; }
  .card p { font-size: 13px; }
    section {
    padding: 15px; /* sections ko andar se thoda space do */
  }
  h2 {
    font-size: 18px; /* chhoti heading */
  }
  h4 {
    font-size: 15px; /* subheading thoda chhota */
    line-height: 1.4;
  }
  ul li {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px; /* list items ke beech gap */
  }
  .cards {
    grid-template-columns: 1fr; /* ek hi column rakho */
    gap: 15px;
  }
  .card {
    padding: 15px;
    font-size: 14px;
  }
}

/* Extra small (≤320px) */
@media (max-width: 320px) {
  header { padding: 10px; }
  nav ul { gap: 6px; }
  .hero { padding: 20px 10px; min-height: 160px; }
  .bb, .helpline-services { gap: 12px; }
  .card { padding: 12px; font-size: 13px; }
  .card h2, .card h3 { font-size: 15px; }
  .card p { font-size: 12px; }
  header {
    padding: 10px;
  }
  nav ul {
    gap: 6px;
  }
  section {
    padding: 12px; /* aur thoda compact */
  }
  h2 {
    font-size: 16px;
  }
  h4 {
    font-size: 14px;
  }
  ul li {
    font-size: 13px;
    line-height: 1.4;
  }
  .btn {
    padding: 10px 18px;
    font-size: 14px;
  }
}
