/* ============================================================
   KMC — kmc Center
   Global Styles
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,700;1,500&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --blue-deep: #0B3C5D;
  --blue: #328CC1;
  --blue-light: #EAF4FB;
  --green: #1DDE8B;
  --green-dark: #13A067;
  --red: #E53935;
  --red-soft: #FFF0F0;
  --white: #FFFFFF;
  --off-white: #F7FAFD;
  --slate: #E4EBF2;
  --text-dark: #0B1E2D;
  --text-mid: #3A5068;
  --text-light: #7A94A8;
  --shadow: 0 4px 24px rgba(11, 60, 93, 0.10);
  --shadow-lg: 0 12px 48px rgba(11, 60, 93, 0.14);
  --radius: 14px;
  --radius-sm: 8px;
  --teal: #0B9E8A;
  font-size: 16px;
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

ul {
  list-style: none;
}

select,
input,
textarea,
button {
  font-family: inherit;
}

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.22s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--blue-deep);
  color: white;
}

.btn-primary:hover {
  background: #0d4875;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11, 60, 93, 0.25);
}

.btn-emergency {
  background: var(--red);
  color: white;
}

.btn-emergency:hover {
  background: #c62828;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(229, 57, 53, 0.30);
}

.btn-outline {
  background: transparent;
  color: var(--blue-deep);
  border-color: var(--blue-deep);
}

.btn-outline:hover {
  background: var(--blue-deep);
  color: white;
  transform: translateY(-2px);
}

.btn-white {
  background: white;
  color: var(--blue-deep);
  font-weight: 700;
}

.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}

/* ── Section tags & titles ── */
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 38px);
  color: var(--blue-deep);
  line-height: 1.25;
  margin-bottom: 14px;
}

.section-title em {
  font-style: italic;
  color: var(--blue);
}

.section-sub {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 40px;
}

/* ── Emergency Strip ── */
.emergency-strip {
  background: var(--red);
  color: white;
  text-align: center;
  padding: 9px 16px;
  font-size: 13.5px;
  font-weight: 500;
  z-index: 1000;
  position: relative;
}

.emergency-strip a {
  color: white;
  text-decoration: underline;
  font-weight: 700;
}

/* ── Navbar ── */
nav {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(11, 60, 93, 0.08);
  z-index: 999;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 55px;
  width: auto;
}

.nav-logo-text {
  font-size: 17px;
  line-height: 1.35;
  color: var(--blue-deep);
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 4px;
  margin-left: auto;
}

.nav-links li a {
  display: block;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  transition: all 0.18s;
}

.nav-links li a:hover,
.nav-links li a.active {
  background: var(--blue-light);
  color: var(--blue-deep);
  font-weight: 600;
}

.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

.nav-call {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--blue-deep);
  text-decoration: none;
  white-space: nowrap;
}

.nav-call:hover {
  color: var(--blue);
}

.nav-actions .btn {
  padding: 9px 18px;
  font-size: 13.5px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue-deep);
  border-radius: 2px;
  transition: all 0.25s;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: white;
  border-top: 1px solid var(--slate);
  padding: 10px 0 16px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  padding: 13px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--slate);
}

.mobile-menu a:hover {
  background: var(--blue-light);
}

/* ── Page Banner ── */
.page-banner {
  color: white;
  padding: 70px 0 55px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0B3C5D 0%, #1A5276 100%);
}

.page-banner-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 60, 93, 0.7) 0%, rgba(26, 82, 118, 0.7) 100%);
  z-index: 1;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  z-index: 2;
}

.page-banner .container {
  position: relative;
  z-index: 3;
}

.breadcrumb {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
}

.page-banner h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 12px;
  line-height: 1.2;
}

.page-banner p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
}

/* ── Hero ── */
.hero {
  padding: 80px 0 60px;
  background: linear-gradient(160deg, var(--off-white) 0%, var(--blue-light) 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: white;
  border: 1.5px solid var(--slate);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-deep);
  margin-bottom: 22px;
  box-shadow: var(--shadow);
}

