/* ===========================
   MITHUNA HEALTHCARE — STYLES
   Grey + Teal Theme
   =========================== */

:root {
  --primary: #2a9d8f;
  --primary-dark: #1f7a6d;
  --dark: #1e1e1e;
  --grey-900: #2d2d2d;
  --grey-800: #3d3d3d;
  --grey-700: #555555;
  --grey-500: #888888;
  --grey-300: #cccccc;
  --grey-100: #f2f2f2;
  --grey-50: #f8f8f8;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
  --radius: 10px;
  --transition: all 0.3s ease;
}

/* ===========================
   KEYFRAMES
   =========================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(2.2);
    opacity: 0;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}
@keyframes shimmer {
  0% {
    background-position: -400px 0;
  }
  100% {
    background-position: 400px 0;
  }
}
@keyframes badgeIn {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes h1In {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes btnsIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  overflow-x: clip; /* clip not hidden — hidden breaks position:sticky */
}

body {
  font-family: "Inter", sans-serif;
  color: var(--grey-900);
  background: var(--white);
  line-height: 1.65;
  overflow-x: clip; /* clip not hidden — hidden breaks position:sticky */
  width: 100%;
}

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

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  border: 2px solid var(--primary);
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--white);
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
}

.btn-sm {
  display: inline-block;
  background: var(--grey-100);
  color: var(--primary);
  padding: 0.45rem 1.1rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1.5px solid var(--primary);
  transition: var(--transition);
}
.btn-sm:hover {
  background: var(--primary);
  color: var(--white);
}

/* ===== SECTION COMMONS ===== */
.section {
  padding: 50px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}
.section-header h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--grey-900);
  margin: 0.4rem 0 0.8rem;
}
.section-header p {
  color: var(--grey-500);
  font-size: 1.05rem;
}

.section-tag {
  display: inline-block;
  background: rgba(42, 157, 143, 0.12);
  color: var(--primary);
  padding: 0.3rem 0.9rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.section-tag.light {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

/* ===========================
   SCROLL REVEAL
   =========================== */
.reveal,
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal {
  transform: translateY(20px);
}
.reveal-up {
  transform: translateY(36px);
}
.reveal-left {
  transform: translateX(-40px);
}
.reveal-right {
  transform: translateX(40px);
}

.reveal.visible,
.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* ===========================
   HERO TEXT ANIMATIONS
   =========================== */
.slide.active .animate-badge {
  animation: badgeIn 0.6s ease forwards;
}
.slide.active .animate-h1 {
  animation: h1In 0.7s ease 0.15s forwards;
  opacity: 0;
}
.slide.active .animate-p {
  animation: pIn 0.65s ease 0.3s forwards;
  opacity: 0;
}
.slide.active .animate-btns {
  animation: btnsIn 0.65s ease 0.45s forwards;
  opacity: 0;
}
.teal {
  color: var(--primary);
}

/* ===========================
   TOP BAR — SHIMMER
   =========================== */
.top-bar {
  background: linear-gradient(
    90deg,
    var(--grey-900) 0%,
    #3a3a3a 40%,
    var(--grey-900) 60%,
    var(--grey-900) 100%
  );
  background-size: 800px 100%;
  animation: shimmer 4s linear infinite;
  color: var(--grey-300);
  font-size: 0.82rem;
  padding: 0.45rem 0;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.top-bar-left {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.top-bar-right {
  display: flex;
  gap: 1rem;
}
.top-bar-inner span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.top-bar-inner span i {
  color: var(--primary);
}

#header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s;
}
#header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.12);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  min-height: 70px;
}

/* logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo img {
  height: 72px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s;
  display: block;
  mix-blend-mode: multiply;
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
}
.logo img:hover {
  opacity: 0.85;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
  flex-wrap: nowrap;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--grey-800);
  transition: var(--transition);
}
.nav-links a:hover {
  color: var(--primary);
}
.nav-links a.active {
  color: var(--primary);
}
.nav-links a.active::after {
  content: "";
  display: block;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  margin-top: 2px;
}
.nav-links .btn-primary {
  color: var(--white);
}
.nav-links .btn-primary.active::after {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2.5px;
  background: var(--grey-800);
  border-radius: 2px;
  transition: var(--transition);
}

/* hamburger active (X) */
.hamburger.active {
  position: relative;
  z-index: 10000;
}
.hamburger.active span {
  background: #fff;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* btn-nav (nav Book Appointment) */
.btn-nav {
  background: var(--primary);
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-nav:hover {
  background: var(--primary-dark);
}
.btn-nav.active::after {
  display: none !important;
}

/* back to top */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  width: 42px;
  height: 42px;
  background: var(--grey-900);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.3s,
    transform 0.3s,
    background 0.3s;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--primary);
}

/* ===========================
   HERO SLIDER
   New layout: full-width single-column, left-aligned.
   Removed: 2-col grid, form card, hero-trust pills, btn-outline-hero.
   Added: hero-content, hero-sub, hero-offer + highlight, hero-features, hero-cta.
   =========================== */

/* Hero container — left-anchored, offset from viewport left edge */
.hero .container {
  margin-left: 0;
  padding-left: 7rem;
}

.hero {
  position: relative;
  height: 92vh;
  min-height: 600px;
  overflow: hidden;
}
.hero-slider {
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.slide.active {
  opacity: 1;
  z-index: 1;
}

/* Single-column left-aligned — max 760px wide to allow long h1 on one line */
.hero-content {
  max-width: 760px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

/* Small badge pill above headline */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(42, 157, 143, 0.85);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 0.35rem 1rem;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Big bold headline — 2.5rem keeps it on one line at 760px content width */
.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1rem;
  white-space: nowrap;
}

/* Subtitle paragraph */
.hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  max-width: 560px;
}

/* Offer line — bold white caps + yellow keyword */
.hero-offer {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 1.4rem;
  line-height: 1.4;
}
.hero-offer-hl {
  color: #f5a623; /* yellow — matches screenshot accent */
}

/* Feature checkmark pills row — single row, no wrap */
.hero-features {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.6rem 1.6rem;
  margin-bottom: 1.8rem;
  white-space: nowrap;
}
.hero-features li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}
.hero-features li i {
  color: #f5a623;
  font-size: 0.95rem;
}

/* Blue CTA button — matches screenshot */
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: #1a6fc4;
  color: var(--white);
  padding: 0.8rem 1.8rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    background 0.3s,
    transform 0.2s;
  border: none;
  text-decoration: none;
}
.hero-cta:hover {
  background: #155da0;
  transform: translateY(-2px);
}
.hero-cta i {
  font-size: 0.95rem;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.85rem;
  transition: var(--transition);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
}
.slider-btn.prev {
  left: 1rem;
}
.slider-btn.next {
  right: 1rem;
}

