/* =========================================================
   BODHI INNOVATION TECH — Design System
   Signature concept: "Growth Circuits" — the logo's radiating
   leaves reimagined as branching circuit traces. This motif
   (organic-meets-digital growth lines) recurs as section
   dividers, the hero background, and card corner accents,
   tying the meditation/tree mark to a robotics & AI brand.
   ========================================================= */

:root{
  /* --- Color tokens --- */
  --navy-950:#060B18;
  --navy-900:#0A1128;
  --navy-800:#101A38;
  --blue-700:#0B5ED7;
  --blue-600:#1668E0;
  --cyan-400:#00C2FF;
  --indigo-500:#4F46E5;
  --leaf-600:#1E6B34;
  --leaf-400:#3E9B57;
  --ink-900:#1A2233;
  --ink-600:#4B5568;
  --ink-400:#7C8AA0;
  --mist-50:#F5F9FF;
  --mist-100:#EAF3FF;
  --white:#FFFFFF;

  /* --- Gradients --- */
  --grad-primary: linear-gradient(120deg, var(--blue-700) 0%, var(--indigo-500) 55%, var(--cyan-400) 100%);
  --grad-dark: radial-gradient(120% 120% at 20% 0%, #14224A 0%, var(--navy-900) 45%, var(--navy-950) 100%);
  --grad-mist: linear-gradient(180deg, var(--mist-50) 0%, var(--white) 100%);

  /* --- Type --- */
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* --- Layout --- */
  --container: 1220px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 20px 60px -20px rgba(11,94,215,0.25);
  --shadow-card: 0 10px 30px -12px rgba(16,26,56,0.18);
  --ease: cubic-bezier(.22,1,.36,1);
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}

*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  font-family:var(--font-body);
  color:var(--ink-900);
  background:var(--white);
  overflow-x:hidden;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }
button{ font-family:inherit; cursor:pointer; border:none; background:none; }
h1,h2,h3,h4{ font-family:var(--font-head); font-weight:700; color:var(--navy-900); line-height:1.15; letter-spacing:-0.01em; }
:focus-visible{ outline:3px solid var(--cyan-400); outline-offset:3px; border-radius:4px; }

.container{ width:100%; max-width:var(--container); margin:0 auto; padding:0 24px; }
.section{ padding:110px 0; position:relative; }
.section-tight{ padding:70px 0; }
.section-mist{ background:var(--grad-mist); }
.section-dark{ background:var(--grad-dark); color:#DCE4F5; }
.section-dark h2, .section-dark h3, .section-dark h4{ color:var(--white); }

.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-head); font-weight:600; font-size:12.5px;
  letter-spacing:0.14em; text-transform:uppercase; color:var(--blue-700);
  background:var(--mist-100); padding:8px 16px; border-radius:100px;
  margin-bottom:18px;
}
.section-dark .eyebrow{ background:rgba(0,194,255,0.12); color:var(--cyan-400); }
.eyebrow::before{ content:''; width:6px; height:6px; border-radius:50%; background:var(--cyan-400); }

.h2{ font-size:clamp(28px,4vw,44px); margin-bottom:16px; }
.h3{ font-size:clamp(20px,2.6vw,26px); }
.lede{ font-size:18px; color:var(--ink-600); max-width:640px; }
.section-dark .lede{ color:#AEBBDA; }
.center{ text-align:center; margin-left:auto; margin-right:auto; }

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  font-family:var(--font-head); font-weight:600; font-size:15px;
  padding:15px 30px; border-radius:100px; position:relative; overflow:hidden;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease);
  white-space:nowrap;
}
.btn-primary{ background:var(--grad-primary); color:var(--white); box-shadow:var(--shadow-soft); }
.btn-primary:hover{ transform:translateY(-3px); box-shadow:0 24px 50px -14px rgba(11,94,215,0.45); }
.btn-ghost{ background:rgba(255,255,255,0.06); color:var(--white); border:1.5px solid rgba(255,255,255,0.35); backdrop-filter:blur(6px); }
.btn-ghost:hover{ background:rgba(255,255,255,0.14); transform:translateY(-3px); }
.btn-outline{ background:transparent; color:var(--blue-700); border:1.5px solid rgba(11,94,215,0.35); }
.btn-outline:hover{ background:var(--mist-100); transform:translateY(-3px); }
.btn-ripple::after{
  content:''; position:absolute; inset:0; border-radius:inherit;
  background:radial-gradient(circle, rgba(255,255,255,0.5) 0%, transparent 60%);
  opacity:0; transform:scale(0.4); transition:opacity .5s, transform .5s;
}
.btn-ripple:active::after{ opacity:1; transform:scale(1.6); transition:0s; }

