/* =========================================================
   EDUBEAM — Brand Design System v2
   Colors sourced from VEPL Logo:
     Deep Navy  #003087  (book spine / "edutainment" text)
     Mid Blue   #0076BC  (person figure)
     Sky Blue   #5BBCD8  (book wings — USER THEME)
     Red        #CC2020  (VALUABLE text)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand palette from logo */
  --navy:          #003087;
  --navy-dark:     #001f5b;
  --navy-deeper:   #001240;
  --blue:          #0076BC;
  --sky:           #5BBCD8;   /* light blue — primary theme */
  --sky-light:     #A8DCEF;
  --sky-pale:      #E0F4FA;
  --red:           #CC2020;
  --red-dark:      #A81818;

  /* UI tokens */
  --primary:       var(--navy);
  --primary-light: var(--blue);
  --accent:        var(--sky);
  --cta:           var(--red);

  --dark:          #001240;
  --text-dark:     #0D1F3C;
  --text-mid:      #2C4A6E;
  --text-muted:    #5A7A9A;
  --white:         #FFFFFF;
  --off-white:     #F8FCFE;
  --light-bg:      #EBF7FC;
  --card-bg:       #FFFFFF;
  --border:        #C5E3F0;
  --border-light:  #E2F0F7;

  /* Gradients */
  --grad-navy:     linear-gradient(135deg, #001240 0%, #003087 55%, #005BAA 100%);
  --grad-blue:     linear-gradient(135deg, #003087, #0076BC);
  --grad-sky:      linear-gradient(135deg, #5BBCD8, #3AAAC5);
  --grad-red:      linear-gradient(135deg, #CC2020, #A81818);
  --grad-light:    linear-gradient(135deg, #EBF7FC, #D0EDF8);

  /* Shadows */
  --shadow-xs:  0 1px 4px rgba(0, 48, 135, 0.08);
  --shadow-sm:  0 2px 10px rgba(0, 48, 135, 0.10);
  --shadow-md:  0 6px 24px rgba(0, 48, 135, 0.13);
  --shadow-lg:  0 12px 48px rgba(0, 48, 135, 0.18);
  --shadow-xl:  0 24px 64px rgba(0, 48, 135, 0.22);
  --shadow-sky: 0 6px 24px rgba(91, 188, 216, 0.30);
  --shadow-red: 0 6px 24px rgba(204, 32, 32, 0.30);

  /* Radii */
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  32px;
  --r-2xl: 48px;

  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text-dark); background: #fff; line-height: 1.65; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4, h5 { font-family: 'Poppins', sans-serif; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.65rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { color: var(--text-muted); line-height: 1.78; }

/* ── Utility ────────────────────────────────────────────── */
.container      { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--wide{ max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.section        { padding: 96px 0; }
.section--sm    { padding: 64px 0; }
.section--lg    { padding: 120px 0; }
.bg-light       { background: var(--light-bg); }
.bg-pale        { background: var(--sky-pale); }
.bg-white       { background: #fff; }

.section-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(91, 188, 216, 0.12);
  border: 1px solid rgba(91, 188, 216, 0.30);
  color: var(--blue); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 50px; margin-bottom: 14px;
}
.section-tag i { font-size: 0.85rem; color: var(--sky); }

.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { font-size: 1.05rem; }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--r-sm);
  font-size: 0.9rem; font-weight: 700; letter-spacing: 0.01em;
  transition: all var(--transition); white-space: nowrap;
  font-family: 'Inter', sans-serif;
}
/* Sky blue — primary theme button */
.btn--sky {
  background: var(--grad-sky); color: #fff;
  box-shadow: var(--shadow-sky);
}
.btn--sky:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(91,188,216,0.45); }

/* Red — strong CTA */
.btn--red {
  background: var(--grad-red); color: #fff;
  box-shadow: var(--shadow-red);
}
.btn--red:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(204,32,32,0.45); }

/* Navy — secondary */
.btn--navy {
  background: var(--grad-blue); color: #fff;
  box-shadow: var(--shadow-md);
}
.btn--navy:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* Outline on dark bg */
.btn--outline {
  border: 2px solid rgba(255,255,255,0.55); color: #fff;
  backdrop-filter: blur(4px);
}
.btn--outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

/* Outline on light bg */
.btn--ghost {
  border: 2px solid var(--sky); color: var(--blue);
}
.btn--ghost:hover { background: var(--sky); color: #fff; }

.btn--lg { padding: 15px 34px; font-size: 1rem; }
.btn--sm { padding: 9px 18px; font-size: 0.82rem; }

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 12px 0; transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(0, 18, 64, 0.97);
  backdrop-filter: blur(20px);
  padding: 8px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.navbar__inner {
  display: flex; align-items: center; justify-content: space-between;
}

/* Logo: actual VEPL image */
.navbar__logo {
  display: flex; align-items: center; gap: 10px;
}
.navbar__logo-img {
  height: 46px; width: auto;
  background: #fff;
  border-radius: 6px;
  padding: 3px 6px;
}

.navbar__logo-text {
  font-family: 'Poppins', sans-serif; font-weight: 800;
  font-size: 1.4rem; color: #fff; line-height: 1;
}
.navbar__logo-text small {
  display: block; font-size: 0.62rem; font-weight: 500;
  color: var(--sky-light); letter-spacing: 0.06em;
  text-transform: uppercase;
}

.navbar__nav { display: flex; align-items: center; gap: 2px; }
.navbar__nav a {
  color: rgba(255,255,255,0.82); padding: 8px 13px;
  border-radius: var(--r-sm); font-size: 0.875rem; font-weight: 500;
  transition: all var(--transition);
}
.navbar__nav a:hover { color: #fff; background: rgba(255,255,255,0.10); }
.navbar__nav a.active { color: var(--sky); font-weight: 600; background: rgba(91,188,216,0.14); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown > a { display: flex; align-items: center; gap: 4px; cursor: pointer; }
.dropdown__menu {
  display: none; position: absolute; top: 100%; left: 0;
  padding-top: 10px; /* gap bridge — keeps menu open when cursor crosses the gap */
  background: transparent;
  min-width: 250px; z-index: 2000;
}
.dropdown__menu-inner {
  background: #fff; border-radius: var(--r-md);
  box-shadow: var(--shadow-xl); padding: 8px;
  border: 1px solid var(--border-light);
}
.dropdown:hover .dropdown__menu,
.dropdown.open .dropdown__menu { display: block; }
.dropdown__menu a {
  display: flex; align-items: center; gap: 10px;
  color: var(--text-dark) !important; padding: 10px 14px;
  border-radius: var(--r-sm); font-size: 0.85rem; font-weight: 500;
}
.dropdown__menu a:hover { background: var(--light-bg); color: var(--blue) !important; }
.dropdown__menu a i { width: 18px; color: var(--sky); font-size: 0.9rem; }

.navbar__cta { display: flex; align-items: center; gap: 10px; margin-left: 16px; }
.navbar__toggle { display: none; flex-direction: column; gap: 5px; width: 26px; cursor: pointer; }
.navbar__toggle span { display: block; height: 2px; background: #fff; border-radius: 4px; transition: all var(--transition); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  min-height: 100vh; position: relative;
  background: var(--grad-navy);
  display: flex; align-items: center;
  padding: 100px 0 40px; overflow: hidden;
}

/* Animated dot grid */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(91,188,216,0.18) 1px, transparent 1px);
  background-size: 44px 44px;
  animation: dotDrift 25s linear infinite;
}
@keyframes dotDrift { from { transform: translate(0,0); } to { transform: translate(44px,44px); } }

/* Bottom fade to white */
.hero::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 100px; background: linear-gradient(to bottom, transparent, #fff);
}

.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; align-items: center;
}

/* Left: Text */
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(91,188,216,0.15); border: 1px solid rgba(91,188,216,0.35);
  color: var(--sky-light); font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 50px; margin-bottom: 22px;
}
.hero__badge i { color: var(--sky); }

.hero__title { color: #fff; margin-bottom: 10px; font-size: clamp(1.5rem, 2.8vw, 2.2rem); }
.hero__title .highlight {
  background: linear-gradient(135deg, var(--sky), #90D8F0);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero__subtitle {
  color: rgba(255,255,255,0.94);
  font-size: 0.92rem; max-width: 480px; margin-bottom: 20px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
  line-height: 1.75;
}

.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }

.hero__stats { display: flex; gap: 18px; flex-wrap: wrap; }
.hero__stat-num {
  font-family: 'Poppins', sans-serif; font-size: 1.65rem; font-weight: 900; color: #fff;
  display: flex; align-items: baseline; gap: 2px;
}
.hero__stat-num .plus { font-size: 1.1rem; color: var(--sky); }
.hero__stat-label { color: rgba(255,255,255,0.5); font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; margin-top: 1px; }

/* Right: Screen mockup */
.hero__visual { position: relative; margin-top: -60px; }
.hero__screen {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(91,188,216,0.2);
  border-radius: var(--r-lg); padding: 6px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 80px rgba(0,0,0,0.3);
}
.hero__screen-top { display: flex; gap: 6px; margin-bottom: 8px; padding: 0 4px; }
.hero__screen-dot { width: 10px; height: 10px; border-radius: 50%; }
.hero__screen-dot:nth-child(1) { background: #ff5f57; }
.hero__screen-dot:nth-child(2) { background: #febc2e; }
.hero__screen-dot:nth-child(3) { background: #28c840; }
.hero__screen-img { border-radius: var(--r-sm); overflow: hidden; aspect-ratio: 16/9; position: relative; background: #05112a; display: flex; flex-direction: column; }
.hero__screen-img img { width: 100%; height: 100%; object-fit: contain; display: block; }
.hero__screen-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,18,64,0.85));
  display: flex; align-items: flex-end; padding: 18px;
}
.hero__screen-caption { color: #fff; }
.hero__screen-caption strong { display: block; font-size: 0.95rem; font-weight: 700; }
.hero__screen-caption span { font-size: 0.78rem; color: var(--sky-light); }

/* ── Ecosystem Timeline Bar ── */
.eco-timeline {
  display: flex; align-items: center;
  background: rgba(0,10,40,.80); backdrop-filter: blur(8px);
  padding: 5px 10px; gap: 0;
  border-radius: var(--r-sm) var(--r-sm) 0 0;
  border-bottom: 1px solid rgba(91,188,216,.15);
}
.eco-tl-step {
  display: flex; align-items: center; gap: 4px;
  cursor: pointer; flex-shrink: 0; transition: opacity .25s;
  opacity: .4;
}
.eco-tl-step--active  { opacity: 1; }
.eco-tl-step--done    { opacity: .65; }
.eco-tl-num {
  width: 14px; height: 14px; border-radius: 50%;
  background: rgba(91,188,216,.2); border: 1px solid rgba(91,188,216,.4);
  color: rgba(255,255,255,.6); font-size: 0.5rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: all .25s;
}
.eco-tl-step--active .eco-tl-num { background: var(--sky); border-color: var(--sky); color: #fff; }
.eco-tl-step--done .eco-tl-num   { background: rgba(91,188,216,.5); border-color: var(--sky); color: #fff; }
.eco-tl-label {
  font-size: 0.52rem; font-weight: 700; color: rgba(255,255,255,.55);
  text-transform: uppercase; letter-spacing: .06em; white-space: nowrap;
  transition: color .25s;
}
.eco-tl-step--active .eco-tl-label { color: var(--sky-light); }
.eco-tl-line {
  flex: 1; height: 1.5px; background: rgba(255,255,255,.1);
  margin: 0 5px; border-radius: 2px; overflow: hidden; min-width: 12px;
}
.eco-tl-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--sky), #90D8F0);
  border-radius: 2px;
}

/* ── Ecosystem Carousel ── */
.eco-carousel { position: relative; width: 100%; flex: 1 1 auto; min-height: 0; }
.eco-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .9s ease;
  pointer-events: none;
}
.eco-slide--active { opacity: 1; pointer-events: auto; z-index: 1; }
.eco-slide img { width: 100%; height: 100%; object-fit: contain; display: block; }


/* Progress bar */
.eco-progress {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: rgba(255,255,255,.15); z-index: 10;
}
.eco-progress__bar {
  height: 100%; width: 0%; background: var(--sky);
  border-radius: 0 2px 2px 0;
}

/* Floating info chips */
.hero__chip {
  position: absolute;
  background: rgba(255,255,255,0.96);
  border-radius: var(--r-md); padding: 12px 16px;
  box-shadow: var(--shadow-xl);
  display: flex; align-items: center; gap: 11px;
  animation: chipFloat 3.5s ease-in-out infinite;
}
.hero__chip--1 { bottom: -70px; right: -10px; animation-delay: 0s; }
.hero__chip--2 { bottom: -70px; left: -10px; animation-delay: 1.8s; }
@keyframes chipFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.hero__chip-icon {
  width: 38px; height: 38px; border-radius: 9px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.hero__chip-icon--sky   { background: rgba(91,188,216,0.12); color: var(--blue); }
.hero__chip-icon--red   { background: rgba(204,32,32,0.10); color: var(--red); }
.hero__chip-text strong { display: block; font-size: 0.82rem; color: var(--text-dark); font-weight: 700; }
.hero__chip-text span   { font-size: 0.72rem; color: var(--text-muted); }

/* =========================================================
   TRUST BAR
   ========================================================= */
.trust-bar { background: var(--sky-pale); border-bottom: 1px solid var(--border); padding: 22px 0; }
.trust-bar__inner { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: center; }
.trust-bar__label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); white-space: nowrap; }
.trust-bar__div { width: 1px; height: 22px; background: var(--border); }
.trust-bar__logos { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.trust-bar__logos span {
  font-size: 0.82rem; font-weight: 700; color: var(--text-mid);
  opacity: 0.7; transition: opacity var(--transition); letter-spacing: 0.01em;
}
.trust-bar__logos span:hover { opacity: 1; color: var(--navy); }

/* =========================================================
   PILLAR CARDS (What We Do)
   ========================================================= */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pillar-card {
  background: #fff; border: 1.5px solid var(--border-light);
  border-radius: var(--r-lg); padding: 36px 28px;
  transition: all var(--transition); position: relative; overflow: hidden;
}
.pillar-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--grad-sky); transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.pillar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--border); }
.pillar-card:hover::before { transform: scaleX(1); }
.pillar-icon {
  width: 60px; height: 60px; border-radius: var(--r-sm);
  background: var(--light-bg); display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem; margin-bottom: 20px;
  transition: all var(--transition);
}
.pillar-card:hover .pillar-icon { background: var(--grad-sky); color: #fff; }
.pillar-card h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--navy); }
.pillar-card p { font-size: 0.9rem; }

