/* ==========================================================================
   Ankur Kids Hospital – site stylesheet (hand written, no framework)
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --navy: #1f2556;
  --navy-2: #151a3f;
  --purple: #4b2c85;
  --purple-2: #6a4bc4;
  --teal: #0fa3b1;
  --teal-2: #1bbde4;
  --teal-dark: #0b7f8a;
  --tint: #f3f8fc;
  --tint-2: #eaf6f9;
  --line: #e3ebf1;
  --text: #4a5568;
  --heading: #1f2556;
  --white: #fff;
  --grad: linear-gradient(90deg, #4b2c85 0%, #3d4a9e 45%, #0fa3b1 100%);
  --grad-soft: linear-gradient(135deg, #f5f9ff 0%, #eef8fb 55%, #f4f1fb 100%);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 10px 30px rgba(31, 37, 86, .08);
  --shadow-lg: 0 18px 45px rgba(31, 37, 86, .14);
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-head: "Poppins", "Inter", system-ui, sans-serif;
  --container: 1200px;
}

/* ---------- Icon fonts used inside older page content ---------- */
@font-face { font-family: FontAwesome; src: url(../fonts/fontawesome-webfont.woff2) format("woff2"); font-display: swap; }
@font-face { font-family: btmedical; src: url(../fonts/btmedical.ttf) format("truetype"); font-display: swap; }
@font-face { font-family: Icon7Stroke; src: url(../fonts/Pe-icon-7-stroke.woff) format("woff"); font-display: swap; }
[data-ico-fa]:before { font-family: FontAwesome; content: attr(data-ico-fa); }
[data-ico-cs]:before { font-family: btmedical; content: attr(data-ico-cs); }
[data-ico-s7]:before { font-family: Icon7Stroke; content: attr(data-ico-s7); }

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { overflow-x: clip; }
@supports not (overflow: clip) { html, body { overflow-x: hidden; } }
body { margin: 0; font: 400 16px/1.7 var(--font); color: var(--text); background: #fff; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-dark); text-decoration: none; transition: color .2s; }
a:hover { color: var(--purple); }
h1, h2, h3, h4, h5, h6 { margin: 0 0 .6em; font-family: var(--font-head); font-weight: 600; line-height: 1.25; color: var(--heading); }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.3em; }
strong { color: var(--heading); font-weight: 600; }
table { width: 100%; border-collapse: collapse; margin: 0 0 1.5em; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--teal-2); outline-offset: 2px; }
.ico { width: 1.15em; height: 1.15em; flex: none; vertical-align: -.18em; }
.sr-only { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: -9999px; top: 8px; z-index: 999; padding: 10px 16px; background: var(--navy); color: #fff; border-radius: 8px; }
.skip-link:focus { left: 8px; color: #fff; }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 720px; }
.center { text-align: center; }
.accent { color: var(--teal); }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .55em; padding: .8em 1.6em; border: 2px solid transparent; border-radius: 999px;
  font: 600 15px/1.2 var(--font-head); cursor: pointer; transition: background .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s; white-space: nowrap; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--teal); color: #fff; box-shadow: 0 8px 20px rgba(15, 163, 177, .3); }
.btn--primary:hover { background: var(--teal-dark); color: #fff; }
.btn--outline { border-color: var(--teal); color: var(--teal-dark); background: #fff; }
.btn--outline:hover { background: var(--teal); color: #fff; }
.btn--white { background: #fff; color: var(--purple); box-shadow: 0 8px 20px rgba(0, 0, 0, .15); }
.btn--white:hover { background: var(--teal-2); color: #fff; }
.btn--lg { padding: .95em 1.9em; font-size: 16px; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ---------- Top bar ---------- */
.topbar { background: var(--grad); color: #fff; font-size: 13.5px; }
.topbar__in { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 42px; }
.topbar__right { display: flex; gap: 26px; }
.topbar__item { display: inline-flex; align-items: center; gap: 8px; margin: 0; color: #fff; }
.topbar a.topbar__item:hover { color: #bff4fb; }
.topbar .sep { opacity: .5; margin: 0 6px; }

/* ---------- Header / navigation ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: #fff; border-bottom: 1px solid var(--line); transition: box-shadow .25s; }
.nav-open .site-header { z-index: 100; }
.site-header.is-stuck { box-shadow: 0 6px 24px rgba(31, 37, 86, .1); }
.header__in { display: flex; align-items: center; gap: 24px; min-height: 84px; }
.brand { flex: none; }
.brand img { height: 64px; width: auto; max-width: none; }
.main-nav { margin-left: auto; }
.menu { display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; list-style: none; }
.menu > li { position: relative; }
.menu > li > a { position: relative; display: flex; align-items: center; gap: 3px; padding: 10px 10px; font: 500 14px/1.2 var(--font-head); color: var(--navy); white-space: nowrap; }
.menu > li > a::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 2px; height: 2px; border-radius: 2px; background: var(--teal); transform: scaleX(0); transition: transform .25s; }
.menu > li:hover > a, .menu > li.is-active > a { color: var(--teal-dark); }
.menu > li:hover > a::after, .menu > li.is-active > a::after { transform: scaleX(1); }
.menu .caret { width: 14px; height: 14px; transition: transform .2s; }
.menu .sub { position: absolute; top: 100%; left: 0; min-width: 250px; margin: 0; padding: 10px; list-style: none; background: #fff; border: 1px solid var(--line);
  border-radius: 12px; box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .2s; }
.menu > li:hover > .sub, .menu > li:focus-within > .sub { opacity: 1; visibility: visible; transform: none; }
.menu > li:hover .caret { transform: rotate(180deg); }
.menu .sub a { display: block; padding: 9px 14px; border-radius: 8px; font-size: 14.5px; color: var(--navy); }
.menu .sub a:hover, .menu .sub li.is-active > a { background: var(--tint-2); color: var(--teal-dark); }
.sub-toggle, .nav-toggle, .drawer-head, .drawer-foot { display: none; }
.header__cta { flex: none; }
.nav-overlay { position: fixed; inset: 0; z-index: 60; background: rgba(21, 26, 63, .55); }
.nav-overlay[hidden] { display: none; }

/* ---------- Kicker / section headings ---------- */
.kicker { margin: 0 0 10px; font: 600 12.5px/1.4 var(--font-head); letter-spacing: .12em; text-transform: uppercase; color: var(--teal); }
.sec-head { margin-bottom: 42px; }
.sec-head--center { text-align: center; }
.sec-head--center .sec-title::after { content: ""; display: block; width: 64px; height: 4px; margin: 16px auto 0; border-radius: 4px; background: var(--grad); }
.sec-title { margin: 0; font-size: clamp(26px, 3vw, 36px); font-weight: 700; }
.section { padding: 90px 0; }
.section--compact { padding: 60px 0; }
.section--tint { background: var(--tint); }
.section--gradient { background: var(--grad); color: #fff; }
.section--gradient .sec-title, .section--gradient .kicker { color: #fff; }
.section--gradient .sec-title::after { background: #fff; }

/* ---------- Home banner slider (original site banners) ---------- */
.car-fade .car-track { display: grid; transform: none !important; }
.car-fade .car-slide { grid-area: 1 / 1; opacity: 0; visibility: hidden; transition: opacity .9s ease, visibility 0s linear .9s; }
.car-fade .car-slide.is-active { opacity: 1; visibility: visible; transition: opacity .9s ease, visibility 0s; z-index: 1; }
.banner { position: relative; background: var(--purple); }
.banner__slider { position: relative; }
.banner .car-slide { padding: 0; }
.banner .car-slide a { display: block; }
.banner img { width: 100%; height: auto; }
.banner .banner__arrow { position: absolute; top: 50%; z-index: 2; display: flex; align-items: center; justify-content: center; width: 50px; height: 50px; margin-top: -25px; border: 0; border-radius: 50%;
  background: rgba(255, 255, 255, .88); color: var(--navy); box-shadow: 0 6px 18px rgba(0, 0, 0, .18); cursor: pointer; opacity: .85; transition: background .2s, color .2s, opacity .2s, transform .2s; }
.banner .banner__arrow:hover, .banner .banner__arrow:focus-visible { background: var(--teal); color: #fff; opacity: 1; }
.banner__arrow .ico { width: 24px; height: 24px; }
.banner__arrow--prev { left: 20px; }
.banner__arrow--next { right: 20px; }
.banner__dots { position: absolute; left: 0; right: 0; bottom: 16px; z-index: 2; justify-content: center; }
.banner__dots button { width: 11px; height: 11px; background: rgba(255, 255, 255, .6); box-shadow: 0 0 0 1px rgba(0, 0, 0, .12); }
.banner__dots button[aria-current="true"] { width: 30px; background: var(--teal-2); }

/* ---------- Check lists ---------- */
.checklist { margin: 0 0 24px; padding: 0; list-style: none; }
.checklist li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; color: var(--navy); font-weight: 500; }
.checklist .ico { width: 22px; height: 22px; padding: 4px; margin-top: 1px; border-radius: 50%; background: var(--teal); color: #fff; stroke-width: 3; }
.checklist--2col { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 20px; max-width: 540px; }

/* ---------- Stats band ---------- */
.stats { background: var(--grad); color: #fff; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { display: flex; align-items: center; justify-content: center; gap: 16px; padding: 30px 12px; }
.stat + .stat { border-left: 1px solid rgba(255, 255, 255, .22); }
.stat__ico .ico { width: 44px; height: 44px; stroke-width: 1.6; }
.stat p { margin: 0; line-height: 1.3; }
.stat__num { display: block; font: 700 30px/1.1 var(--font-head); color: #fff; }
.stat p span { font-size: 14px; opacity: .9; }

/* ---------- Split (text + image) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; }
.split__media img { width: 100%; aspect-ratio: 4 / 3.3; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.split__text .sec-head { margin-bottom: 18px; }

/* ---------- Grids and cards ---------- */
.grid { display: grid; gap: 26px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.icon-circle { display: inline-flex; align-items: center; justify-content: center; width: 72px; height: 72px; margin-bottom: 18px; border-radius: 50%; color: #fff; box-shadow: 0 10px 22px rgba(15, 163, 177, .28); }
.icon-circle .ico { width: 34px; height: 34px; }
.icon-circle--teal { background: linear-gradient(135deg, var(--teal-2), var(--teal)); }
.icon-circle--purple { background: linear-gradient(135deg, var(--purple-2), var(--purple)); box-shadow: 0 10px 22px rgba(75, 44, 133, .28); }
.mv-card, .feature-card { padding: 40px 32px; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); transition: transform .25s, box-shadow .25s; }
.mv-card:hover, .feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.mv-card h3, .feature-card h3 { font-size: 21px; }
.feature-card { padding: 34px 24px; }
.feature-card h3 { font-size: 18px; }
.feature-card p, .mv-card p { margin: 0; }
.award-card { display: flex; flex-direction: column; align-items: center; padding: 18px 18px 22px; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); color: var(--text); transition: transform .25s, box-shadow .25s; }
.award-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); color: var(--text); }
.award-card__img { display: block; width: 100%; aspect-ratio: 4 / 3; overflow: hidden; margin-bottom: 16px; padding: 10px; border-radius: 12px; background: var(--tint); }
.award-card__img img { width: 100%; height: 100%; object-fit: contain; }
.award-card strong { font: 600 17px/1.3 var(--font-head); }
.award-card > span:last-child { font-size: 14px; }
.service-card { position: relative; display: flex; flex-direction: column; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); transition: transform .25s, box-shadow .25s; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card__img { display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--tint-2); }
.service-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.service-card:hover .service-card__img img { transform: scale(1.06); }
.service-card__ico { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; width: 58px; height: 58px; margin: -29px auto 0;
  border: 4px solid #fff; border-radius: 50%; background: var(--teal); color: #fff; box-shadow: 0 8px 18px rgba(15, 163, 177, .35); }
.service-card__ico .ico { width: 26px; height: 26px; }
.service-card__body { display: flex; flex-direction: column; flex: 1; padding: 14px 22px 24px; text-align: center; }
.service-card h3 { font-size: 19px; margin-bottom: 8px; }
.service-card h3 a { color: var(--navy); }
.service-card p { font-size: 14.5px; }
.more { display: inline-flex; align-items: center; justify-content: center; gap: 6px; margin-top: auto; font: 600 14px var(--font-head); }

/* ---------- Carousel (testimonials) ---------- */
[data-carousel] { position: relative; }
.car-viewport { overflow: hidden; }
.car-track { display: flex; transition: transform .6s cubic-bezier(.2, .7, .2, 1); }
.car-slide { flex: 0 0 100%; min-width: 0; padding: 10px; }
.t-carousel .car-slide { flex-basis: 50%; }
.t-card { display: flex; gap: 20px; height: 100%; margin: 0; padding: 30px; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.t-card blockquote { margin: 0 0 12px; font-size: 15px; color: var(--text); }
.t-card figcaption strong { display: block; font-family: var(--font-head); color: var(--navy); }
.t-card figcaption span { font-size: 13px; color: var(--teal-dark); }
.stars { display: flex; gap: 2px; margin-bottom: 8px; color: #f5a623; }
.stars .ico { width: 17px; height: 17px; fill: currentColor; }
.avatar { display: inline-flex; flex: none; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 50%; background: var(--av, var(--teal)); color: #fff; font: 600 17px/1 var(--font-head); }
.avatar--lg { width: 72px; height: 72px; font-size: 24px; border: 4px solid #e9f7fa; box-shadow: 0 6px 14px rgba(31, 37, 86, .15); }
.car-nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 26px; }
.car-prev, .car-next { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border: 2px solid currentColor; border-radius: 50%; background: transparent; color: var(--teal-dark); cursor: pointer; transition: background .2s, color .2s; }
.car-prev:hover, .car-next:hover { background: var(--teal); border-color: var(--teal); color: #fff; }
.car-dots { display: flex; gap: 8px; }
.car-dots button { width: 10px; height: 10px; padding: 0; border: 0; border-radius: 10px; background: rgba(31, 37, 86, .25); cursor: pointer; transition: width .25s, background .25s; }
.car-dots button[aria-current="true"] { width: 28px; background: var(--teal); }
.t-carousel--dark .car-prev, .t-carousel--dark .car-next { color: #fff; }
.t-carousel--dark .car-dots button { background: rgba(255, 255, 255, .45); }
.t-carousel--dark .car-dots button[aria-current="true"] { background: #fff; }

/* ---------- Gallery + lightbox ---------- */
/* flex grid: incomplete last rows stay centred */
.gallery { --cols: 4; --gap: 16px; display: flex; flex-wrap: wrap; justify-content: center; gap: var(--gap); margin-bottom: 30px; }
.gallery--c2 { --cols: 2; }
.gallery--c3 { --cols: 3; }
.gallery--c5, .gallery--letters { --cols: 5; }
.gallery--c6 { --cols: 6; }
.g-item { flex: 0 0 calc((100% - (var(--cols) - 1) * var(--gap)) / var(--cols)); position: relative; display: block; overflow: hidden; aspect-ratio: 1; border-radius: var(--radius); background: var(--tint); box-shadow: var(--shadow); }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.g-item:hover img { transform: scale(1.07); }
.g-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 14px 12px; background: linear-gradient(transparent, rgba(21, 26, 63, .85)); color: #fff; font: 500 14px/1.3 var(--font-head); }
.g-zoom { position: absolute; top: 12px; right: 12px; display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: rgba(255, 255, 255, .92); color: var(--teal-dark); opacity: 0; transform: scale(.7); transition: all .25s; }
.g-item:hover .g-zoom, .g-item:focus-visible .g-zoom { opacity: 1; transform: none; }
.gallery--people .g-item { aspect-ratio: 4 / 4.4; }
.gallery--people .g-cap { text-align: center; }
.lightbox { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 60px 70px; background: rgba(12, 15, 38, .92); }
.lightbox[hidden] { display: none; }
.lightbox figure { margin: 0; text-align: center; }
.lightbox img { max-width: 100%; max-height: calc(100vh - 140px); margin: 0 auto; border-radius: 10px; }
.lightbox figcaption { margin-top: 12px; color: #fff; }
.lb-btn { position: absolute; display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; border: 0; border-radius: 50%; background: rgba(255, 255, 255, .12); color: #fff; cursor: pointer; }
.lb-btn:hover { background: var(--teal); }
.lb-close { top: 16px; right: 16px; }
.lb-prev { left: 14px; top: 50%; margin-top: -24px; }
.lb-next { right: 14px; top: 50%; margin-top: -24px; }

/* ---------- CTA band ---------- */
.cta { background: linear-gradient(90deg, #3d2573, var(--purple) 50%, #3a3f8f); color: #fff; }
.cta__in { display: flex; align-items: center; gap: 22px; padding-top: 34px; padding-bottom: 34px; }
.cta__ico { display: flex; align-items: center; justify-content: center; flex: none; width: 70px; height: 70px; border: 2px solid rgba(255, 255, 255, .35); border-radius: 18px; }
.cta__ico .ico { width: 36px; height: 36px; }
.cta__text { flex: 1; }
.cta h2 { margin: 0 0 4px; font-size: 26px; color: #fff; }
.cta p { margin: 0; opacity: .9; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-2); color: #b7bdd8; font-size: 14.5px; }
.footer__grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1.4fr 1fr; gap: 34px; padding-top: 64px; padding-bottom: 48px; }
.footer__logo { height: 70px; width: auto; margin-bottom: 16px; padding: 6px 10px; background: #fff; border-radius: 12px; }
.footer__title { position: relative; margin-bottom: 22px; padding-bottom: 12px; font-size: 17px; color: #fff; }
.footer__title::after { content: ""; position: absolute; left: 0; bottom: 0; width: 36px; height: 3px; border-radius: 3px; background: var(--teal-2); }
.footer__links { margin: 0; padding: 0; list-style: none; }
.footer__links li { margin-bottom: 9px; }
.footer__links a { color: #b7bdd8; }
.footer__links a:hover, .footer__links .is-active > a { color: var(--teal-2); }
.footer__links .caret, .footer__links .sub-toggle, .footer__links .sub { display: none; }
.footer__contact { margin: 0; padding: 0; list-style: none; }
.footer__contact li { display: flex; gap: 12px; margin-bottom: 14px; }
.footer__contact .ico { margin-top: 3px; color: var(--teal-2); }
.footer__contact a { color: #b7bdd8; word-break: break-word; }
.footer__contact a:hover { color: #fff; }
.social { display: flex; gap: 10px; margin-bottom: 22px; }
.social__link { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 10px; color: #fff; transition: transform .2s; }
.social__link:hover { color: #fff; transform: translateY(-3px); }
.social__link--facebook { background: #1877f2; }
.social__link--instagram { background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); }
.social__link--youtube { background: #ff0000; }
.footer__emergency { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border: 1px solid rgba(255, 255, 255, .15); border-radius: 12px; color: #fff; }
.footer__emergency .ico { width: 30px; height: 30px; color: var(--teal-2); }
.footer__emergency small { display: block; font-size: 12px; color: #b7bdd8; }
.footer__emergency:hover { color: #fff; border-color: var(--teal-2); }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, .08); font-size: 13.5px; }
.footer__bottom-in { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; padding-top: 18px; padding-bottom: 18px; }
.footer__bottom p { margin: 0; }
.footer__tagline { color: var(--teal-2); }

/* Floating buttons */
.call-fab { position: fixed; left: 18px; bottom: 18px; z-index: 40; display: none; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; background: #25a244; color: #fff; box-shadow: 0 8px 22px rgba(0, 0, 0, .25); }
.call-fab .ico { width: 26px; height: 26px; }
.to-top { position: fixed; right: 18px; bottom: 18px; z-index: 40; display: flex; align-items: center; justify-content: center; width: 46px; height: 46px; border: 0; border-radius: 50%; background: var(--teal); color: #fff; box-shadow: var(--shadow-lg); cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .25s; }
.to-top .ico { transform: rotate(180deg); }
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }

/* ---------- Inner page header ---------- */
.page-hero { position: relative; overflow: hidden; padding: 70px 0 64px; color: #fff; background-color: var(--purple);
  background-image: linear-gradient(90deg, rgba(75, 44, 133, .94) 0%, rgba(61, 74, 158, .86) 50%, rgba(15, 163, 177, .78) 100%), var(--page-bg, linear-gradient(90deg, #4b2c85, #0fa3b1));
  background-size: cover; background-position: center 40%; }
.page-hero::after { content: ""; position: absolute; right: -120px; top: -160px; width: 420px; height: 420px; border-radius: 50%; border: 50px solid rgba(255, 255, 255, .07); }
.page-hero h1 { position: relative; z-index: 1; margin: 0 0 10px; font-size: clamp(28px, 4vw, 42px); font-weight: 700; color: #fff; }
.breadcrumb ol { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; list-style: none; font-size: 14.5px; }
.breadcrumb li + li::before { content: "›"; margin-right: 6px; opacity: .7; }
.breadcrumb a { display: inline-flex; align-items: center; gap: 6px; color: #fff; opacity: .85; }
.breadcrumb a:hover { opacity: 1; color: #fff; }
.breadcrumb span { color: #bff4fb; }
.cta--page { margin-top: 0; }
.big-404 { margin: 0; font: 700 110px/1 var(--font-head); background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ==========================================================================
   Stored page content (layout markup converted from the old site)
   ========================================================================== */
.page-content { padding: 20px 0 70px; }
.boldSection { position: relative; padding: 30px 0; background-size: cover; background-position: center; }
.boldSection.topSpaced, .boldSection.topExtraSpaced { padding-top: 60px; }
.boldSection.topSemiSpaced { padding-top: 44px; }
.boldSection.topSmallSpaced { padding-top: 30px; }
.boldSection.topExtraSmallSpaced { padding-top: 18px; }
.boldSection.bottomSpaced { padding-bottom: 60px; }
.boldSection.bottomSemiSpaced { padding-bottom: 44px; }
.boldSection.bottomSmallSpaced { padding-bottom: 30px; }
.boldSection.bottomExtraSmallSpaced { padding-bottom: 18px; }
.boldSection[style*="background-color"] { margin: 20px 0; border-radius: 0; }
.boldSection .port { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.boldSection.btDarkSkin, .boldSection.btDarkSkin h1, .boldSection.btDarkSkin h2, .boldSection.btDarkSkin h3, .boldSection.btDarkSkin h4, .boldSection.btDarkSkin strong, .boldSection.btDarkSkin a { color: #fff; }
.boldSection.btDarkSkin { background-color: var(--purple); }
.boldSection.btAccentColorBackground { background: var(--grad) !important; }
.boldRow { width: 100%; }
.boldRowInner { display: flex; flex-wrap: wrap; margin: 0 -15px; }
.rowItem { width: 100%; padding: 0 15px; }
.rowItem.btTextCenter { text-align: center; }
.rowItem.btTextRight { text-align: right; }
.rowItem.btMiddleVertical { align-self: center; }
.rowItem.btDoublePadding .rowItemContent { padding: 0 20px; }
.rowItemContent { height: 100%; }
.rowItemContent[style*="background-color"] { padding: 24px; border-radius: var(--radius); box-shadow: var(--shadow); }
@media (min-width: 768px) {
  .col-sm-6 { width: 50%; }
}
@media (min-width: 992px) {
  .col-md-2 { width: 16.666%; } .col-md-3 { width: 25%; } .col-md-4 { width: 33.333%; } .col-md-6 { width: 50%; }
  .col-md-8 { width: 66.666%; } .col-md-9 { width: 75%; } .col-md-10 { width: 83.333%; } .col-md-12 { width: 100%; }
}
.btSeparator { clear: both; }
.btSeparator hr { display: none; }
.btSeparator.topExtraSmallSpaced, .btSeparator.bottomExtraSmallSpaced { height: 8px; }
.btSeparator.topSmallSpaced, .btSeparator.bottomSmallSpaced { height: 16px; }
.btSeparator.topSemiSpaced, .btSeparator.bottomSemiSpaced { height: 24px; }
.btSeparator.topSpaced, .btSeparator.bottomSpaced { height: 36px; }
.page-content header.header { margin-bottom: 18px; }
.page-content header.header h1, .page-content header.header h2 { margin: 0; font-size: clamp(24px, 2.6vw, 32px); font-weight: 700; }
.page-content header.header.large h2::after { content: ""; display: block; width: 56px; height: 4px; margin-top: 14px; border-radius: 4px; background: var(--grad); }
.page-content .btTextCenter header.header.large h2::after { margin-left: auto; margin-right: auto; }
.page-content header.header.medium h3 { margin: 0; font-size: 21px; }
.page-content header.header.small h4 { margin: 0; font-size: 17px; }
.btSuperTitle, .btSubTitle { font: 600 12.5px/1.4 var(--font-head); letter-spacing: .12em; text-transform: uppercase; color: var(--teal); margin-bottom: 6px; }
.btSubTitle { margin: 8px 0 0; text-transform: none; letter-spacing: 0; font-size: 15px; }
.btText { font-size: 16px; }
.btText h2 { font-size: 26px; }
.btText h3 { font-size: 22px; margin-top: 1em; }
.btText h4 { font-size: 18px; margin-top: 1em; }
.btText ul { padding-left: 0; list-style: none; }
.btText ul li { position: relative; margin-bottom: 8px; padding-left: 28px; }
.btText ul li::before { content: ""; position: absolute; left: 0; top: .5em; width: 14px; height: 14px; border-radius: 50%; background: var(--teal); box-shadow: inset 0 0 0 4px #c8f0f4; }
/* the old site used one-column tables for layout: show them as normal content */
.btText table, .btText tbody, .btText tr, .btText td, .btText th { display: block; width: 100% !important; height: auto !important; border: 0; background: none; }
.btText td, .btText th { padding: 0 0 .6em; }
.btText img { border-radius: var(--radius); margin: 10px 0; }
.btText img.aligncenter { margin-left: auto; margin-right: auto; }
.btText img.alignleft { float: left; margin: 0 20px 10px 0; }
.btText iframe { width: 100%; max-width: 100%; border: 0; border-radius: var(--radius); }
.page-contact-us .btText iframe { height: 420px !important; box-shadow: var(--shadow); }
.bpgPhoto { position: relative; margin-bottom: 18px; }
.bpgPhoto > a { position: absolute; inset: 0; z-index: 2; }
.bpgPhoto .btImage img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.btIconImageRow { margin: 8px 0; }
.btIco { display: inline-flex; }
.btIcoHolder { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--teal-2), var(--teal)); color: #fff; font-size: 24px; }
.btIcoHolder em { display: none; }
.servicesItem { display: flex; gap: 16px; align-items: flex-start; padding: 20px; margin-bottom: 14px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.servicesItem .sTxt header.header { margin-bottom: 6px; }
.servicesItem .sTxt { min-width: 0; flex: 1; }
.servicesItem p { margin: 0; font-size: 15px; overflow-wrap: anywhere; }
.servicesItem .sIcon { flex: none; }
.btBtn { display: inline-flex; align-items: center; gap: .5em; padding: .8em 1.6em; border-radius: 999px; background: var(--teal); color: #fff !important; font: 600 15px/1.2 var(--font-head); }
.btBtn:hover { background: var(--purple); }
.btBtn.btnOutlineStyle { background: transparent; border: 2px solid var(--teal); color: var(--teal-dark) !important; }
.btBtn .btIcoHolder { width: auto; height: auto; background: none; font-size: 16px; }

/* ---------- Doctors ---------- */
.doctors { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.dept { padding: 34px 0 10px; }
.dept-title { margin-bottom: 26px; text-align: center; font-size: clamp(22px, 2.4vw, 28px); }
.dept-title::after { content: ""; display: block; width: 56px; height: 4px; margin: 12px auto 0; border-radius: 4px; background: var(--grad); }
.doc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 26px; }
.doc-card { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); transition: transform .25s, box-shadow .25s; }
.doc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.doc-photo { position: relative; aspect-ratio: 1 / 1; background: var(--tint-2); }
.doc-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.avatar--photo { width: 100%; height: 100%; border-radius: 0; font-size: 54px; background: linear-gradient(135deg, var(--av, var(--teal)), var(--purple)); }
.doc-badge { position: absolute; right: 18px; bottom: -22px; display: flex; align-items: center; justify-content: center; width: 46px; height: 46px; border: 4px solid #fff; border-radius: 50%; background: var(--teal); color: #fff; }
.doc-body { padding: 22px 20px 20px; }
.doc-body h3 { margin: 0 0 6px; font-size: 18px; }
.doc-qual { margin: 0; font-size: 14px; color: var(--teal-dark); font-weight: 500; }
.doc-role { margin: 2px 0 0; font-size: 14px; }

/* ---------- FAQ accordion ---------- */
.accordion { display: grid; gap: 12px; }
.acc-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 4px 14px rgba(31, 37, 86, .05); overflow: hidden; }
.acc-item summary { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 16px 20px; cursor: pointer; list-style: none; font: 600 15.5px/1.4 var(--font-head); color: var(--navy); }
.acc-item summary::-webkit-details-marker { display: none; }
.acc-item summary:hover { color: var(--teal-dark); }
.acc-ico { flex: none; width: 28px; height: 28px; padding: 5px; border-radius: 50%; background: var(--tint-2); color: var(--teal-dark); transition: transform .25s, background .25s; }
.acc-item[open] summary { color: var(--teal-dark); border-bottom: 1px solid var(--line); }
.acc-item[open] .acc-ico { transform: rotate(180deg); background: var(--teal); color: #fff; }
.acc-body { padding: 18px 20px 6px; font-size: 15px; }

/* ---------- Insurers ---------- */
.insurers { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; margin: 0; padding: 0; list-style: none; }
.ins-card { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; min-height: 170px; padding: 24px 18px; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); transition: transform .25s, box-shadow .25s; }
.btText .insurers li { padding-left: 24px; margin: 0; }
.btText .insurers li::before { display: none; }
.ins-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.ins-card img { max-height: 70px; width: auto; }
.ins-ico { display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 16px; background: var(--tint-2); color: var(--teal-dark); }
.ins-ico .ico { width: 28px; height: 28px; }
.ins-name { font: 600 16px/1.35 var(--font-head); color: var(--navy); }
.ins-tag { font-size: 12.5px; color: var(--teal-dark); }

/* ---------- Forms ---------- */
.form-card { padding: 32px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.form-title { font-size: 20px; }
.form label { display: block; margin-bottom: 16px; font-weight: 600; font-size: 14.5px; color: var(--navy); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form input, .form textarea { display: block; width: 100%; margin-top: 6px; padding: 12px 14px; border: 1px solid #d3dde5; border-radius: 10px; background: var(--tint); font: 400 15px var(--font); color: var(--text); transition: border-color .2s, background .2s; }
.form input:focus, .form textarea:focus { outline: none; border-color: var(--teal); background: #fff; box-shadow: 0 0 0 4px rgba(15, 163, 177, .15); }
.req { color: #d93025; }
.hp { position: absolute !important; left: -9999px; }
.notice { display: flex; gap: 10px; margin-bottom: 18px; padding: 14px 18px; border-radius: 10px; font-size: 15px; }
.notice ul { margin: 0; padding-left: 18px; }
.notice--ok { background: #e9f8ee; color: #1c5e2d; }
.notice--err { background: #fdecea; color: #8a1c14; }

/* ---------- Reveal on scroll ---------- */
.js .reveal, .js .page-content .animate { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.in-view, .js .page-content .animate.in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal, .js .page-content .animate { opacity: 1; transform: none; transition: none; }
  .car-track { transition: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1320px) {
  .header__cta span { display: none; }
  .header__cta { padding: .8em; }
}
@media (max-width: 1199px) {
  .menu > li > a { padding: 10px 7px; font-size: 13px; }
  .brand img { height: 54px; }
  .header__cta span { display: none; }
  .header__cta { padding: .8em; }
  .footer__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__about { grid-column: span 3; }
}
@media (max-width: 991px) {
  .topbar__addr { display: none; }
  .header__in { min-height: 72px; }
  .brand img { height: 54px; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; margin-left: 8px; border: 1px solid var(--line); border-radius: 12px; background: #fff; color: var(--navy); cursor: pointer; }
  .nav-toggle .ico { width: 24px; height: 24px; }
  .header__cta { margin-left: auto; }
  .main-nav { position: fixed; top: 0; right: 0; bottom: 0; z-index: 70; display: flex; flex-direction: column; width: min(340px, 88vw); margin: 0; background: #fff; box-shadow: -10px 0 40px rgba(0, 0, 0, .2); transform: translateX(100%); visibility: hidden; transition: transform .3s ease, visibility 0s linear .3s; overflow-y: auto; overscroll-behavior: contain; }
  .nav-open .main-nav { transform: none; visibility: visible; transition: transform .3s ease, visibility 0s; }
  .drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; border-bottom: 1px solid var(--line); }
  .drawer-head img { height: 48px; width: auto; }
  .nav-close { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border: 0; border-radius: 50%; background: var(--tint); color: var(--navy); cursor: pointer; }
  .menu { flex-direction: column; align-items: stretch; gap: 0; padding: 10px 0; }
  .menu > li { display: flex; flex-wrap: wrap; border-bottom: 1px solid var(--line); }
  .menu > li > a { flex: 1; padding: 14px 20px; font-size: 15.5px; }
  .menu > li > a::after, .menu .caret { display: none; }
  .sub-toggle { display: flex; align-items: center; justify-content: center; width: 52px; border: 0; background: transparent; color: var(--navy); cursor: pointer; }
  .sub-toggle .ico { transition: transform .2s; }
  .sub-toggle[aria-expanded="true"] .ico { transform: rotate(180deg); }
  .menu .sub { position: static; display: none; width: 100%; min-width: 0; padding: 0 0 10px 12px; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
  .menu li.sub-open > .sub { display: block; }
  .drawer-foot { display: grid; gap: 14px; padding: 20px 18px 30px; margin-top: auto; }
  .drawer-call { display: flex; align-items: center; justify-content: center; gap: 8px; font-weight: 600; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid rgba(255, 255, 255, .22); }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { gap: 16px; }
  .gallery--c5, .gallery--c6 { --cols: 4; }
  .gallery--letters { --cols: 5; --gap: 12px; }
  .t-carousel .car-slide { flex-basis: 100%; }
  .section { padding: 64px 0; }
  .call-fab { display: flex; }
}
@media (max-width: 767px) {
  .topbar { font-size: 12.5px; }
  .topbar__in { justify-content: center; flex-wrap: wrap; gap: 4px 16px; padding-top: 6px; padding-bottom: 6px; }
  .header__cta { display: none; }
  .nav-toggle { margin-left: auto; }
  .grid--2, .grid--4 { grid-template-columns: 1fr; }
  .gallery { --cols: 3; --gap: 12px; }
  .gallery--people, .gallery--c2 { --cols: 2; }
  .checklist--2col { grid-template-columns: 1fr; }
  .stat { flex-direction: column; text-align: center; gap: 8px; padding: 22px 8px; }
  .stat__num { font-size: 24px; }
  .t-card { flex-direction: column; align-items: center; text-align: center; padding: 26px 20px; }
  .stars { justify-content: center; }
  .cta__in { flex-direction: column; text-align: center; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer__about { grid-column: span 2; }
  .footer__bottom-in { justify-content: center; text-align: center; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-card { padding: 22px; }
  .lightbox { padding: 60px 10px; }
  .lb-prev, .lb-next { top: auto; bottom: 14px; margin: 0; }
  .lb-prev { left: calc(50% - 60px); }
  .lb-next { right: calc(50% - 60px); }
  .rowItem.btDoublePadding .rowItemContent { padding: 0; }
  .btText img.alignleft { float: none; margin: 10px 0; }
}
@media (max-width: 420px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__about { grid-column: auto; }
}

/* ---------- Print ---------- */
@media print {
  .topbar, .site-header, .site-footer, .cta, .call-fab, .to-top, .nav-overlay { display: none !important; }
  .page-hero { background: none; color: #000; padding: 0 0 10px; }
  .page-hero h1 { color: #000; }
  .js .reveal, .js .page-content .animate { opacity: 1; transform: none; }
}

/* ---------- Small-screen carousel controls ---------- */
@media (max-width: 600px) {
  .car-nav { flex-wrap: wrap; gap: 12px 18px; }
  .car-dots { order: -1; flex-basis: 100%; flex-wrap: wrap; justify-content: center; gap: 6px; }
  .car-dots button { width: 8px; height: 8px; }
  .car-dots button[aria-current="true"] { width: 20px; }
}

/* ---------- Responsive refinements ---------- */
@media (max-width: 991px) {
  .split__media { max-width: 620px; width: 100%; margin: 0 auto; }
  .split__media img { aspect-ratio: 4 / 3; }
  .sec-head { margin-bottom: 32px; }
}
@media (max-width: 600px) {
  .topbar__in > .topbar__item { display: none; }
  .topbar__right { width: 100%; justify-content: center; }
  .topbar__right::before { content: "24×7 Emergency"; display: inline-flex; align-items: center; padding: 1px 10px; border-radius: 20px; background: rgba(255, 255, 255, .18); font-weight: 600; font-size: 12px; }
  .section { padding: 52px 0; }
  .section--compact { padding: 44px 0; }
  .page-hero { padding: 40px 0 36px; }
  .mv-card, .feature-card { padding: 30px 22px; }
}
@media (max-width: 599px) {
  .grid--3 { grid-template-columns: 1fr; }
  .award-card__img { aspect-ratio: 16 / 10; }
}
@media (max-width: 400px) {
  .gallery { --cols: 2; --gap: 10px; }
  .gallery--letters { --cols: 3; --gap: 8px; }
}
@media (max-width: 599px) {
  .insurers { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .ins-card { min-height: 130px; padding: 16px 10px; }
  .ins-name { font-size: 14px; }
  .ins-ico { width: 44px; height: 44px; border-radius: 12px; }
}
@media (max-width: 767px) {
  .banner .banner__arrow { width: 36px; height: 36px; margin-top: -18px; }
  .banner__arrow .ico { width: 18px; height: 18px; }
  .banner__arrow--prev { left: 8px; }
  .banner__arrow--next { right: 8px; }
  .banner__dots { bottom: 8px; }
  .banner__dots button { width: 8px; height: 8px; }
  .banner__dots button[aria-current="true"] { width: 20px; }
}

/* Galleries stacked on one page */
.gallery + .sec-head, .gallery + .btSeparator + .sec-head { margin-top: 20px; }
.page-content .bpgPhoto .btImage img { max-height: 620px; width: 100%; object-fit: cover; }
/* Photo placed inside page text */
.content-photo { max-width: 860px; margin: 10px auto 34px; }
.content-photo img { width: 100%; height: auto; margin: 0; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.content-photo figcaption { margin-top: 10px; font-size: 14px; color: var(--teal-dark); text-align: center; }

/* ---------- Sharp images: never stretch a photo beyond its real size ---------- */
.doc-photo--small { display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--tint-2), #efeafb); }
.doc-photo--small img { width: 132px; height: 132px; border: 5px solid #fff; border-radius: 50%; box-shadow: var(--shadow); object-fit: cover; object-position: center 20%; }
.page-content .bpgPhoto .btImage { text-align: center; }
.page-content .bpgPhoto .btImage img { width: auto; max-width: 100%; height: auto; margin: 0 auto; }
.page-content .btText img { width: auto; max-width: 100%; height: auto; }
.content-photo--side { max-width: 100%; margin: 6px 0 20px; }
.content-photo--side img { max-height: 520px; width: 100%; object-fit: cover; }