.slider-dots {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: var(--transition);
}
.dot.active {
  background: var(--primary);
  width: 28px;
  border-radius: 5px;
}

/* wave dividers */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 2;
}
.hero-wave svg {
  width: 100%;
  height: 80px;
}

.wave-divider {
  line-height: 0;
  overflow: hidden;
}
.wave-divider svg {
  width: 100%;
  height: 60px;
  display: block;
}
.wave-divider.grey {
  background: var(--white);
}
.wave-divider.white {
  background: var(--grey-50);
}

/* ===========================
   STATS BAR
   =========================== */
.stats-bar {
  background: var(--grey-900);
  padding: 1.8rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item {
  padding: 0.5rem;
}
.stat-icon {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.stat-item h3 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.stat-item p {
  font-size: 0.88rem;
  color: var(--grey-300);
  margin-top: 0.3rem;
  font-weight: 500;
}

/* ===========================
   ABOUT
   =========================== */
.about-section {
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image {
  position: relative;
}

/* img-frame with border accent */
.img-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.img-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 3px solid var(--primary);
  border-radius: var(--radius);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 1;
  pointer-events: none;
}
.about-image:hover .img-frame::before {
  opacity: 0.4;
}

.img-overlay-dot {
  position: absolute;
  top: -14px;
  left: -14px;
  width: 80px;
  height: 80px;
  background: radial-gradient(
    circle,
    rgba(42, 157, 143, 0.18) 60%,
    transparent 100%
  );
  border-radius: 50%;
  z-index: 0;
}

.about-image img {
  border-radius: var(--radius);
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}
.about-image:hover img {
  transform: scale(1.03);
}

/* second badge */
.about-badge-2 {
  position: absolute;
  top: -16px;
  left: -16px;
  background: var(--grey-900);
  color: var(--white);
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: var(--shadow);
}
.about-badge-2 i {
  color: var(--primary);
  font-size: 1.1rem;
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary);
  color: var(--white);
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.badge-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
}
.badge-text {
  font-size: 0.82rem;
  font-weight: 500;
  opacity: 0.9;
}

.about-content h2 {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--grey-900);
  margin: 0.5rem 0 1.2rem;
  line-height: 1.3;
}
.about-content p {
  color: var(--grey-700);
  margin-bottom: 1rem;
}
.about-trust-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
  padding: 1.25rem 0;
  border-top: 1px solid var(--grey-300);
  border-bottom: 1px solid var(--grey-300);
}
.about-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}
.about-trust-item i {
  color: var(--primary);
  font-size: 1.2rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.about-trust-item div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.about-trust-item strong {
  font-size: 0.92rem;
  color: var(--grey-900);
  font-weight: 700;
}
.about-trust-item span {
  font-size: 0.85rem;
  color: var(--grey-500);
  line-height: 1.4;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin: 1.5rem 0 2rem;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--grey-800);
}
.highlight-item i {
  color: var(--primary);
  font-size: 1rem;
}