.hero-left h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.2;
  color: var(--blue-deep);
  margin-bottom: 20px;
}

.hero-left p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  border-top: 1px solid var(--slate);
  padding-top: 32px;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-size: 26px;
  font-weight: 700;
  color: var(--blue-deep);
  font-family: 'Playfair Display', serif;
}

.stat-label {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 500;
  line-height: 1.4;
}

.hero-right {
  position: relative;
}

.hero-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-img-wrap img {
  width: 100%;
  height: 650px;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(11, 60, 93, 0.15);
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-deep);
  z-index: 2;
}

.badge-icon {
  font-size: 22px;
}

.b1 {
  bottom: -18px;
  left: -20px;
}

.b2 {
  top: 30px;
  right: -30px;
}

/* ── Services Section (Home) ── */
.services-section {
  padding: 80px 0;
  background: white;
}

.services-header {
  text-align: center;
  margin-bottom: 48px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.bento-card {
  background: var(--off-white);
  border: 1.5px solid var(--slate);
  border-radius: var(--radius);
  padding: 28px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}

.bento-card.wide {
  grid-column: span 2;
}

.bento-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}

.bento-icon.green {
  background: #e8fdf4;
}

.bento-icon.red {
  background: #fff0f0;
}

.bento-icon.teal {
  background: #e6f8f6;
}

.bento-icon.blue {
  background: var(--blue-light);
}

.bento-card h3 {
  font-size: 18px;
  color: var(--blue-deep);
  margin-bottom: 8px;
  font-weight: 700;
}

.bento-card p {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ── Doctors Section ── */
.doctors-section {
  padding: 80px 0;
  background: var(--off-white);
}

.doctors-header {
  text-align: center;
  margin-bottom: 48px;
}

.doctors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.doctor-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--slate);
  transition: all 0.25s;
}

.doctor-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.doctor-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  color: white;
  margin: 0 auto 16px;
}

.doctor-card h3 {
  font-size: 17px;
  color: var(--blue-deep);
  margin-bottom: 6px;
  font-weight: 700;
}

.spec {
  font-size: 13px;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 4px;
}

.qual {
  font-size: 12px;
  color: var(--text-light);
}

/* ── Why Section ── */
.why-section {
  padding: 80px 0;
  background: white;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 36px);
  color: var(--blue-deep);
  line-height: 1.3;
  margin-bottom: 16px;
}

.why-left p {
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 28px;
}

.why-checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-checklist li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.check-icon {
  width: 22px;
  height: 22px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-checklist li div {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.6;
}

.why-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-card {
  background: var(--off-white);
  border: 1.5px solid var(--slate);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
}

.wnum {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 6px;
}

.wlabel {
  font-size: 13px;
  color: var(--text-mid);
  font-weight: 500;
}

/* ── Testimonials ── */
.testimonials {
  padding: 80px 0;
  background: var(--off-white);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testi-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--slate);
}

.testi-stars {
  color: #f59e0b;
  font-size: 16px;
  margin-bottom: 14px;
}

.testi-text {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-deep);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.testi-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-deep);
}

.testi-tag {
  font-size: 11.5px;
  color: var(--green-dark);
  font-weight: 600;
}

/* ── CTA Section ── */
.cta-section {
  padding: 80px 0;
}

.cta-inner {
  background: linear-gradient(135deg, var(--blue-deep), #1a5276);
  border-radius: 24px;
  padding: 60px 48px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  right: -60px;
  top: -80px;
}

.cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 12px;
  position: relative;
}

.cta-inner p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
  position: relative;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ── About Page ── */
.about-profile {
  padding: 80px 0;
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 160px 160px;
  gap: 12px;
}

.mosaic-cell {
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}

.mosaic-cell.tall {
  grid-row: span 2;
}

