/* Kapadia Hospital - homepage styles.
   Extracted from the inline <style> block that used to live in index.php.
   Homepage-only: uses the unprefixed v-form / fld / btn / slide / trust class
   system rather than the sitewide svc-* one in shared.css. */

/* ============================================================
   VITAL CORE — Kapadia Multispeciality Hospital
   Manrope · Kapadia Blue #d7263d · 8px grid · 8px radius
   ============================================================ */
:root {
  --blue: #d7263d;
  --blue-deep: #a81c2b;
  --blue-ink: #002D62;
  --blue-tint: #eaf4fa;
  --blue-soft: #d5e9f4;
  --red: #d7263d;
  --surface: #f7fafc;
  --ink: #16242e;
  --ink-2: #41535f;
  --ink-3: #6b7c87;
  --line: #e1e9ee;
  --white: #ffffff;
  --r: 8px;
  --shadow-sm:
    0 1px 3px rgba(8, 58, 86, 0.06), 0 4px 14px rgba(8, 58, 86, 0.05);
  --shadow-md: 0 6px 24px rgba(8, 58, 86, 0.09);
  --shadow-lg: 0 16px 48px rgba(8, 58, 86, 0.14);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
.wrap {
  max-width: none;
  margin: 0;
  padding: 0 32px;
}
section {
  position: relative;
}

/* ---------- type scale ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
}
.eyebrow::before {
  content: "";
  width: 20px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
}
h1,
h2,
h3 {
  line-height: 1.18;
  letter-spacing: -0.02em;
}
.h2 {
  font-size: clamp(28px, 3.3vw, 40px);
  font-weight: 600;
  color: var(--ink);
  margin: 14px 0 14px;
}
.guidance-eyebrow {
  color: #9BD4F0 !important;
}
.h2 .tint {
  color: var(--blue);
}
.lead {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 640px;
}
.sec-head {
  margin-bottom: 48px;
}
.sec-head.split {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 16px 72px;
  align-items: start;
}
.sec-head.split .lead {
  max-width: 48ch;
  margin: 10px 0 0;
}
.split-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding-top: 34px;
}
.split-right .lead {
  margin: 0;
}
.more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  border-bottom: 1.5px solid var(--blue-soft);
  padding-bottom: 3px;
  transition:
    border-color 0.2s,
    gap 0.2s;
}
.more:hover {
  border-color: var(--blue);
  gap: 11px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--r);
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    background 0.25s;
}
.btn svg {
  transition: transform 0.25s var(--ease);
}
.btn:hover svg {
  transform: translateX(4px);
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 6px 18px rgba(14, 130, 190, 0.32);
}
.btn-primary:hover {
  background: var(--blue-deep);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}
.btn-ghost:hover {
  background: var(--blue-tint);
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: var(--blue-ink);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  transform: translateY(-2px);
}
.btn-red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 6px 18px rgba(215, 38, 61, 0.3);
}
.btn-red:hover {
  background: #b81f33;
  transform: translateY(-2px);
}

/* ---------- reveal animation ---------- */
.rv {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.rv.in {
  opacity: 1;
  transform: none;
}
.rv-d1 {
  transition-delay: 0.1s;
}
.rv-d2 {
  transition-delay: 0.2s;
}
.rv-d3 {
  transition-delay: 0.3s;
}
.rv-d4 {
  transition-delay: 0.4s;
}
@media (prefers-reduced-motion: reduce) {
  .rv {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
}

/* ============================================================
   TOPBAR + HEADER
   ============================================================ */
.topbar {
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 38px;
  padding-top: 6px;
  padding-bottom: 6px;
}
.topbar .pulse {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.topbar .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.55);
  }
  60% {
    box-shadow: 0 0 0 7px rgba(255, 255, 255, 0);
  }
}
.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
}
.topbar a:hover {
  text-decoration: underline;
}
.topbar .tb-right {
  display: flex;
  gap: 20px;
  align-items: center;
}