/* ===========================
   FACILITIES — teal gradient cards (image style)
   4-column grid, landscape cards, large white icon + white label.
   No descriptions, no arrows.
   =========================== */
.facilities-section {
  background: var(--white);
}
.facilities-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
}

.facility-card {
  background: linear-gradient(135deg, #1a9eaf 0%, #0d5c8a 100%);
  border-radius: 10px;
  padding: 1.8rem 1rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 160px;
  width: calc(25% - 0.9rem);
  text-align: center;
  border-top: none;
  box-shadow: 0 4px 18px rgba(13, 92, 138, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}
/* subtle shine overlay */
.facility-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  pointer-events: none;
}
.facility-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(13, 92, 138, 0.32);
}

.facility-icon {
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}
.facility-icon i {
  font-size: 2.4rem;
  color: rgba(255, 255, 255, 0.92);
}
.facility-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  line-height: 1.4;
}
/* hide old elements no longer used */
.facility-card p,
.card-arrow {
  display: none;
}


/* ===========================
   DOCTORS — horizontal scroll carousel
   Shows 4 cards at a time on desktop.
   Prev/next arrows scroll by one card width.
   =========================== */
.doctors-section {
  background: var(--white);
}

/* Outer wrapper: arrow + track + arrow */
.doctors-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Arrow buttons */
.doc-arrow {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: var(--white);
  color: var(--primary);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 2;
}
.doc-arrow:hover {
  background: var(--primary);
  color: var(--white);
}

/* Scrollable track — hides scrollbar, snap on each card */
.doctors-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  /* hide scrollbar */
  scrollbar-width: none;
  flex: 1;
}
.doctors-track::-webkit-scrollbar {
  display: none;
}

/* Each card — fixed width so 5 fit in viewport */
.doctors-track .doctor-card {
  flex: 0 0 calc(50% - 1.2rem);
  scroll-snap-align: start;
}
.doctor-card {
  background: var(--grey-50);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: row;
  min-height: 320px;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.doctor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(42, 157, 143, 0.18);
}
.doctor-img {
  width: 220px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}
.doctor-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.45s ease;
}
.doctor-card:hover .doctor-img img {
  transform: scale(1.07);
}