/* =========================================================
   SOLUTION CARDS
   ========================================================= */
.solutions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

.sol-card {
  background: #fff; border: 1.5px solid var(--border-light);
  border-radius: var(--r-lg); overflow: hidden;
  transition: transform 0.35s cubic-bezier(.22,.68,0,1.2), box-shadow 0.35s ease, border-color 0.35s ease;
}
.sol-card:hover { transform: translateY(-9px); box-shadow: 0 20px 48px rgba(30,64,175,.14); border-color: var(--sky); }

.sol-card__thumb {
  height: 200px; overflow: hidden; background: var(--light-bg);
  display: flex; align-items: center; justify-content: center; position: relative;
}
.sol-card__thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.55s ease;
}
.sol-card__thumb.gif-thumb img {
  object-fit: contain; padding: 12px;
  background: var(--grad-light);
}
.sol-card:hover .sol-card__thumb img { transform: scale(1.07); }
.sol-card__label {
  position: absolute; top: 12px; left: 12px;
  background: var(--navy); color: #fff;
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.06em;
  padding: 4px 10px; border-radius: 50px; text-transform: uppercase;
}

/* ─────────────────────────────────────────────────────────
   SOLUTION SCENE ANIMATIONS
   ───────────────────────────────────────────────────────── */
.sol-card__scene {
  height: 218px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.sc-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,.14) 1px, transparent 1px);
  background-size: 20px 20px;
}
.sc-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 10;
  background: rgba(0,0,0,.5); backdrop-filter: blur(6px);
  padding: 8px 13px; font-size: 0.72rem; font-weight: 600;
  color: rgba(255,255,255,.92); letter-spacing: 0.01em;
  display: flex; align-items: center; gap: 7px;
}
.sc-bottom i { opacity: .8; flex-shrink: 0; }
.sc-flag {
  margin-left: auto; flex-shrink: 0;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  font-size: 0.58rem; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 2px 9px; border-radius: 50px;
  color: #fff;
}

/* Live dot in chip */
.live-dot {
  display: inline-block; width: 7px; height: 7px;
  background: #34d399; border-radius: 50%; margin-right: 4px;
  animation: liveBlink 1s ease-in-out infinite;
  vertical-align: middle;
}