header.site {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition:
    box-shadow 0.3s,
    border-color 0.3s;
}
header.site.scrolled {
  box-shadow: var(--shadow-sm);
  border-color: var(--line);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
}
.brand img {
  height: 40px;
  width: auto;
  border-radius: 6px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav > li {
  position: relative;
}
.nav > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  padding: 8px 11px;
  border-radius: var(--r);
  white-space: nowrap;
  transition:
    color 0.2s,
    background 0.2s;
}
.nav > li > a:hover {
  color: var(--blue);
  background: var(--blue-tint);
}
.nav .caret {
  width: 9px;
  height: 9px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.25s;
}
.nav li:hover .caret {
  transform: rotate(225deg) translateY(-1px);
}
.dd {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 248px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s var(--ease);
}
.nav li:hover .dd {
  opacity: 1;
  visibility: visible;
  transform: translateY(6px);
}
.dd a {
  display: block;
  padding: 9px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  border-radius: var(--r);
}
.dd a:hover {
  background: var(--blue-tint);
  color: var(--blue);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-cta .btn {
  padding: 10px 18px;
  font-size: 13.5px;
  white-space: nowrap;
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.burger span {
  width: 24px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.3s;
}
.m-nav {
  display: none;
}

/* ============================================================
   HERO — 5-slide cinematic slider
   ============================================================ */
.k-hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  background: transparent;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
.k-hero .wrap {
  max-width: none;
  margin: 0;
  padding-left: 80px;
  padding-right: 80px;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s var(--ease);
  pointer-events: none;
}
.slide.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  transform: none;
  transition: opacity 1s linear;
}
.slide.active .slide-bg {
  transform: none;
}
.k-hero .slide-1 {
  background-image: url('../images/banner/multispeciality-healthcare.jpeg');
}
.k-hero .slide-2 {
  background-image: url('../images/banner/doctors-&-healthcare.jpeg');
}
.slide-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,21,39,0.55) 0%, rgba(5,21,39,0.25) 50%, rgba(5,21,39,0.05) 100%);
  pointer-events: none;
}
.slide-inner {
  position: relative;
  z-index: 2;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 96px;
  padding-bottom: 80px;
  max-width: 980px;
  text-align: left;
}
.slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: fit-content;
  margin-bottom: 36px;
}
.slide h1,
.slide .h1 {
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 26px;
  max-width: none;
}
.slide h1 br,
.slide .h1 br {
  display: block;
}
.slide h1 br.hb-m,
.slide .h1 br.hb-m {
  display: none;
}
.slide h1 em,
.slide .h1 em {
  font-style: normal;
  color: #9bd4f0;
}
.slide p {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  max-width: 720px;
  margin-bottom: 44px;
}
.slide .btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-controls {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  justify-content: flex-start;
  padding: 0 80px;
}
.h-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  transition: 0.25s;
}
.h-arrow:hover {
  background: #fff;
  color: var(--blue-ink);
}
.h-arrow.left {
  left: 20px;
}
.h-arrow.right {
  right: 20px;
}
.dots {
  display: flex;
  gap: 9px;
  align-items: center;
}
.dots button {
  width: 9px;
  height: 9px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.38);
  transition:
    width 0.35s var(--ease),
    background 0.3s;
  position: relative;
  overflow: hidden;
}
.dots button:hover {
  background: rgba(255, 255, 255, 0.65);
}
.dots button.on {
  width: 32px;
  background: rgba(255, 255, 255, 0.32);
}
.dots button.on::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: 100px;
  animation: fill 6.5s linear forwards;
}
@keyframes fill {
  from {
    transform: scaleX(0);
    transform-origin: left;
  }
  to {
    transform: scaleX(1);
    transform-origin: left;
  }
}
@media (max-width: 768px) {
  .k-hero .wrap {
    padding-left: 24px;
    padding-right: 24px;
  }
  .slide-inner {
    padding-top: 72px;
    padding-bottom: 70px;
  }
  .slide h1,
  .slide .h1 {
    font-size: clamp(20px, calc((100vw - 52px) / 12.1), 26px);
    line-height: 1.24;
    margin-bottom: 22px;
  }
  .slide h1 br.hb-m {
    display: block;
  }
  .slide .btn-row .btn-white {
    display: none;
  }
  .hero-controls {
    padding: 0 24px;
    bottom: 24px;
  }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.trust .wrap {
  padding-top: 6px;
  padding-bottom: 28px;
}
.t-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.t-item.t-dup {
  display: none;
}
.t-item {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 2px 24px;
  border-left: 1px solid var(--line);
}
.t-item:first-child {
  border-left: none;
  padding-left: 0;
}
.t-item .t-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.t-item .t-value {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--blue-ink);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.25s;
}
.t-item:hover .t-value {
  color: var(--blue);
}
.t-item .t-value svg {
  color: var(--blue);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--surface);
  padding: 104px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 72px;
  align-items: flex-start;
}
.about-visual {
  position: sticky;
  top: 96px;
}
.about-visual .main {
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4/3.4;
  object-fit: cover;
}
.about p {
  color: var(--ink-2);
  margin-bottom: 16px;
  font-size: 16px;
}
.about p a {
  color: var(--blue);
  font-weight: 700;
  border-bottom: 1.5px solid var(--blue-soft);
  transition: border-color 0.2s;
}
.about p a:hover {
  border-color: var(--blue);
}
.counters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.counter .num {
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 800;
  color: var(--blue-ink);
  letter-spacing: -0.02em;
}
.counter .num span {
  color: var(--blue);
}
.counter small {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-3);
}
.carebuddy {
  display: flex;
  align-items: center;
  gap: 18px;
  background: linear-gradient(96deg, var(--blue) 0%, var(--blue-deep) 100%);
  color: #fff;
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 10px 30px rgba(14, 130, 190, 0.28);
  position: relative;
  overflow: hidden;
}
.carebuddy::after {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
}
.carebuddy .cb-ic {
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  display: grid;
  place-items: center;
}
.carebuddy b {
  font-size: 16.5px;
  display: block;
  letter-spacing: -0.01em;
}
.carebuddy span {
  font-size: 13.5px;
  opacity: 0.92;
}

/* ============================================================
   OUR STORY
   ============================================================ */
.story {
  background: #fff;
  padding: 104px 0;
  overflow: hidden;
}
.story-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-copy p {
  color: var(--ink-2);
  margin-bottom: 18px;
  font-size: 16px;
  opacity: 1;
}
.founders {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.f-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--surface);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}
.f-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.f-card img {
  width: 100%;
  aspect-ratio: 3/3.7;
  object-fit: cover;
  object-position: top;
}
.f-card .plate {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: 12px 16px;
}
.f-card .plate b {
  display: block;
  font-size: 15.5px;
  color: var(--blue-ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 1px;
}
.f-card .plate small {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  line-height: 1.15;
}
.founders .f-card:nth-child(2) {
  margin-top: 56px;
}
.story-quote {
  margin-top: 28px;
  padding: 18px 24px;
  border-left: 3px solid var(--blue);
  background: var(--surface);
  border-radius: 0 var(--r) var(--r) 0;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--blue-ink);
  font-style: italic;
}