/* doctor overlay — hidden (Book Now removed per requirement) */
.doctor-overlay {
  display: none;
}
.btn-sm-white {
  display: inline-block;
  background: var(--white);
  color: var(--primary);
  padding: 0.45rem 1.2rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  transition:
    background 0.2s,
    color 0.2s;
}
.btn-sm-white:hover {
  background: var(--primary);
  color: var(--white);
}
.doctor-info {
  flex: 1;
  padding: 1.6rem 1.4rem;
  text-align: left;
  background: var(--primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
}
.doctor-info-header {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 0.5rem;
}
.doctor-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
  background: #fff;
  padding: 4px 8px;
  border-radius: 4px;
}
.doctor-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}
.doctor-qualification {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.88);
  margin: 0;
  line-height: 1.5;
}
.doctor-dept {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.88);
  margin: 0;
}
.doctor-spec {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  color: #fff;
  padding: 0.25rem 0.8rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  width: fit-content;
}
.doctor-exp {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  margin: 0;
}
.doctor-info p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  margin: 0;
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials-section {
  background: var(--grey-50);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.quote-icon {
  color: var(--primary);
  opacity: 0.2;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.stars {
  color: #f4a915;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.testimonial-card > p {
  font-size: 0.93rem;
  color: var(--grey-700);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 0.92rem;
  color: var(--grey-900);
}
.testimonial-author span {
  font-size: 0.78rem;
  color: var(--grey-500);
}

/* ===========================
   VIDEO GALLERY
   =========================== */
.video-section {
  background: var(--white);
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.video-card {
  text-align: center;
}
.video-thumb {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 0.8rem;
}
.video-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  transition: var(--transition);
}
.play-btn i {
  width: 52px;
  height: 52px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}
.play-btn:hover {
  background: rgba(0, 0, 0, 0.55);
}
.play-btn:hover i {
  transform: scale(1.1);
}
.video-card p {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--grey-700);
}

/* ===========================
   PHOTO GALLERY
   =========================== */
.gallery-section {
  background: var(--grey-50);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px 240px;
  gap: 1rem;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}
.gallery-item.tall {
  grid-row: span 2;
}
.gallery-item.wide {
  grid-column: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
  padding: 1rem 0.9rem 0.7rem;
  transform: translateY(100%);
  transition: transform 0.35s ease;
  border-radius: 0 0 var(--radius) var(--radius);
}
.gallery-overlay span {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
}
.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

/* ===========================
   APPOINTMENT
   =========================== */
.appointment-section {
  background: var(--grey-900);
  color: var(--white);
}
.appt-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.appt-info h2 {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--white);
  margin: 0.5rem 0 1rem;
}
.appt-info > p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.5rem;
}
.appt-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.appt-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.93rem;
}
.appt-list li i {
  color: var(--primary);
  width: 16px;
}

.appt-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group.full {
  grid-column: span 2;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--grey-700);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--grey-300);
  border-radius: 8px;
  font-size: 0.92rem;
  font-family: "Inter", sans-serif;
  color: var(--grey-900);
  background: var(--grey-50);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
}
.form-group textarea {
  resize: vertical;
}

.full-btn {
  width: 100%;
  text-align: center;
  padding: 0.9rem;
  font-size: 1rem;
  border: none;
}

/* btn-submit */
.btn-submit {
  width: 100%;
  padding: 0.9rem;
  font-size: 1rem;
  font-weight: 700;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.2s;
}
.btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* ===========================
   CONTACT
   =========================== */
.contact-section {
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: start;
}

/* contact icon wrapper */
.contact-icon {
  width: 42px;
  height: 42px;
  background: rgba(42, 157, 143, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
  transition:
    background 0.3s,
    color 0.3s;
}
.contact-item:hover .contact-icon {
  background: var(--primary);
  color: var(--white);
}
.contact-info h2 {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--grey-900);
  margin: 0.5rem 0 1.5rem;
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-item strong {
  display: block;
  font-size: 0.88rem;
  color: var(--grey-900);
  margin-bottom: 0.2rem;
}
.contact-item p,
.contact-item a {
  font-size: 0.9rem;
  color: var(--grey-700);
  line-height: 1.6;
}
.contact-item a:hover {
  color: var(--primary);
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  height: 380px;
  box-shadow: var(--shadow);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 2.5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 270px;
}
.social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
}
.social-links a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--primary);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--primary);
}

.footer-contact p {
  font-size: 0.87rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
  line-height: 1.6;
}
.footer-contact i {
  color: var(--primary);
  margin-top: 3px;
  flex-shrink: 0;
}

/* footer logo */
.footer-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1rem;
  display: block;
  mix-blend-mode: screen;
  background: transparent;
  border: none;
  box-shadow: none;
}

.footer-bottom {
  text-align: center;
  padding: 1.2rem 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

/* footer CTA */
.footer-cta {
  display: inline-block;
  margin-top: 1rem;
  background: var(--primary);
  color: var(--white);
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.3s;
}
.footer-cta:hover {
  background: var(--primary-dark);
}

/* ===========================
   FLOATING BUTTONS
   =========================== */
.float-btn {
  position: fixed;
  right: 1.5rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  z-index: 900;
  transition: transform 0.3s;
  overflow: visible;
}
.float-whatsapp {
  background: #25d366;
  bottom: 2rem;
}
.float-call {
  background: var(--primary);
  bottom: 2rem;
}
.float-btn:hover {
  transform: scale(1.12);
}

/* pulse ring on floating buttons */
.float-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
}
.float-whatsapp .float-pulse {
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  animation: pulse-ring 2.2s ease-out infinite;
}
.float-call .float-pulse {
  box-shadow: 0 0 0 0 rgba(42, 157, 143, 0.6);
  animation: pulse-ring 2.2s ease-out infinite 0.6s;
}

