/* ══ GLOBAL OVERFLOW FIX — no horizontal scroll ══ */
html, body {
  max-width: 100% !important;
  overflow-x: hidden !important;
}
* { box-sizing: border-box; }

/* ═══════════════════════════════════════════════════
   RISING STAR — PROFESSIONAL REDESIGN
   Inspired by CCAW.in — clinical warmth + modern design
   ═══════════════════════════════════════════════════ */

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

:root {
  /* ── Fresh Purple-Violet palette ── */
  --teal:        #6c3fc5;   /* rich purple */
  --teal-dark:   #4a2a9e;   /* deep purple */
  --teal-light:  #9b72e8;
  --teal-pale:   #f0ebff;
  --amber:       #f4845f;   /* warm coral */
  --amber-dark:  #e05c30;
  --gold:        #f5c842;   /* golden yellow */
  --gold-pale:   #fffbea;
  --green:       #27ae7a;   /* fresh green */
  --rose:        #e05c7a;   /* rose */
  --purple:      #6c3fc5;
  --navy:        #1a1050;   /* deep navy-purple */
  --navy-mid:    #2d1a7a;
  --cream:       #faf8ff;   /* very light lavender cream */
  --white:       #ffffff;
  --text:        #1a1050;
  --muted:       #5a4a80;
  --light-bg:    #f0ebff;
  --border:      rgba(108,63,197,0.15);
  --shadow:      0 8px 40px rgba(0,60,100,0.1);
  --shadow-lg:   0 24px 64px rgba(0,0,0,0.14);
  --radius:      16px;
  --radius-lg:   24px;
  --radius-sm:   10px;
  --font-head:   'Poppins', sans-serif;
  --font-body:   'DM Sans', sans-serif;
  --font-serif:  'Playfair Display', serif;
  --max-w:       1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── PAGE LOADER ── */
.page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity 0.6s, visibility 0.6s;
}
.page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo {
  width: 90px; height: 90px;
  background: var(--white) url('../images/logo.png') center/contain no-repeat;
  border-radius: 20px;
  animation: loader-pulse 1.2s ease-in-out infinite;
}
.loader-text {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-family: var(--font-head);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 20px;
  animation: loader-fade 1.2s ease-in-out infinite;
}
@keyframes loader-pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.08);opacity:0.85} }
@keyframes loader-fade { 0%,100%{opacity:0.5} 50%{opacity:1} }

/* ── TOPBAR ── */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 12.5px;
  padding: 8px 60px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.topbar a { color: rgba(255,255,255,0.8); transition: color 0.2s; }
.topbar a:hover { color: var(--gold); }
.topbar-left { display: flex; gap: 24px; align-items: center; }
.topbar-right { display: flex; gap: 20px; align-items: center; }
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar-item svg { width: 14px; height: 14px; }

/* ── NAVIGATION ── */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: 70px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px;
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.1); }

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 52px; height: 52px;
  object-fit: contain; border-radius: 12px;
}
.nav-logo-text {
  display: flex; flex-direction: column;
}
.nav-logo-name {
  font-family: var(--font-head);
  font-size: 18px; font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(90deg, #27ae60 0%, #2980b9 25%, #f39c12 50%, #e67e22 75%, #c0392b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-logo-sub {
  font-size: 10px; font-weight: 600;
  color: #2a9d8f;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links {
  display: flex; align-items: center; gap: 2px;
}
.nav-links li { position: relative; }
.nav-links a {
  font-size: 13.5px; font-weight: 600;
  color: var(--text);
  padding: 8px 14px; border-radius: 8px;
  transition: all 0.2s;
  display: flex; align-items: center; gap: 4px;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--teal); background: var(--teal-pale);
}
.nav-cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 9px 22px !important;
  margin-left: 8px;
}
.nav-cta:hover { background: var(--teal-dark) !important; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 240px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  padding: 8px;
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  z-index: 100;
}
.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu a {
  display: block; padding: 10px 14px;
  font-size: 13px; font-weight: 500;
  color: var(--text); border-radius: 8px;
  transition: all 0.2s;
}
.dropdown-menu a:hover { background: var(--teal-pale); color: var(--teal); }
.dropdown-arrow {
  display: inline-block; width: 14px; height: 14px;
  transition: transform 0.25s;
}
.dropdown:hover .dropdown-arrow { transform: rotate(180deg); }

/* Mobile toggle */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px; border-radius: 8px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--teal); border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px,-5px); }

/* ── LAYOUT UTILITIES ── */
.section { padding: 90px 60px; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--teal); background: var(--teal-pale);
  padding: 5px 14px; border-radius: 30px;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700; color: var(--navy);
  line-height: 1.2; margin-bottom: 16px;
}
.section-title em { color: var(--teal); font-style: normal; }
.section-title span.serif {
  font-family: var(--font-serif);
  font-style: italic; font-weight: 600;
}
.section-sub {
  font-size: 16px; color: var(--muted);
  max-width: 580px; line-height: 1.7;
  margin-bottom: 48px;
}
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 50px;
  font-size: 14px; font-weight: 600;
  transition: all 0.25s; cursor: pointer; border: none;
}
.btn-primary {
  background: var(--teal); color: var(--white);
  box-shadow: 0 4px 20px rgba(42,157,143,0.3);
}
.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(42,157,143,0.4);
}
.btn-outline {
  border: 2px solid var(--teal);
  color: var(--teal); background: transparent;
}
.btn-outline:hover { background: var(--teal); color: var(--white); }
.btn-white {
  background: var(--white); color: var(--teal);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.btn-white:hover {
  background: var(--gold); color: var(--navy);
  transform: translateY(-2px);
}
.btn-amber {
  background: var(--amber); color: var(--white);
  box-shadow: 0 4px 20px rgba(244,162,97,0.3);
}
.btn-amber:hover { background: var(--amber-dark); transform: translateY(-2px); }

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: all 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: all 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #003c64 0%, #00527a 40%, #006b70 100%);
  min-height: 92vh; position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: 80px 60px 60px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(42,157,143,0.3) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(245,200,66,0.12) 0%, transparent 40%);
  pointer-events: none;
}
.hero-grid {
  max-width: var(--max-w); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 70px;
  align-items: center; position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.9);
  font-size: 11.5px; font-weight: 600;
  padding: 6px 16px; border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.2);
  margin-bottom: 22px; letter-spacing: 0.08em;
}
.hero-badge span { color: var(--gold); }
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(36px, 4.2vw, 58px);
  color: var(--white); line-height: 1.15; font-weight: 800;
  margin-bottom: 18px;
}
.hero h1 em { color: var(--teal-light); font-style: normal; }
.hero-desc {
  font-size: 16.5px; color: rgba(255,255,255,0.78);
  line-height: 1.75; margin-bottom: 36px; max-width: 460px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-stats {
  display: flex; gap: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat-num {
  font-family: var(--font-head); font-size: 28px; font-weight: 800;
  color: var(--gold); display: block;
}
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.65); font-weight: 500; }

