/* ============================================================
   style12.css — Diwya Vatsalya Mamta Fertility Centre
   Full site stylesheet — extracted from index.html
   Last updated: 2026
   ============================================================ */

/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background: #fff;
  padding-top: 64px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #a45ba3; text-decoration: none; transition: .2s; }
a:hover { color: #7a3d7a; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 16px; }
section { padding: 50px 0; }
h1, h2, h3, h4 { margin-top: 0; line-height: 1.3; color: #222; }
h1 { font-size: 28px; font-weight: 700; }
h2 { font-size: 24px; font-weight: 700; margin-bottom: 20px; }
h3 { font-size: 18px; font-weight: 600; }
.text-center { text-align: center; }
.color-primary { color: #a45ba3; }

/* ============ ACCESSIBILITY ============ */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
  outline: 2px solid #a45ba3;
  outline-offset: 2px;
}
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #a45ba3;
  color: #fff;
  padding: 8px 16px;
  z-index: 2001;
}
.skip-link:focus { top: 0; }

/* ============ HEADER ============ */
.top-bar { background: #a45ba3; color: #fff; font-size: 13px; padding: 0; height: 36px; display: none; position: fixed; top: 0; left: 0; right: 0; z-index: 1001; }
.top-bar a { color: #fff; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; height: 36px; }
.top-bar-info { display: flex; gap: 20px; flex-wrap: wrap; }
.top-bar-info span { display: inline-flex; align-items: center; gap: 5px; }
.top-bar-social a { margin-left: 10px; color: #fff; font-weight: 700; background: rgba(255,255,255,0.2); padding: 3px 8px; border-radius: 4px; }
.top-bar-social a:hover { background: rgba(255,255,255,0.4); color: #fff; }

.main-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
  z-index: 1000;
  height: 64px;
}
.main-header .container { display: flex; justify-content: space-between; align-items: center; height: 100%; }
.logo img { height: 46px; width: auto; }
.nav-desktop { display: none; }
.nav-desktop ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 5px; }
.nav-desktop > ul > li { position: relative; }
.nav-desktop > ul > li > a { padding: 20px 12px; display: block; color: #333; font-weight: 500; font-size: 14px; }
.nav-desktop > ul > li > a:hover { color: #a45ba3; }
.nav-desktop .submenu {
  position: absolute; top: 100%; left: 0;
  background: #fff; min-width: 220px;
  box-shadow: 0 4px 15px rgba(0,0,0,.1);
  border-radius: 6px;
  opacity: 0; visibility: hidden;
  transform: translateY(10px); transition: .2s;
  list-style: none; padding: 8px 0;
}
.nav-desktop > ul > li:hover .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-desktop .submenu li a { padding: 8px 18px; display: block; color: #333; font-size: 14px; }
.nav-desktop .submenu li a:hover { background: #f7f2f7; color: #a45ba3; }
.header-cta { display: flex; align-items: center; gap: 8px; }
.header-call-btn {
  background: #a45ba3; color: #fff;
  padding: 9px 16px; border-radius: 50px;
  font-weight: 600; font-size: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  line-height: 1; white-space: nowrap;
}
.header-call-btn:hover { background: #7a3d7a; color: #fff; }
.header-call-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.menu-toggle { background: none; border: none; font-size: 24px; cursor: pointer; color: #a45ba3; padding: 8px; }
.menu-toggle svg { width: 28px; height: 28px; }

/* ============ MOBILE NAV ============ */
.mobile-nav {
  position: fixed; top: 0; right: -100%;
  width: 85%; max-width: 340px; height: 100vh;
  background: #fff; z-index: 1100;
  transition: right .3s; overflow-y: auto;
  box-shadow: -5px 0 20px rgba(0,0,0,.15);
}
.mobile-nav.open { right: 0; }
.mobile-nav-header { display: flex; justify-content: space-between; align-items: center; padding: 18px; border-bottom: 1px solid #eee; }
.mobile-nav-close { background: none; border: none; font-size: 28px; cursor: pointer; color: #333; }
.mobile-nav ul { list-style: none; padding: 0; margin: 0; }
.mobile-nav > ul > li { border-bottom: 1px solid #f0f0f0; }
.mobile-nav > ul > li > a,
.mobile-nav .mob-toggle {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px; color: #333; font-weight: 500;
  width: 100%; background: none; border: none;
  text-align: left; font-size: 15px; cursor: pointer;
}
.mobile-nav .submenu { display: none; background: #f9f5f9; }
.mobile-nav .submenu.open { display: block; }
.mobile-nav .submenu li a { padding: 10px 30px; display: block; font-size: 14px; color: #555; }
.mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 1090; opacity: 0; visibility: hidden; transition: .3s; }
.mobile-overlay.open { opacity: 1; visibility: visible; }

/* ============ HERO ============ */
.hero { background: linear-gradient(135deg, #faf5fa 0%, #fff 100%); padding: 30px 0 40px; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 25px; align-items: center; }
.hero-content h1 { font-size: 26px; margin-bottom: 12px; color: #2c1a2c; }
.hero-content h1 span { color: #a45ba3; }
.hero-trust-strip { display: flex; flex-wrap: wrap; gap: 10px; margin: 15px 0; }
.hero-trust-strip span {
  background: #fff; border: 1px solid #e8d5e8; color: #a45ba3;
  padding: 6px 12px; border-radius: 50px; font-size: 13px;
  font-weight: 600; display: inline-flex; align-items: center; gap: 5px;
}
.hero-content p { font-size: 15px; color: #444; margin-bottom: 14px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 13px 22px; border-radius: 50px;
  font-weight: 600; font-size: 15px; cursor: pointer;
  border: none; text-align: center; transition: .2s; text-decoration: none;
}
.btn-primary { background: #a45ba3; color: #fff; }
.btn-primary:hover { background: #7a3d7a; color: #fff; transform: translateY(-1px); }
.btn-whatsapp { background: #25d366; color: #fff; }
.btn-whatsapp:hover { background: #1ea952; color: #fff; }
.btn-outline { background: #fff; color: #a45ba3; border: 2px solid #a45ba3; }
.btn-outline:hover { background: #a45ba3; color: #fff; }
.hero-image img { border-radius: 12px; box-shadow: 0 8px 25px rgba(164,91,163,.15); width: 100%; }

/* ============ TRUST COUNTERS ============ */
.trust-counters { background: linear-gradient(135deg, #a45ba3 0%, #7a3d7a 100%); color: #fff; padding: 40px 0; }
.counters-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; text-align: center; }
.counter-item .num { font-size: 32px; font-weight: 700; display: block; margin-bottom: 5px; }
.counter-item .label { font-size: 13px; opacity: .95; }

/* ============ SECTION TITLE ============ */
.section-title { text-align: center; max-width: 750px; margin: 0 auto 30px; }
.section-title h2 { font-size: 24px; margin-bottom: 12px; }
.section-title h2 span { color: #a45ba3; }
.section-title p { color: #555; font-size: 15px; }
.section-divider { width: 60px; height: 3px; background: #a45ba3; margin: 10px auto 18px; }

/* ============ DOCTORS ============ */
.bg-light { background: #faf5fa; }
.doctors-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.doctor-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,.06); transition: .3s; }
.doctor-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(164,91,163,.15); }
.doctor-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.doctor-info { padding: 16px; text-align: center; }
.doctor-info h3 { color: #a45ba3; margin-bottom: 6px; }
.doctor-info p { font-size: 14px; color: #666; margin: 3px 0; }

/* ============ SERVICES ============ */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.service-card {
  background: #fff; border-radius: 12px; overflow: hidden;
  box-shadow: 0 3px 12px rgba(0,0,0,.06); transition: .3s;
  border: 1px solid #f0e4f0;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(164,91,163,.18); }
.service-card img { width: 100%; height: 180px; object-fit: cover; }
.service-card-content { padding: 18px; }
.service-card-content h3 { color: #a45ba3; margin-bottom: 8px; font-size: 18px; }
.service-card-content p { font-size: 14px; color: #555; margin-bottom: 14px; min-height: 65px; }
.service-link { color: #a45ba3; font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 5px; }
.service-link:hover { gap: 8px; color: #7a3d7a; }

/* ============ ABOUT ============ */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 25px; align-items: center; }
.about-image img { border-radius: 12px; width: 100%; }
.about-content h2 { font-size: 24px; margin-bottom: 14px; }
.about-content h2 span { color: #a45ba3; }
.about-content p { font-size: 15px; color: #444; margin-bottom: 14px; }
.about-cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }

/* ============ WHY CHOOSE ============ */
.why-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.why-item {
  background: #fff; border-left: 4px solid #a45ba3;
  padding: 16px; border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.why-item h3 { font-size: 16px; color: #a45ba3; margin-bottom: 6px; }
.why-item p { font-size: 14px; color: #555; margin: 0; }

/* ============ COST TABLE ============ */
.cost-table { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,.06); margin: 20px 0; }
.cost-table table { width: 100%; border-collapse: collapse; }
.cost-table th { background: #a45ba3; color: #fff; padding: 14px; text-align: left; font-size: 14px; }
.cost-table td { padding: 12px 14px; border-bottom: 1px solid #f0e4f0; font-size: 14px; }
.cost-table tr:last-child td { border-bottom: none; }
.cost-table tr:nth-child(even) { background: #faf5fa; }
.cost-note { font-size: 13px; color: #777; font-style: italic; margin-top: 10px; }

/* ============ TESTIMONIAL CARDS ============ */
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.review-card {
  background: #fff; border-radius: 12px; padding: 20px;
  box-shadow: 0 3px 12px rgba(0,0,0,.06); border: 1px solid #f0e4f0;
}
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.review-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: #a45ba3; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 18px; flex-shrink: 0;
}
.review-meta strong { display: block; color: #222; font-size: 15px; }
.review-stars { color: #f5b300; font-size: 14px; letter-spacing: 2px; }
.review-verified { color: #25d366; font-size: 11px; font-weight: 600; margin-left: 5px; }
.review-text { font-size: 14px; color: #555; line-height: 1.6; }

/* ============ SUCCESS STORIES (Videos) ============ */
.video-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.video-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 3px 12px rgba(0,0,0,.08); transition: .3s; }
.video-card:hover { transform: translateY(-3px); }
.video-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; background: #000; cursor: pointer; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: .3s; }
.video-card:hover .video-thumb img { transform: scale(1.05); }
.video-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,.3); }
.video-play::before {
  content: ""; display: block;
  width: 60px; height: 60px;
  background: #ff0000; border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0,0,0,.4);
}
.video-play::after {
  content: ""; position: absolute;
  width: 0; height: 0;
  border-left: 18px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 6px;
}
.video-caption { padding: 14px; font-size: 14px; color: #333; text-align: center; }
.video-caption strong { color: #a45ba3; display: block; margin-bottom: 4px; }

/* ============ MEDIA COVERAGE ============ */
.media-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.media-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 3px 12px rgba(0,0,0,.06); }
.media-card img { width: 100%; height: 180px; object-fit: cover; }
.media-content { padding: 16px; }
.media-content h3 { font-size: 16px; margin-bottom: 8px; }
.media-content p { font-size: 14px; color: #555; margin-bottom: 10px; }
.partners {
  display: flex; flex-wrap: wrap; gap: 18px;
  align-items: center; justify-content: center;
  margin-top: 30px; padding: 20px;
  background: #f9f9f9; border-radius: 12px;
}
.partners img { height: 32px; width: auto; opacity: .7; filter: grayscale(50%); }

/* ============ CALCULATORS ============ */
.calc-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.calc-card {
  background: linear-gradient(135deg, #a45ba3 0%, #7a3d7a 100%);
  color: #fff; padding: 24px; border-radius: 12px;
  text-align: center; display: flex; flex-direction: column;
  align-items: center; gap: 10px; transition: .3s;
}
.calc-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(164,91,163,.25); color: #fff; }
.calc-card .icon { font-size: 36px; }
.calc-card h3 { color: #fff; font-size: 16px; margin: 0; }

/* ============ BLOG CARDS ============ */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.blog-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 3px 12px rgba(0,0,0,.06); transition: .3s; }
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,.1); }
.blog-card img { width: 100%; height: 180px; object-fit: cover; }
.blog-content { padding: 16px; }
.blog-content h3 { font-size: 16px; margin-bottom: 8px; }
.blog-content h3 a { color: #222; }
.blog-content h3 a:hover { color: #a45ba3; }
.blog-content p { font-size: 14px; color: #555; margin-bottom: 10px; }

/* ============ FAQ ACCORDION ============ */
.faq-grid { display: grid; grid-template-columns: 1fr; gap: 25px; }
.faq-list .faq-item {
  background: #fff; border-radius: 8px;
  margin-bottom: 10px; box-shadow: 0 2px 8px rgba(0,0,0,.04);
  overflow: hidden;
}
.faq-question {
  width: 100%; background: none; border: none;
  padding: 16px 18px; text-align: left;
  font-size: 15px; font-weight: 600; color: #222;
  cursor: pointer; display: flex;
  justify-content: space-between; align-items: center; gap: 10px;
}
.faq-question::after { content: "+"; font-size: 22px; color: #a45ba3; font-weight: 300; flex-shrink: 0; }
.faq-item.active .faq-question::after { content: "−"; }
.faq-item.active .faq-question { color: #a45ba3; }
.faq-answer { display: none; padding: 0 18px 16px; font-size: 14px; color: #555; line-height: 1.6; }
.faq-item.active .faq-answer { display: block; }
.map-container { position: relative; width: 100%; aspect-ratio: 4/3; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,.08); }
.map-container iframe { width: 100%; height: 100%; border: 0; }

/* ============ CONDITIONS LIST ============ */
.conditions-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px; margin-top: 18px; }
.conditions-grid li {
  list-style: none; background: #fff;
  padding: 10px 12px; border-radius: 8px;
  font-size: 13px; color: #444;
  border-left: 3px solid #a45ba3;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}

/* ============ FOOTER ============ */
.site-footer { background: #2a1f2a; color: #ddd; padding: 40px 0 0; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 25px; }
.site-footer h3 {
  color: #fff; font-size: 16px; margin-bottom: 14px;
  border-bottom: 2px solid #a45ba3; padding-bottom: 6px; display: inline-block;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 8px; }
.site-footer ul li a { color: #bbb; }
.site-footer ul li a:hover { color: #a45ba3; }
.footer-logo { height: 48px; margin-bottom: 14px; background: #fff; padding: 6px; border-radius: 6px; }
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social a {
  width: 38px; height: 38px; background: #a45ba3; color: #fff;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; transition: .2s;
  font-size: 13px; font-weight: 700; text-decoration: none;
  border: 2px solid rgba(255,255,255,0.3);
}
.footer-social a:hover { background: #fff; color: #a45ba3; border-color: #a45ba3; }
.footer-bottom { border-top: 1px solid #444; margin-top: 30px; padding: 18px 0; text-align: center; font-size: 13px; color: #999; }
.footer-bottom a { color: #a45ba3; margin: 0 5px; }

/* ============ STICKY MOBILE CTA BAR ============ */
.mobile-cta-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #fff; box-shadow: 0 -3px 15px rgba(0,0,0,.12);
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  z-index: 998; border-top: 1px solid #eee;
}
.mobile-cta-bar a {
  padding: 11px 5px; text-align: center; color: #333;
  font-size: 12px; font-weight: 600; border-right: 1px solid #eee;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
}
.mobile-cta-bar a:last-child { border-right: none; }
.mobile-cta-bar a.cta-call { background: #a45ba3; color: #fff; }
.mobile-cta-bar a.cta-whatsapp { background: #25d366; color: #fff; }
.mobile-cta-bar svg { width: 22px; height: 22px; }

/* ============ FLOATING WHATSAPP (Desktop) ============ */
.float-whatsapp {
  position: fixed; bottom: 20px; right: 20px;
  width: 56px; height: 56px;
  background: #25d366; color: #fff; border-radius: 50%;
  display: none; align-items: center; justify-content: center;
  box-shadow: 0 4px 15px rgba(37,211,102,.4);
  z-index: 997; animation: pulse 2s infinite;
}
.float-whatsapp:hover { background: #1ea952; color: #fff; transform: scale(1.05); }
.float-whatsapp svg { width: 30px; height: 30px; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(37,211,102,.4); }
  50% { box-shadow: 0 4px 20px rgba(37,211,102,.7); }
}

/* ============ FLOATING CALL BUTTON (Desktop) ============ */
.float-call {
  position: fixed; bottom: 96px; right: 20px;
  width: 52px; height: 52px;
  background: #a45ba3; color: #fff; border-radius: 50%;
  display: none; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(164,91,163,.40);
  z-index: 997; text-decoration: none;
  transition: transform .2s, background .2s;
}
.float-call:hover { background: #7a3d7a; color: #fff; transform: scale(1.08); }
.float-call svg { width: 24px; height: 24px; }

/* ============ ENQUIRY POPUP ============ */
.enquiry-modal {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.65);
  z-index: 2000; display: none;
  align-items: center; justify-content: center; padding: 15px;
}
.enquiry-modal.open { display: flex; }
.enquiry-box {
  background: #fff; border-radius: 14px;
  max-width: 420px; width: 100%;
  padding: 25px; position: relative;
  animation: popIn .3s;
}
@keyframes popIn {
  from { opacity: 0; transform: scale(.9); }
  to { opacity: 1; transform: scale(1); }
}
.enquiry-close { position: absolute; top: 10px; right: 14px; background: none; border: none; font-size: 28px; color: #999; cursor: pointer; line-height: 1; }
.enquiry-box h3 { color: #a45ba3; margin-bottom: 6px; font-size: 20px; text-align: center; }
.enquiry-box .sub { color: #777; font-size: 13px; text-align: center; margin-bottom: 18px; }
.enquiry-box .form-group { margin-bottom: 12px; }
.enquiry-box input,
.enquiry-box select,
.enquiry-box textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid #e0d0e0; border-radius: 8px;
  font-size: 14px; font-family: inherit; background: #faf7fa;
}
.enquiry-box input:focus,
.enquiry-box select:focus,
.enquiry-box textarea:focus { outline: none; border-color: #a45ba3; background: #fff; }
.enquiry-box button[type="submit"] {
  width: 100%; background: #a45ba3; color: #fff;
  border: none; padding: 13px; border-radius: 50px;
  font-size: 15px; font-weight: 600; cursor: pointer; margin-top: 5px;
}
.enquiry-box button[type="submit"]:hover { background: #7a3d7a; }
.enquiry-trust { display: flex; justify-content: center; gap: 12px; margin-top: 14px; font-size: 11px; color: #888; }
.enquiry-trust span { display: inline-flex; align-items: center; gap: 4px; }

/* ============ FLOATING SIDE ENQUIRY BUTTON ============ */
.side-enquiry {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: 100% 50%;
  background: #a45ba3; color: #fff;
  padding: 10px 24px; border-radius: 8px 8px 0 0;
  font-weight: 600; font-size: 13px; letter-spacing: 1px;
  cursor: pointer; z-index: 996;
  box-shadow: -2px 0 12px rgba(0,0,0,.18);
  display: none; border: none;
  white-space: nowrap;
}
.side-enquiry:hover { background: #7a3d7a; color: #fff; }

/* ============ AWARDS SECTION ============ */
.awards-section {
  background: linear-gradient(160deg, #fdf6fd 0%, #f5ecf5 50%, #fff5f0 100%);
  padding: 60px 0; position: relative; overflow: hidden;
}
.awards-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(164,91,163,0.10); color: #a45ba3;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 5px 14px; border-radius: 50px;
  margin-bottom: 12px; border: 1px solid rgba(164,91,163,0.2);
}
.awards-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.award-card {
  background: #fff; border-radius: 14px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(164,91,163,.12);
  border: 1px solid rgba(164,91,163,0.10);
  transition: transform .3s, box-shadow .3s;
}
.award-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(164,91,163,.22); }
.award-img-wrap { width: 100%; aspect-ratio: 467 / 588; overflow: hidden; background: #f5eef5; }
.award-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform .4s; }
.award-card:hover .award-img-wrap img { transform: scale(1.05); }
.award-card.portrait .award-img-wrap { aspect-ratio: 467 / 588; }
.award-card.featured { grid-column: span 1; }
.award-card.featured .award-img-wrap { aspect-ratio: 467 / 588; }
.award-caption { padding: 12px 16px 14px; background: #fff; border-top: 1px solid rgba(164,91,163,0.08); }
.award-caption .award-title { font-size: 13px; font-weight: 700; color: #2c1a2c; margin: 0 0 4px; line-height: 1.4; }
.award-caption .award-org { font-size: 11px; color: #a45ba3; font-weight: 600; }
.awards-trust-strip { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 30px; }
.awards-trust-strip .trust-badge {
  background: #fff; border: 1.5px solid rgba(164,91,163,0.2);
  border-radius: 50px; padding: 7px 16px;
  font-size: 12px; font-weight: 600; color: #5a2e5a;
  display: inline-flex; align-items: center; gap: 5px;
}

/* ============ RESPONSIVE: TABLET (≥768px) ============ */
@media (min-width: 768px) {
  body { padding-top: 64px; }
  .hero-content h1 { font-size: 30px; }
  h2 { font-size: 28px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .doctors-grid { grid-template-columns: repeat(3,1fr); }
  .reviews-grid { grid-template-columns: repeat(2,1fr); }
  .video-grid { grid-template-columns: repeat(3,1fr); }
  .media-grid { grid-template-columns: repeat(3,1fr); }
  .calc-grid { grid-template-columns: repeat(3,1fr); }
  .blog-grid { grid-template-columns: repeat(3,1fr); }
  .conditions-grid { grid-template-columns: repeat(3,1fr); }
  .counters-grid { grid-template-columns: repeat(4,1fr); }
  .counter-item .num { font-size: 40px; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .mobile-cta-bar { display: none; }
  .float-whatsapp { display: flex; }
  .float-call { display: flex; }
  .side-enquiry { display: block; }
  body { padding-bottom: 0; }
}

/* ============ RESPONSIVE: DESKTOP (≥992px) ============ */
@media (min-width: 992px) {
  .top-bar { display: flex; }
  body { padding-top: 100px; }
  .main-header { top: 36px; height: 64px; }
  .menu-toggle { display: none; }
  .nav-desktop { display: block; }
  .hero { padding: 50px 0 60px; }
  .hero-grid { grid-template-columns: 1.1fr 1fr; gap: 40px; }
  .hero-content h1 { font-size: 36px; }
  h2 { font-size: 32px; }
  .section-title h2 { font-size: 30px; }
  .about-grid { grid-template-columns: 2fr 1fr; gap: 40px; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: repeat(3,1fr); }
  .faq-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 70px 0; }
}

/* ============ AWARDS RESPONSIVE ============ */
@media (max-width: 575px) {
  .awards-gallery { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
}
@media (min-width: 576px) and (max-width: 991px) {
  .awards-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
  .awards-gallery { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}

/* ============ MOBILE CTA BOTTOM PUSH ============ */
@media (max-width: 767px) {
  body { padding-bottom: 64px; }
  .mobile-cta-bar { display: grid; }
}




/* ============================================================
   ABOUT US PAGE — CSS
   Add this block at the bottom of style12.css
   Used by: about-us.html
   ============================================================ */

/* ---- Page Banner ---- */
.about-banner {
  background: linear-gradient(135deg, #7a3d7a 0%, #a45ba3 60%, #c47dc3 100%);
  padding: 50px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.about-banner h1 {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 8px;
  position: relative;
}
.about-banner .breadcrumb-nav {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  position: relative;
}
.about-banner .breadcrumb-nav a { color: #fff; text-decoration: underline; }
.about-banner .breadcrumb-nav span { margin: 0 6px; }

/* ---- Section padding ---- */
.about-section { padding: 60px 0; }
.about-section.bg-soft { background: #faf5fa; }

/* ---- Section label pill ---- */
.section-pill {
  display: inline-block;
  background: rgba(164,91,163,0.10);
  color: #a45ba3;
  border: 1px solid rgba(164,91,163,0.2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

/* ---- About intro grid ---- */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
@media (min-width: 768px) {
  .about-intro-grid { grid-template-columns: 1fr 1fr; }
}
.about-intro-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(164,91,163,0.18);
  position: relative;
}
.about-intro-img img { width: 100%; display: block; border-radius: 16px; }
.about-intro-img .img-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: #a45ba3;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}

/* ---- Trust strip chips ---- */
.about-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 24px;
}
.trust-chip {
  background: #fff;
  border: 1px solid #e8d5e8;
  color: #7a3d7a;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.trust-chip .dot {
  width: 7px;
  height: 7px;
  background: #a45ba3;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---- Stats row ---- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}
@media (min-width: 576px) {
  .stats-row { grid-template-columns: repeat(4, 1fr); }
}
.stat-box {
  background: #fff;
  border: 1px solid #eadcea;
  border-radius: 12px;
  padding: 18px 12px;
  text-align: center;
}
.stat-box .num {
  font-size: 26px;
  font-weight: 700;
  color: #a45ba3;
  display: block;
  line-height: 1.1;
}
.stat-box .lbl { font-size: 12px; color: #666; margin-top: 4px; display: block; }

/* ---- Mission Vision grid ---- */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .mv-grid { grid-template-columns: 1fr 1fr; }
}
.mv-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 28px 24px;
  border: 1px solid #eadcea;
  position: relative;
  overflow: hidden;
}
.mv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: #a45ba3;
  border-radius: 4px 0 0 4px;
}
.mv-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #a45ba3;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mv-card p { font-size: 15px; color: #444; line-height: 1.8; margin: 0; }
.mv-icon {
  width: 36px; height: 36px;
  background: rgba(164,91,163,0.10);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* ---- Doctor profile grid ---- */
.doctor-profile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}
@media (min-width: 768px) {
  .doctor-profile-grid { grid-template-columns: 280px 1fr; }
}
.doctor-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(164,91,163,0.18);
}
.doctor-img-wrap img { width: 100%; display: block; }
.doctor-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 18px;
}
.cred-tag {
  background: #f7f0f7;
  border: 1px solid #e8d5e8;
  color: #7a3d7a;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}
.doctor-bio p { font-size: 15px; color: #444; line-height: 1.85; margin-bottom: 14px; }
.speciality-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}
.spec-tag {
  background: rgba(164,91,163,0.08);
  color: #a45ba3;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  border: 1px solid rgba(164,91,163,0.2);
}

/* ---- Why Trust cards ---- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 576px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}
.why-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px 20px;
  border: 1px solid #eadcea;
  transition: transform .25s, box-shadow .25s;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(164,91,163,0.14);
}
.why-card .icon-wrap {
  width: 46px; height: 46px;
  background: rgba(164,91,163,0.10);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}
.why-card h4 { font-size: 15px; font-weight: 700; color: #2c1a2c; margin-bottom: 8px; }
.why-card p { font-size: 14px; color: #555; line-height: 1.7; margin: 0; }

/* ---- Team mini grid ---- */
.team-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (min-width: 576px) {
  .team-mini-grid { grid-template-columns: repeat(3, 1fr); }
}
.team-mini-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eadcea;
  text-align: center;
  transition: transform .25s;
}
.team-mini-card:hover { transform: translateY(-4px); }
.team-mini-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.team-mini-card .t-info { padding: 12px 10px; }
.team-mini-card .t-info h4 { font-size: 14px; color: #a45ba3; font-weight: 700; margin: 0 0 3px; }
.team-mini-card .t-info p { font-size: 12px; color: #666; margin: 0; }

/* ---- CTA Band ---- */
.cta-band {
  background: linear-gradient(135deg, #7a3d7a 0%, #a45ba3 100%);
  border-radius: 18px;
  padding: 40px 30px;
  text-align: center;
  color: #fff;
}
.cta-band h3 { font-size: 24px; font-weight: 700; margin-bottom: 10px; color: #fff; }
.cta-band p { font-size: 15px; opacity: .9; margin-bottom: 24px; }
.cta-band-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.btn-white {
  background: #fff;
  color: #a45ba3;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 50px;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: .2s;
}
.btn-white:hover { background: #f5eaf5; color: #7a3d7a; text-decoration: none; }
.btn-wa {
  background: #25d366;
  color: #fff;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 50px;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: .2s;
}
.btn-wa:hover { background: #1ea952; color: #fff; text-decoration: none; }

/* ---- FAQ Accordion ---- */
.faq-list { list-style: none; padding: 0; margin: 0; }
.faq-item {
  border: 1px solid #eadcea;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 20px;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: #2c1a2c;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-q .arrow { font-size: 18px; color: #a45ba3; transition: transform .25s; flex-shrink: 0; }
.faq-item.open .faq-q .arrow { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 20px 16px; font-size: 14px; color: #555; line-height: 1.75; }
.faq-item.open .faq-a { display: block; }

/* ---- About Section Title block ---- */
.about-section-title { margin-bottom: 36px; }
.about-section-title h2 { font-size: 28px; font-weight: 700; color: #2c1a2c; margin-bottom: 10px; }
.about-section-title h2 span { color: #a45ba3; }
.about-section-title p { color: #555; font-size: 15px; max-width: 640px; }
.title-line { width: 50px; height: 3px; background: #a45ba3; border-radius: 2px; margin: 10px 0 14px; }

/* ---- Media logos strip ---- */
.media-logos { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: center; margin-top: 20px; }
.media-logos img { height: 30px; opacity: .65; filter: grayscale(1); transition: .2s; }
.media-logos img:hover { opacity: 1; filter: grayscale(0); }

/* ---- Internal link cards grid ---- */
.link-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (min-width: 576px) {
  .link-cards { grid-template-columns: repeat(3, 1fr); }
}
.link-card {
  border: 1px solid #eadcea;
  border-radius: 10px;
  padding: 16px 14px;
  background: #fff;
  text-decoration: none;
  color: #2c1a2c;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: .2s;
}
.link-card:hover { background: #f7f0f7; color: #a45ba3; border-color: #c47dc3; text-decoration: none; }
.link-card svg { width: 16px; height: 16px; flex-shrink: 0; color: #a45ba3; }