.values-section {
  padding: 80px 0;
  background: var(--off-white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.value-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 22px;
  border: 1.5px solid var(--slate);
  box-shadow: var(--shadow);
}

.value-icon {
  font-size: 32px;
  margin-bottom: 14px;
}

.value-card h3 {
  font-size: 16px;
  color: var(--blue-deep);
  margin-bottom: 8px;
  font-weight: 700;
}

.value-card p {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.65;
}

.stats-strip {
  background: var(--blue-deep);
  color: white;
  padding: 48px 0;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-block {
  text-align: center;
}

.snum {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 6px;
}

.slabel {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.about-doctors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.about-doc-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  border: 1.5px solid var(--slate);
  transition: all 0.25s;
}

.about-doc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.doc-avatar-lg {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 22px;
  color: white;
  margin: 0 auto 16px;
}

.about-doc-card h3 {
  font-size: 16px;
  color: var(--blue-deep);
  margin-bottom: 5px;
  font-weight: 700;
}

.spec-tag {
  font-size: 12.5px;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 4px;
}

.qual-tag {
  font-size: 12px;
  color: var(--text-light);
}

/* ── Services Page ── */
.services-page {
  padding: 60px 0 80px;
  background: var(--off-white);
}

.search-wrap {
  position: relative;
  margin-bottom: 24px;
}

.search-wrap input {
  width: 100%;
  padding: 16px 48px 16px 20px;
  border-radius: 50px;
  border: 2px solid var(--slate);
  font-size: 15px;
  background: white;
  outline: none;
  color: var(--text-dark);
  transition: border-color 0.2s;
}

.search-wrap input:focus {
  border-color: var(--blue);
}

.search-icon {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
}

.filter-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-pill {
  padding: 8px 18px;
  border-radius: 50px;
  border: 1.5px solid var(--slate);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-mid);
  background: white;
  cursor: pointer;
  transition: all 0.18s;
}

.filter-pill:hover,
.filter-pill.active {
  background: var(--blue-deep);
  color: white;
  border-color: var(--blue-deep);
}

.services-cat-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 18px;
  margin-top: 40px;
  padding-left: 4px;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.svc-card {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  border: 1.5px solid var(--slate);
  transition: all 0.25s;
  cursor: pointer;
}

.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}

.svc-card.hidden {
  display: none;
}

.svc-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.svc-card h3 {
  font-size: 16px;
  color: var(--blue-deep);
  margin-bottom: 8px;
  font-weight: 700;
}

.svc-card p {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 14px;
}

.svc-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
}

.escalation-banner {
  background: linear-gradient(135deg, var(--blue-deep), #1a5276);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  color: white;
  margin-top: 50px;
}

.escalation-banner h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 10px;
}

.escalation-banner p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 24px;
}

/* ── Gallery Page ── */
.gallery-page {
  padding: 60px 0 80px;
  background: var(--off-white);
}

.gallery-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  text-align: center;
  
}

.gph-icon {
  font-size: 42px;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 60, 93, 0.75), transparent);
  opacity: 0;
  transition: opacity 0.25s;
  display: flex;
  align-items: flex-end;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-cap {
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 16px;
  line-height: 1.4;
}

/* ── Contact Page ── */
.contact-page {
  padding: 60px 0 80px;
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.5vw, 30px);
  color: var(--blue-deep);
  margin-bottom: 10px;
}

.contact-left p {
  color: var(--text-mid);
  margin-bottom: 28px;
  line-height: 1.7;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: white;
  border: 1.5px solid var(--slate);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin-bottom: 12px;
  transition: box-shadow 0.2s;
}

.contact-card:hover {
  box-shadow: var(--shadow);
}

.contact-card.emg {
  border-left: 4px solid var(--red);
}

.cc-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.cc-icon.red {
  background: var(--red-soft);
}

.cc-icon.blue {
  background: var(--blue-light);
}

.cc-icon.green {
  background: #e8fdf4;
}

.cc-label {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 2px;
}

.cc-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 2px;
}

.cc-sub {
  font-size: 12px;
  color: var(--text-light);
}

.form-card {
  background: white;
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--slate);
}

.form-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--blue-deep);
  margin-bottom: 6px;
}

.form-card p {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--slate);
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  color: var(--text-dark);
  background: var(--off-white);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: white;
}