/* Hero visual */
.hero-visual { position: relative; }
.hero-img-wrap {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.hero-img-wrap img {
  width: 100%; height: 460px; object-fit: cover;
  border-radius: var(--radius-lg);
}
.hero-float-badge {
  position: absolute;
  background: var(--white); border-radius: var(--radius);
  padding: 12px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  display: flex; align-items: center; gap: 10px;
  animation: float-badge 3s ease-in-out infinite;
}
.hero-float-badge.b1 { bottom: -20px; left: -24px; }
.hero-float-badge.b2 { top: 28px; right: -20px; animation-delay: 1.5s; }
.hero-float-badge .badge-icon { font-size: 26px; }
.hero-float-badge .badge-num {
  font-family: var(--font-head); font-size: 20px; font-weight: 800;
  color: var(--navy); line-height: 1;
}
.hero-float-badge .badge-text { font-size: 11px; color: var(--muted); }
@keyframes float-badge {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── SERVICES SLIDER ── */
.services-banner {
  background: var(--navy);
  padding: 18px 0; overflow: hidden;
}
.services-banner-track {
  display: flex; gap: 0;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.services-banner-track:hover { animation-play-state: paused; }
.banner-item {
  display: inline-flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 13px; font-weight: 600;
  padding: 0 28px;
  border-right: 1px solid rgba(255,255,255,0.15);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.banner-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
@keyframes marquee { from{ transform: translateX(0) } to{ transform: translateX(-50%) } }

/* ── ABOUT SECTION ── */
.about-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px;
  align-items: center;
}
.about-img-stack { position: relative; }
.about-img-main {
  width: 100%; aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-img-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--navy); color: var(--white);
  border-radius: var(--radius);
  padding: 18px 22px; text-align: center;
  box-shadow: var(--shadow);
}
.about-badge-num {
  font-family: var(--font-head); font-size: 34px; font-weight: 800;
  color: var(--gold); line-height: 1;
}
.about-badge-label { font-size: 11px; color: rgba(255,255,255,0.7); margin-top: 4px; }
.about-tag {
  position: absolute; top: -12px; left: -12px;
  background: var(--teal); color: var(--white);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 12px; font-weight: 700;
  box-shadow: 0 4px 20px rgba(42,157,143,0.4);
}
.about-highlights {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin: 28px 0 36px;
}
.about-hl {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--teal-pale);
  border-radius: var(--radius-sm); padding: 16px;
}
.about-hl-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: var(--teal); color: var(--white);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.about-hl-title { font-size: 13.5px; font-weight: 700; color: var(--navy); }
.about-hl-text { font-size: 12.5px; color: var(--muted); line-height: 1.5; margin-top: 2px; }

/* ── SERVICES GRID ── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 48px;
}
.service-card {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  transition: all 0.3s ease;
  background: var(--white);
  border: 1px solid var(--border);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(42,157,143,0.15);
  border-color: var(--teal);
}
.service-card-banner {
  height: 200px; overflow: hidden; position: relative;
}
.service-card-banner img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
}
.service-card:hover .service-card-banner img { transform: scale(1.05); }
.service-card-banner-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 64px;
}
.service-tag {
  position: absolute; top: 12px; left: 12px;
  font-size: 10.5px; font-weight: 700;
  padding: 4px 12px; border-radius: 30px;
  letter-spacing: 0.06em;
}
.service-card-body { padding: 22px 22px 24px; }
.service-card-title {
  font-family: var(--font-head);
  font-size: 17px; font-weight: 700;
  color: var(--navy); margin-bottom: 10px;
}
.service-card-desc { font-size: 13.5px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.service-card-link {
  font-size: 13px; font-weight: 700; color: var(--teal);
  display: inline-flex; align-items: center; gap: 4px;
  transition: gap 0.2s;
}
.service-card:hover .service-card-link { gap: 8px; }

/* ── REACH STATS ── */
.reach-section { background: var(--navy); position: relative; overflow: hidden; }
.reach-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(42,157,143,0.25) 0%, transparent 60%);
}
.reach-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  position: relative; z-index: 1;
}
.reach-item {
  text-align: center; padding: 40px 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.reach-item:last-child { border-right: none; }
.reach-num {
  font-family: var(--font-head);
  font-size: 52px; font-weight: 800;
  color: var(--gold); display: block; line-height: 1;
  margin-bottom: 10px;
}
.reach-label {
  font-size: 15px; font-weight: 700;
  color: var(--white); margin-bottom: 6px;
}
.reach-sub { font-size: 12.5px; color: rgba(255,255,255,0.55); }

/* ── TEAM ── */
.team-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.team-card {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  background: var(--white);
  transition: transform 0.3s;
  cursor: pointer;
}
.team-card:hover { transform: translateY(-6px); }
.team-card-inner {
  position: relative; perspective: 1000px; height: 380px;
}
.team-card-front, .team-card-back {
  position: absolute; inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: transform 0.65s cubic-bezier(0.4,0.2,0.2,1);
  border-radius: var(--radius); overflow: hidden;
}
.team-card-front { transform: rotateY(0deg); }
.team-card-back  { transform: rotateY(180deg); }
.team-card:hover .team-card-front { transform: rotateY(-180deg); }
.team-card:hover .team-card-back  { transform: rotateY(0deg); }
.team-card-front img, .team-photo-placeholder {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
}
.team-photo-placeholder {
  display: flex; align-items: center; justify-content: center;
  font-size: 80px;
  background: linear-gradient(135deg, var(--teal-pale), var(--teal-light));
}
.team-info-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(15,42,63,0.95), transparent);
  padding: 40px 18px 18px; color: var(--white);
}
.team-name { font-family: var(--font-head); font-size: 17px; font-weight: 700; }
.team-role { font-size: 12px; opacity: 0.78; margin-top: 3px; }
.team-card-back {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  display: flex; flex-direction: column; justify-content: center;
  align-items: center; padding: 28px 22px; text-align: center; color: var(--white);
}
.team-back-icon { font-size: 40px; margin-bottom: 12px; }
.team-back-name { font-family: var(--font-head); font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.team-back-role {
  font-size: 11.5px; font-weight: 700;
  background: rgba(255,255,255,0.2);
  padding: 4px 14px; border-radius: 20px;
  margin-bottom: 14px;
}
.team-back-desc { font-size: 13px; line-height: 1.65; opacity: 0.9; }

/* Founder card — special */
.founder-section { background: #fffdf5; }
.founder-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px;
  align-items: center;
}
.founder-img-wrap { position: relative; }
.founder-img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover; object-position: top center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.founder-name-badge {
  position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: var(--white);
  padding: 14px 28px; border-radius: 50px; text-align: center;
  box-shadow: 0 8px 30px rgba(42,157,143,0.4);
  white-space: nowrap;
}
.founder-badge-name {
  font-family: var(--font-head); font-size: 16px; font-weight: 700;
}
.founder-badge-title { font-size: 11px; opacity: 0.85; margin-top: 2px; }
.founder-quote {
  font-family: var(--font-serif);
  font-style: italic; font-size: 22px; font-weight: 600;
  color: var(--teal-dark); line-height: 1.5;
  border-left: 4px solid var(--teal);
  padding-left: 20px; margin: 20px 0 28px;
}

/* Co-founder */
.cofounder-block {
  margin-top: 32px; display: flex; gap: 24px;
  background: var(--teal-pale); border-radius: var(--radius);
  padding: 24px;
}
.cofounder-img {
  width: 100px; height: 120px;
  object-fit: cover; object-position: top;
  border-radius: var(--radius-sm); flex-shrink: 0;
}
.cofounder-name { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--navy); }
.cofounder-role { font-size: 12px; color: var(--teal); font-weight: 600; margin: 4px 0 8px; }
.cofounder-bio { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--cream); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px; box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(42,157,143,0.12);
}
.testimonial-stars { color: var(--gold); font-size: 16px; margin-bottom: 14px; letter-spacing: 3px; }
.testimonial-text {
  font-size: 14px; color: var(--text); line-height: 1.75;
  margin-bottom: 20px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--teal); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700;
  flex-shrink: 0;
}
.testimonial-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.testimonial-since { font-size: 12px; color: var(--muted); }

/* ── CTA ── */
.cta-section {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 60%, var(--teal-light) 100%);
  padding: 80px 60px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: -50%; left: -20%; right: -20%; height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.06) 0%, transparent 60%);
}
.cta-section .section-title { color: var(--white); position: relative; z-index: 1; }
.cta-section p { color: rgba(255,255,255,0.82); margin-bottom: 36px; max-width: 520px; margin-left:auto;margin-right:auto; position: relative; z-index: 1; }