/* ============================================================
   SPECIALTIES
   ============================================================ */
.spec {
  background: var(--blue-tint);
  padding: 104px 0;
}
.spec-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.5fr;
  gap: 32px;
  align-items: start;
}
.spec-feat {
  position: sticky;
  top: 96px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(160deg, #0f4c72 0%, var(--blue-ink) 100%);
  color: #fff;
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.spec-feat::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: url("/images/home/hero-2.jpg") center/cover;
  opacity: 0.16;
}
.spec-feat > * {
  position: relative;
}
.feat-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--blue);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  width: fit-content;
  margin-bottom: 24px;
}
.spec-feat h3 {
  font-size: clamp(24px, 2.3vw, 32px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.spec-feat p {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 26px;
  max-width: 42ch;
}
.feat-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.feat-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  font-weight: 700;
}
.feat-points .fp-ic {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  display: grid;
  place-items: center;
  flex: none;
}
.spec-feat .btn {
  margin-top: 8px;
  width: fit-content;
}
.spec-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.s-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: none;
  border-radius: 14px;
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.s-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.s-card .s-ic {
  flex: none;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--blue-tint);
  color: var(--blue);
  display: grid;
  place-items: center;
  transition:
    background 0.3s,
    color 0.3s;
}
.s-card:hover .s-ic {
  background: var(--blue);
  color: #fff;
}
.s-card b {
  display: block;
  font-size: 15.5px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.s-card small {
  font-size: 13px;
  color: var(--ink-3);
  font-weight: 600;
  line-height: 1.45;
  display: block;
}
.s-card .s-arrow {
  margin-left: auto;
  color: var(--ink-3);
  flex: none;
  transition:
    transform 0.3s,
    color 0.3s;
}
.s-card:hover .s-arrow {
  transform: translateX(4px);
  color: var(--blue);
}

/* ============================================================
   SIX REASONS
   ============================================================ */
.reasons {
  background: #fff;
  padding: 104px 0;
}
.r-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 80px;
}
.r-item {
  display: flex;
  gap: 24px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}
.r-grid .r-item:nth-last-child(-n + 2) {
  border-bottom: none;
}
.r-ic {
  flex: none;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--blue-tint), #fff);
  border: 1px solid var(--blue-soft);
  color: var(--blue);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(14, 130, 190, 0.12);
  transition:
    background 0.35s var(--ease),
    color 0.35s,
    transform 0.35s var(--ease);
}
.r-item:hover .r-ic {
  background: linear-gradient(145deg, var(--blue), var(--blue-deep));
  color: #fff;
  transform: translateY(-3px);
}
.r-item:hover b {
  color: var(--blue);
}
.r-cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
.r-item b {
  display: block;
  font-size: 17.5px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  transition: color 0.3s;
}
.r-item p {
  font-size: 14.5px;
  color: var(--ink-2);
}

/* ============================================================
   INFRASTRUCTURE — capability index
   ============================================================ */
.infra {
  background: var(--surface);
  padding: 104px 0;
}
.infra-feature {
  position: relative;
  display: flex;
  align-items: center;
  gap: 28px;
  background: linear-gradient(
    110deg,
    var(--blue-ink) 0%,
    #0b5078 70%,
    var(--blue-deep) 110%
  );
  color: #fff;
  border-radius: 16px;
  padding: 34px 38px;
  margin-bottom: 44px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.infra-feature::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 44px solid rgba(255, 255, 255, 0.06);
}
.infra-feature .if-ic {
  flex: none;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.13);
  color: #9bd4f0;
  display: grid;
  place-items: center;
}
.infra-feature b {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  display: block;
  letter-spacing: -0.01em;
}
.infra-feature p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 3px;
}
.infra-feature .if-badge {
  position: relative;
  margin-left: auto;
  flex: none;
  background: #fff;
  color: var(--blue-ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 10px 20px;
  border-radius: 100px;
}
.infra-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
}
.infra-col {
  background: transparent;
  border: none;
  padding: 0;
}
.infra-col h4,
.infra-col h3 {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.i-row {
  display: flex;
  gap: 16px;
  padding: 21px 0;
  border-bottom: 1px dashed var(--line);
  align-items: flex-start;
}
.i-row:last-child {
  border-bottom: none;
}
.i-row .i-ic {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #fff;
  color: var(--blue);
  display: grid;
  place-items: center;
  margin-top: 2px;
  transition:
    background 0.3s,
    color 0.3s;
  box-shadow: 0 3px 10px rgba(8, 58, 86, 0.07);
}
.i-row:hover .i-ic {
  background: var(--blue);
  color: #fff;
}
.i-row b {
  display: block;
  font-size: 17.5px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.i-row small {
  font-size: 14.5px;
  color: var(--ink-2);
  font-weight: 600;
  line-height: 1.5;
}

/* ============================================================
   GALLERY — filmstrip
   ============================================================ */
.gallery {
  background: #fff;
  padding: 104px 0 96px;
}
.film {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 232px 232px;
  gap: 16px;
}
.film a:nth-child(1) {
  grid-column: 1/3;
  grid-row: 1/3;
}
.film a:nth-child(2) {
  grid-column: 3/4;
  grid-row: 1/2;
}
.film a:nth-child(3) {
  grid-column: 4/5;
  grid-row: 1/2;
}
.film a:nth-child(4) {
  grid-column: 3/5;
  grid-row: 2/3;
}
.film a {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  display: block;
}
.film img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.film a:hover img {
  transform: scale(1.06);
}
.film a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(8, 58, 86, 0.55));
  opacity: 0;
  transition: opacity 0.4s;
}
.film a:hover::after {
  opacity: 1;
}
.film .cap {
  position: absolute;
  left: 18px;
  bottom: 14px;
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
  transition: 0.4s var(--ease);
  z-index: 2;
}
.film a:hover .cap {
  opacity: 1;
  transform: none;
}