.float-appt {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--primary);
  color: var(--white);
  padding: 0.75rem 1.4rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 18px rgba(42, 157, 143, 0.4);
  z-index: 900;
  transform: translateY(100px);
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
  opacity: 0;
}
.float-appt.visible {
  transform: translateY(0);
  opacity: 1;
}
.float-appt:hover {
  background: var(--primary-dark);
}

/* ===========================
   RESPONSIVE
   =========================== */

/* ── Tablet (≤1024px) ── */
@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr 320px;
    gap: 2rem;
  }
  .hero-text-wrap h1 {
    font-size: 2.2rem;
  }
  .facility-card {
    width: calc(50% - 0.6rem);
  }
  .doctors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── Mobile (≤768px) ── */
@media (max-width: 768px) {
  /* top bar */
  .top-bar-inner {
    font-size: 0.73rem;
    justify-content: space-between;
  }
  .top-bar-right {
    display: none;
  }
  .top-bar-left {
    width: 100%;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 0.8rem;
  }
  .top-bar-left span {
    white-space: nowrap;
  }
  .top-bar-left .email-item {
    display: flex;
  }

  /* header / nav */
  .logo img {
    height: 44px;
  }
  .hamburger {
    display: flex;
  }
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 15, 20, 0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    z-index: 9999;
    padding: 2rem;
    backdrop-filter: blur(8px);
  }
  .nav-links.open {
    display: flex;
    animation: menuFadeIn 0.25s ease;
  }
  @keyframes menuFadeIn {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .nav-links li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .nav-links li:last-child {
    border-bottom: none;
    margin-top: 1.2rem;
  }
  .nav-links a {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff !important;
    display: block;
    padding: 1rem 0;
    letter-spacing: 0.02em;
    transition: color 0.2s;
  }
  .nav-links a:hover {
    color: var(--primary) !important;
  }
  .nav-links a.active {
    color: var(--primary) !important;
  }
  .nav-links a.active::after {
    display: none;
  }
  .btn-nav {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.9rem 0 !important;
    border-radius: 10px;
    background: var(--primary) !important;
    color: #fff !important;
    font-size: 1rem !important;
  }

  /* hero — mobile: auto height, stack content */
  .hero {
    height: auto;
    min-height: auto;
    overflow: visible;
  }
  .hero-slider {
    height: auto;
  }
  .hero .container {
    margin-left: auto;
    padding-left: 1.5rem;
  }
  .slide {
    position: relative;
    inset: auto;
    opacity: 0;
    display: none;
    padding: 3.5rem 0 3rem;
    background-attachment: scroll;
  }
  .slide.active {
    opacity: 1;
    display: flex;
  }
  .hero-content h1 {
    font-size: 1.75rem;
    white-space: normal;
  }
  .hero-sub {
    font-size: 0.9rem;
  }
  .hero-offer {
    font-size: 0.95rem;
  }
  .hero-features {
    gap: 0.6rem 1rem;
  }
  .hero-features li {
    font-size: 0.82rem;
  }
  .hero-cta {
    font-size: 0.82rem;
    padding: 0.7rem 1.4rem;
  }
  .hero-wave {
    display: none;
  }
  .slider-dots {
    bottom: 0.8rem;
  }
  .slider-btn {
    display: none;
  }

  /* stats */
  .stats-bar {
    padding: 1.8rem 0;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
  .stat-item h3 {
    font-size: 1.9rem;
  }

  /* about */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-image img {
    height: auto;
  }
  .about-badge {
    right: 0;
    bottom: -16px;
  }
  .about-badge-2 {
    top: -12px;
    left: -8px;
  }
  .about-highlights {
    grid-template-columns: 1fr;
  }

  /* facilities */
  .facility-card {
    width: calc(50% - 0.5rem);
  }

  /* doctors carousel — 2 cards visible on tablet, 1 on mobile */
  .doctors-track .doctor-card {
    flex: 0 0 calc(50% - 0.75rem);
  }

  /* testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* video */
  .video-grid {
    grid-template-columns: 1fr;
  }

  /* gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
    grid-auto-rows: 160px;
  }
  .gallery-item.wide {
    grid-column: span 1;
  }
  .gallery-item.tall {
    grid-row: span 1;
  }

  /* appointment */
  .appt-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .appt-info h2 {
    font-size: 1.6rem;
  }

  /* contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .map-container {
    height: 260px;
  }
  .contact-info h2 {
    font-size: 1.6rem;
  }

  /* footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
  .footer-logo {
    height: 64px;
  }

  /* floating buttons */
  .float-whatsapp {
    bottom: 5.5rem;
  }
  .float-call {
    bottom: 1.5rem;
  }
  .float-appt {
    font-size: 0.8rem;
    padding: 0.6rem 1rem;
  }
  .back-to-top {
    width: 36px;
    height: 36px;
    font-size: 0.75rem;
  }

  /* section spacing */
  .section {
    padding: 35px 0;
  }
  .section-header {
    margin-bottom: 1.5rem;
  }
  .section-header h2 {
    font-size: 1.4rem;
  }
  .section-header p {
    font-size: 0.9rem;
  }
}

/* ── Small mobile (≤480px) ── */
@media (max-width: 480px) {
  .slide {
    padding: 2.5rem 0 2.5rem;
  }
  .hero-content h1 {
    font-size: 1.5rem;
  }
  .hero-badge {
    font-size: 0.7rem;
  }
  .hero-features {
    flex-direction: column;
    gap: 0.4rem;
  }

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

  .facility-card {
    width: calc(50% - 0.4rem);
    min-height: 130px;
    padding: 1.2rem 0.8rem 1rem;
  }
  .facility-icon i {
    font-size: 1.8rem;
  }
  .facility-card h3 {
    font-size: 0.82rem;
  }
  .doctors-grid {
    grid-template-columns: 1fr;
  }
  .doctors-track .doctor-card {
    flex: 0 0 calc(100% - 1.5rem);
    flex-direction: column;
  }
  .doc-arrow {
    width: 34px;
    height: 34px;
    font-size: 0.8rem;
    flex-shrink: 0;
  }
  .doctor-spec {
    white-space: normal;
    font-size: 0.74rem;
  }
  .doctor-img {
    width: 100%;
    height: 220px;
    flex-shrink: 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .section-header h2 {
    font-size: 1.25rem;
  }
  .hero-cta {
    font-size: 0.78rem;
    padding: 0.65rem 1.2rem;
  }
}

/* ===========================
   MARKETING BANNER — AD CARDS
   =========================== */
.marketing-banner {
  background: #f0faf8;
  padding: 1.5rem 0 1.8rem;
}

.mb-header {
  text-align: center;
  margin-bottom: 1rem;
}

.mb-section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
}

.mb-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.mb-card {
  position: relative;
  border-radius: 14px;
  padding: 1.1rem 1.2rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: default;
}

.mb-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  opacity: 0.12;
  background: #fff;
}

.mb-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

/* colour themes */
.mb-card--green {
  background: linear-gradient(140deg, #1a8f5a 0%, #23c97a 100%);
}
.mb-card--orange {
  background: linear-gradient(140deg, #c45c00 0%, #f5820d 100%);
}
.mb-card--teal {
  background: linear-gradient(
    140deg,
    var(--primary-dark) 0%,
    var(--primary) 100%
  );
}
.mb-card--purple {
  background: linear-gradient(140deg, #5b3fc4 0%, #8963f5 100%);
}

.mb-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.22rem 0.65rem;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
}

.mb-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
}

.mb-card-body h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  line-height: 1.3;
}

.mb-card-body p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  line-height: 1.45;
  margin: 0;
}

.mb-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  margin-top: auto;
  width: fit-content;
  transition:
    background 0.25s ease,
    border-color 0.25s ease;
}

.mb-card-cta:hover {
  background: rgba(255, 255, 255, 0.38);
  border-color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1024px) {
  .mb-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .mb-cards-grid {
    grid-template-columns: 1fr;
  }
  .mb-card {
    padding: 1.4rem 1.2rem 1.2rem;
  }
}