/* Header */
.site-header{
  position:fixed; top:0; left:0; width:100%; z-index:1000;
  padding:20px 0; transition:background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header .container{ display:flex; align-items:center; justify-content:space-between; }
.site-header.solid{ background:rgba(255,255,255,0.92); backdrop-filter:blur(14px); padding:12px 0; box-shadow:0 4px 30px -10px rgba(16,26,56,0.15); }
.brand{ display:flex; align-items:center; gap:12px; }
.brand img{ height:46px; width:auto; transition:height .4s var(--ease); }
.site-header.solid .brand img{ height:38px; }
.brand-text{ font-family:var(--font-head); font-weight:700; font-size:16px; line-height:1.15; color:var(--white); transition:color .4s; }
.site-header.solid .brand-text{ color:var(--navy-900); }
.brand-text span{ display:block; font-size:10.5px; font-weight:500; letter-spacing:.12em; color:var(--cyan-400); text-transform:uppercase; }

.nav-desktop{ display:flex; align-items:center; gap:38px; }
.nav-desktop a{
  font-family:var(--font-head); font-size:14.5px; font-weight:600; color:rgba(255,255,255,0.9);
  position:relative; padding:6px 0; transition:color .3s;
}
.site-header.solid .nav-desktop a{ color:var(--ink-900); }
.nav-desktop a::after{
  content:''; position:absolute; left:0; bottom:-2px; width:0; height:2px; background:var(--grad-primary);
  transition:width .35s var(--ease);
}
.nav-desktop a:hover::after, .nav-desktop a.active::after{ width:100%; }
.nav-desktop a.active{ color:var(--cyan-400); }
.site-header.solid .nav-desktop a.active{ color:var(--blue-700); }
.header-cta{ display:flex; align-items:center; gap:16px; }
.header-cta .btn{ padding:12px 24px; font-size:14px; }

.nav-toggle{ display:none; flex-direction:column; gap:5px; width:26px; z-index:1100; }
.nav-toggle span{ height:2.5px; width:100%; background:var(--white); border-radius:2px; transition:.35s; }
.site-header.solid .nav-toggle span{ background:var(--navy-900); }

@media (max-width:960px){
  .nav-desktop{
    position:fixed; inset:0 0 0 30%; background:var(--navy-900); flex-direction:column; justify-content:center;
    gap:28px; transform:translateX(100%); transition:transform .5s var(--ease); padding:40px;
  }
  .nav-desktop.open{ transform:translateX(0); }
  .nav-desktop a{ color:var(--white); font-size:20px; }
  .header-cta .btn-outline{ display:none; }
  .nav-toggle{ display:flex; }
  .nav-toggle.open span:nth-child(1){ transform:translateY(7.5px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2){ opacity:0; }
  .nav-toggle.open span:nth-child(3){ transform:translateY(-7.5px) rotate(-45deg); }
}

/* Hero */
.hero{
  position:relative; min-height:100vh; display:flex; align-items:center;
  background:var(--grad-dark); color:var(--white); overflow:hidden;
  padding-top:120px; padding-bottom:80px;
}
.hero-canvas{ position:absolute; inset:0; z-index:0; opacity:.85; }
.hero-glow{ position:absolute; width:640px; height:640px; border-radius:50%; filter:blur(120px); opacity:.35; z-index:0; }
.hero-glow.g1{ background:var(--blue-700); top:-200px; left:-150px; }
.hero-glow.g2{ background:var(--cyan-400); bottom:-220px; right:-120px; }
.hero .container{ position:relative; z-index:2; }
.hero-grid{ display:grid; grid-template-columns:1.1fr .9fr; gap:60px; align-items:center; }
.hero-badge{
  display:inline-flex; align-items:center; gap:10px; padding:9px 18px; border-radius:100px;
  background:rgba(255,255,255,0.07); border:1px solid rgba(255,255,255,0.18); backdrop-filter:blur(10px);
  font-size:13px; font-weight:600; letter-spacing:.05em; margin-bottom:26px; color:#CFE0FF;
}
.hero-badge .dot{ width:7px; height:7px; border-radius:50%; background:var(--cyan-400); box-shadow:0 0 10px var(--cyan-400); }
.hero h1{ font-size:clamp(34px,5.2vw,62px); color:var(--white); margin-bottom:22px; }
.hero h1 .accent{ background:var(--grad-primary); -webkit-background-clip:text; background-clip:text; color:transparent; }
.hero p.lede{ color:#B9C6E4; margin-bottom:36px; max-width:560px; }
.hero-ctas{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom:50px; }
.hero-stats{ display:flex; gap:38px; flex-wrap:wrap; }
.hero-stats div{ }
.hero-stats strong{ display:block; font-family:var(--font-head); font-size:26px; color:var(--white); }
.hero-stats span{ font-size:12.5px; color:#93A4C9; letter-spacing:.03em; }
.hero-visual{ position:relative; }
.hero-visual .orb{
  position:relative; width:100%; aspect-ratio:1/1; max-width:480px; margin:0 auto;
  border-radius:50%; background:radial-gradient(circle at 35% 30%, rgba(0,194,255,0.18), rgba(11,94,215,0.05) 60%, transparent 70%);
  border:1px solid rgba(255,255,255,0.12);
}
.hero-visual .ring{ position:absolute; inset:0; border-radius:50%; border:1px dashed rgba(0,194,255,0.35); animation:spin 40s linear infinite; }
.hero-visual .ring.r2{ inset:40px; animation-duration:55s; animation-direction:reverse; border-color:rgba(79,70,229,0.35); }
@keyframes spin{ to{ transform:rotate(360deg); } }
.hero-visual .float-chip{
  position:absolute; padding:12px 16px; border-radius:14px; background:rgba(16,26,56,0.7); backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,0.15); font-size:13px; font-weight:600; color:#EAF3FF; display:flex; align-items:center; gap:8px;
  animation:floaty 6s ease-in-out infinite;
}
.hero-visual .float-chip svg{ width:16px; height:16px; color:var(--cyan-400); }
@keyframes floaty{ 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(-14px);} }
.scroll-cue{ position:absolute; bottom:34px; left:50%; transform:translateX(-50%); display:flex; flex-direction:column; align-items:center; gap:8px; z-index:2; }
.scroll-cue .line{ width:1px; height:38px; background:linear-gradient(var(--cyan-400), transparent); animation:pulse 2s infinite; }
@keyframes pulse{ 0%,100%{opacity:.3;} 50%{opacity:1;} }
.scroll-cue span{ font-size:10.5px; letter-spacing:.18em; color:#8AA0CC; text-transform:uppercase; }

/* Reveal animations */
[data-reveal]{ opacity:0; transform:translateY(34px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].in{ opacity:1; transform:none; }
[data-reveal="left"]{ transform:translateX(-40px); }
[data-reveal="left"].in{ transform:none; }
[data-reveal="right"]{ transform:translateX(40px); }
[data-reveal="right"].in{ transform:none; }
[data-reveal="zoom"]{ transform:scale(0.9); }
[data-reveal="zoom"].in{ transform:scale(1); }
.stagger > *{ transition-delay:calc(var(--i,0) * 90ms); }

/* Section heading block */
.section-head{ max-width:680px; margin-bottom:60px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }

/* About preview / split */
.split{ display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:center; }
.split-media{ position:relative; }
.split-media img{ border-radius:var(--radius-lg); box-shadow:var(--shadow-card); position:relative; z-index:1; }
.split-media .frame{
  position:absolute; inset:20px -20px -20px 20px; border:2px solid var(--blue-700); border-radius:var(--radius-lg); z-index:0; opacity:.5;
}
.stat-chip{
  position:absolute; bottom:-26px; left:-26px; background:var(--white); padding:18px 22px; border-radius:16px; box-shadow:var(--shadow-card);
  display:flex; gap:12px; align-items:center; z-index:2;
}
.stat-chip strong{ display:block; font-family:var(--font-head); font-size:22px; color:var(--blue-700); }
.stat-chip span{ font-size:12px; color:var(--ink-600); }
.check-list{ margin-top:24px; display:grid; gap:14px; }
.check-list li{ display:flex; gap:12px; align-items:flex-start; font-size:15px; color:var(--ink-600); }
.check-list li svg{ flex-shrink:0; width:20px; height:20px; color:var(--leaf-600); margin-top:2px; }

/* Cards grid — Why Choose Us */
.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.grid-4{ display:grid; grid-template-columns:repeat(4,1fr); gap:26px; }
.grid-2{ display:grid; grid-template-columns:1fr 1fr; gap:28px; }

.feature-card{
  background:var(--white); border-radius:var(--radius-md); padding:34px 30px; box-shadow:var(--shadow-card);
  border:1px solid #EEF2FA; transition:transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s;
  position:relative; overflow:hidden;
}
.feature-card::before{
  content:''; position:absolute; top:0; left:0; width:100%; height:3px; background:var(--grad-primary);
  transform:scaleX(0); transform-origin:left; transition:transform .5s var(--ease);
}
.feature-card:hover{ transform:translateY(-8px); box-shadow:0 26px 50px -18px rgba(16,26,56,0.22); border-color:transparent; }
.feature-card:hover::before{ transform:scaleX(1); }
.icon-wrap{
  width:56px; height:56px; border-radius:16px; display:flex; align-items:center; justify-content:center; margin-bottom:20px;
  background:linear-gradient(135deg, var(--mist-100), #E4EEFF); color:var(--blue-700); transition:transform .4s var(--ease), background .4s;
}
.feature-card:hover .icon-wrap{ transform:rotate(-8deg) scale(1.08); background:var(--grad-primary); color:var(--white); }
.icon-wrap svg{ width:26px; height:26px; }
.feature-card h3{ font-size:18.5px; margin-bottom:10px; }
.feature-card p{ font-size:14.5px; color:var(--ink-600); }

/* Services preview cards (dark section variant) */
.service-card{
  background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.09); border-radius:var(--radius-md);
  padding:32px 28px; transition:transform .45s var(--ease), background .45s, border-color .45s;
}
.service-card:hover{ transform:translateY(-8px); background:rgba(255,255,255,0.08); border-color:rgba(0,194,255,0.35); }
.service-card .icon-wrap{ background:rgba(0,194,255,0.1); color:var(--cyan-400); }
.service-card:hover .icon-wrap{ background:var(--grad-primary); color:var(--white); }
.service-card h3{ color:var(--white); font-size:18px; margin-bottom:8px; }
.service-card p{ color:#A9B7D6; font-size:14px; margin-bottom:16px; }
.service-card a{ font-size:13.5px; font-weight:600; color:var(--cyan-400); display:inline-flex; align-items:center; gap:6px; }
.service-card a svg{ width:14px; height:14px; transition:transform .3s; }
.service-card a:hover svg{ transform:translateX(4px); }

/* Stats counters */
.stats-band{ background:var(--white); border-radius:var(--radius-lg); box-shadow:var(--shadow-card); padding:52px 20px; margin-top:-1px; position:relative; z-index:2; }
.stats-band .grid-4{ text-align:center; }
.stat-num{ font-family:var(--font-head); font-weight:700; font-size:clamp(30px,4vw,46px); color:var(--navy-900); background:var(--grad-primary); -webkit-background-clip:text; background-clip:text; color:transparent; }
.stat-label{ font-size:13.5px; color:var(--ink-600); font-weight:600; margin-top:6px; }

/* Process timeline */
.process-track{ display:flex; justify-content:space-between; align-items:flex-start; position:relative; gap:10px; flex-wrap:wrap; }
.process-track::before{
  content:''; position:absolute; top:34px; left:0; right:0; height:2px; background:repeating-linear-gradient(90deg, rgba(11,94,215,.35) 0 10px, transparent 10px 20px);
  z-index:0;
}
.process-step{ position:relative; z-index:1; text-align:center; flex:1; min-width:120px; }
.process-step .dot{
  width:68px; height:68px; border-radius:50%; background:var(--white); border:2px solid var(--mist-100); box-shadow:var(--shadow-card);
  display:flex; align-items:center; justify-content:center; margin:0 auto 16px; color:var(--blue-700); transition:.4s var(--ease);
}
.process-step:hover .dot{ background:var(--grad-primary); color:var(--white); transform:scale(1.1); }
.process-step h4{ font-size:15px; }

/* Testimonials */
.tcarousel{ position:relative; overflow:hidden; }
.ttrack{ display:flex; gap:26px; transition:transform .6s var(--ease); }
.tcard{
  flex:0 0 auto; width:min(420px,86vw); background:var(--white); border-radius:var(--radius-md); padding:32px; box-shadow:var(--shadow-card);
  border:1px solid #EEF2FA;
}
.tcard .stars{ color:#F5A623; font-size:15px; letter-spacing:2px; margin-bottom:14px; }
.tcard p{ font-size:15px; color:var(--ink-600); margin-bottom:20px; }
.tcard .who{ display:flex; align-items:center; gap:12px; }
.avatar{ width:44px; height:44px; border-radius:50%; background:var(--grad-primary); color:#fff; display:flex; align-items:center; justify-content:center; font-family:var(--font-head); font-weight:700; }
.tcard .who strong{ display:block; font-size:14.5px; }
.tcard .who span{ font-size:12.5px; color:var(--ink-400); }
.tnav{ display:flex; gap:12px; justify-content:center; margin-top:34px; }
.tnav button{ width:42px; height:42px; border-radius:50%; border:1.5px solid #DEE7F7; display:flex; align-items:center; justify-content:center; transition:.3s; color:var(--blue-700); }
.tnav button:hover{ background:var(--grad-primary); color:#fff; border-color:transparent; }

/* Partners marquee */
.marquee{ overflow:hidden; position:relative; -webkit-mask-image:linear-gradient(90deg,transparent,#000 10%,#000 90%,transparent); mask-image:linear-gradient(90deg,transparent,#000 10%,#000 90%,transparent); }
.marquee-track{ display:flex; gap:70px; width:max-content; animation:scroll-left 28s linear infinite; align-items:center; }
.marquee-track img,.marquee-track .plogo{ height:34px; opacity:.55; filter:grayscale(1); transition:.3s; }
.marquee-track .plogo{ font-family:var(--font-head); font-weight:700; font-size:20px; color:var(--ink-400); height:auto; }
@keyframes scroll-left{ to{ transform:translateX(-50%); } }

/* CTA band */
.cta-band{
  background:var(--grad-primary); border-radius:var(--radius-lg); padding:64px 50px; text-align:center; position:relative; overflow:hidden;
  color:#fff;
}
.cta-band h2{ color:#fff; margin-bottom:14px; }
.cta-band p{ color:rgba(255,255,255,0.85); margin-bottom:32px; }
.cta-band .btn-primary{ background:var(--white); color:var(--blue-700); box-shadow:0 20px 50px -14px rgba(0,0,0,0.3); }
.cta-band .btn-ghost{ }

/* Footer */
.site-footer{ background:var(--navy-950); color:#9FB0D0; padding:80px 0 0; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:50px; padding-bottom:60px; border-bottom:1px solid rgba(255,255,255,0.08); }
.footer-brand{ display:flex; gap:12px; align-items:center; margin-bottom:16px; }
.footer-brand img{ height:42px; background:#fff; border-radius:10px; padding:4px; }
.footer-brand strong{ color:#fff; font-family:var(--font-head); }
.site-footer p{ font-size:14px; line-height:1.7; max-width:320px; }
.site-footer h4{ color:#fff; font-size:15px; margin-bottom:20px; }
.footer-links{ display:grid; gap:12px; }
.footer-links a{ font-size:14px; transition:.3s; }
.footer-links a:hover{ color:var(--cyan-400); padding-left:4px; }
.footer-contact li{ display:flex; gap:10px; font-size:14px; margin-bottom:14px; align-items:flex-start; }
.footer-contact svg{ width:17px; height:17px; color:var(--cyan-400); flex-shrink:0; margin-top:2px; }
.social-row{ display:flex; gap:12px; margin-top:20px; }
.social-row a{ width:38px; height:38px; border-radius:50%; border:1px solid rgba(255,255,255,0.15); display:flex; align-items:center; justify-content:center; transition:.3s; }
.social-row a:hover{ background:var(--grad-primary); border-color:transparent; transform:translateY(-3px); }
.social-row svg{ width:16px; height:16px; }
.newsletter{ display:flex; margin-top:14px; border-radius:100px; overflow:hidden; border:1px solid rgba(255,255,255,0.15); }
.newsletter input{ flex:1; background:transparent; border:none; padding:13px 18px; color:#fff; font-size:13.5px; }
.newsletter input::placeholder{ color:#7488AC; }
.newsletter button{ background:var(--grad-primary); color:#fff; padding:0 20px; font-weight:600; font-size:13px; }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding:26px 0; font-size:13px; flex-wrap:wrap; gap:10px; }
.footer-bottom a{ margin-left:18px; }

/* WhatsApp + back to top */
.float-actions{ position:fixed; right:24px; bottom:24px; z-index:900; display:flex; flex-direction:column; gap:14px; align-items:center; }
.fab{
  width:56px; height:56px; border-radius:50%; display:flex; align-items:center; justify-content:center; box-shadow:0 14px 30px -8px rgba(16,26,56,0.4);
  transition:transform .3s var(--ease); color:#fff;
}
.fab:hover{ transform:translateY(-4px) scale(1.05); }
.fab-whatsapp{ background:#25D366; }
.fab-top{ background:var(--white); color:var(--blue-700); width:44px; height:44px; opacity:0; pointer-events:none; transition:.4s; border:1px solid #E3EBFB; }
.fab-top.show{ opacity:1; pointer-events:auto; }
.fab svg{ width:26px; height:26px; }
.fab-top svg{ width:18px; height:18px; }

/* Page hero (inner pages) */
.page-hero{
  background:var(--grad-dark); color:#fff; padding:180px 0 90px; position:relative; overflow:hidden;
}
.page-hero .eyebrow{ background:rgba(0,194,255,0.1); color:var(--cyan-400); }
.page-hero h1{ color:#fff; font-size:clamp(32px,5vw,52px); }
.breadcrumb{ display:flex; gap:8px; align-items:center; font-size:13.5px; color:#93A4C9; margin-top:18px; }
.breadcrumb a{ color:#93A4C9; } .breadcrumb a:hover{ color:var(--cyan-400); }

/* Values / timeline (about) */
.values-grid{ display:grid; grid-template-columns:repeat(5,1fr); gap:20px; }
.value-pill{ text-align:center; padding:30px 16px; border-radius:var(--radius-md); background:var(--white); box-shadow:var(--shadow-card); }
.value-pill .icon-wrap{ margin:0 auto 16px; }
.value-pill h4{ font-size:15px; }

.timeline{ position:relative; padding-left:40px; }
.timeline::before{ content:''; position:absolute; left:9px; top:6px; bottom:6px; width:2px; background:linear-gradient(var(--blue-700), var(--cyan-400)); }
.tl-item{ position:relative; padding-bottom:44px; }
.tl-item:last-child{ padding-bottom:0; }
.tl-item::before{ content:''; position:absolute; left:-40px; top:2px; width:20px; height:20px; border-radius:50%; background:var(--white); border:3px solid var(--blue-700); }
.tl-item .yr{ font-family:var(--font-head); font-weight:700; color:var(--blue-700); font-size:14px; }
.tl-item h4{ margin:6px 0 8px; }
.tl-item p{ color:var(--ink-600); font-size:14.5px; max-width:560px; }

/* Mission/vision cards */
.mv-grid{ display:grid; grid-template-columns:1fr 1fr; gap:28px; }
.mv-card{ padding:40px; border-radius:var(--radius-lg); position:relative; overflow:hidden; }
.mv-card.mission{ background:var(--grad-primary); color:#fff; }
.mv-card.vision{ background:var(--navy-900); color:#fff; }
.mv-card .icon-wrap{ background:rgba(255,255,255,0.15); color:#fff; }
.mv-card h3{ color:#fff; margin-bottom:14px; font-size:22px; }
.mv-card p{ font-size:15px; opacity:.9; }

/* Services page detail */
.service-detail{ display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; padding:70px 0; border-bottom:1px solid #EEF2FA; }
.service-detail:last-child{ border-bottom:none; }
.service-detail.reverse{ direction:rtl; }
.service-detail.reverse > *{ direction:ltr; }
.service-detail .media{ position:relative; border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-card); aspect-ratio:4/3; }
.service-detail .media img{ width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease); }
.service-detail .media:hover img{ transform:scale(1.06); }
.service-detail .num{ font-family:var(--font-head); font-weight:700; font-size:14px; color:var(--cyan-400); background:var(--navy-900); display:inline-block; padding:6px 14px; border-radius:100px; margin-bottom:16px; }
.service-detail ul{ display:grid; gap:12px; margin:22px 0 26px; }
.service-detail ul li{ display:flex; gap:10px; font-size:14.5px; color:var(--ink-600); }
.service-detail ul li svg{ width:18px; height:18px; color:var(--leaf-600); flex-shrink:0; margin-top:2px; }

/* Gallery */
.filter-row{ display:flex; flex-wrap:wrap; gap:12px; margin-bottom:44px; }
.filter-btn{
  padding:10px 22px; border-radius:100px; font-size:13.5px; font-weight:600; border:1.5px solid #E3EBFB; color:var(--ink-600); transition:.3s;
}
.filter-btn.active, .filter-btn:hover{ background:var(--grad-primary); color:#fff; border-color:transparent; }
.masonry{ columns:4 260px; column-gap:20px; }
.masonry-item{ break-inside:avoid; margin-bottom:20px; border-radius:var(--radius-md); overflow:hidden; position:relative; cursor:pointer; box-shadow:var(--shadow-card); }
.masonry-item img{ width:100%; display:block; transition:transform .6s var(--ease); }
.masonry-item:hover img{ transform:scale(1.08); }
.masonry-item .overlay{
  position:absolute; inset:0; background:linear-gradient(0deg, rgba(6,11,24,0.85), transparent 55%); display:flex; align-items:flex-end;
  padding:18px; opacity:0; transition:opacity .4s;
}
.masonry-item:hover .overlay{ opacity:1; }
.masonry-item .overlay span{ color:#fff; font-weight:600; font-size:13.5px; }
.masonry-item[data-cat]{ display:block; }
.masonry-item.hide{ display:none; }

.lightbox{ position:fixed; inset:0; background:rgba(6,11,24,0.92); z-index:2000; display:flex; align-items:center; justify-content:center; opacity:0; pointer-events:none; transition:opacity .35s; padding:30px; }
.lightbox.open{ opacity:1; pointer-events:auto; }
.lightbox img{ max-width:min(900px,90vw); max-height:82vh; border-radius:14px; }
.lightbox-close{ position:absolute; top:26px; right:30px; width:44px; height:44px; border-radius:50%; background:rgba(255,255,255,0.1); color:#fff; display:flex; align-items:center; justify-content:center; }

.video-card{ position:relative; border-radius:var(--radius-lg); overflow:hidden; aspect-ratio:16/9; box-shadow:var(--shadow-card); }
.video-card img{ width:100%; height:100%; object-fit:cover; }
.video-card .play{
  position:absolute; inset:0; display:flex; align-items:center; justify-content:center; background:rgba(6,11,24,0.35);
}
.video-card .play span{ width:76px; height:76px; border-radius:50%; background:rgba(255,255,255,0.15); backdrop-filter:blur(6px); border:1px solid rgba(255,255,255,0.4); display:flex; align-items:center; justify-content:center; transition:.3s; }
.video-card:hover .play span{ background:var(--grad-primary); transform:scale(1.1); }
.video-card svg{ width:26px; height:26px; color:#fff; margin-left:4px; }

/* Contact page */
.contact-grid{ display:grid; grid-template-columns:0.9fr 1.1fr; gap:50px; }
.contact-card-list{ display:grid; gap:18px; margin-bottom:30px; }
.info-card{ display:flex; gap:16px; padding:22px; background:var(--white); border-radius:var(--radius-md); box-shadow:var(--shadow-card); align-items:flex-start; }
.info-card h4{ font-size:15px; margin-bottom:4px; }
.info-card p{ font-size:14px; color:var(--ink-600); }
.form-card{ background:var(--white); border-radius:var(--radius-lg); box-shadow:var(--shadow-card); padding:44px; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.field{ margin-bottom:20px; position:relative; }
.field label{ display:block; font-size:13px; font-weight:600; color:var(--ink-900); margin-bottom:8px; }
.field input, .field textarea{
  width:100%; padding:14px 16px; border-radius:12px; border:1.5px solid #E3EBFB; font-family:inherit; font-size:14.5px; color:var(--ink-900);
  transition:border-color .3s, box-shadow .3s; background:var(--mist-50);
}
.field input:focus, .field textarea:focus{ border-color:var(--blue-700); box-shadow:0 0 0 4px rgba(11,94,215,0.12); outline:none; background:#fff; }
.field textarea{ resize:vertical; min-height:120px; }
.field .err{ font-size:12.5px; color:#E0483C; margin-top:6px; display:none; }
.field.invalid input, .field.invalid textarea{ border-color:#E0483C; }
.field.invalid .err{ display:block; }
.form-note{ font-size:13px; color:var(--ink-400); margin-top:8px; }
.form-success{ display:none; padding:18px 20px; border-radius:14px; background:#E9F8EF; color:#1E6B34; font-size:14px; font-weight:600; margin-bottom:20px; align-items:center; gap:10px; }
.form-success.show{ display:flex; }
.map-wrap{ border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-card); margin-top:26px; }
.map-wrap iframe{ width:100%; height:340px; border:0; display:block; filter:grayscale(0.15); }
.office-tabs{ display:flex; gap:10px; margin-bottom:24px; }
.office-tab{ padding:10px 20px; border-radius:100px; font-size:13.5px; font-weight:600; border:1.5px solid #E3EBFB; color:var(--ink-600); }
.office-tab.active{ background:var(--navy-900); color:#fff; border-color:transparent; }
.office-panel{ display:none; }
.office-panel.active{ display:block; }
.hours-list{ display:grid; gap:8px; font-size:14px; color:var(--ink-600); }

/* Responsive */
@media (max-width:1080px){
  .grid-4{ grid-template-columns:repeat(2,1fr); }
  .grid-3{ grid-template-columns:repeat(2,1fr); }
  .values-grid{ grid-template-columns:repeat(3,1fr); }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .masonry{ columns:3 220px; }
}
@media (max-width:860px){
  .hero-grid{ grid-template-columns:1fr; }
  .hero-visual{ display:none; }
  .split{ grid-template-columns:1fr; }
  .service-detail{ grid-template-columns:1fr; padding:50px 0; }
  .service-detail.reverse{ direction:ltr; }
  .service-detail .media{ order:-1; }
  .contact-grid{ grid-template-columns:1fr; }
  .mv-grid{ grid-template-columns:1fr; }
  .values-grid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:640px){
  .section{ padding:70px 0; }
  .grid-3,.grid-4{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; }
  .form-row{ grid-template-columns:1fr; }
  .masonry{ columns:2 160px; }
  .values-grid{ grid-template-columns:repeat(2,1fr); }
  .process-track{ flex-direction:column; align-items:flex-start; gap:34px; }
  .process-track::before{ display:none; }
  .stats-band{ padding:40px 20px; }
}