/* ============================================================
   BRANDS — Modi family of healthcare
   ============================================================ */
.brands {
  background: linear-gradient(180deg, var(--blue-tint) 0%, #f2f8fc 100%);
  padding: 104px 0;
}
.b-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.b-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: none;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}
.b-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.b-media {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.b-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.b-card:hover .b-media img {
  transform: scale(1.07);
}
.b-body {
  padding: 28px 28px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.b-body h3 {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.b-body .b-tag {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  margin: 6px 0 14px;
  font-style: italic;
}
.b-body p {
  font-size: 14.5px;
  color: var(--ink-2);
  margin-bottom: 22px;
}
.b-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 800;
  color: var(--blue-ink);
}
.b-link svg {
  transition: transform 0.3s;
}
.b-card:hover .b-link svg {
  transform: translateX(5px);
}
.b-card:hover .b-link {
  color: var(--blue);
}

/* ============================================================
   DOCTORS carousel
   ============================================================ */
.docs {
  background: #fff;
  padding: 104px 0;
}
.d-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 8px 4px 24px;
}
@media (max-width: 1024px) {
  .d-track {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .d-track {
    grid-template-columns: 1fr;
  }
}
.d-card {
  background: var(--surface);
  border: none;
  border-radius: 16px;
  overflow: hidden;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}
.d-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.d-card img {
  width: 100%;
  aspect-ratio: 1/1.08;
  object-fit: cover;
  object-position: top;
}
.d-card .d-info {
  padding: 18px 20px 22px;
}
.d-card b {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.d-card small {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.02em;
  line-height: 1.35;
  margin-top: 4px;
}
.c-wrap {
  position: relative;
}
.c-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--blue-ink);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
  transition: 0.25s;
  cursor: pointer;
}
.c-arrow:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.c-arrow.left {
  left: -14px;
}
.c-arrow.right {
  right: -14px;
}

/* ============================================================
   GUIDANCE CTA — the one dark moment
   ============================================================ */
.guide {
  background: linear-gradient(
    115deg,
    var(--blue-ink) 0%,
    #0b5078 55%,
    var(--blue) 130%
  );
  color: #fff;
  padding: 80px 0;
  overflow: hidden;
}
.guide::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  border: 60px solid rgba(255, 255, 255, 0.05);
}
.guide::after {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -160px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.045);
}
.g-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.g-grid .eyebrow {
  margin-bottom: 18px;
}
.g-grid h2 {
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 600;
  letter-spacing: -0.015em;
  max-width: 26ch;
  line-height: 1.35;
}
.g-grid h2 em {
  font-style: normal;
  color: #9bd4f0;
}
.g-grid p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 50ch;
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.7;
}
.g-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   AWARDS band
   ============================================================ */
.awards {
  background: #fff;
  padding: 88px 0;
}
.a-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.a-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 8px 36px;
  border: none;
  border-left: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  transition: none;
}
.a-item:first-child {
  border-left: none;
  padding-left: 0;
}
/* No hover treatment on the awards boxes — these are static credentials, not
   interactive cards, and nothing here is clickable. The previous lift +
   shadow on hover implied an action that does not exist. */
.a-item .a-ic {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--blue-tint);
  color: var(--blue);
  display: grid;
  place-items: center;
  margin-top: 2px;
}
.a-item b {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-ink);
  letter-spacing: -0.01em;
  white-space: nowrap;
  margin-bottom: 4px;
}
.a-item small {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-3);
  line-height: 1.4;
}

/* ============================================================
   NEWS & MEDIA — video carousel
   ============================================================ */
.news {
  background: var(--surface);
  padding: 104px 0;
}
.n-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 24px;
  scrollbar-width: none;
}
.n-track::-webkit-scrollbar {
  display: none;
}
.n-card {
  flex: 0 0 400px;
  scroll-snap-align: start;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  position: relative;
  aspect-ratio: 16/9;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.n-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transition:
    transform 0.6s var(--ease),
    opacity 0.4s;
}
.n-card:hover img {
  transform: scale(1.05);
  opacity: 1;
}
.n-card .play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
}
.n-card .play span {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: rgba(215, 38, 61, 0.94);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s var(--ease);
}
.n-card:hover .play span {
  transform: scale(1.12);
}
.n-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  background: #fff;
  padding: 104px 0;
}
.rev-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 20px;
  scrollbar-width: none;
}
.rev-track::-webkit-scrollbar {
  display: none;
}
.rev-card {
  flex: 0 0 372px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: none;
  border-radius: 18px;
  padding: 28px 30px;
  transition: box-shadow 0.3s;
  max-height: 340px;
}
.rev-card:hover {
  box-shadow: var(--shadow-sm);
}
.stars {
  color: #f5a623;
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.rev-card p {
  font-size: 14.5px;
  color: var(--ink-2);
  margin-bottom: 18px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.rev-who {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rev-who .av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-tint);
  color: var(--blue);
  font-weight: 800;
  font-size: 15px;
  display: grid;
  place-items: center;
}
.rev-who b {
  font-size: 14px;
  color: var(--ink);
}
.rev-who small {
  display: block;
  font-size: 12px;
  color: var(--ink-3);
  font-weight: 600;
}
.g-rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 10px 22px;
  font-weight: 800;
  color: var(--ink);
  font-size: 15px;
}