/* ── Scene 1: Virtual Classroom ── */
.sol-scene--vc { background: linear-gradient(135deg, #0f2461 0%, #1e40af 100%); }
.sc-vc { display: flex; align-items: center; gap: 10px; position: relative; z-index: 2; }

.sc-signal-col { display: flex; flex-direction: column; align-items: center; gap: 6px; }

.sc-vsat-badge {
  display: flex; align-items: center; gap: 5px;
  background: linear-gradient(135deg, rgba(91,188,216,.25), rgba(30,64,175,.3));
  border: 1px solid rgba(91,188,216,.5);
  border-radius: 50px;
  padding: 4px 10px;
  font-size: 0.65rem; font-weight: 800; color: #7dd3fc;
  letter-spacing: 0.06em; text-transform: uppercase;
  white-space: nowrap;
  animation: vsatPulse 2s ease-in-out infinite;
}
.sc-vsat-badge i { font-size: 0.75rem; color: #38bdf8; animation: solChip 3s ease-in-out infinite; }
@keyframes vsatPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(91,188,216,.2); }
  50%      { box-shadow: 0 0 0 6px rgba(91,188,216,0); }
}
.sc-studio { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.sc-studio__cam {
  width: 58px; height: 50px;
  background: rgba(255,255,255,.1); border: 2px solid rgba(255,255,255,.3);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #fff;
  box-shadow: 0 0 0 0 rgba(91,188,216,.4);
  animation: camGlow 2s ease-in-out infinite;
}
@keyframes camGlow {
  0%,100% { box-shadow: 0 0 0 0 rgba(91,188,216,.4); }
  50% { box-shadow: 0 0 0 8px rgba(91,188,216,0); }
}
.sc-live {
  background: #ef4444; color: #fff;
  font-size: 0.55rem; font-weight: 800; letter-spacing: 0.08em;
  padding: 2px 8px; border-radius: 50px;
  animation: liveBlink 1.1s ease-in-out infinite;
}
@keyframes liveBlink { 0%,100%{opacity:1} 50%{opacity:.5} }
.sc-label { font-size: 0.6rem; color: rgba(255,255,255,.65); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.sc-waves { display: flex; flex-direction: column; gap: 8px; }
.sc-waves span {
  display: block; width: 52px; height: 2px;
  background: rgba(255,255,255,.12); border-radius: 2px;
  position: relative; overflow: hidden;
}
.sc-waves span::after {
  content: ''; position: absolute; top: 0; left: -60%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(91,188,216,.9), #fff, transparent);
  animation: sigFlow 1.8s linear infinite;
}
.sc-waves span:nth-child(2)::after { animation-delay: .6s; }
.sc-waves span:nth-child(3)::after { animation-delay: 1.2s; }
@keyframes sigFlow { from{left:-60%} to{left:160%} }
.sc-rooms { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; }
.sc-room {
  width: 40px; height: 36px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.18);
  border-radius: 7px; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: rgba(255,255,255,.55);
  animation: roomLight 3.2s ease-in-out infinite;
}
.sc-room:nth-child(1){animation-delay:0s}
.sc-room:nth-child(2){animation-delay:.8s}
.sc-room:nth-child(3){animation-delay:1.6s}
.sc-room:nth-child(4){animation-delay:2.4s}
@keyframes roomLight {
  0%,100%{background:rgba(255,255,255,.07);border-color:rgba(255,255,255,.18);color:rgba(255,255,255,.55)}
  30%{background:rgba(91,188,216,.3);border-color:rgba(91,188,216,.7);color:#fff;box-shadow:0 0 12px rgba(91,188,216,.4)}
}

/* ── Scene 2: EduSmart ── */
.sol-scene--smart { background: linear-gradient(135deg, #0e4a6e 0%, #0284c7 100%); }
.sc-smart { display: flex; align-items: flex-end; gap: 18px; position: relative; z-index: 2; padding-bottom: 8px; }
.sc-tv { display: flex; flex-direction: column; align-items: center; }
.sc-tv__screen {
  width: 116px; height: 80px;
  background: #071626; border: 3px solid rgba(255,255,255,.32);
  border-radius: 8px 8px 3px 3px; padding: 9px 10px;
  position: relative; overflow: hidden;
}
.sc-tv__icon {
  position: absolute; top: 8px; right: 9px;
  font-size: 1.3rem; color: rgba(56,189,248,.7);
  animation: iconPop 2.4s ease-in-out infinite;
}
@keyframes iconPop { 0%,100%{opacity:.3;transform:scale(.8)} 50%{opacity:1;transform:scale(1)} }
.sc-tv__line {
  height: 3px; border-radius: 2px; margin-bottom: 7px;
  background: rgba(255,255,255,.75); transform-origin: left;
  animation: lineType 2.6s ease-in-out infinite;
}
.sc-tv__line--1{width:60%;animation-delay:0s}
.sc-tv__line--2{width:80%;animation-delay:.55s}
.sc-tv__line--3{width:45%;animation-delay:1.1s}
@keyframes lineType {
  0%,100%{transform:scaleX(0);opacity:0}
  25%,80%{transform:scaleX(1);opacity:1}
}
.sc-tv__stand { width: 28px; height: 7px; background: rgba(255,255,255,.22); border-radius: 0 0 4px 4px; }
.sc-pen-wrap { display: flex; flex-direction: column; align-items: center; margin-bottom: 7px; }
.sc-pen {
  font-size: 2rem; color: #fff;
  animation: penWrite 1.6s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 8px rgba(255,255,255,.4));
}
@keyframes penWrite {
  0%{transform:rotate(-35deg) translate(0,0)}
  100%{transform:rotate(-15deg) translate(5px,-6px)}
}
.sc-pen-trail {
  width: 36px; height: 2px; background: rgba(255,255,255,.3);
  border-radius: 2px; margin-top: 4px;
  animation: trailFade 1.6s ease-in-out infinite alternate;
}
@keyframes trailFade { 0%{width:4px;opacity:.2} 100%{width:36px;opacity:.7} }

/* ── Scene 3: School on Wheels ── */
.sol-scene--sow { background: linear-gradient(135deg, #064e3b 0%, #059669 100%); }
.sc-sow { width: 100%; height: 130px; position: relative; z-index: 2; }
.sc-road {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 18px; background: rgba(0,0,0,.35);
  border-top: 1px solid rgba(255,255,255,.15);
}
.sc-road__dashes { display: flex; gap: 12px; padding: 7px 10px; }
.sc-road__dashes span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,.35); border-radius: 1px; }
.sc-bus {
  position: absolute; bottom: 18px;
  font-size: 2.8rem; color: #fff;
  text-shadow: 0 4px 16px rgba(0,0,0,.3);
  filter: drop-shadow(0 0 10px rgba(255,255,255,.2));
  animation: busRide 5s ease-in-out infinite;
}
@keyframes busRide { 0%{left:4%} 48%{left:60%} 52%{left:60%;opacity:0} 53%{left:4%;opacity:0} 55%{opacity:1} 100%{left:4%} }
.sc-bus__wifi {
  position: absolute; top: -14px; right: -2px;
  font-size: 0.75rem; color: #6ee7b7;
  animation: wifiPop 1s ease-in-out infinite;
}
@keyframes wifiPop { 0%,100%{opacity:.4;transform:scale(.9)} 50%{opacity:1;transform:scale(1.1)} }
.sc-pin {
  position: absolute; top: 8px;
  display: flex; flex-direction: column; align-items: center; gap: 1px;
  font-size: 1.2rem; color: #fcd34d;
  animation: pinDrop 5s ease-in-out infinite;
}
.sc-pin span { font-size: 0.5rem; color: rgba(255,255,255,.8); font-weight: 700; white-space: nowrap; }
.sc-pin--1 { left: 18%;  animation-delay: 0s; }
.sc-pin--2 { left: 47%;  animation-delay: 1.6s; }
.sc-pin--3 { right: 12%; animation-delay: 3.2s; }
@keyframes pinDrop {
  0%,100%{opacity:0;transform:translateY(-12px)}
  20%,75%{opacity:1;transform:translateY(0)}
}

/* ── Scene 4: LMS (live looping dashboard) ── */
.sol-scene--lms { background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 55%, #312e81 100%); padding-bottom: 38px !important; }
.sc-lms2 { position: relative; z-index: 2; width: 100%; padding: 0 14px; }

/* Header */
.sc-lms2__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.sc-lms2__title { font-size: 0.6rem; font-weight: 700; color: rgba(255,255,255,.85); }
.sc-lms2__title i { color: #818cf8; margin-right: 4px; }
.sc-live-dot { font-size: 0.5rem; color: #34d399; display: flex; align-items: center; gap: 4px; font-weight: 700; letter-spacing:.04em; }
.sc-live-dot span { width: 6px; height: 6px; background: #34d399; border-radius: 50%; animation: liveBlink 1s ease-in-out infinite; }

/* Stat strip: districts · blocks · sites */
.sc-lms2__strip { display: flex; align-items: center; gap: 8px; margin-bottom: 7px; }
.sc-lms2__strip span { font-size: 0.5rem; color: rgba(255,255,255,.5); letter-spacing: .02em; }
.sc-lms2__strip b { font-size: 0.72rem; font-weight: 800; color: #fff; margin-right: 2px; }
.sc-lms2__strip em { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,.25); flex-shrink: 0; }

/* Main row: ring + KPI cards */
.sc-lms2__main { display: flex; align-items: center; gap: 10px; margin-bottom: 5px; }

/* Donut ring — draws then loops */
.sc-ring { position: relative; width: 62px; height: 62px; flex-shrink: 0; }
.sc-ring__svg { width: 100%; height: 100%; }
.sc-ring__arc {
  stroke-dasharray: 188.5;
  stroke-dashoffset: 188.5;
  animation: ringLoop 5s cubic-bezier(.4,0,.2,1) infinite;
}
@keyframes ringLoop {
  0%,8%  { stroke-dashoffset: 188.5; }
  55%,78%{ stroke-dashoffset: 7.5;   }
  96%,100%{ stroke-dashoffset: 188.5; }
}
.sc-ring__label { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.sc-ring__pct { font-size: 0.82rem; font-weight: 800; color: #fff; line-height: 1; }
.sc-ring__sub { font-size: 0.34rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .07em; margin-top: 2px; }

/* KPI cards — each pulses with its own colour */
.sc-lms2__kpis { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.sc-kpi { display: flex; align-items: center; gap: 7px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 6px; padding: 3px 7px; }
.sc-kpi--1 { animation: kpiGlow1 3.5s ease-in-out infinite 0s; }
.sc-kpi--2 { animation: kpiGlow2 3.5s ease-in-out infinite 1.1s; }
.sc-kpi--3 { animation: kpiGlow3 3.5s ease-in-out infinite 2.2s; }
@keyframes kpiGlow1 { 0%,100%{border-color:rgba(255,255,255,.1);box-shadow:none} 50%{border-color:rgba(52,211,153,.55);box-shadow:0 0 10px rgba(52,211,153,.18)} }
@keyframes kpiGlow2 { 0%,100%{border-color:rgba(255,255,255,.1);box-shadow:none} 50%{border-color:rgba(129,140,248,.55);box-shadow:0 0 10px rgba(129,140,248,.18)} }
@keyframes kpiGlow3 { 0%,100%{border-color:rgba(255,255,255,.1);box-shadow:none} 50%{border-color:rgba(245,158,11,.55);box-shadow:0 0 10px rgba(245,158,11,.18)} }
.sc-kpi__icon { font-size: 0.68rem; width: 18px; text-align: center; flex-shrink: 0; }
.sc-kpi--1 .sc-kpi__icon { color: #34d399; }
.sc-kpi--2 .sc-kpi__icon { color: #818cf8; }
.sc-kpi--3 .sc-kpi__icon { color: #f59e0b; }
.sc-kpi__val { font-size: 0.72rem; font-weight: 800; color: #fff; line-height: 1.1; }
.sc-kpi__lbl { font-size: 0.42rem; color: rgba(255,255,255,.45); }

/* Subject bars — fill, hold, drain, repeat */
.sc-lms2__subjects { display: flex; flex-direction: column; gap: 4px; margin-bottom: 3px; }
.sc-subj { display: flex; align-items: center; gap: 6px; }
.sc-subj__name { font-size: 0.5rem; color: rgba(255,255,255,.65); width: 74px; flex-shrink: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sc-subj__track { flex: 1; height: 4px; background: rgba(255,255,255,.1); border-radius: 3px; overflow: hidden; }
.sc-subj__fill { height: 100%; border-radius: 3px; }
.sc-subj__fill--1 { background: linear-gradient(90deg,#818cf8,#a5b4fc); animation: barLoop1 5s ease-in-out infinite 0s; }
.sc-subj__fill--2 { background: linear-gradient(90deg,#34d399,#6ee7b7); animation: barLoop2 5s ease-in-out infinite 1s; }
.sc-subj__fill--3 { background: linear-gradient(90deg,#f59e0b,#fcd34d); animation: barLoop3 5s ease-in-out infinite 2s; }
@keyframes barLoop1 { 0%,5%{width:0;opacity:.3} 50%,75%{width:90%;opacity:1} 95%,100%{width:0;opacity:.3} }
@keyframes barLoop2 { 0%,5%{width:0;opacity:.3} 50%,75%{width:67%;opacity:1} 95%,100%{width:0;opacity:.3} }
@keyframes barLoop3 { 0%,5%{width:0;opacity:.3} 50%,75%{width:51%;opacity:1} 95%,100%{width:0;opacity:.3} }
.sc-subj__pct { font-size: 0.52rem; font-weight: 700; color: rgba(255,255,255,.7); width: 24px; text-align: right; flex-shrink: 0; }

/* Role pills — cycle active highlight */
.sc-lms2__roles { display: flex; gap: 5px; }
.sc-role { font-size: 0.5rem; padding: 3px 7px; border-radius: 20px; border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.45); display: flex; align-items: center; justify-content: center; gap: 4px; flex: 1; }
.sc-role i { font-size: 0.48rem; }
.sc-role--teacher { animation: roleCycle 7s ease-in-out infinite 0s; }
.sc-role--student { animation: roleCycle 7s ease-in-out infinite 2.3s; }
.sc-role--admin   { animation: roleCycle 7s ease-in-out infinite 4.6s; }
@keyframes roleCycle {
  0%,15%,85%,100% { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.15); color: rgba(255,255,255,.4); }
  35%,65%         { background: rgba(129,140,248,.25); border-color: rgba(129,140,248,.65); color: #fff; box-shadow: 0 0 10px rgba(129,140,248,.25); }
}

/* ── Scene 5: ICT Lab ── */
.sol-scene--tab { background: linear-gradient(135deg, #4c1d95 0%, #7c3aed 100%); }
.sc-tab { display: flex; align-items: center; gap: 14px; position: relative; z-index: 2; }
.sc-tab__icons { display: flex; flex-direction: column; gap: 9px; }
.sc-tab__icon {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: rgba(255,255,255,.8);
  animation: iconSlide 3s ease-in-out infinite;
}
.sc-tab__icon--1{animation-delay:0s}
.sc-tab__icon--2{animation-delay:1s}
.sc-tab__icon--3{animation-delay:2s}
@keyframes iconSlide {
  0%,100%{transform:translateX(0);opacity:.6;background:rgba(255,255,255,.1)}
  40%{transform:translateX(5px);opacity:1;background:rgba(167,139,250,.3);border-color:rgba(167,139,250,.6)}
}
.sc-tablet {
  border: 3px solid rgba(255,255,255,.35); border-radius: 11px;
  background: #1a0533; width: 74px; height: 100px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 24px rgba(124,58,237,.5);
  position: relative;
}
.sc-tablet::after {
  content: ''; position: absolute; bottom: -10px;
  width: 22px; height: 4px; background: rgba(255,255,255,.22); border-radius: 2px;
}
.sc-tablet__screen { text-align: center; padding: 0 6px; }
.sc-tablet__img { font-size: 1.6rem; color: rgba(255,255,255,.9); margin-bottom: 6px; }
.sc-tablet__bar {
  height: 3px; border-radius: 2px; margin-bottom: 5px;
  background: rgba(167,139,250,.8); transform-origin: left;
  animation: lineType 2s ease-in-out infinite;
}
.sc-tablet__bar--1{animation-delay:0s}
.sc-tablet__bar--2{width:75%;animation-delay:.5s}
.sc-offline-badge {
  align-self: flex-start; margin-top: 4px;
  background: rgba(0,0,0,.4); border: 1px solid rgba(167,139,250,.4);
  color: rgba(255,255,255,.85); font-size: 0.6rem; font-weight: 700;
  padding: 3px 9px; border-radius: 50px; letter-spacing: 0.05em;
  animation: liveBlink 2s ease-in-out infinite;
}

/* ── Scene 6: Edu-WAN ── */
.sol-scene--eduwan { background: linear-gradient(135deg, #164e63 0%, #0891b2 100%); }
/* ─── EduWAN star-topology map ─── */
.sc-wan-map {
  position: relative; width: 280px; height: 150px; z-index: 2;
}
.sc-wan-svg {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.sc-wl {
  stroke: rgba(56,189,248,.4); stroke-width: 1.5;
  stroke-dasharray: 7 5;
  animation: wlFlow 1.8s linear infinite;
}
.sc-wl--1{animation-delay:0s}
.sc-wl--2{animation-delay:0.45s}
.sc-wl--3{animation-delay:0.9s}
.sc-wl--4{animation-delay:1.35s}
@keyframes wlFlow { from{stroke-dashoffset:0} to{stroke-dashoffset:-24} }
.sc-wan-hub {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 60px; height: 60px;
  background: rgba(8,145,178,.35); border: 2px solid rgba(56,189,248,.7);
  border-radius: 14px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; text-align: center; line-height: 1.2; z-index: 3;
  font-size: 0.52rem; font-weight: 700; color: rgba(255,255,255,.85);
  animation: hubPulse 2.4s ease-in-out infinite;
}
.sc-wan-hub i { font-size: 1.3rem; color: #7dd3fc; }
@keyframes hubPulse {
  0%,100%{box-shadow:0 0 0 0 rgba(56,189,248,.3)}
  50%{box-shadow:0 0 0 12px rgba(56,189,248,0)}
}
.sc-wnode {
  position: absolute; width: 52px; height: 52px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.28);
  border-radius: 10px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px; font-size: 0.52rem; font-weight: 700; color: rgba(255,255,255,.88);
  animation: wnodeGlow 5.5s ease-in-out infinite;
}
.sc-wnode i { font-size: 1rem; }
.sc-wnode--tl { top: 0;    left: 0;   animation-delay: 0s; }
.sc-wnode--tr { top: 0;    right: 0;  animation-delay: 1.37s; }
.sc-wnode--bl { bottom: 0; left: 0;   animation-delay: 2.75s; }
.sc-wnode--br { bottom: 0; right: 0;  animation-delay: 4.12s; }
@keyframes wnodeGlow {
  0%,100%{background:rgba(255,255,255,.1);border-color:rgba(255,255,255,.28);box-shadow:none}
  18%{background:rgba(8,145,178,.4);border-color:rgba(56,189,248,.85);box-shadow:0 0 14px rgba(56,189,248,.5)}
  36%{background:rgba(255,255,255,.1);border-color:rgba(255,255,255,.28);box-shadow:none}
}
.sc-wan-live {
  position: absolute; top: -6px; left: 50%; transform: translateX(-50%);
  background: rgba(16,185,129,.15); border: 1px solid rgba(16,185,129,.45);
  border-radius: 100px; padding: 2px 9px; white-space: nowrap;
  font-size: 0.58rem; font-weight: 600; color: #6ee7b7;
  display: flex; align-items: center; gap: 3px;
}
/* ─── E-Learning scene ─── */
.sol-scene--elearn { background: linear-gradient(135deg, #1e3a5f 0%, #1d4ed8 100%); }
.sc-elearn { display: flex; flex-direction: column; align-items: center; gap: 14px; z-index: 1; }
.sc-elearn__shelf {
  display: flex; gap: 10px;
}
.sc-elearn__book {
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  gap: 5px;
  width: 52px; height: 68px;
  border-radius: 6px 10px 10px 6px;
  font-size: 0.6rem; font-weight: 700; color: #fff;
  padding-bottom: 8px;
  box-shadow: 2px 2px 8px rgba(0,0,0,.3);
  animation: bookPop 0.5s ease both;
}
.sc-elearn__book i { font-size: 1.3rem; }
.sc-elearn__book--1 { background: linear-gradient(160deg, #f97316, #ea580c); animation-delay: 0.1s; }
.sc-elearn__book--2 { background: linear-gradient(160deg, #22c55e, #15803d); animation-delay: 0.25s; }
.sc-elearn__book--3 { background: linear-gradient(160deg, #a78bfa, #7c3aed); animation-delay: 0.4s; }
.sc-elearn__book--4 { background: linear-gradient(160deg, #38bdf8, #0284c7); animation-delay: 0.55s; }
@keyframes bookPop {
  from { opacity: 0; transform: translateY(16px) scale(0.85); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.sc-elearn__langs {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
}
.sc-elearn__lang {
  padding: 3px 10px; border-radius: 100px;
  font-size: 0.68rem; font-weight: 700; color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.1);
  animation: langFade 2.4s ease-in-out infinite;
}
.sc-elearn__lang--1 { animation-delay: 0s; }
.sc-elearn__lang--2 { animation-delay: 0.8s; }
.sc-elearn__lang--3 { animation-delay: 1.6s; }
@keyframes langFade {
  0%,100% { opacity: 0.55; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.06); background: rgba(255,255,255,.22); }
}
.sc-elearn__ncert {
  display: flex; align-items: center; gap: 5px;
  background: rgba(251,191,36,.15); border: 1px solid rgba(251,191,36,.45);
  border-radius: 100px; padding: 4px 12px;
  font-size: 0.68rem; font-weight: 800; color: #fbbf24; letter-spacing: 0.04em;
  animation: vsatPulse 2.2s ease-in-out infinite;
}

/* ─── sol-detail__scene — sizing for the solution detail page ─── */
.sol-detail__scene {
  height: 320px;
  min-height: 320px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
}
.sol-detail__scene .sc-bottom { font-size: 0.78rem; }

/* ─────────────────────────────────────────────────────────
   END SCENE ANIMATIONS
   ───────────────────────────────────────────────────────── */

.sol-card__body { padding: 22px 24px 24px; }
.sol-card__body h3 {
  font-size: 1.05rem; font-weight: 800; color: var(--navy);
  margin-bottom: 0; line-height: 1.35; letter-spacing: -0.01em;
}
.sol-card__body h3::after {
  content: ''; display: block;
  width: 30px; height: 3px; border-radius: 2px;
  background: var(--grad-sky);
  margin-top: 8px; margin-bottom: 12px;
  transition: width 0.35s ease;
}
.sol-card:hover .sol-card__body h3::after { width: 52px; }
.sol-card__body p { font-size: 0.875rem; line-height: 1.72; color: var(--text-mid); margin-bottom: 16px; }
.sol-card__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 700; color: var(--blue);
  transition: color 0.28s ease, gap 0.28s ease;
}
.sol-card:hover .sol-card__link { gap: 10px; color: var(--sky); }
.sol-card__link i { transition: transform 0.3s ease; }
.sol-card:hover .sol-card__link i { transform: translateX(3px); }

/* =========================================================
   AI SECTION — Bold dark highlight
   ========================================================= */
.ai-section {
  background: linear-gradient(135deg, #060d1f 0%, #0d1f45 45%, #0a2a5e 100%);
  padding: 88px 0; position: relative; overflow: hidden;
}

/* Animated glow orbs */
.ai-bg-orb {
  position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite;
}
.ai-bg-orb--1 { width: 500px; height: 500px; background: rgba(91,188,216,.1);  top: -100px; left: -100px; animation-delay: 0s; }
.ai-bg-orb--2 { width: 400px; height: 400px; background: rgba(99,102,241,.12); bottom: -80px; right: 10%; animation-delay: 3s; }
.ai-bg-orb--3 { width: 300px; height: 300px; background: rgba(52,211,153,.08); top: 40%; left: 50%; animation-delay: 5s; }
@keyframes orbFloat { 0%,100%{transform:translate(0,0)} 50%{transform:translate(20px,-20px)} }

/* Two-column layout */
.ai-section__inner { display: grid; grid-template-columns: 1fr 1.15fr; gap: 72px; align-items: center; position: relative; z-index: 1; }

/* LEFT */
.ai-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(91,188,216,.12); border: 1px solid rgba(91,188,216,.3);
  color: var(--sky-light); font-size: 0.72rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 28px;
}
.ai-pulse {
  width: 8px; height: 8px; background: #34d399; border-radius: 50%;
  animation: liveBlink 1.2s ease-in-out infinite;
}
.ai-headline {
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 900; color: #fff;
  line-height: 1.18; margin-bottom: 22px;
}
.ai-headline span {
  background: linear-gradient(135deg, var(--sky), #34d399);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.ai-subtext { font-size: 1rem; color: rgba(255,255,255,.65); line-height: 1.8; margin-bottom: 36px; max-width: 440px; }

/* AI mini stats */
.ai-stats { display: flex; gap: 28px; margin-bottom: 36px; flex-wrap: wrap; }
.ai-stat__num {
  font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 900; color: #fff; line-height: 1;
}
.ai-stat__num span { color: var(--sky); font-size: 1.2rem; }
.ai-stat__lbl { font-size: 0.7rem; color: rgba(255,255,255,.5); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; max-width: 100px; line-height: 1.4; }

/* Alignment badges — logo cards */
.ai-align-badges { display: flex; gap: 14px; flex-wrap: wrap; }
.ai-align-badge {
  display: flex; flex-direction: column; align-items: center; gap: 0;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px; padding: 0 0 14px;
  min-width: 130px; text-align: center;
  backdrop-filter: blur(10px);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  position: relative; overflow: hidden;
}
/* Colour accent top bar */
.ai-align-badge::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  border-radius: 16px 16px 0 0;
}
.ai-align-badge--diksha::before { background: linear-gradient(90deg,#f97316,#fb923c); }
.ai-align-badge--evidya::before  { background: linear-gradient(90deg,var(--sky),#38bdf8); }
.ai-align-badge--nep::before     { background: linear-gradient(90deg,#a78bfa,#818cf8); }
.ai-align-badge:hover {
  transform: translateY(-5px);
  border-color: rgba(91,188,216,.5);
  box-shadow: 0 12px 32px rgba(0,0,0,.45);
}
/* White logo tray */
.ai-badge-logo-wrap {
  width: 100%; background: #ffffff;
  border-radius: 13px 13px 0 0;
  padding: 14px 16px 12px;
  display: flex; align-items: center; justify-content: center;
  min-height: 72px;
}
.ai-badge-logo {
  width: auto; max-width: 100px; height: 44px; object-fit: contain;
}
.ai-badge-label {
  margin-top: 10px;
  font-size: 0.67rem; font-weight: 700; color: #6ee7b7;
  letter-spacing: .04em; line-height: 1.3; white-space: nowrap;
  padding: 0 12px;
}
.ai-badge-label i { color: #34d399; margin-right: 4px; font-size: 0.6rem; }

/* RIGHT: 2x2 cards */
.ai-cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ai-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg); padding: 22px 20px;
  position: relative; overflow: hidden;
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
  backdrop-filter: blur(10px);
}
.ai-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.09); border-color: rgba(91,188,216,.4); }
.ai-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.ai-card--1::after { background: linear-gradient(90deg,#818cf8,#6366f1); }
.ai-card--2::after { background: linear-gradient(90deg,var(--sky),#38bdf8); }
.ai-card--3::after { background: linear-gradient(90deg,#f59e0b,#ef4444); }
.ai-card--4::after { background: linear-gradient(90deg,#34d399,#059669); }

.ai-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.ai-card__icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.ai-card--1 .ai-card__icon { background: rgba(129,140,248,.18); color: #a5b4fc; }
.ai-card--2 .ai-card__icon { background: rgba(91,188,216,.18); color: var(--sky); }
.ai-card--3 .ai-card__icon { background: rgba(245,158,11,.18); color: #fcd34d; }
.ai-card--4 .ai-card__icon { background: rgba(52,211,153,.18); color: #6ee7b7; }

.ai-card__tag {
  font-size: 0.62rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 20px;
}
.ai-card--1 .ai-card__tag { background: rgba(129,140,248,.15); color: #a5b4fc; }
.ai-card--2 .ai-card__tag { background: rgba(91,188,216,.15); color: var(--sky-light); }
.ai-card--3 .ai-card__tag { background: rgba(245,158,11,.15); color: #fcd34d; }
.ai-card--4 .ai-card__tag { background: rgba(52,211,153,.15); color: #6ee7b7; }

.ai-card h4 { font-size: 0.88rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.ai-card p  { font-size: 0.78rem; line-height: 1.65; color: rgba(255,255,255,.55); }

/* =========================================================
   IMPACT COUNTER
   ========================================================= */
.impact {
  background: var(--grad-navy); position: relative; overflow: hidden;
}
.impact::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(91,188,216,0.12) 0%, transparent 50%),
                    radial-gradient(circle at 80% 50%, rgba(91,188,216,0.08) 0%, transparent 50%);
}
.impact__inner { position: relative; z-index: 1; }
.impact__grid  { display: grid; grid-template-columns: repeat(7,1fr); gap: 28px; }
.impact__item  { text-align: center; }
.impact__num {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.6rem); font-weight: 900; color: #fff;
  display: flex; align-items: baseline; justify-content: center; gap: 3px;
}
.impact__num .plus { color: var(--sky); font-size: 1.4rem; }
.impact__bar { width: 44px; height: 3px; background: var(--sky); border-radius: 4px; margin: 10px auto; }
.impact__label { color: rgba(255,255,255,0.6); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }

/* =========================================================
   PROJECT CARDS (home page teaser)
   ========================================================= */
.projects-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.proj-card {
  background: #fff; border: 1.5px solid var(--border-light);
  border-radius: var(--r-lg); overflow: hidden;
  transition: all var(--transition);
}
.proj-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.proj-card__img { height: 190px; overflow: hidden; }
.proj-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.proj-card:hover .proj-card__img img { transform: scale(1.07); }
.proj-card__body { padding: 22px; }
.proj-card__state { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: var(--sky); margin-bottom: 5px; }
.proj-card__name { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.proj-card__client { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 14px; }
.proj-card__stats { display: flex; gap: 20px; margin-bottom: 12px; }
.proj-card__stat strong { display: block; font-size: 1.25rem; font-weight: 800; color: var(--navy); }
.proj-card__stat span { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; }
.proj-card p { font-size: 0.82rem; }

/* =========================================================
   WHY EDUBEAM
   ========================================================= */
.why__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.why__visual { position: relative; }
.why__img {
  border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-xl); aspect-ratio: 4/5;
}
.why__img img { width: 100%; height: 100%; object-fit: cover; }

.why__cert {
  position: absolute; bottom: -20px; right: -20px;
  background: #fff; border-radius: var(--r-md); padding: 18px 22px;
  box-shadow: var(--shadow-lg); min-width: 180px;
}
.why__cert-title { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 12px; }
.why__cert-items { display: flex; flex-direction: column; gap: 7px; }
.why__cert-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.78rem; font-weight: 700; color: var(--navy);
}
.why__cert-item i { color: var(--sky); font-size: 0.8rem; }

.why__features { display: flex; flex-direction: column; gap: 20px; }
.why__feat {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 20px; border-radius: var(--r-md);
  border: 1.5px solid var(--border-light); background: #fff;
  transition: all var(--transition);
}
.why__feat:hover { border-color: var(--sky); box-shadow: var(--shadow-sm); }
.why__feat-icon {
  width: 48px; height: 48px; border-radius: var(--r-sm); flex-shrink: 0;
  background: var(--grad-blue); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.why__feat h4 { color: var(--navy); margin-bottom: 5px; font-size: 1rem; }
.why__feat p { font-size: 0.87rem; }

/* =========================================================
   CERTIFICATIONS STRIP
   ========================================================= */
.certs-strip { background: var(--sky-pale); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 40px 0; }
.certs-grid { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.cert-item { text-align: center; }
.cert-item img { height: 70px; width: auto; margin: 0 auto 10px; object-fit: contain; }
.cert-item span { font-size: 0.75rem; font-weight: 700; color: var(--navy); display: block; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.testi-card {
  background: #fff; border: 1.5px solid var(--border-light);
  border-radius: var(--r-lg); padding: 28px;
  transition: all var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow-md); border-color: var(--sky); }
.testi-card__quote { font-size: 2.5rem; line-height: 1; color: var(--sky); margin-bottom: 14px; }
.testi-card p { font-size: 0.9rem; font-style: italic; color: var(--text-mid); margin-bottom: 22px; }
.testi-card__author { display: flex; align-items: center; gap: 11px; }
.testi-card__ava {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--grad-blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.05rem; flex-shrink: 0;
}
.testi-card__author strong { display: block; font-size: 0.875rem; color: var(--navy); }
.testi-card__author span { font-size: 0.75rem; color: var(--text-muted); }

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-banner {
  background: var(--grad-navy); position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(91,188,216,0.08);
  top: -200px; right: -100px;
}
.cta-banner::after {
  content: ''; position: absolute;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(204,32,32,0.06);
  bottom: -100px; left: -50px;
}
.cta-inner {
  position: relative; z-index: 2; text-align: center;
  padding: 96px 24px;
}
.cta-inner h2 { color: #fff; margin-bottom: 16px; }
.cta-inner p  { color: rgba(255,255,255,0.68); font-size: 1.05rem; max-width: 580px; margin: 0 auto 36px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: linear-gradient(175deg, #060e28 0%, #020810 100%);
  position: relative; overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute; top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 360px;
  background: radial-gradient(ellipse, rgba(91,188,216,.07) 0%, transparent 70%);
  pointer-events: none;
}

/* Top gradient border line */
.footer__glow-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(91,188,216,.5), var(--sky), rgba(91,188,216,.5), transparent);
}

/* CTA strip */
.footer__cta-strip {
  padding: 36px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(91,188,216,.08);
}
.footer__cta-strip h4 { color: #fff; font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.footer__cta-strip p { color: #fff; font-size: 0.84rem; }
.footer__cta-btns { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }
.footer__cta-btns .btn--outline-white {
  border: 1.5px solid rgba(255,255,255,.22); color: rgba(255,255,255,.7);
  padding: 9px 20px; border-radius: var(--r-md); font-size: 0.84rem; font-weight: 600;
  transition: all .25s; white-space: nowrap;
}
.footer__cta-btns .btn--outline-white:hover { border-color: var(--sky); color: var(--sky); background: rgba(91,188,216,.07); }

.footer__top {
  padding: 52px 0 44px;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 48px;
  border-bottom: 1px solid rgba(91,188,216,.08);
}
.footer__logo-img { height: 52px; width: auto; background: #fff; border-radius: 8px; padding: 4px 7px; margin-bottom: 16px; }
.footer__tagline { font-size: 0.84rem; color: #fff; line-height: 1.82; margin-bottom: 24px; }
.footer__social { display: flex; gap: 8px; flex-wrap: wrap; }
.footer__social a {
  width: 36px; height: 36px; border-radius: 10px;
  border: 1px solid rgba(91,188,216,.15);
  background: rgba(91,188,216,.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; color: rgba(255,255,255,.45);
  transition: all .25s;
}
.footer__social a:hover {
  background: var(--sky); border-color: var(--sky); color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(91,188,216,.3);
}

.footer__col h5 {
  font-size: 0.69rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--sky);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px;
}
.footer__col h5::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, rgba(91,188,216,.25), transparent);
}
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul li a {
  font-size: 0.84rem; color: #fff;
  transition: all .2s; display: inline-flex; align-items: center; gap: 6px;
}
.footer__col ul li a::before {
  content: '›'; color: var(--sky); opacity: 0;
  transform: translateX(-5px); transition: all .2s; font-size: 1rem; line-height: 1;
}
.footer__col ul li a:hover { color: #fff; transform: translateX(5px); }
.footer__col ul li a:hover::before { opacity: 1; transform: translateX(0); }

.footer__contact-item {
  display: flex; gap: 12px; font-size: 0.82rem; margin-bottom: 14px;
  color: #fff; align-items: flex-start;
}
.footer__contact-item i {
  width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0;
  background: rgba(91,188,216,.1); border: 1px solid rgba(91,188,216,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--sky); font-size: 0.75rem;
}
.footer__contact-item a { color: #fff; }
.footer__contact-item a:hover { color: var(--sky-light); }

.footer__bottom {
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer__bottom p { font-size: 0.75rem; color: #fff; }
.footer__certs { display: flex; gap: 8px; flex-wrap: wrap; }
.footer__cert {
  font-size: 0.66rem; font-weight: 700; letter-spacing: .05em;
  border: 1px solid rgba(91,188,216,.15);
  background: rgba(91,188,216,.05);
  padding: 4px 11px;
  border-radius: 50px; color: #fff;
  transition: all .2s;
}
.footer__cert:hover { border-color: var(--sky); color: var(--sky); background: rgba(91,188,216,.1); }

/* =========================================================
   PAGE HERO (inner pages)
   ========================================================= */
.page-hero {
  background: var(--grad-navy); padding: 150px 0 72px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(91,188,216,0.12) 1px, transparent 1px);
  background-size: 40px 40px;
}
.page-hero::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 80px; background: linear-gradient(to bottom, transparent, #fff);
}
.page-hero__inner { position: relative; z-index: 2; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-bottom: 18px;
}
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--sky-light); }
.breadcrumb i { font-size: 0.6rem; }
.page-hero h1 { color: #fff; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.68); font-size: 1.05rem; max-width: 600px; }

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.story-img {
  border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3; position: relative;
  background:
    radial-gradient(ellipse at 50% 30%, #1a3a6b 0%, #0d2150 45%, #060d1a 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 20px 28px 0;
}
/* Bottom fade to black — blends globe stand seamlessly */
.story-img::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 38%;
  background: linear-gradient(to top, #060d1a 0%, transparent 100%);
  pointer-events: none;
}
.story-img img { width: 100%; height: 100%; object-fit: contain; display: block; filter: drop-shadow(0 4px 24px rgba(0,20,80,0.6)); position: relative; z-index: 1; }

.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.value-card {
  background: #fff; border: 1.5px solid var(--border-light);
  border-radius: var(--r-lg); padding: 28px 22px; text-align: center;
  transition: all var(--transition);
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--sky); }
.value-icon {
  width: 58px; height: 58px; border-radius: var(--r-sm);
  background: var(--light-bg); margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; transition: all var(--transition);
}
.value-card:hover .value-icon { background: var(--grad-sky); color: #fff; }
.value-card h4 { color: var(--navy); margin-bottom: 8px; font-size: 1rem; }
.value-card p { font-size: 0.82rem; }

/* =========================================================
   AWARDS SHOWCASE
   ========================================================= */
.awards-showcase {
  display: flex;
  flex-wrap: wrap;
  overflow: visible;
  padding-top: 18px;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}
.award-card {
  flex: 0 0 calc(33.33% - 16px);
  max-width: 340px;
  background: #fff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--r-xl);
  overflow: visible;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}
.award-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
  border-color: #f59e0b;
}
.award-card__img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f1f5f9;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}
.award-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.award-card:hover .award-card__img img { transform: scale(1.05); }
.award-card__year {
  position: absolute; top: 12px; right: 12px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff; font-size: 0.68rem; font-weight: 800;
  padding: 3px 10px; border-radius: 100px; letter-spacing: 0.05em;
}
.award-card__body {
  padding: 20px 22px 24px;
  border-top: 3px solid #f59e0b;
}
.award-card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border-radius: 10px; font-size: 1rem; color: #d97706;
  margin-bottom: 12px;
}
.award-card__title {
  font-size: 0.92rem; font-weight: 800;
  color: var(--navy); line-height: 1.4; margin-bottom: 5px;
}
.award-card__sub {
  font-size: 0.78rem; color: var(--sky);
  font-weight: 600; margin-bottom: 10px;
}
.award-card__event {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.72rem; color: var(--text-muted);
}

/* =========================================================
   CLIENTELE PAGE
   ========================================================= */
/* Logo grid */
.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.client-logo-card {
  background: #fff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 28px 20px 18px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.client-logo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,.1);
  border-color: var(--sky);
}
.client-logo-card__img {
  height: 70px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.client-logo-card__img img {
  max-height: 70px; max-width: 160px; object-fit: contain;
}
.client-logo-card__name {
  font-size: 0.78rem; font-weight: 700; color: var(--navy);
  line-height: 1.4;
}

/* Detail cards grid */
.client-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.client-detail-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
  background: #fff;
}
.client-detail-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.14);
}
.client-detail-card__header {
  padding: 22px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.client-detail-card__state {
  font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,.9);
  display: flex; align-items: center; gap: 6px;
}
.client-detail-card__badge {
  background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.4);
  color: #fff; font-size: 0.65rem; font-weight: 800;
  padding: 3px 10px; border-radius: 100px; letter-spacing: 0.06em;
}
.client-detail-card__body {
  padding: 22px 24px 26px;
}
.client-detail-card__body h3 {
  font-size: 0.95rem; font-weight: 800; color: var(--navy);
  margin-bottom: 10px; line-height: 1.4;
}
.client-detail-card__body p {
  font-size: 0.83rem; line-height: 1.72; color: var(--text-mid);
  margin-bottom: 16px;
}
.client-detail-card__stats {
  display: flex; gap: 0; margin-bottom: 16px;
  background: var(--light-bg); border-radius: var(--r-md);
  overflow: hidden;
}
.client-detail-card__stats div {
  flex: 1; text-align: center; padding: 10px 8px;
  border-right: 1px solid var(--border-light);
}
.client-detail-card__stats div:last-child { border-right: none; }
.client-detail-card__stats strong {
  display: block; font-size: 1rem; font-weight: 900; color: var(--navy);
}
.client-detail-card__stats span {
  display: block; font-size: 0.65rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.05em; margin-top: 2px;
}
.client-detail-card__tags {
  display: flex; gap: 6px; flex-wrap: wrap;
}
.client-detail-card__tags span {
  background: rgba(14,165,233,.08); border: 1px solid rgba(14,165,233,.2);
  color: var(--sky); font-size: 0.68rem; font-weight: 700;
  padding: 3px 10px; border-radius: 100px;
}

/* ── Clientele logo grid (clients.html) ──────────────────── */
.clientele-section-title {
  font-size: 1.35rem; font-weight: 800; color: var(--navy);
  margin-bottom: 6px;
}
.clientele-section-sub {
  font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0;
}
.clientele-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.clientele-card {
  background: #fff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 24px 16px 18px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  cursor: default;
}
.clientele-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,48,135,.10);
  border-color: var(--sky);
}
.clientele-card img {
  max-height: 68px; max-width: 140px;
  object-fit: contain;
  margin-bottom: 12px;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}
.clientele-card:hover img { filter: grayscale(0%); }
.clientele-card span {
  font-size: 0.74rem; font-weight: 700; color: var(--navy);
  line-height: 1.4;
}

/* Awards gallery grid */
.award-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.award-gallery__item {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #f1f5f9;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.award-gallery__item:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 28px rgba(0,0,0,.15);
}
.award-gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.award-gallery__item:hover img { transform: scale(1.06); }

.cert-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.cert-card {
  background: #fff; border: 2px solid var(--border);
  border-radius: var(--r-lg); padding: 36px 24px; text-align: center;
  transition: all var(--transition);
}
.cert-card:hover { border-color: var(--sky); box-shadow: var(--shadow-sky); }
.cert-card__logo { height: 80px; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; }
.cert-card__logo img { max-height: 80px; max-width: 160px; object-fit: contain; }
.cert-card h4 { color: var(--navy); margin-bottom: 8px; }
.cert-card p { font-size: 0.84rem; }

/* =========================================================
   SOLUTIONS DETAIL (solutions.html)
   ========================================================= */
.sol-detail { margin-bottom: 80px; }
.sol-detail:last-child { margin-bottom: 0; }
.sol-detail__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.sol-detail__visual { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.sol-detail__visual img { width: 100%; aspect-ratio: 16/11; object-fit: cover; }
.sol-detail__visual.gif-visual {
  background: var(--grad-light); display: flex; align-items: center;
  justify-content: center; min-height: 300px;
}
.sol-detail__visual.gif-visual img { object-fit: contain; max-height: 280px; width: auto; max-width: 90%; }
.sol-detail__content .section-tag { margin-bottom: 14px; }
.sol-detail__content h2 { color: var(--navy); margin-bottom: 18px; font-size: 2rem; }
.sol-detail__content p { margin-bottom: 16px; }
.feat-list { display: flex; flex-direction: column; gap: 11px; }
.feat-item { display: flex; gap: 11px; align-items: flex-start; }
.feat-check {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  background: rgba(91,188,216,0.12); border: 1.5px solid var(--sky);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; color: var(--blue); margin-top: 2px;
}
.feat-item p { font-size: 0.88rem; margin: 0; }

/* =========================================================
   PROJECTS PAGE
   ========================================================= */
.proj-hero-stats {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px;
  margin-top: 48px; position: relative; z-index: 2;
}
.proj-hero-stat {
  background: rgba(91,188,216,0.10);
  border: 1px solid rgba(91,188,216,0.22);
  border-radius: var(--r-md); padding: 22px; text-align: left;
  backdrop-filter: blur(8px);
}
.proj-hero-stat .num { font-family: 'Poppins', sans-serif; font-size: 1.9rem; font-weight: 900; color: #fff; }
.proj-hero-stat .lbl { font-size: 0.72rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px; }

.proj-full-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.proj-full-card {
  background: #fff; border-radius: var(--r-lg);
  border: 1.5px solid var(--border-light); overflow: hidden;
  transition: all var(--transition);
}
.proj-full-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.proj-full-card__img { height: 220px; overflow: hidden; }
.proj-full-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.proj-full-card:hover .proj-full-card__img img { transform: scale(1.05); }
.proj-full-card__body { padding: 28px; }
.proj-full-card__meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.proj-full-card__state { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--sky); }
.proj-full-card__badge {
  font-size: 0.68rem; font-weight: 700; padding: 3px 10px;
  background: var(--light-bg); color: var(--blue);
  border: 1px solid var(--border); border-radius: 50px;
}
.proj-full-card__name { font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.proj-full-card__client { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 20px; }
.proj-metrics {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px;
  padding: 18px; background: var(--sky-pale); border-radius: var(--r-md); margin-bottom: 18px;
}
.proj-metric strong { display: block; font-size: 1.4rem; font-weight: 800; color: var(--navy); }
.proj-metric span { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; }
.proj-full-card p { font-size: 0.87rem; margin-bottom: 16px; }
.proj-tags { display: flex; gap: 7px; flex-wrap: wrap; }
.proj-tag {
  background: rgba(91,188,216,0.08); color: var(--blue);
  font-size: 0.72rem; font-weight: 700; padding: 4px 11px;
  border-radius: 50px; border: 1px solid rgba(91,188,216,0.2);
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 56px; }
.contact-info-items { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.contact-info-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px; border-radius: var(--r-md);
  border: 1.5px solid var(--border-light); background: #fff;
}
.contact-info-item__icon {
  width: 42px; height: 42px; border-radius: var(--r-sm); flex-shrink: 0;
  background: var(--grad-blue); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.contact-info-item strong { display: block; font-size: 0.88rem; color: var(--navy); margin-bottom: 4px; font-weight: 700; }
.contact-info-item a, .contact-info-item span { font-size: 0.87rem; color: var(--text-muted); }
.contact-info-item a:hover { color: var(--blue); }

.contact-form-card {
  background: #fff; border-radius: var(--r-xl);
  padding: 44px; box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--border-light);
}
.contact-form-card h3 { color: var(--navy); margin-bottom: 6px; }
.contact-form-card > p { margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm); font-family: inherit;
  font-size: 0.9rem; color: var(--text-dark);
  transition: border-color var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(91,188,216,0.15);
}
.form-group textarea { resize: vertical; min-height: 110px; }

/* =========================================================
   MOBILE NAV DRAWER
   ========================================================= */
.mobile-nav { display: none; position: fixed; inset: 0; z-index: 2000; }
.mobile-nav.open { display: block; }
.mobile-nav__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.65); backdrop-filter: blur(4px); }
.mobile-nav__drawer {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(310px, 90vw);
  background: #040C22; padding: 26px 22px; overflow-y: auto;
  display: flex; flex-direction: column;
}
.mobile-nav__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 36px; }
.mobile-nav__close {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(91,188,216,0.1); color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
}
.mobile-nav__links { flex: 1; }
.mobile-nav__links a {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.7); padding: 13px 12px;
  border-radius: var(--r-sm); font-weight: 500;
  transition: all var(--transition);
}
.mobile-nav__links a:hover { color: #fff; background: rgba(91,188,216,0.10); }
.mobile-nav__links a i { width: 20px; color: var(--sky); }
.mobile-nav__cta { margin-top: 28px; }
.mobile-nav__cta .btn { width: 100%; justify-content: center; }

/* =========================================================
   SCROLL-TO-TOP
   ========================================================= */
.scroll-top {
  position: fixed; bottom: 26px; right: 26px; z-index: 999;
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--grad-sky); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 0.9rem;
  box-shadow: var(--shadow-sky);
  opacity: 0; pointer-events: none; transition: all var(--transition);
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: translateY(-3px); }

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.how-it-works {}

.hiw-flow {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 56px;
  position: relative;
}

.hiw-step {
  flex: 1;
  text-align: center;
  padding: 0 12px;
  position: relative;
}

.hiw-step__num {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--sky);
  margin-bottom: 16px;
  opacity: 0.7;
}

.hiw-step__icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 20px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.hiw-step:hover .hiw-step__icon { transform: scale(1.08); }

.hiw-step__icon--blue  { background: rgba(30,64,175,.1);  color: var(--blue);  box-shadow: 0 0 0 8px rgba(30,64,175,.06); }
.hiw-step__icon--sky   { background: rgba(91,188,216,.12); color: var(--sky);  box-shadow: 0 0 0 8px rgba(91,188,216,.07); }
.hiw-step__icon--navy  { background: rgba(13,31,64,.09);  color: var(--navy); box-shadow: 0 0 0 8px rgba(13,31,64,.05); }
.hiw-step__icon--green { background: rgba(22,163,74,.1);  color: #16a34a;     box-shadow: 0 0 0 8px rgba(22,163,74,.06); }
.hiw-step__icon--orange{ background: rgba(234,88,12,.1);  color: #ea580c;     box-shadow: 0 0 0 8px rgba(234,88,12,.06); }

.hiw-step__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.hiw-step__desc {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 200px;
  margin: 0 auto;
}

/* Animated connector arrows */
.hiw-arrow {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 36px;
  position: relative;
  width: 48px;
}

.hiw-arrow__line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--sky) 0%, rgba(91,188,216,0.3) 100%);
  position: relative;
  overflow: hidden;
}
.hiw-arrow__line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  animation: hiwSweep 2.4s ease-in-out infinite;
}
@keyframes hiwSweep {
  0% { left: -100%; }
  100% { left: 200%; }
}

.hiw-arrow__pulse {
  display: none;
}

.hiw-arrow__icon {
  position: absolute;
  top: 28px;
  font-size: 0.7rem;
  color: var(--sky);
  background: #fff;
  padding: 2px 4px;
  border-radius: 2px;
}

/* Floating dots animation on icons */
@keyframes hiwPulse {
  0%, 100% { box-shadow: 0 0 0 0px rgba(91,188,216,0.35); }
  50%       { box-shadow: 0 0 0 14px rgba(91,188,216,0); }
}
.hiw-step__icon--sky { animation: hiwPulse 2.8s ease-in-out infinite; }

.hiw-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 52px;
  flex-wrap: wrap;
}

.hiw-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(22,163,74,.07);
  border: 1px solid rgba(22,163,74,.2);
  color: #16a34a;
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 600;
}
.hiw-tag i { font-size: 1rem; }

/* =========================================================
   ANIMATIONS
   ========================================================= */
[data-aos] { opacity: 0; transform: translateY(26px); transition: opacity 0.65s ease, transform 0.65s ease; }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }
[data-aos="fade-right"] { transform: translateX(-26px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
[data-aos="fade-left"]  { transform: translateX(26px); }
[data-aos="fade-left"].aos-animate  { transform: translateX(0); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .award-gallery { grid-template-columns: repeat(3, 1fr); }
  .client-logo-grid { grid-template-columns: repeat(4, 1fr); }
  .client-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .clientele-grid { grid-template-columns: repeat(4, 1fr); }
  .hiw-flow { flex-wrap: wrap; justify-content: center; gap: 32px; }
  .hiw-arrow { display: none; }
  .hiw-step { flex: 0 0 calc(50% - 16px); max-width: 220px; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__stats, .hero__actions { justify-content: center; }
  .hero__subtitle { margin: 0 auto 36px; }
  .hero__visual { display: none; }
  .solutions-grid { grid-template-columns: repeat(2,1fr); }
  .ai-grid { grid-template-columns: repeat(2,1fr); }
  .ai-section__inner { grid-template-columns: 1fr; gap: 48px; }
  .ai-cards-grid { grid-template-columns: 1fr 1fr; }
  .ai-left { text-align: center; }
  .ai-stats { justify-content: center; }
  .ai-align-badges { justify-content: center; }
  .impact__grid { grid-template-columns: repeat(4,1fr); gap: 22px; }
  .why__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .proj-hero-stats { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .hiw-step { flex: 0 0 100%; max-width: 280px; }
  .hiw-bottom { flex-direction: column; text-align: center; }
  .navbar__nav, .navbar__cta .btn:first-child { display: none; }
  .navbar__toggle { display: flex; }
  .section { padding: 56px 0; }
  .pillars, .solutions-grid, .projects-grid, .testi-grid { grid-template-columns: 1fr; }
  .proj-full-grid { grid-template-columns: 1fr; }
  .story-grid, .why__grid, .sol-detail__inner, .contact-grid { grid-template-columns: 1fr; }
  .sol-detail:nth-child(even) .sol-detail__inner { direction: ltr; }
  .footer__top { grid-template-columns: 1fr; }
  .cert-cards { grid-template-columns: 1fr; }
  .award-card { flex: 0 0 100%; max-width: 100%; }
  .award-gallery { grid-template-columns: repeat(2, 1fr); }
  .client-logo-grid { grid-template-columns: repeat(2, 1fr); }
  .client-cards-grid { grid-template-columns: 1fr; }
  .clientele-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 24px 18px; }
  .impact__grid { grid-template-columns: repeat(2,1fr); gap: 20px; }
  .ai-grid { grid-template-columns: 1fr; }
  .ai-section__inner { gap: 36px; }
  .ai-cards-grid { grid-template-columns: 1fr; }
  .ai-headline { font-size: clamp(1.7rem, 5vw, 2.4rem); }
  .ai-stats { flex-direction: column; gap: 14px; align-items: center; }
  .ai-stat { text-align: center; }
  .ai-align-badges { flex-wrap: wrap; gap: 8px; justify-content: center; }
  .ai-banner { flex-direction: column; align-items: flex-start; }
  .certs-grid { gap: 28px; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { justify-content: center; }
  .proj-hero-stats { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .clientele-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

/* =========================================================
   FOOTPRINT STATS STRIP
   ========================================================= */
.footprint-stats {
  display: flex;
  background: var(--grad-navy);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: 48px;
  box-shadow: var(--shadow-lg);
}
.fp-stat {
  flex: 1;
  text-align: center;
  padding: 28px 12px;
  border-right: 1px solid rgba(255,255,255,.10);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--sky);
  font-family: 'Poppins', sans-serif;
  line-height: 1.1;
}
.fp-stat:last-child { border-right: none; }
.fp-stat small {
  display: block;
  font-size: 0.65rem;
  color: rgba(255,255,255,.65);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 6px;
  font-family: 'Inter', sans-serif;
}

/* =========================================================
   FOOTPRINT TABLE
   ========================================================= */
.footprint-table {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--border-light);
}
.fp-table-head {
  display: grid;
  grid-template-columns: 1.6fr 2.2fr 80px 1.8fr;
  background: var(--navy);
  color: rgba(255,255,255,.85);
  padding: 14px 28px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  gap: 12px;
  align-items: center;
}
.fp-row {
  display: grid;
  grid-template-columns: 1.6fr 2.2fr 80px 1.8fr;
  padding: 15px 28px;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
  background: #fff;
  font-size: 0.87rem;
  color: var(--text-mid);
  transition: background .2s;
}
.fp-row:nth-child(even) { background: var(--off-white); }
.fp-row:last-child { border-bottom: none; }
.fp-row:hover { background: var(--sky-pale); }
.fp-state-name {
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
}
.fp-state-name i { color: var(--sky); font-size: .85rem; }
.fp-num { font-size: 1.05rem; font-weight: 800; color: var(--navy); }
.fp-total-row {
  display: grid;
  grid-template-columns: 1.6fr 2.2fr 80px 1.8fr;
  padding: 16px 28px;
  gap: 12px;
  align-items: center;
  background: var(--sky-pale);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--navy);
  border-top: 2px solid var(--sky);
}
.fp-total-row .fp-num { color: var(--blue); font-size: 1.1rem; }

/* =========================================================
   5G SMART PANEL SECTION — redesigned
   ========================================================= */
.sc-5gp {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 10px; position: relative; width: 100%;
}
/* The monitor / panel frame */
.sc-5gp__frame {
  width: 220px; height: 138px;
  background: linear-gradient(145deg, rgba(0,18,64,.9) 0%, rgba(0,48,135,.7) 100%);
  border-radius: 14px;
  border: 2.5px solid rgba(91,188,216,.6);
  box-shadow: 0 0 48px rgba(91,188,216,.22), 0 8px 32px rgba(0,0,0,.4);
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.sc-5gp__badge {
  position: absolute; top: -13px; right: -13px;
  background: var(--grad-red); color: #fff;
  font-weight: 900; font-size: 0.95rem;
  border-radius: 50%; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(204,32,32,.5);
  animation: pulse5g 2s ease-in-out infinite;
  font-family: 'Poppins', sans-serif;
}
@keyframes pulse5g {
  0%,100%{ box-shadow:0 4px 16px rgba(204,32,32,.5) }
  50%{ box-shadow:0 4px 24px rgba(204,32,32,.8), 0 0 0 10px rgba(204,32,32,.1) }
}
.sc-5gp__content {
  display: flex; flex-direction: column; align-items: center; gap: 10px; color: var(--sky);
}
.sc-5gp__icon { font-size: 2.6rem; opacity: .9; }
/* Signal wave bars inside screen */
.sc-5gp__waves { display: flex; align-items: flex-end; gap: 5px; height: 24px; }
.sc-5gp__wave {
  width: 5px; background: var(--sky);
  border-radius: 3px;
  animation: waveBar5g 1.4s ease-in-out infinite;
}
.sc-5gp__wave:nth-child(1){ height:8px; animation-delay:0s }
.sc-5gp__wave:nth-child(2){ height:14px; animation-delay:.2s }
.sc-5gp__wave:nth-child(3){ height:22px; animation-delay:.4s }
.sc-5gp__wave:nth-child(4){ height:14px; animation-delay:.6s }
.sc-5gp__wave:nth-child(5){ height:8px; animation-delay:.8s }
@keyframes waveBar5g {
  0%,100%{ opacity:.35; transform:scaleY(.55) }
  50%{ opacity:1; transform:scaleY(1) }
}
/* Stand */
.sc-5gp__neck { width: 36px; height: 10px; background: rgba(91,188,216,.22); border-radius: 3px; }
.sc-5gp__base { width: 80px; height: 5px; background: rgba(91,188,216,.12); border-radius: 4px; }
/* Bottom endorsement tag */
.sc-5gp__tag {
  background: rgba(8,145,178,.1);
  border: 1px solid rgba(91,188,216,.28);
  border-radius: var(--r-md);
  padding: 9px 16px;
  text-align: center; max-width: 250px;
}
.sc-5gp__tag strong {
  display: block; color: var(--sky); font-size: 0.72rem; font-weight: 700; margin-bottom: 2px;
}
.sc-5gp__tag span {
  font-size: 0.68rem; color: rgba(255,255,255,.55); line-height: 1.5;
}
.badge-new {
  display: inline-block;
  background: var(--grad-red);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 100px;
  letter-spacing: .08em;
  vertical-align: middle;
  margin-left: 6px;
  text-transform: uppercase;
}

/* =========================================================
   VIDEO SHOWCASE SECTION
   ========================================================= */
.video-showcase-section {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy-deeper) 100%);
  padding: 88px 0 72px;
}

.video-wrapper {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.55), 0 0 0 1px rgba(91,188,216,.18);
  background: #000;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16/9;
}

.video-player {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0,18,64,.72) 0%, rgba(0,30,100,.55) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  cursor: pointer;
  transition: opacity .4s ease;
}

.video-overlay:hover .video-play-btn {
  transform: scale(1.1);
  background: var(--sky);
  box-shadow: 0 0 0 16px rgba(91,188,216,.18);
}

.video-play-btn {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 2.5px solid rgba(255,255,255,.6);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: #fff;
  transition: all .3s ease;
  backdrop-filter: blur(6px);
  padding-left: 5px; /* optical centering for play icon */
}

.video-overlay-text {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.video-overlay-text strong {
  color: #fff; font-size: 1rem; font-weight: 700;
}
.video-overlay-text span {
  color: rgba(255,255,255,.55); font-size: 0.8rem;
}

/* Caption strip below video */
.video-caption-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.video-cap-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.65); font-size: 0.82rem; font-weight: 500;
}
.video-cap-item i { color: var(--sky); font-size: 0.85rem; }
.video-cap-div {
  width: 1px; height: 16px;
  background: rgba(255,255,255,.15);
}

@media (max-width: 768px) {
  .video-caption-strip { gap: 14px; }
  .video-cap-div { display: none; }
}

/* =========================================================
   TECHNOLOGY BACKBONE SECTION (home page)
   ========================================================= */
.tech-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.06);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.tech-card {
  background: rgba(255,255,255,.04);
  padding: 32px 24px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
  transition: background .3s;
  border-right: 1px solid rgba(255,255,255,.07);
}
.tech-card:last-child { border-right: none; }
.tech-card:hover { background: rgba(91,188,216,.08); }
.tech-card__icon {
  width: 52px; height: 52px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.tech-card__icon--ai { background: rgba(167,139,250,.15); color: #a78bfa; }
.tech-card__icon--sat { background: rgba(56,189,248,.15); color: var(--sky); }
.tech-card__icon--cloud { background: rgba(52,211,153,.15); color: #34d399; }
.tech-card__icon--data { background: rgba(251,146,60,.15); color: #fb923c; }
.tech-card h4 { font-size: 1rem; font-weight: 700; color: #fff; margin: 0; }
.tech-card p { font-size: 0.8rem; color: rgba(255,255,255,.55); line-height: 1.65; margin: 0; }
@media (max-width: 768px) {
  .tech-strip { grid-template-columns: repeat(2, 1fr); }
  .tech-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .tech-card:nth-child(3), .tech-card:nth-child(4) { border-bottom: none; }
}

/* Responsive footprint */
@media (max-width: 768px) {
  .footprint-stats { flex-wrap: wrap; }
  .fp-stat { flex: 0 0 33.33%; border-bottom: 1px solid rgba(255,255,255,.10); }
  .fp-table-head, .fp-row, .fp-total-row {
    grid-template-columns: 1fr 1fr;
    font-size: 0.8rem;
  }
  .fp-table-head span:nth-child(n+3),
  .fp-row span:nth-child(n+3),
  .fp-total-row span:nth-child(n+3) { display: none; }
}
@media (max-width: 480px) {
  .fp-stat { flex: 0 0 50%; }
}