/* ── GALLERY PREVIEW ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 10px;
  margin-top: 48px;
}
.gallery-item {
  border-radius: var(--radius-sm); overflow: hidden;
  position: relative; cursor: pointer;
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(15,42,63,0.4);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 32px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 64px 60px 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
  max-width: var(--max-w); margin: 0 auto;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.footer-logo-img { width: 50px; height: 50px; object-fit: contain; border-radius: 10px; background: var(--white); padding: 4px; }
.footer-logo-name { font-family: var(--font-head); font-size: 18px; font-weight: 800; background: linear-gradient(90deg, #5de4a0 0%, #7ec8e3 25%, #ffd166 50%, #f4a261 75%, #f06b6b 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.footer-about { font-size: 13.5px; line-height: 1.75; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: background 0.2s;
}
.footer-social a:hover { background: var(--teal); }
.footer-col h4 {
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  color: var(--white); text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a { font-size: 13.5px; transition: color 0.2s; }
.footer-col li a:hover { color: var(--teal-light); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; margin-bottom: 10px;
}
.footer-contact-item svg { width: 15px; height: 15px; margin-top: 2px; flex-shrink: 0; color: var(--teal-light); }
.footer-bottom {
  max-width: var(--max-w); margin: 24px auto 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12.5px; color: rgba(255,255,255,0.4);
}

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 100px 60px 60px; position: relative; overflow: hidden;
}
.page-hero::before {
  content:'';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(30,138,122,0.2) 0%, transparent 60%);
}
.page-hero-content { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 1; }
.breadcrumb {
  font-size: 12.5px; color: rgba(255,255,255,0.55);
  margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
}
.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: var(--teal-light); }
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800; color: var(--white); margin-bottom: 14px;
}
.page-hero h1 em { color: var(--teal-light); font-style: normal; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.72); max-width: 540px; line-height: 1.7; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; }
.contact-form-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 700;
  color: var(--navy); margin-bottom: 7px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 14px; color: var(--text);
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
  background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(42,157,143,0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.contact-info-card {
  background: var(--navy); color: var(--white);
  border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow-lg);
}
.contact-detail {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 24px; padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-detail:last-of-type { border-bottom: none; }
.contact-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.contact-detail-label { font-size: 11px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; }
.contact-detail-val { font-size: 14.5px; font-weight: 600; margin-top: 3px; }
.map-embed { margin-top: 28px; border-radius: var(--radius); overflow: hidden; }

/* ── GALLERY ── */
.gallery-full-grid {
  columns: 4; gap: 12px;
  margin-top: 48px;
}
.gallery-full-item {
  break-inside: avoid; margin-bottom: 12px;
  border-radius: var(--radius-sm); overflow: hidden;
  cursor: pointer; position: relative;
}
.gallery-full-item img {
  width: 100%; display: block;
  transition: transform 0.4s;
}
.gallery-full-item:hover img { transform: scale(1.04); }
.gallery-full-item:hover .gallery-overlay { opacity: 1; }

/* ── LIGHTBOX ── */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 9998;
  background: rgba(0,0,0,0.92); backdrop-filter: blur(8px);
  align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); }
.lightbox-close {
  position: absolute; top: 24px; right: 28px;
  color: var(--white); font-size: 36px; cursor: pointer;
  line-height: 1; opacity: 0.8; transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }

/* ── RESPONSIVE ── */
@media(max-width: 1024px) {
  .hero-grid, .about-split, .founder-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
  .reach-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .reach-item { padding: 24px 12px !important; border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.1) !important; }
  .reach-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1) !important; }
  .reach-item:nth-last-child(-n+2) { border-bottom: none !important; }
  .reach-num { font-size: 36px !important; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width: 768px) {
  .topbar { display: none; }
  .navbar { padding: 0 16px; height: 62px; }
  .nav-toggle { display: flex; z-index: 10001; position: relative; }
  .nav-links {
    display: flex;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    flex-direction: column;
    background: var(--white);
    padding: 0;
    padding-top: 72px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 30px;
    gap: 2px;
    z-index: 10000;
    overflow-y: auto;
    box-shadow: 4px 0 40px rgba(0,0,0,0.15);
    animation: none;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.25,0.46,0.45,0.94);
    visibility: hidden;
  }
  .nav-links.open { transform: translateX(0); visibility: visible; }
  .nav-links > li > a {
    font-size: 16px; font-weight: 600;
    padding: 14px 16px; width: 100%;
    border-radius: 10px;
    display: flex; justify-content: space-between; align-items: center;
    color: var(--navy);
    border-bottom: 1px solid var(--border);
  }
  .nav-links > li:last-child > a { border-bottom: none; }
  .nav-links a.nav-cta {
    background: var(--teal) !important;
    color: #fff !important;
    border-radius: 50px !important;
    margin-top: 12px;
    justify-content: center;
    border-bottom: none !important;
  }
  .nav-links a.active { color: var(--teal) !important; background: var(--teal-pale); }
  .dropdown-menu {
    position: static !important;
    display: none;
    box-shadow: none; border: none;
    background: var(--teal-pale);
    border-radius: var(--radius-sm);
    margin: 4px 0 8px 16px;
    padding: 4px;
    opacity: 1 !important; visibility: visible !important; transform: none !important;
  }
  .dropdown.open .dropdown-menu { display: block; }
  .dropdown-menu a {
    font-size: 14px !important; padding: 10px 14px !important;
    border-radius: 8px; border-bottom: none !important;
    color: var(--teal-dark) !important;
  }
  .section { padding: 60px 20px; }
  .page-hero { padding: 80px 20px 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .reach-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .gallery-full-grid { columns: 2; }
  .cta-section { padding: 60px 20px; }
  .hero-stats { gap: 20px; }
  .hero h1 { font-size: 34px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .about-img-badge { right: 0; bottom: 0; }
  .founder-grid { gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   MOBILE NAV — SINGLE CLEAN BLOCK v14
   ══════════════════════════════════════════ */
@media(max-width: 768px) {
  /* Toggle button */
  .nav-toggle {
    display: flex !important;
    z-index: 100000 !important;
    position: relative !important;
  }

  /* Dim overlay behind menu */

  /* Full-screen slide-in panel — NO display:none flash */
  .nav-links {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    flex-direction: column !important;
    background: #ffffff !important;
    padding-top: 70px !important;
    padding-bottom: 30px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    gap: 0 !important;
    margin: 0 !important;
    z-index: 99990 !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    transform: translateX(-100%) !important;
    transition: transform 0.3s cubic-bezier(0.25,0.46,0.45,0.94) !important;
    visibility: hidden !important;
    box-shadow: none !important;
  }
  /* When open — slide in smoothly */
  .nav-links.open {
    transform: translateX(0) !important;
    visibility: visible !important;
  }

  /* Close X button */
  .nav-close-btn {
    display: flex !important;
    position: fixed !important;
    top: 14px !important;
    right: 14px !important;
    z-index: 100001 !important;
    width: 38px !important;
    height: 38px !important;
    background: #e8f8f5 !important;
    border: none !important;
    border-radius: 50% !important;
    font-size: 18px !important;
    color: #1e8a7a !important;
    cursor: pointer !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* Nav items */
  .nav-links > li {
    width: 100% !important;
    border-bottom: 1px solid #f0f0f0 !important;
    list-style: none !important;
  }
  .nav-links > li:last-child { border-bottom: none !important; }
  .nav-links > li > a {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 16px 22px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #1e2d3d !important;
    background: #ffffff !important;
    border-radius: 0 !important;
    border-bottom: none !important;
    text-decoration: none !important;
  }
  .nav-links > li > a:hover,
  .nav-links > li > a.active {
    background: #e8f8f5 !important;
    color: #1e8a7a !important;
  }
  .nav-links a.nav-cta {
    background: #1e8a7a !important;
    color: #ffffff !important;
    border-radius: 50px !important;
    margin: 12px 20px !important;
    width: calc(100% - 40px) !important;
    justify-content: center !important;
  }
  .nav-links a.active { color: #1e8a7a !important; }
  .nav-links > li > a:hover { background: #e8f8f5 !important; }

  /* Dropdown on mobile */
  .dropdown-menu {
    position: static !important;
    display: none !important;
    background: #f0faf8 !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    min-width: 0 !important;
  }
  .dropdown.open > .dropdown-menu { display: block !important; }
  .dropdown-menu a {
    display: block !important;
    padding: 13px 34px !important;
    font-size: 14px !important;
    color: #1e7a6e !important;
    border-bottom: 1px solid #d8f0ec !important;
    border-radius: 0 !important;
    background: #f0faf8 !important;
  }
  .dropdown-menu a:last-child { border-bottom: none !important; }
  .dropdown > a .dropdown-arrow {
    padding: 6px 10px !important;
    margin-left: auto !important;
    min-width: 44px !important;
    min-height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    pointer-events: auto !important;
  }
  .dropdown.open .dropdown-arrow { transform: rotate(180deg) !important; }

  /* Hero mobile */
  .hero-slider, .hero-slide { min-height: 100vh !important; }
  .hero-slide {
    padding: 70px 16px 50px !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    overflow: hidden !important;
  }
  .hero-slide-content { max-width: 100% !important; width: 100% !important; overflow-x: hidden !important; }
  .hero-cats {
    max-width: 100% !important;
    overflow-x: auto !important;
    flex-wrap: nowrap !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    padding-bottom: 4px !important;
  }
  .hero-cats::-webkit-scrollbar { display: none !important; }
  .hero-cat { white-space: nowrap !important; flex-shrink: 0 !important; }
  .hero-slide h1 { font-size: 26px !important; }
  .hero-actions { flex-direction: column !important; }
  .hero-actions a { width: 100% !important; justify-content: center !important; text-align: center !important; }
  .hero-stats { gap: 14px !important; flex-wrap: wrap !important; }

  /* General */
  html, body { overflow-x: hidden !important; max-width: 100vw !important; }
  .owner-photo-wrap img { object-position: center 20% !important; }
  .hero-float-badge { display: none !important; }
}


/* ══════════════════════════════════════════
   COLORFUL THEME UPGRADE v16
   Matching logo: green, blue, yellow, orange, red/pink
   ══════════════════════════════════════════ */

/* ── Marquee banner — rainbow dots ── */
.banner-item:nth-child(6n+1) .banner-dot { background: #27ae60; }
.banner-item:nth-child(6n+2) .banner-dot { background: #2980b9; }
.banner-item:nth-child(6n+3) .banner-dot { background: #f39c12; }
.banner-item:nth-child(6n+4) .banner-dot { background: #e67e22; }
.banner-item:nth-child(6n+5) .banner-dot { background: #c0392b; }
.banner-item:nth-child(6n+6) .banner-dot { background: #8e44ad; }

/* ── Section titles — colorful em highlights ── */
.section-title em { 
  background: linear-gradient(90deg, #1e8a7a, #2980b9);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; font-style: normal;
}

/* ── Service cards — colored top borders ── */
.service-card:nth-child(6n+1) { border-top: 4px solid #27ae60; }
.service-card:nth-child(6n+2) { border-top: 4px solid #2980b9; }
.service-card:nth-child(6n+3) { border-top: 4px solid #f39c12; }
.service-card:nth-child(6n+4) { border-top: 4px solid #e67e22; }
.service-card:nth-child(6n+5) { border-top: 4px solid #c0392b; }
.service-card:nth-child(6n+6) { border-top: 4px solid #8e44ad; }

/* ── Condition pills — colorful ── */
.condition-pill:nth-child(5n+1):hover { background: #27ae60 !important; border-color: #27ae60 !important; }
.condition-pill:nth-child(5n+2):hover { background: #2980b9 !important; border-color: #2980b9 !important; }
.condition-pill:nth-child(5n+3):hover { background: #f39c12 !important; border-color: #f39c12 !important; }
.condition-pill:nth-child(5n+4):hover { background: #e67e22 !important; border-color: #e67e22 !important; }
.condition-pill:nth-child(5n+5):hover { background: #c0392b !important; border-color: #c0392b !important; }

/* ── Stat numbers — gold/warm colors ── */
.hero-stat-num { color: #ffd166 !important; }
.reach-stat-num { 
  background: linear-gradient(135deg, #ffd166, #f4a261);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Owner role badge — colorful ── */
.owner-role-badge { 
  background: linear-gradient(90deg, rgba(39,174,96,0.2), rgba(41,128,185,0.2)) !important;
  color: #27ae60 !important;
  border-color: rgba(39,174,96,0.4) !important;
}

/* ── Photo strip wrap — gradient band ── */
.photo-strip-wrap {
  background: linear-gradient(135deg, #003c64 0%, #0a4a6e 50%, #003c64 100%) !important;
  border-top: 3px solid #f39c12;
  border-bottom: 3px solid #27ae60;
}

/* ── Page hero sections — gradient bg ── */
.page-hero {
  background: linear-gradient(135deg, #003c64 0%, #0a527a 40%, #1a6e60 100%) !important;
}

/* ── CTA section — vibrant gradient ── */
.cta-section {
  background: linear-gradient(135deg, #1e8a7a 0%, #2980b9 50%, #8e44ad 100%) !important;
}

/* ── Footer — richer dark gradient ── */
.footer {
  background: linear-gradient(135deg, #001f3a 0%, #003c64 60%, #002a20 100%) !important;
}

/* ── Section alternating bg accents ── */
.about-home-section { 
  background: linear-gradient(180deg, #fdfaf4 0%, #edf6f5 100%) !important; 
}

/* ── Topbar colorful ── */
.topbar {
  background: linear-gradient(90deg, #002a50 0%, #003c64 50%, #1a5c50 100%) !important;
}

/* ── Hero slide overlay — warmer tones ── */
.hero-slide-bg::after {
  background: linear-gradient(135deg, rgba(0,40,80,0.88) 0%, rgba(0,70,80,0.70) 100%) !important;
}

/* ── Testimonial cards — colorful left border ── */
.testimonial-card:nth-child(3n+1) { border-left: 4px solid #27ae60 !important; }
.testimonial-card:nth-child(3n+2) { border-left: 4px solid #2980b9 !important; }
.testimonial-card:nth-child(3n+3) { border-left: 4px solid #f39c12 !important; }

/* ── Strip section label ── */
.strip-section-label {
  background: linear-gradient(90deg, #002a50, #003c64, #002a50) !important;
}
.strip-section-label span {
  color: rgba(255,200,100,0.7) !important;
}
.strip-section-label span::before,
.strip-section-label span::after {
  background: rgba(255,200,100,0.3) !important;
}

/* ── Owner card — colorful divider ── */
.owner-divider { 
  background: linear-gradient(90deg, #27ae60, #2980b9) !important; 
  width: 48px !important; height: 4px !important;
}

/* ── Nav toggle (hamburger) lines — teal ── */
.nav-toggle span { background: #1e8a7a !important; }


/* ══════════════════════════════════════════
   LOGO COLORS FULL THEME v17
   Red · Yellow · Green · Blue · White · Purple · Orange
   ══════════════════════════════════════════ */

/* Navbar brand name — rainbow gradient matching logo children */
.nav-logo-name {
  font-family: var(--font-head) !important;
  font-size: 19px !important; font-weight: 800 !important;
  background: linear-gradient(90deg, #27ae60 0%, #2980b9 30%, #f39c12 55%, #e74c3c 80%, #8e44ad 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* Navbar subtitle */
.nav-logo-sub {
  color: #e67e22 !important;
  font-weight: 700 !important;
}

/* Footer brand name — lighter for dark bg */
.footer-logo-name {
  background: linear-gradient(90deg, #5de4a0, #7ec8e3, #ffd166, #f4a261, #f06b6b, #c77dff) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  font-weight: 800 !important;
}

/* Page hero — colorful gradient (all subpages) */
.page-hero {
  background: linear-gradient(135deg, #1a3a6e 0%, #0e7a6e 50%, #1a2d6e 100%) !important;
}

/* Hero slider overlay — richer */
.hero-slide-bg::after {
  background: linear-gradient(135deg, rgba(0,40,100,0.85) 0%, rgba(0,80,60,0.72) 100%) !important;
}

/* Section title em — teal-blue gradient */
.section-title em {
  background: linear-gradient(90deg, #1e8a7a, #2980b9) !important;
  -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important;
  background-clip: text !important; font-style: normal !important;
}

/* Section eyebrow badges — colorful alternating */
.section-eyebrow {
  background: linear-gradient(90deg, #e8f8f5, #fef9e7) !important;
  color: #1e8a7a !important;
  border: 1.5px solid #b8e8e0 !important;
  font-weight: 700 !important;
}

/* Service cards — colored top border per card */
.service-card { border-top: 4px solid transparent !important; }
.service-card:nth-child(6n+1) { border-top-color: #27ae60 !important; }
.service-card:nth-child(6n+2) { border-top-color: #2980b9 !important; }
.service-card:nth-child(6n+3) { border-top-color: #f39c12 !important; }
.service-card:nth-child(6n+4) { border-top-color: #e74c3c !important; }
.service-card:nth-child(6n+5) { border-top-color: #8e44ad !important; }
.service-card:nth-child(6n+6) { border-top-color: #e67e22 !important; }
.service-card:hover { box-shadow: 0 20px 48px rgba(42,157,143,0.2) !important; }

/* Marquee banner — colorful gradient background */
.services-banner {
  background: linear-gradient(90deg, #002a50, #003c64, #1a5c50, #003c64, #002a50) !important;
}
/* Rainbow dots in banner */
.banner-item:nth-child(6n+1) .banner-dot { background: #27ae60 !important; width: 8px !important; height: 8px !important; }
.banner-item:nth-child(6n+2) .banner-dot { background: #2980b9 !important; width: 8px !important; height: 8px !important; }
.banner-item:nth-child(6n+3) .banner-dot { background: #f39c12 !important; width: 8px !important; height: 8px !important; }
.banner-item:nth-child(6n+4) .banner-dot { background: #e74c3c !important; width: 8px !important; height: 8px !important; }
.banner-item:nth-child(6n+5) .banner-dot { background: #8e44ad !important; width: 8px !important; height: 8px !important; }
.banner-item:nth-child(6n+6) .banner-dot { background: #e67e22 !important; width: 8px !important; height: 8px !important; }

/* Reach/stats section — richer navy + gold numbers */
.reach-section {
  background: linear-gradient(135deg, #001a3a 0%, #003060 50%, #001a3a 100%) !important;
}
.reach-stat-num {
  background: linear-gradient(135deg, #ffd166, #f4a261) !important;
  -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* Hero stats numbers — bright gold */
.hero-stat-num { color: #ffd166 !important; text-shadow: 0 0 20px rgba(255,209,102,0.4) !important; }

/* CTA section — vibrant multi-color gradient */
.cta-section {
  background: linear-gradient(135deg, #1e8a7a 0%, #1a5fb4 35%, #8e44ad 70%, #c0392b 100%) !important;
  position: relative;
}

/* Testimonial cards — colorful left border */
.testimonial-card { border-left: 4px solid #1e8a7a !important; }
.testimonial-card:nth-child(3n+1) { border-left-color: #27ae60 !important; }
.testimonial-card:nth-child(3n+2) { border-left-color: #2980b9 !important; }
.testimonial-card:nth-child(3n+3) { border-left-color: #f39c12 !important; }

/* Photo strips — bright border accents */
.photo-strip-wrap {
  background: linear-gradient(135deg, #001a3a 0%, #003060 50%, #001a3a 100%) !important;
  border-top: 3px solid #f39c12 !important;
  border-bottom: 3px solid #27ae60 !important;
}
.strip-section-label {
  background: linear-gradient(90deg, #001a3a, #003060, #001a3a) !important;
}
.strip-section-label span { color: rgba(255, 210, 100, 0.8) !important; }
.strip-section-label span::before, .strip-section-label span::after {
  background: rgba(255, 210, 100, 0.35) !important;
}

/* Footer — deep rich dark */
.footer {
  background: linear-gradient(160deg, #00101e 0%, #001a38 60%, #001a20 100%) !important;
}

/* Topbar — gradient */
.topbar {
  background: linear-gradient(90deg, #001a3a 0%, #003060 40%, #1a4a3a 70%, #003060 100%) !important;
}

/* Nav close btn color */
.nav-close-btn { color: #e74c3c !important; background: #fef0f0 !important; }

/* Condition pills — colorful hover */
.condition-pill { transition: all 0.2s !important; }
.condition-pill:nth-child(5n+1):hover { background: #27ae60 !important; border-color: #27ae60 !important; color: #fff !important; }
.condition-pill:nth-child(5n+2):hover { background: #2980b9 !important; border-color: #2980b9 !important; color: #fff !important; }
.condition-pill:nth-child(5n+3):hover { background: #f39c12 !important; border-color: #f39c12 !important; color: #fff !important; }
.condition-pill:nth-child(5n+4):hover { background: #e74c3c !important; border-color: #e74c3c !important; color: #fff !important; }
.condition-pill:nth-child(5n+5):hover { background: #8e44ad !important; border-color: #8e44ad !important; color: #fff !important; }

/* Service page hero colors per service */
/* speech = blue, OT = green, ABA = purple, early = orange, special ed = red, group = teal */
.sp-hero[data-service="speech"] { background: linear-gradient(135deg, #1a3a6e, #2980b9) !important; }
.sp-hero[data-service="ot"] { background: linear-gradient(135deg, #1a4a20, #27ae60) !important; }
.sp-hero[data-service="aba"] { background: linear-gradient(135deg, #2a1a5e, #8e44ad) !important; }
.sp-hero[data-service="early"] { background: linear-gradient(135deg, #4a2000, #e67e22) !important; }
.sp-hero[data-service="special"] { background: linear-gradient(135deg, #4a0a1a, #e74c3c) !important; }
.sp-hero[data-service="group"] { background: linear-gradient(135deg, #0a3a4a, #1e8a7a) !important; }

/* About section alt bg */
.about-home-section { background: linear-gradient(180deg, #fdfaf4 0%, #eef7f5 100%) !important; }

/* Nav active item — colorful */
.nav-links a.active { color: #1e8a7a !important; font-weight: 700 !important; }


/* ══════════════════════════════════════════
   HOMEPAGE HERO ANIMATION + TWO BOXES v24
   ══════════════════════════════════════════ */

/* Hero slide-in animations */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-slide-content { animation: heroFadeUp 0.8s ease both; }
.anim-fade-d1 { animation: heroFadeUp 0.7s 0.1s ease both; }
.anim-fade-d2 { animation: heroFadeUp 0.7s 0.25s ease both; }
.anim-fade-d3 { animation: heroFadeUp 0.7s 0.4s ease both; }
.anim-fade-d4 { animation: heroFadeUp 0.7s 0.55s ease both; }

/* Full-width layout — no side overflow */
body { max-width: 100vw; overflow-x: hidden; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Two boxes section */
.two-boxes-section {
  background: var(--white);
  padding: 60px 24px;
}
.two-boxes-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.two-box-card {
  border-radius: 20px;
  padding: 40px 36px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.two-box-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.12); }
.two-box-procedure {
  background: linear-gradient(135deg, #e8f8f5, #d0f0e8);
  border: 2px solid #b8e8de;
}
.two-box-services {
  background: linear-gradient(135deg, #fff8e8, #fef0c8);
  border: 2px solid #f5d878;
}
.two-box-icon { font-size: 40px; line-height: 1; }
.two-box-card h3 {
  font-family: var(--font-head);
  font-size: 22px; font-weight: 800;
  color: var(--navy);
}
.two-box-card p { font-size: 14.5px; color: var(--muted); line-height: 1.75; }
.two-box-btn {
  display: inline-flex; align-items: center;
  background: var(--teal); color: var(--white);
  padding: 11px 24px; border-radius: 50px;
  font-size: 14px; font-weight: 700;
  text-decoration: none; margin-top: 6px;
  width: fit-content;
  transition: background 0.2s, transform 0.2s;
}
.two-box-btn:hover { background: #1a6e60; transform: translateX(4px); }
.two-box-services .two-box-btn { background: #e67e22; }
.two-box-services .two-box-btn:hover { background: #c96a12; }

@media(max-width: 768px) {
  .two-boxes-inner { grid-template-columns: 1fr; gap: 20px; }
  .two-box-card { padding: 28px 22px; }
  .two-boxes-section { padding: 40px 16px; }
}

/* ══════════════════════════════════════════
   ASSESSMENT PROCESS SECTION v24
   ══════════════════════════════════════════ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.process-step {
  background: var(--white);
  border-radius: 18px;
  padding: 32px 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border-left: 4px solid var(--teal);
  transition: transform 0.3s, box-shadow 0.3s;
}
.process-step:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
.process-step:nth-child(6n+1) { border-left-color: #27ae60; }
.process-step:nth-child(6n+2) { border-left-color: #2980b9; }
.process-step:nth-child(6n+3) { border-left-color: #f39c12; }
.process-step:nth-child(6n+4) { border-left-color: #e74c3c; }
.process-step:nth-child(6n+5) { border-left-color: #8e44ad; }
.process-step:nth-child(6n+6) { border-left-color: #e67e22; }
.process-num {
  font-family: var(--font-head);
  font-size: 36px; font-weight: 900;
  color: var(--teal); opacity: 0.25;
  line-height: 1; flex-shrink: 0;
  min-width: 48px;
}
.process-body h3 {
  font-family: var(--font-head);
  font-size: 16px; font-weight: 700;
  color: var(--navy); margin-bottom: 8px;
}
.process-body p { font-size: 13.5px; color: var(--muted); line-height: 1.75; }

@media(max-width: 768px) {
  .process-grid { grid-template-columns: 1fr; gap: 16px; }
  .process-step { padding: 22px 18px; }
  .process-num { font-size: 28px; min-width: 36px; }
}

/* ══════════════════════════════════════════
   WELCOME + MISSION SECTION v24
   ══════════════════════════════════════════ */
.welcome-section {
  background: linear-gradient(135deg, #003060 0%, #1a5c50 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.welcome-section::before {
  content: '⭐';
  position: absolute; top: 20px; left: 40px;
  font-size: 60px; opacity: 0.07;
}
.welcome-section::after {
  content: '🌟';
  position: absolute; bottom: 20px; right: 40px;
  font-size: 60px; opacity: 0.07;
}
.welcome-inner { max-width: 860px; margin: 0 auto; position: relative; z-index: 1; }
.welcome-tag {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  color: #ffd166;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 6px 18px; border-radius: 50px;
  margin-bottom: 20px;
}
.welcome-section h2 {
  font-family: var(--font-head);
  font-size: 42px; font-weight: 900;
  color: var(--white);
  line-height: 1.2; margin-bottom: 16px;
}
.welcome-section h2 em { color: #ffd166; font-style: normal; }
.welcome-divider {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, #ffd166, #f4a261);
  border-radius: 2px; margin: 20px auto;
}
.mission-box {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 28px 36px;
  margin: 28px 0;
  text-align: left;
}
.mission-box h3 {
  font-family: var(--font-head);
  font-size: 18px; font-weight: 700;
  color: #ffd166; margin-bottom: 10px;
}
.mission-box p { font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.8; }
.welcome-services-row {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px; margin-top: 28px;
}
.welcome-service-pill {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 18px; border-radius: 50px;
  font-size: 13px; font-weight: 600;
  transition: background 0.2s;
}
.welcome-service-pill:hover { background: rgba(255,255,255,0.22); }

@media(max-width:768px) {
  .welcome-section { padding: 50px 16px; }
  .welcome-section h2 { font-size: 26px; }
  .mission-box { padding: 20px 18px; }
}

/* ══════════════════════════════════════════
   HERO PHOTO SLIDESHOW v25
   ══════════════════════════════════════════ */
.hero-photo-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.hero-photo-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-photo-slide {
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
}
.hero-photo-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
/* text overlay — semi-transparent strip at bottom only */
.hero-photo-overlay-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,30,60,0.92) 0%, rgba(0,30,60,0.6) 60%, transparent 100%);
  padding: 60px 60px 40px;
  color: #fff;
  z-index: 5;
}
.hero-photo-overlay-content h1 {
  font-family: var(--font-head);
  font-size: 48px; font-weight: 900;
  line-height: 1.15; margin-bottom: 10px;
  color: #fff;
}
.hero-photo-overlay-content h1 em { color: #ffd166; font-style: normal; }
.hero-photo-overlay-content .hero-sub { font-size: 15px; color: rgba(255,255,255,0.85); margin-bottom: 20px; max-width: 600px; }
.hero-photo-overlay-content .hero-badge { font-size: 13px; background: rgba(255,255,255,0.15); display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 50px; margin-bottom: 14px; }
.hero-photo-overlay-content .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-photo-overlay-content .hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-photo-overlay-content .hero-stat-num { font-size: 26px; font-weight: 800; color: #ffd166; display: block; }
.hero-photo-overlay-content .hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.7); }

.hero-photo-prev, .hero-photo-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.2); border: none;
  color: #fff; width: 44px; height: 44px;
  border-radius: 50%; font-size: 18px;
  cursor: pointer; z-index: 10;
  transition: background 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.hero-photo-prev { left: 20px; }
.hero-photo-next { right: 20px; }
.hero-photo-prev:hover, .hero-photo-next:hover { background: rgba(255,255,255,0.4); }

.hero-photo-dots {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4); border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.hero-dot.active { background: #ffd166; transform: scale(1.3); }

@media(max-width:768px) {
  .hero-photo-slider { height: 100svh; }
  .hero-photo-overlay-content { padding: 40px 16px 24px; }
  .hero-photo-overlay-content h1 { font-size: 26px; }
  .hero-photo-overlay-content .hero-stats { gap: 16px; }
  .hero-photo-overlay-content .hero-stat-num { font-size: 20px; }
}

/* ══════════════════════════════════════════
   THREE BOXES v25
   ══════════════════════════════════════════ */
.three-boxes-section { background: #fff; padding: 64px 24px; }
.three-boxes-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.three-box-card {
  border-radius: 20px; padding: 36px 28px;
  display: flex; flex-direction: column; gap: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.three-box-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.14); }
.three-box-card:nth-child(1) { background: linear-gradient(135deg, #e8f8f5, #c8f0e8); border-top: 4px solid #1e8a7a; }
.three-box-card:nth-child(2) { background: linear-gradient(135deg, #eef4ff, #d8e8ff); border-top: 4px solid #2980b9; }
.three-box-card:nth-child(3) { background: linear-gradient(135deg, #fff8e8, #feecc8); border-top: 4px solid #e67e22; }
.three-box-icon { font-size: 38px; line-height: 1; }
.three-box-card h3 { font-family: var(--font-head); font-size: 20px; font-weight: 800; color: var(--navy); }
.three-box-card p { font-size: 13.5px; color: var(--muted); line-height: 1.75; flex: 1; }
.three-box-typed { font-size: 13px; font-weight: 600; color: var(--teal); min-height: 20px; }
.three-box-btn { display: inline-flex; align-items: center; padding: 10px 22px; border-radius: 50px; font-size: 13px; font-weight: 700; text-decoration: none; width: fit-content; margin-top: 6px; transition: transform 0.2s, opacity 0.2s; }
.three-box-btn:hover { transform: translateX(4px); opacity: 0.9; }
.btn-teal { background: #1e8a7a; color: #fff; }
.btn-blue { background: #2980b9; color: #fff; }
.btn-orange { background: #e67e22; color: #fff; }

@media(max-width:900px) { .three-boxes-inner { grid-template-columns: 1fr; gap: 18px; } .three-boxes-section { padding: 40px 16px; } }

/* ══════════════════════════════════════════
   ASSESSMENT TWO-COLUMN (Services page) v25
   ══════════════════════════════════════════ */
.assess-two-col { display: grid; grid-template-columns: 1fr 2fr; gap: 28px; }
.assess-box { background: #fff; border: 2px solid #1e8a7a; border-radius: 16px; padding: 32px 28px; }
.assess-box h3 { font-family: var(--font-head); font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.assess-stars { color: var(--teal); font-size: 13px; margin-bottom: 14px; letter-spacing: 4px; }
.assess-box > p { font-size: 13.5px; color: var(--muted); line-height: 1.75; margin-bottom: 16px; }
.assess-list { list-style: none; padding: 0; margin: 0; }
.assess-list li { font-size: 13.5px; color: var(--navy); padding: 5px 0; display: flex; gap: 8px; align-items: flex-start; line-height: 1.5; }
.assess-list li::before { content: "✅"; flex-shrink: 0; font-size: 12px; margin-top: 2px; }
.assess-services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
@media(max-width:768px) {
  .assess-two-col { grid-template-columns: 1fr; }
  .assess-services-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   V26 — COMPLETE REDESIGN CSS
   ══════════════════════════════════════════ */

/* Hero: no overlay text — full clean photo */
.hero-photo-slider { position:relative; width:100%; height:100vh; height:100dvh; overflow:hidden; }
.hero-photo-track { display:flex; height:100%; transition:transform 0.65s cubic-bezier(0.4,0,0.2,1); }
.hero-photo-slide { min-width:100%; height:100%; flex-shrink:0; }
.hero-photo-slide img { width:100%; height:100%; object-fit:cover; object-position:center top; display:block; }
.hero-photo-prev,.hero-photo-next {
  position:absolute; top:50%; transform:translateY(-50%);
  background:rgba(255,255,255,0.25); border:2px solid rgba(255,255,255,0.4);
  color:#fff; width:48px; height:48px; border-radius:50%;
  font-size:20px; cursor:pointer; z-index:10;
  display:flex; align-items:center; justify-content:center;
  transition:background 0.2s; backdrop-filter:blur(4px);
}
.hero-photo-prev { left:20px; }
.hero-photo-next { right:20px; }
.hero-photo-prev:hover,.hero-photo-next:hover { background:rgba(255,255,255,0.45); }
.hero-photo-dots { position:absolute; bottom:20px; left:50%; transform:translateX(-50%); display:flex; gap:8px; z-index:10; }
.hero-dot { width:10px; height:10px; border-radius:50%; background:rgba(255,255,255,0.4); border:2px solid rgba(255,255,255,0.6); cursor:pointer; transition:all 0.25s; }
.hero-dot.active { background:#ffd166; border-color:#ffd166; transform:scale(1.3); }
@media(max-width:768px) { .hero-photo-slider { height:100svh; } .hero-photo-prev,.hero-photo-next { width:38px; height:38px; font-size:16px; } }

/* THREE BOXES — logo color theme */
.three-boxes-section { background:#f9fafb; padding:70px 24px 60px; }
.three-boxes-header { max-width:700px; margin:0 auto 48px; }
.three-boxes-inner { max-width:1200px; margin:0 auto; display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }

.three-box-card {
  background:#fff; border-radius:22px;
  padding:36px 28px 32px;
  box-shadow:0 6px 28px rgba(0,0,0,0.07);
  display:flex; flex-direction:column; gap:14px;
  position:relative; overflow:hidden;
  transition:transform 0.35s ease, box-shadow 0.35s ease;
  border-bottom:4px solid transparent;
  /* scroll-reveal: start invisible */
  opacity:0; transform:translateY(40px);
}
.three-box-card.visible {
  opacity:1; transform:translateY(0);
  transition:opacity 0.6s ease, transform 0.6s ease, box-shadow 0.35s ease;
}
.three-box-card[data-box="1"] { border-bottom-color:#27ae60; }
.three-box-card[data-box="2"] { border-bottom-color:#2980b9; }
.three-box-card[data-box="3"] { border-bottom-color:#f39c12; }
.three-box-card[data-box="1"].visible { transition-delay:0.05s; }
.three-box-card[data-box="2"].visible { transition-delay:0.18s; }
.three-box-card[data-box="3"].visible { transition-delay:0.31s; }
.three-box-card:hover { transform:translateY(-8px) !important; box-shadow:0 20px 50px rgba(0,0,0,0.13); }

.three-box-top { display:flex; align-items:center; justify-content:space-between; margin-bottom:4px; }
.three-box-num { font-family:var(--font-head); font-size:48px; font-weight:900; line-height:1; opacity:0.08; color:var(--navy); }
.three-box-icon { font-size:36px; }
.three-box-title { font-family:var(--font-head); font-size:20px; font-weight:800; color:var(--navy); margin:0; }

/* Typing text element */
.three-box-typed {
  font-size:13px; font-weight:600; color:var(--teal);
  min-height:22px; letter-spacing:0.01em;
  border-right:2px solid var(--teal);
  white-space:nowrap; overflow:hidden;
}
.three-box-card[data-box="2"] .three-box-typed { color:#2980b9; border-right-color:#2980b9; }
.three-box-card[data-box="3"] .three-box-typed { color:#e67e22; border-right-color:#e67e22; }

.three-box-desc { font-size:13.5px; color:var(--muted); line-height:1.8; flex:1; margin:0; }

.three-box-btn { display:inline-flex; align-items:center; gap:6px; padding:11px 24px; border-radius:50px; font-size:13px; font-weight:700; text-decoration:none; width:fit-content; margin-top:auto; transition:transform 0.2s, opacity 0.2s; }
.three-box-btn:hover { transform:translateX(5px); opacity:0.9; }
.btn-green { background:#27ae60; color:#fff; }
.btn-blue  { background:#2980b9; color:#fff; }
.btn-yellow { background:#f39c12; color:#fff; }

@media(max-width:900px) {
  .three-boxes-inner { grid-template-columns:1fr; gap:18px; }
  .three-boxes-section { padding:48px 16px; }
  .three-box-card { opacity:1 !important; transform:none !important; }
}

/* Mission inline blocks in WHO WE ARE */
.mission-inline { background:#f0faf8; border-left:4px solid var(--teal); border-radius:0 12px 12px 0; padding:14px 18px; margin-bottom:12px; }
.mission-inline h4 { font-family:var(--font-head); font-size:15px; font-weight:700; color:var(--navy); margin:0 0 5px; }
.mission-inline p { font-size:13.5px; color:var(--muted); line-height:1.7; margin:0; }

/* Family photo in testimonials */
.family-photo-wrap {
  margin:32px 0 12px;
  border-radius:20px; overflow:hidden;
  box-shadow:0 8px 30px rgba(0,0,0,0.12);
  position:relative;
  max-height:340px;
}
.family-photo-img { width:100%; height:340px; object-fit:cover; object-position:center top; display:block; }
.family-photo-caption {
  position:absolute; bottom:0; left:0; right:0;
  background:linear-gradient(to top, rgba(0,30,60,0.85), transparent);
  color:#fff; text-align:center;
  padding:20px 20px 16px;
  font-size:15px; font-weight:600;
}
@media(max-width:768px) { .family-photo-wrap { max-height:220px; } .family-photo-img { height:220px; } }

/* ═══ THREE BOX — BIGGER TEXT ═══ */
.three-box-desc {
  font-size: 14.5px !important;
  line-height: 1.8 !important;
  color: var(--muted);
  margin-bottom: 20px;
}
.three-box-typed {
  font-size: 14px !important;
  font-weight: 600;
  color: var(--teal);
  min-height: 22px;
  margin-bottom: 12px;
  font-style: italic;
}

/* ═══ ASSESSMENT + SERVICES TWO BOX ═══ */
.assessment-services-section { padding: 80px 0; }
.assess-two-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
.assess-box {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.10);
  background: #fff;
  transition: transform 0.35s, box-shadow 0.35s;
}
.assess-box:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.assess-box-header {
  padding: 28px 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.assess-box-icon { font-size: 32px; }
.assess-box-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin: 0;
}
.assess-box-dots { display: flex; gap: 5px; margin-top: 4px; }
.assess-box-dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4);
}
.assess-box-body { padding: 24px 28px 28px; }
.assess-intro-typed {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--teal);
  font-style: italic;
  min-height: 20px;
  margin-bottom: 16px;
}
.assess-list {
  list-style: none;
  padding: 0; margin: 0;
}
.assess-list li {
  padding: 7px 0;
  font-size: 13.5px;
  color: var(--navy);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.5;
}
.assess-list li::before {
  content: '✦';
  font-size: 9px;
  color: var(--teal);
  flex-shrink: 0;
}
.assess-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
}
@media(max-width:900px) {
  .assess-two-grid { grid-template-columns: 1fr !important; padding: 0 16px; }
  .assess-services-grid { grid-template-columns: 1fr !important; }
}

/* ═══ MAP SECTION ═══ */
.map-section {
  background: var(--cream);
  padding: 80px 0 0;
}
.map-section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px 80px;
}
.map-content-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 36px;
  align-items: start;
}
.map-info-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}
.map-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.map-info-item:last-of-type { border-bottom: none; }
.map-info-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.map-info-item strong { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--teal); margin-bottom: 4px; font-weight: 700; }
.map-info-item p { font-size: 13.5px; color: var(--navy); margin: 0; line-height: 1.6; }
.map-info-item a { color: var(--navy); text-decoration: none; }
.map-info-item a:hover { color: var(--teal); }
.map-embed-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  height: 100%;
  min-height: 380px;
}
.map-embed-wrap iframe { display: block; }
@media(max-width:900px) {
  .map-content-grid { grid-template-columns: 1fr !important; }
  .map-section-inner { padding: 0 16px 48px; }
  .map-embed-wrap { min-height: 260px; }
}

/* ═══ HERO TEXT OVERLAY ═══ */
.hero-photo-slider { position: relative; }
.hero-text-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,10,20,0.55) 50%, rgba(0,0,0,0.08) 100%);
  display: flex;
  align-items: center;
  z-index: 10;
  pointer-events: none;
}
.hero-overlay-inner {
  padding: 0 60px;
  max-width: 620px;
  pointer-events: all;
}
.hero-badge-pill {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  color: #f5c842;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
  backdrop-filter: blur(4px);
}
.hero-overlay-h1 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 16px;
}
.hero-overlay-h1 em {
  color: #4dc5b7;
  font-style: normal;
}
.hero-overlay-sub {
  color: rgba(255,255,255,0.88);
  font-size: clamp(13px, 1.3vw, 15.5px);
  line-height: 1.7;
  margin-bottom: 20px;
}
.hero-overlay-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.hero-overlay-cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.hero-overlay-cat::before {
  content: '';
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--dot);
  flex-shrink: 0;
}
.hero-overlay-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-overlay-btn { font-size: 14px !important; padding: 12px 24px !important; }
.btn-white-outline {
  background: transparent !important;
  border: 2px solid #fff !important;
  color: #fff !important;
}
.btn-white-outline:hover { background: rgba(255,255,255,0.12) !important; }
.hero-overlay-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-overlay-stat { display: flex; flex-direction: column; }
.hos-num { font-size: 22px; font-weight: 900; color: #f5c842; font-family: var(--font-head); }
.hos-label { font-size: 11px; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.05em; }
@media(max-width:768px) {
  .hero-text-overlay { background: linear-gradient(to bottom, rgba(0,30,60,0.85) 60%, rgba(0,30,60,0.4)); align-items: flex-end; }
  .hero-overlay-inner { padding: 0 18px 28px; max-width: 100%; }
  .hero-overlay-h1 { font-size: 26px; }
}

/* ═══ ASSESS BOXES FULLWIDTH ═══ */
.assess-two-grid-fullwidth {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  width: 100%;
  max-width: 100%;
}
@media(max-width:900px) {
  .assess-two-grid-fullwidth { grid-template-columns: 1fr !important; }
}
.assess-two-grid-fullwidth .assess-box {
  border-radius: 0;
  box-shadow: none;
  border-right: 1px solid rgba(0,0,0,0.07);
}
.assess-two-grid-fullwidth .assess-box:last-child { border-right: none; }
.assess-two-grid-fullwidth .assess-box-header { padding: 32px 36px 26px; }
.assess-two-grid-fullwidth .assess-box-body { padding: 28px 36px 36px; }
@media(max-width:900px) {
  .assess-two-grid-fullwidth .assess-box-header { padding: 24px 18px 20px; }
  .assess-two-grid-fullwidth .assess-box-body { padding: 18px 18px 28px; }
}

/* ═══ VISION BANNER inside box 2 ═══ */
.vision-banner {
  background: linear-gradient(135deg, #fffbe6, #fff8d6);
  border-left: 4px solid #f5c842;
  border-radius: 10px;
  padding: 16px 18px;
  margin-bottom: 20px;
}
.vision-banner-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #c8860a;
  margin-bottom: 8px;
}
.vision-banner-text {
  font-size: 13px;
  line-height: 1.75;
  color: #4a3800;
  margin: 0;
}

/* ═══ PROCESS STEPS in box 2 ═══ */
.process-steps { margin: 14px 0 18px; display: flex; flex-direction: column; gap: 10px; }
.process-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.65;
  color: var(--navy);
  padding: 10px 12px;
  background: rgba(0,60,100,0.04);
  border-radius: 8px;
  border-left: 3px solid var(--teal);
}
.ps-num {
  min-width: 22px; height: 22px;
  background: var(--teal);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ═══ WHATSAPP FLOATING BUTTON ═══ */
.wa-float-btn {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 9999;
  width: 54px;
  height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
  animation: waPulse 2.5s infinite;
}
.wa-float-btn svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}
.wa-float-label {
  display: none;
}
.wa-float-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
  animation: none;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.8), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* ═══ CENTERED FEATURE BOXES ═══ */
.about-feats-center {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 18px !important;
  max-width: 900px;
  margin: 0 auto;
}
@media(max-width:768px) {
  .about-feats-center { grid-template-columns: 1fr 1fr !important; }
}

/* ═══ RISING STAR SERVICES — 2 BOXES ═══ */
.rss-two-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.rss-box {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.10);
  background: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
}
.rss-box:hover { transform: translateY(-5px); box-shadow: 0 18px 50px rgba(0,0,0,0.15); }
.rss-box-header { padding: 26px 28px 20px; }
.rss-icon { font-size: 30px; display: block; margin-bottom: 10px; }
.rss-title { font-family: var(--font-head); font-size: 19px; font-weight: 800; color: #fff; margin: 0 0 10px; }
.rss-dots { display: flex; gap: 5px; }
.rss-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); }
.rss-body { padding: 22px 28px 28px; }
.rss-typed { font-size: 13px; font-weight: 600; color: var(--teal); font-style: italic; min-height: 20px; margin-bottom: 14px; }
.rss-list { list-style: none; padding: 0; margin: 0; }
.rss-list li { padding: 7px 0; font-size: 13.5px; color: var(--navy); border-bottom: 1px solid rgba(0,0,0,0.06); display: flex; align-items: center; gap: 8px; }
.rss-list li::before { content: '✦'; font-size: 9px; color: var(--teal); flex-shrink: 0; }
.rss-services-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
.rss-vision { background: #fffbe6; border-left: 4px solid #f5c842; border-radius: 8px; padding: 14px 16px; margin-bottom: 16px; }
.rss-vision-label { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: #c8860a; margin-bottom: 6px; }
.rss-vision p { font-size: 12.5px; line-height: 1.7; color: #4a3800; margin: 0; }
@media(max-width:900px) {
  .rss-two-grid { grid-template-columns: 1fr !important; }
  .rss-services-cols { grid-template-columns: 1fr !important; }
}

/* ═══ HERO TEXT ANIMATIONS ═══ */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes heroPop {
  0%   { opacity: 0; transform: scale(0.85); }
  70%  { transform: scale(1.04); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes heroSlideRight {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes heroGlow {
  0%, 100% { text-shadow: 0 0 20px rgba(77,197,183,0.4); }
  50%       { text-shadow: 0 0 40px rgba(77,197,183,0.9), 0 0 80px rgba(77,197,183,0.3); }
}

.hero-badge-pill {
  animation: heroPop 0.6s ease both;
  animation-delay: 0.1s;
  opacity: 0;
  animation-fill-mode: forwards;
}
.hero-overlay-h1 {
  animation: heroFadeUp 0.7s ease both;
  animation-delay: 0.3s;
  opacity: 0;
  animation-fill-mode: forwards;
}
.hero-overlay-h1 em {
  animation: heroGlow 3s ease-in-out infinite;
  animation-delay: 1.2s;
  display: inline-block;
}
.hero-overlay-sub {
  animation: heroFadeLeft 0.7s ease both;
  animation-delay: 0.55s;
  opacity: 0;
  animation-fill-mode: forwards;
}
.hero-overlay-cats {
  animation: heroFadeUp 0.6s ease both;
  animation-delay: 0.75s;
  opacity: 0;
  animation-fill-mode: forwards;
}
.hero-overlay-cat:nth-child(1) { animation: heroPop 0.5s ease both; animation-delay: 0.9s; opacity:0; animation-fill-mode:forwards; }
.hero-overlay-cat:nth-child(2) { animation: heroPop 0.5s ease both; animation-delay: 1.0s; opacity:0; animation-fill-mode:forwards; }
.hero-overlay-cat:nth-child(3) { animation: heroPop 0.5s ease both; animation-delay: 1.1s; opacity:0; animation-fill-mode:forwards; }
.hero-overlay-cat:nth-child(4) { animation: heroPop 0.5s ease both; animation-delay: 1.2s; opacity:0; animation-fill-mode:forwards; }
.hero-overlay-actions {
  animation: heroFadeUp 0.6s ease both;
  animation-delay: 1.3s;
  opacity: 0;
  animation-fill-mode: forwards;
}
.hero-overlay-stats {
  animation: heroSlideRight 0.7s ease both;
  animation-delay: 1.5s;
  opacity: 0;
  animation-fill-mode: forwards;
}
.hero-overlay-stat {
  position: relative;
}
.hero-overlay-stat::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #f5c842;
  animation: statUnderline 0.5s ease forwards;
  animation-delay: 1.8s;
}
@keyframes statUnderline {
  to { width: 100%; }
}
.hos-num {
  animation: heroPop 0.5s ease both;
  animation-delay: 1.6s;
  opacity: 0;
  animation-fill-mode: forwards;
  display: inline-block;
}

/* ═══ VISION BANNER UPDATED STYLE ═══ */
.rss-vision-label {
  font-size: 11px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  color: #c8860a !important;
  margin-bottom: 8px !important;
}