/* ============================================================
   CSR
   ============================================================ */
.csr {
  background: linear-gradient(180deg, #f2f8fc 0%, var(--blue-tint) 100%);
  padding: 104px 0;
}
.csr-slider {
  position: relative;
}
.cslide {
  display: none;
  grid-template-columns: 1fr 1.35fr;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 380px;
  animation: csIn 0.6s var(--ease);
}
.cslide.active {
  display: grid;
}
@keyframes csIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.cs-body {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 120%);
  color: #fff;
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cs-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  width: fit-content;
  margin-bottom: 22px;
}
.cs-body h3 {
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
}
.cs-body p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 26px;
  max-width: 46ch;
}
.cs-chips {
  display: flex;
  gap: 30px;
  flex-wrap: nowrap;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 22px;
}
.cs-chips span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  white-space: nowrap;
  color: #fff;
}
.cs-chips span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9bd4f0;
  flex: none;
}
.cs-img {
  position: relative;
  min-height: 300px;
}
.cs-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.csr-points {
  display: flex;
  margin-top: 52px;
  flex-wrap: wrap;
}
.cp {
  flex: 1;
  min-width: 180px;
  padding: 4px 36px;
  border-left: 1px solid rgba(14, 130, 190, 0.22);
}
.cp:first-child {
  border-left: none;
  padding-left: 0;
}
.cp .num {
  font-size: 30px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.cp small {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-2);
}

/* ============================================================
   BLOGS
   ============================================================ */
.blogs {
  background: var(--surface);
  padding: 104px 0 88px;
}
.bl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.bl-card {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}
.bl-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.bl-media {
  height: 210px;
  overflow: hidden;
}
.bl-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.bl-card:hover .bl-media img {
  transform: scale(1.06);
}
.bl-body {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.bl-meta {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink-3);
  margin-bottom: 10px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.bl-meta::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}
.bl-body h3 {
  font-size: 17.5px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 10px;
}
.bl-card:hover h3 {
  color: var(--blue);
}
.bl-body p {
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 18px;
}
.bl-more {
  margin-top: auto;
  font-size: 14px;
  font-weight: 800;
  color: var(--blue);
  display: inline-flex;
  gap: 7px;
  align-items: center;
}

/* ============================================================
   VISIT US
   ============================================================ */
.visit {
  background: var(--surface);
  padding: 104px 0;
}
.v-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.v-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.v-map {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  flex: 1;
  min-height: 300px;
  box-shadow: var(--shadow-sm);
}
.v-map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
  display: block;
}
.v-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.vi-card {
  display: flex;
  gap: 14px;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 6px 0;
  align-items: flex-start;
}
.vi-card .vi-ic {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--blue-tint);
  color: var(--blue);
  display: grid;
  place-items: center;
}
.vi-card b {
  display: block;
  font-size: 13.5px;
  font-weight: 800;
  color: var(--ink);
}
.vi-card small,
.vi-card a {
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 600;
  line-height: 1.5;
}
.vi-card a:hover {
  color: var(--blue);
}
.v-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.v-form h3,
.v-form .v-form-title {
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 6px;
  color: var(--ink);
}
.v-form > p {
  font-size: 14px;
  color: var(--ink-3);
  font-weight: 600;
  margin-bottom: 26px;
}
.fld {
  margin-bottom: 18px;
}
.fld label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 7px;
}
.fld input,
.fld select,
.fld textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  padding: 13px 16px;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  background: #fff;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
}
.fld input:focus,
.fld select:focus,
.fld textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(14, 130, 190, 0.12);
}
.fld-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.v-form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}
.v-form .assure {
  font-size: 12.5px;
  color: var(--ink-3);
  font-weight: 600;
  text-align: center;
  margin-top: 14px;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--blue-ink);
  color: rgba(255, 255, 255, 0.78);
}
.ft-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 72px 0 56px;
}
.ft-brand img {
  height: 54px;
  border-radius: 6px;
  margin-bottom: 18px;
  background: #fff;
  padding: 4px;
}
.ft-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 34ch;
}
.ft-emg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(215, 38, 61, 0.18);
  border: 1px solid rgba(215, 38, 61, 0.45);
  color: #ffb3bd;
  border-radius: var(--r);
  padding: 11px 18px;
  font-size: 13.5px;
  font-weight: 800;
  margin-top: 20px;
}
.ft-emg:hover {
  background: rgba(215, 38, 61, 0.3);
}
footer h4,
footer h2 {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.ft-links li {
  margin-bottom: 11px;
}
.ft-links a {
  font-size: 14px;
  font-weight: 600;
  transition:
    color 0.2s,
    padding-left 0.2s;
}
.ft-links a:hover {
  color: #9bd4f0;
  padding-left: 4px;
}
.ft-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 600;
}
.socials {
  display: flex;
  gap: 12px;
}
.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: grid;
  place-items: center;
  color: #fff;
  transition: 0.25s;
}
.socials a:hover {
  background: var(--blue);
  border-color: var(--blue);
}