.form-group textarea {
  height: 100px;
  resize: vertical;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--blue-deep);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.22s;
}

.submit-btn:hover {
  background: #0d4875;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11, 60, 93, 0.25);
}

.map-section {
  padding: 0 0 80px;
}

.map-container {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-embed {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
}

.map-float {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: white;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 14px;
  color: var(--blue-deep);
  box-shadow: var(--shadow);
  max-width: 280px;
  line-height: 1.5;
}

/* ── Footer ── */
footer {
  background: var(--blue-deep);
  color: white;
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand .logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin-bottom: 20px;
}

.footer-emergency {
  background: rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}

.fe-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.fe-num {
  font-size: 15px;
  font-weight: 700;
  color: white;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green);
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  transition: color 0.18s;
}

.footer-col ul li a:hover {
  color: white;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.68);
}

.fci {
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

/* ── Mobile Sticky ── */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
}

.sticky-btn {
  flex: 1;
  padding: 15px 10px;
  text-align: center;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
}

.sticky-btn.wa {
  background: #25D366;
  color: white;
}

.sticky-btn.call {
  background: var(--red);
  color: white;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-card.wide {
    grid-column: span 2;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-actions {
    display: none;
  }

  .hamburger {
    display: flex;
    margin-left: auto;
  }

  .hero-grid,
  .about-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-right {
    display: none;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .doctors-grid,
  .testimonials-track,
  .services-cards,
  .gallery-grid,
  .about-doctors-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-grid,
  .bento-card.wide {
    grid-template-columns: 1fr;
    grid-column: unset;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .mobile-sticky {
    display: flex;
  }

  body {
    padding-bottom: 56px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {

  .doctors-grid,
  .testimonials-track,
  .about-doctors-grid {
    grid-template-columns: 1fr;
  }

  .services-cards {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    padding: 40px 24px;
  }

  .form-card {
    padding: 28px 20px;
  }
}








/* --- Base Styling (Optional: adjust to match your site) --- */
.testimonials {
  padding: 60px 0;
  background-color: #f8f9fa;
  overflow: hidden;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-tag {
  color: #0056b3;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.section-title {
  font-size: 2rem;
  margin-top: 10px;
}

/* --- The Carousel Magic --- */
.testimonials-carousel {
  width: 100%;
  overflow: hidden; /* Hides cards outside the container */
  position: relative;
}

.testimonials-track {
  display: flex;
  width: max-content;
  /* Adjust '35s' to make the scroll faster or slower */
  animation: slide-loop 35s linear infinite; 
}

/* Pause the scrolling when the user hovers over a review */
.testimonials-track:hover {
  animation-play-state: paused; 
}

.slide-group {
  display: flex;
  gap: 20px;
  padding-right: 20px; /* Matches the gap so the loop remains seamless */
}

/* --- Card Styling --- */
.testi-card {
  width: 350px; /* Fixed width prevents resizing during animation */
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  flex-shrink: 0; /* Prevents cards from squishing together */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testi-stars {
  color: #ffc107; /* Gold stars */
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.testi-text {
  font-style: italic;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.5;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
}

.testi-avatar {
  width: 45px;
  height: 45px;
  background: #0056b3;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.2rem;
}

.testi-name {
  font-weight: bold;
  color: #222;
}

.testi-tag {
  font-size: 0.85rem;
  color: #28a745; /* Green checkmark text */
  margin-top: 3px;
}

/* --- The Animation --- */
@keyframes slide-loop {
  0% {
    transform: translateX(0);
  }
  100% {
    /* Shifts exactly half the width (one full slide group) */
    transform: translateX(-50%); 
  }
}

    :root {
      --primary: #0B3C5D;
      --accent: #1DDE8B;
      --secondary: #328CC1;
      --text-dark: #1a1a1a;
      --text-light: #667085;
      --bg-light: #f8fbff;
      --white: #ffffff;
    }

    body {
      font-family: 'Poppins', sans-serif;
      color: var(--text-dark);
      background-color: var(--bg-light);
    }

    /* PAGE BANNER */
    .page-banner {
      background: linear-gradient(rgba(11, 60, 93, 0.88), rgba(11, 60, 93, 0.88)),
        url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?auto=format&fit=crop&q=80&w=2000') center/cover no-repeat;
      padding: 110px 0 80px;
      color: white;
      text-align: center;
      position: relative;
    }

    .page-banner h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 5vw, 3.5rem);
      margin-bottom: 14px;
      line-height: 1.2;
    }

    .page-banner p {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.78);
      max-width: 520px;
      margin: 0 auto;
      line-height: 1.7;
    }

    .breadcrumb {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.55);
      margin-bottom: 14px;
    }

    /* STATS BAR */
    .stats-bar-wrap {
      padding: 0 24px;
      position: relative;
      z-index: 5;
      margin-top: -48px;
    }

    .stats-container {
      background: var(--primary);
      border-radius: 20px;
      padding: 44px 40px;
      display: flex;
      justify-content: space-around;
      align-items: center;
      gap: 20px;
      box-shadow: 0 20px 60px rgba(11, 60, 93, 0.25);
      max-width: 1152px;
      margin: 0 auto;
      flex-wrap: wrap;
    }

    .stat-item {
      text-align: center;
    }

    .stat-item h3 {
      font-size: clamp(28px, 4vw, 38px);
      color: var(--accent);
      font-weight: 700;
      margin-bottom: 4px;
      font-family: 'Playfair Display', serif;
    }

    .stat-item p {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.7);
      font-weight: 500;
      letter-spacing: 0.4px;
    }

    .stats-divider {
      width: 1px;
      height: 50px;
      background: rgba(255, 255, 255, 0.12);
    }

    /* FOUNDER SECTION */
    .founder-section {
      padding: 110px 0 100px;
      background: var(--white);
    }

    .founder-grid {
      display: grid;
      grid-template-columns: 1fr 1.15fr;
      gap: 80px;
      align-items: center;
    }

    .founder-image-wrapper {
      position: relative;
    }

    .founder-img {
      width: 100%;
      height: 540px;
      object-fit: cover;
      object-position: top;
      border-radius: 24px;
      display: block;
      box-shadow: 28px 28px 0 var(--accent);
    }

    .founder-fallback {
      display: none;
      width: 100%;
      height: 540px;
      border-radius: 24px;
      background: linear-gradient(135deg, #0B3C5D, #328CC1);
      align-items: center;
      justify-content: center;
      font-size: 100px;
      color: white;
      font-weight: 800;
      box-shadow: 28px 28px 0 var(--accent);
    }

    .founder-experience-badge {
      position: absolute;
      bottom: -24px;
      right: -16px;
      background: var(--primary);
      color: white;
      padding: 22px 26px;
      border-radius: 18px;
      text-align: center;
      box-shadow: 0 12px 40px rgba(11, 60, 93, 0.3);
      min-width: 130px;
    }

    .founder-experience-badge strong {
      font-size: 22px;
      display: block;
      color: var(--accent);
      font-weight: 700;
      line-height: 1.1;
      margin-bottom: 4px;
    }

    .founder-experience-badge span {
      font-size: 11.5px;
      color: rgba(255, 255, 255, 0.75);
      font-weight: 500;
    }

    .founder-tag {
      color: var(--accent);
      font-weight: 700;
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      display: block;
      margin-bottom: 12px;
    }

    .founder-name {
      font-family: 'Playfair Display', serif;
      font-size: clamp(32px, 4vw, 48px);
      color: var(--primary);
      margin-bottom: 14px;
      line-height: 1.2;
    }

    .founder-quote {
      font-style: italic;
      color: var(--secondary);
      font-size: 16px;
      margin-bottom: 26px;
      border-left: 4px solid var(--accent);
      padding-left: 18px;
      line-height: 1.7;
    }

    .founder-bio {
      line-height: 1.85;
      color: var(--text-light);
      margin-bottom: 28px;
      font-size: 14.5px;
    }

    .founder-bio strong {
      color: var(--primary);
    }

    .founder-quals-list {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 32px;
    }

    .qual-chip {
      font-size: 12.5px;
      color: var(--primary);
      background: #EAF4FB;
      border: 1.5px solid #c7e0f0;
      padding: 6px 16px;
      border-radius: 50px;
      font-weight: 600;
    }

    .founder-contact-row {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 24px;
    }

    .founder-contact-row a {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 13px 26px;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 700;
      text-decoration: none;
      transition: all 0.22s;
    }

    .btn-founder-primary {
      background: var(--primary);
      color: white;
    }

    .btn-founder-primary:hover {
      background: #0d4875;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(11, 60, 93, 0.28);
    }

    .btn-founder-outline {
      background: transparent;
      color: var(--primary);
      border: 2px solid var(--primary);
    }

    .btn-founder-outline:hover {
      background: var(--primary);
      color: white;
      transform: translateY(-2px);
    }

    .founder-prev-exp {
      border-top: 1px solid #eef2f7;
      padding-top: 22px;
      margin-top: 4px;
    }

    .founder-prev-exp p {
      font-size: 12.5px;
      color: var(--text-light);
      font-weight: 500;
      margin-bottom: 10px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }

    .exp-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .exp-tag {
      font-size: 12px;
      color: var(--text-light);
      background: #f8fbff;
      border: 1px solid #e0e7f0;
      padding: 5px 14px;
      border-radius: 6px;
      font-weight: 500;
    }

    /* VALUES */
    .values-section-new {
      padding: 90px 0;
      background: var(--bg-light);
    }

    .section-header {
      text-align: center;
      margin-bottom: 56px;
    }

    .section-supertag {
      color: var(--accent);
      font-weight: 700;
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      display: block;
      margin-bottom: 12px;
    }

    .section-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 4vw, 42px);
      color: var(--primary);
      margin-bottom: 12px;
    }

    .section-header p {
      font-size: 15px;
      color: var(--text-light);
      max-width: 540px;
      margin: 0 auto;
      line-height: 1.75;
    }

    .values-grid-new {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
    }

    .value-card-new {
      background: white;
      border-radius: 20px;
      padding: 32px 24px;
      border: 1.5px solid #e8eef5;
      text-align: center;
      transition: all 0.28s;
    }

    .value-card-new:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(11, 60, 93, 0.1);
      border-color: var(--accent);
    }

    .val-icon {
      width: 60px;
      height: 60px;
      border-radius: 18px;
      margin: 0 auto 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
    }

    .val-icon.green {
      background: #e8fdf4;
    }

    .val-icon.blue {
      background: #EAF4FB;
    }

    .val-icon.teal {
      background: #e6f9f6;
    }

    .val-icon.purple {
      background: #f2eeff;
    }

    .value-card-new h3 {
      font-size: 16px;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 10px;
    }

    .value-card-new p {
      font-size: 13.5px;
      color: var(--text-light);
      line-height: 1.7;
    }

    /* MEDICAL BOARD */
    .board-section {
      padding: 90px 0;
      background: white;
    }

    .doctor-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .doctor-card {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      transition: all 0.35s ease;
      border: 1.5px solid #eef2f8;
      position: relative;
    }

    .doctor-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 24px 60px rgba(11, 60, 93, 0.12);
    }

    .doctor-card.featured {
      border: 2px solid var(--accent);
    }

    .featured-label {
      position: absolute;
      top: 14px;
      left: 14px;
      background: var(--accent);
      color: var(--primary);
      font-size: 10.5px;
      font-weight: 800;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 4px 14px;
      border-radius: 50px;
      z-index: 2;
    }

    .doc-img-container {
      width: 100%;
      height: 200px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .doc-avatar-block {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 52px;
      font-weight: 800;
      color: white;
    }

    .doc-info {
      padding: 20px 22px 22px;
      text-align: center;
    }

    .doc-info h3 {
      font-size: 17px;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 5px;
      font-family: 'Playfair Display', serif;
    }

    .doc-spec-label {
      color: var(--secondary);
      font-weight: 600;
      font-size: 12.5px;
      margin-bottom: 10px;
      display: block;
    }

    .doc-qual-pill {
      font-size: 11.5px;
      color: var(--text-light);
      background: var(--bg-light);
      border: 1px solid #e0e8f0;
      padding: 4px 14px;
      border-radius: 50px;
      display: inline-block;
      font-weight: 500;
      margin-bottom: 14px;
    }

    /* BOOK APPOINTMENT BUTTON ON CARDS */
    .doc-book-btn {
      display: block;
      width: 100%;
      padding: 11px 18px;
      border-radius: 10px;
      font-size: 13.5px;
      font-weight: 700;
      text-decoration: none;
      text-align: center;
      transition: all 0.22s;
      background: #EAF4FB;
      color: var(--primary);
      border: 1.5px solid #c7e0f0;
      letter-spacing: 0.2px;
    }

    .doc-book-btn:hover {
      background: var(--primary);
      color: white;
      border-color: var(--primary);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(11, 60, 93, 0.18);
    }

    .doc-book-btn.accent {
      background: rgba(29, 222, 139, 0.12);
      color: #0a6645;
      border: 1.5px solid rgba(29, 222, 139, 0.4);
    }

    .doc-book-btn.accent:hover {
      background: var(--accent);
      color: var(--primary);
      border-color: var(--accent);
      box-shadow: 0 6px 20px rgba(29, 222, 139, 0.3);
    }

    /* CTA */
    .cta-about {
      padding: 90px 0;
      background: var(--bg-light);
    }

    .cta-about-inner {
      background: linear-gradient(135deg, var(--primary), #1a5276);
      border-radius: 28px;
      padding: 64px 56px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 40px;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .cta-about-inner::before {
      content: '';
      position: absolute;
      width: 340px;
      height: 340px;
      border-radius: 50%;
      background: rgba(29, 222, 139, 0.07);
      right: -80px;
      top: -80px;
      pointer-events: none;
    }

    .cta-about-left h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(22px, 3vw, 32px);
      color: white;
      margin-bottom: 10px;
    }

    .cta-about-left p {
      font-size: 14.5px;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.75;
    }

    .cta-about-btns {
      display: flex;
      flex-direction: column;
      gap: 12px;
      position: relative;
    }

    .cta-about-btns a {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      padding: 14px 26px;
      border-radius: 12px;
      font-weight: 700;
      font-size: 14px;
      transition: all 0.2s;
      white-space: nowrap;
    }

    .cta-btn-white {
      background: white;
      color: var(--primary);
    }

    .cta-btn-white:hover {
      background: #f0f4f8;
      transform: translateY(-2px);
    }

    .cta-btn-ghost {
      background: rgba(255, 255, 255, 0.1);
      color: white;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .cta-btn-ghost:hover {
      background: rgba(255, 255, 255, 0.16);
      transform: translateY(-2px);
    }

    /* RESPONSIVE */
    @media (max-width: 1024px) {
      .values-grid-new {
        grid-template-columns: repeat(2, 1fr);
      }

      .doctor-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 900px) {
      .founder-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
      }

      .founder-quote {
        border-left: none;
        padding-left: 0;
      }

      .founder-img {
        height: 420px;
        box-shadow: none;
      }

      .founder-image-wrapper {
        max-width: 480px;
        margin: 0 auto;
      }

      .founder-contact-row {
        justify-content: center;
      }

      .founder-quals-list {
        justify-content: center;
      }

      .exp-tags {
        justify-content: center;
      }

      .cta-about-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 44px 32px;
      }

      .cta-about-btns {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
      }
    }

    @media (max-width: 768px) {
      .stats-divider {
        display: none;
      }

      .stats-container {
        padding: 36px 24px;
      }

      .doctor-grid {
        grid-template-columns: 1fr;
      }

      .values-grid-new {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 560px) {
      .founder-experience-badge {
        display: none;
      }
    }