/* ---- trust strip headline ---- */
.trust-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 30px 32px 22px;
  text-align: center;
}
.trust-title::before,
.trust-title::after {
  content: "";
  flex: 1;
  max-width: 220px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-soft));
}
.trust-title::after {
  background: linear-gradient(90deg, var(--blue-soft), transparent);
}
.trust-title span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-ink);
  white-space: nowrap;
}
.trust-title b {
  color: var(--blue);
  font-weight: 800;
}
.trust-title svg {
  flex: none;
  color: var(--blue);
}

/* ---- mid CTA ---- */
.midcta {
  background: linear-gradient(
    120deg,
    var(--blue-ink) 0%,
    #0b5078 60%,
    var(--blue) 140%
  );
  color: #fff;
  padding: 88px 0;
  overflow: hidden;
  text-align: center;
}
.midcta::before {
  content: "";
  position: absolute;
  left: -140px;
  top: -140px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 54px solid rgba(255, 255, 255, 0.05);
}
.midcta .wrap {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
}
.midcta h2 {
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 1.3;
  margin-bottom: 22px;
}
.midcta h2 em {
  font-style: normal;
  color: #9bd4f0;
}
.midcta p {
  font-size: 15.5px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.87);
  margin-bottom: 36px;
}
.midcta p a {
  color: #9bd4f0;
  font-weight: 700;
  border-bottom: 1px solid rgba(155, 212, 240, 0.5);
}
.midcta p a:hover {
  border-color: #9bd4f0;
}

/* ---- counters label ---- */
.cnt-label {
  display: block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 32px 0 0;
}

/* ---- reviews footer ---- */
.rev-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 16px;
}

/* ---- latest updates (reels) ---- */
.updates {
  margin-top: 80px;
  background: var(--surface);
  border-radius: 20px;
  padding: 56px 60px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: center;
}
.updates-copy .eyebrow {
  margin-bottom: 14px;
}
.updates-copy h3 {
  font-size: clamp(22px, 2.1vw, 28px);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 14px;
}
.updates-copy p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 26px;
  max-width: 42ch;
}
.updates-row {
  display: flex;
  gap: 24px;
  justify-content: flex-end;
}
.reel-frame {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
  width: min(300px, 47%);
  height: 424px;
  box-shadow: var(--shadow-md);
}
.reel-frame iframe {
  width: 100%;
  height: 620px;
  margin-top: -56px;
  border: 0;
  display: block;
}
.reel-frame::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 46px;
  background: linear-gradient(180deg, transparent, #fff 70%);
  pointer-events: none;
}
@media (max-width: 1080px) {
  .updates {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 40px 28px;
  }
  .updates-row {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .reel-frame {
    width: 290px;
  }
}

/* ---- FAQs ---- */
.faq {
  background: #fff;
  padding: 88px 0 104px;
}
.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
  align-items: start;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition:
    border-color 0.3s,
    box-shadow 0.3s,
    background 0.3s;
}
.faq-item:hover {
  border-color: var(--blue-soft);
}
.faq-item.open {
  background: #fff;
  border-color: var(--blue-soft);
  box-shadow: var(--shadow-md);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  text-align: left;
  padding: 22px 26px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  transition: color 0.2s;
}
.faq-q:hover {
  color: var(--blue);
}
.faq-q .fx {
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 600;
  transition:
    transform 0.3s var(--ease),
    background 0.3s,
    color 0.3s,
    border-color 0.3s;
}
.faq-item.open .faq-q {
  color: var(--blue);
}
.faq-item.open .fx {
  transform: rotate(45deg);
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.faq-a p {
  padding: 0 60px 24px 26px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-2);
}

/* floating WhatsApp */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 300;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s var(--ease);
}
.wa-float:hover {
  transform: scale(1.08);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .nav {
    display: none;
  }
  .nav-cta .btn {
    display: none;
  }
  .burger {
    display: flex;
  }
  .m-nav {
    display: block;
    position: fixed;
    inset: 0;
    top: 0;
    background: #fff;
    z-index: 400;
    padding: 24px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
  }
  .m-nav.open {
    transform: none;
  }
  .m-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
  }
  .m-head img {
    height: 44px;
    border-radius: 6px;
  }
  .m-close {
    font-size: 15px;
    font-weight: 800;
    color: var(--ink);
    padding: 10px;
  }
  .m-nav > ul > li {
    border-bottom: 1px solid var(--line);
  }
  .m-nav > ul > li > a,
  .m-nav .m-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 4px;
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    width: 100%;
    text-align: left;
  }
  .m-sub {
    display: none;
    padding: 0 4px 16px;
  }
  .m-sub.open {
    display: block;
  }
  .m-sub a {
    display: block;
    padding: 9px 12px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--ink-2);
  }
  .m-nav .btn {
    width: 100%;
    justify-content: center;
    margin-top: 24px;
  }
  .spec-grid,
  .story-grid,
  .about-grid,
  .v-grid {
    grid-template-columns: 1fr;
  }
  .about-visual {
    position: relative;
    top: 0;
  }
  .sec-head.split {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .split-right {
    padding-top: 0;
  }
  .cslide {
    grid-template-columns: 1fr;
  }
  .cslide .cs-img {
    min-height: 240px;
    order: -1;
  }
  .infra-cols {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .a-band {
    grid-template-columns: 1fr 1fr;
    gap: 28px 0;
  }
  .a-item:nth-child(odd) {
    border-left: none;
    padding-left: 0;
  }
  .spec-list {
    grid-template-columns: 1fr;
  }
  .film {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .film a {
    grid-column: auto !important;
    grid-row: auto !important;
    height: 220px;
  }
  .ft-top {
    grid-template-columns: 1fr 1fr;
  }
  .founders {
    max-width: 560px;
  }
}
/* ===== MOBILE FIXES (homepage) ===== */
html {
  overflow-x: clip;
}
@keyframes tmarq {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 720px) {
  /* USP/trust strip -> auto-scroll marquee, one row */
  .trust .wrap {
    overflow: hidden;
    padding-bottom: 22px;
  }
  .t-track {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    gap: 0;
    animation: tmarq 22s linear infinite;
  }
  .t-item.t-dup {
    display: flex;
  }
  .trust .t-item {
    flex: 0 0 auto;
    border-left: 1px solid var(--line) !important;
    padding: 6px 22px !important;
  }
  .trust-title {
    padding: 24px 20px 16px;
  }
  .trust-title span {
    font-size: 13px;
  }
  /* Hero: hide Call button */
  .slide .btn-row .btn-white {
    display: none;
  }
  /* Surgical specialities: stop sticky feature card overlapping */
  .spec-feat {
    position: static !important;
    top: auto !important;
  }
  .spec-grid {
    gap: 22px;
  }
  /* Awards & accreditations: 2 per row */
  .a-band {
    grid-template-columns: 1fr 1fr !important;
    gap: 22px 18px !important;
  }
  .a-item {
    padding: 0 !important;
    border-left: none !important;
    min-width: 0;
  }
  .a-item > span {
    min-width: 0;
  }
  .a-item b {
    white-space: normal;
  }
  /* Blog: horizontal carousel (both the resources .b-grid and the
     "Latest from Our Blog" .bl-grid) */
  .b-grid,
  .bl-grid {
    display: flex !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    scrollbar-width: none;
  }
  .b-grid::-webkit-scrollbar,
  .bl-grid::-webkit-scrollbar {
    display: none;
  }
  .b-grid .b-card,
  .bl-grid .bl-card {
    flex: 0 0 82%;
    scroll-snap-align: start;
  }
  /* CSR: 2 points per row */
  .csr-points {
    gap: 22px 0;
  }
  .cp {
    flex: 0 0 50% !important;
    box-sizing: border-box;
    padding: 0 16px !important;
  }
  .cp:nth-child(2n + 1) {
    border-left: none !important;
    padding-left: 0 !important;
  }
}
@media (max-width: 720px) {
  .wrap {
    padding: 0 20px;
  }
  .topbar .tb-right span.hide-s {
    display: none;
  }
  .slide-inner {
  position: relative;
  z-index: 2;
  color: #fff;
  width: 100%;
  padding-top: 80px;
}
  .hero .wrap {
    padding-left: 24px;
    padding-right: 24px;
  }
  .h-arrow {
    display: none;
  }
  .trust .wrap {
    grid-template-columns: 1fr 1fr;
    gap: 4px;
  }
  .t-item {
    border-left: none;
    padding: 12px 4px;
  }
  .counters {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4px;
  }
  .r-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
  .r-grid .r-item:nth-last-child(2) {
    border-bottom: 1px solid var(--line);
  }
  .infra-cols {
    grid-template-columns: 1fr;
  }
  .infra-feature {
    flex-wrap: wrap;
  }
  .infra-feature .if-badge {
    margin-left: 0;
  }
  .b-grid,
  .bl-grid {
    grid-template-columns: 1fr;
  }
  .csr-points {
    gap: 20px 0;
  }
  .cp {
    flex: 1 1 45%;
    padding: 0 18px;
  }
  .cp:nth-child(odd) {
    border-left: none;
    padding-left: 0;
  }
  .cs-body {
    padding: 34px 24px;
  }
  .cs-chips {
    flex-wrap: wrap;
    gap: 12px 22px;
  }
  .c-arrow.left {
    left: 6px;
  }
  .c-arrow.right {
    right: 6px;
  }
  .a-band {
    grid-template-columns: 1fr;
  }
  .rev-card {
    flex-basis: 84vw;
  }
  .fld-row {
    grid-template-columns: 1fr;
  }
  .faq-list {
    grid-template-columns: 1fr;
  }
  .v-form {
    padding: 28px 22px;
  }
  .v-info {
    grid-template-columns: 1fr;
  }
  .ft-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .n-card {
    flex-basis: 84vw;
  }
  .d-card {
    flex-basis: 230px;
  }
  .sec-head {
    margin-bottom: 36px;
  }
  .about,
  .story,
  .spec,
  .reasons,
  .infra,
  .gallery,
  .brands,
  .docs,
  .news,
  .reviews,
  .csr,
  .blogs,
  .visit {
    padding: 72px 0;
  }
}

/* ============================================================
   MOBILE FIXES — homepage  (<=720px)
   NOTE: several rules need !important because the earlier
   max-width:720px block above already sets some of these
   properties with !important.
   1. trust strip headline was clipped (nowrap + wide tracking)
   2. hero H1 forced to exactly 3 lines
   3. counters: static values, one row, spaced, smaller type
   4. founders cards: taller image, smaller name plate
   5. spec-feat ghost overlay removed; service cards clickable
   6. awards band: one card per row
   ============================================================ */
@media (max-width: 720px) {
  /* 1 · trust strip headline — keep it on ONE line; the flanking rules are
        dropped and the type is scaled to the viewport so the full string
        (icon + "…ESTABLISHED SINCE 1987") always fits without wrapping. */
  .trust-title {
    padding: 20px 14px 14px;
    gap: 8px;
  }
  .trust-title::before,
  .trust-title::after {
    display: none;
  }
  .trust-title span {
    font-size: clamp(7.5px, calc((100vw - 28px) / 37.5), 11px);
    letter-spacing: 0.04em;
    line-height: 1.4;
    white-space: nowrap;
    text-align: center;
    gap: 6px;
    flex-wrap: nowrap;
  }
  .trust-title span svg {
    flex: none;
    width: 1.15em;
    height: 1.15em;
  }

  /* 2 · hero H1 — force exactly three lines.
        Sentence 1 breaks at .hb-m, sentence 2 is sized to fit on one line
        at any phone width via the viewport-scaled clamp. */
  .slide h1,
  .slide .h1 {
    font-size: clamp(20px, calc((100vw - 52px) / 12.1), 26px);
    line-height: 1.24;
    margin-bottom: 22px;
  }
  .slide h1 br.hb-m {
    display: block;
  }

  /* 3 · counters — no clipping, real spacing between the three figures */
  .counters {
    grid-template-columns: repeat(3, 1fr);
    gap: 0 14px;
    padding: 18px 0;
    margin: 26px 0;
  }
  .counter {
    min-width: 0;
  }
  .counter .num {
    font-size: 17px;
    letter-spacing: -0.02em;
    line-height: 1.2;
    white-space: nowrap;
  }
  .counter small {
    font-size: 9.5px;
    font-weight: 700;
    line-height: 1.35;
    display: block;
    margin-top: 2px;
  }
  .cnt-label {
    font-size: 10px;
    letter-spacing: 0.1em;
    margin-top: 24px;
  }

  /* 4 · founders — taller portrait, smaller name plate */
  .f-card img {
    aspect-ratio: 3/4.3;
  }
  .f-card .plate {
    left: 8px;
    right: 8px;
    bottom: 8px;
    padding: 9px 10px;
    border-radius: 9px;
  }
  .f-card .plate b {
    font-size: 12.5px;
    line-height: 1.2;
  }
  .f-card .plate small {
    font-size: 9.5px;
    letter-spacing: 0.01em;
    line-height: 1.25;
  }
  .founders {
    gap: 14px;
  }
  .founders .f-card:nth-child(2) {
    margin-top: 32px;
  }

  /* 5 · specialities — the ::before is absolutely positioned; the earlier
        block sets .spec-feat to position:static, which lets that overlay
        escape to the viewport, greying the section AND swallowing taps on
        the service cards. Keep the box positioned and drop the overlay. */
  .spec-feat {
    position: relative !important;
    top: auto !important;
    z-index: 0;
  }
  .spec-feat::before {
    display: none !important;
  }
  .spec-list {
    position: relative;
    z-index: 2;
  }
  .spec-list .s-card {
    position: relative;
    z-index: 2;
    pointer-events: auto;
  }

  /* 6 · awards — one card per row */
  .a-band {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  .a-item {
    border-left: none !important;
    border-top: 1px solid var(--line);
    padding: 16px 0 !important;
    align-items: center;
  }
  .a-item:first-child {
    border-top: none;
    padding-top: 0 !important;
  }
  .a-item b {
    white-space: normal;
  }
}

/* FAQ questions are h3 for document outline / SEO. The h3 wraps the accordion
   button rather than replacing it, so the button keeps its role and keyboard
   behaviour. font/letter-spacing are pulled back from .faq-item because
   `h1,h2,h3` above sets letter-spacing:-.02em, which would otherwise leak into
   the question text — semantics only, zero visual change. */
.faq-h {
  margin: 0;
  font: inherit;
  letter-spacing: inherit;
  color: inherit;
}
.faq-h .faq-q {
  width: 100%;
}


/* Custom classes for Promises section to avoid inline styles */
.promises-head {
    text-align: center;
}
.promises-eyebrow {
    justify-content: center;
}
.promises-lead {
    margin: 0 auto;
}

/* Ensure n-card has a hover effect */
.n-card {
    transition: transform 0.3s ease;
    display: block;
}
.n-card:hover {
    transform: translateY(-5px);
}
.n-card:hover .play {
    transform: translate(-5px, -5px);
}

/* icons */
.social-float {
  position: fixed;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.social-float a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.social-float img {
  width: 24px;
  height: 24px;
  filter: invert(1);
}

.social-float a:hover {
  transform: scale(1.15);
}

/* Background Colors */
.linkedin {
  background: #0077b5;
}
.instagram {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}
.facebook {
  background: #1877f2;
}
.twitter {
  background: #000;
}
.whatsapp {
  background: #25d366;
}
.call {
  background: #1db954;
}
.social-float .gmb{
    background: #34a853;
}