/* ============================================================
   KOLZEH v2 — Ultra-Modern Stylesheet
   Brand: #0D4ABC | #1074DA
   ============================================================ */
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap");

:root {
  --b1: #0d4abc;
  --b2: #1074da;
  --b3: #3d8ef0;
  --dark: #060d24;
  --dark2: #0b1740;
  --text: #0f172a;
  --muted: #64748b;
  --light: #f1f6fe;
  --lighter: #f8faff;
  --white: #ffffff;
  --border: #dde8f8;
  --cs: 0 2px 20px rgba(13, 74, 188, 0.07);
  --csh: 0 16px 48px rgba(13, 74, 188, 0.18);
  --r: 18px;
  --display: "Bebas Neue", sans-serif;
  --body: "Plus Jakarta Sans", sans-serif;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-thumb {
  background: var(--b2);
  border-radius: 99px;
}

/* ── PRELOADER ── */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition:
    opacity 0.6s,
    visibility 0.6s;
}
#preloader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.pre-logo {
  width: 155px;
  filter: brightness(0) invert(1);
  animation: pop 0.6s ease both;
}
@keyframes pop {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.pre-spinner {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.08);
  border-top-color: var(--b2);
  animation: spin 0.85s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.pre-txt {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 5px;
  text-transform: uppercase;
}

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  transition: all 0.35s;
}
#navbar .nb {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(13, 74, 188, 0.07);
  padding: 0 28px;
  transition: all 0.35s;
}
#navbar.scrolled .nb {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 30px rgba(13, 74, 188, 0.09);
}
.nb-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nb-logo img {
  height: 36px;
  display: block;
}
.nb-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 70px;
}
.nb-links li {
  display: flex;
  align-items: center;
  height: 100%;
}
.nb-links a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  padding: 7px 14px;
  border-radius: 8px;
  transition:
    color 0.2s,
    background 0.2s;
  display: flex;
  align-items: center;
  white-space: nowrap;
  background: transparent;
}
/* Hover ONLY — no persistent background */
.nb-links a:hover {
  color: var(--b1);
  background: rgba(13, 74, 188, 0.07);
}
/* Active — only exact current page, not section links */
.nb-links a.active {
  color: var(--b1);
  font-weight: 700;
}
.nb-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.btn-ghost {
  font-size: 13px;
  font-weight: 700;
  color: var(--b1);
  padding: 8px 18px;
  border-radius: 50px;
  border: 1.5px solid var(--b1);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s;
  white-space: nowrap;
}
.btn-ghost:hover {
  background: var(--b1);
  color: #fff;
}
.btn-pill {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  padding: 9px 22px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--b1), var(--b2));
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 16px rgba(13, 74, 188, 0.3);
  transition: all 0.25s;
  white-space: nowrap;
}
.btn-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 74, 188, 0.4);
  color: #fff;
}
.nb-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transition: background 0.2s;
}
.nb-toggle:hover {
  background: var(--light);
}
.nb-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  margin: 4px 0;
  transition: all 0.3s;
}
.nb-drawer {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  z-index: 8999;
  flex-direction: column;
  gap: 4px;
}
.nb-drawer.open {
  display: flex;
}
.nb-drawer .nb-links {
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}
.nb-drawer .nb-links a {
  padding: 12px 16px;
}
.nb-drawer .nb-actions {
  flex-direction: column;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}
.nb-drawer .btn-ghost,
.nb-drawer .btn-pill {
  justify-content: center;
}

/* ── GLOBAL BUTTONS ── */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.3s;
}
.cta-solid {
  color: #fff;
  padding: 14px 30px;
  background: linear-gradient(135deg, var(--b1), var(--b2));
  box-shadow: 0 6px 20px rgba(13, 74, 188, 0.3);
}
.cta-solid:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(13, 74, 188, 0.42);
  color: #fff;
}
.cta-border {
  color: var(--b1);
  padding: 13px 28px;
  border: 2px solid var(--b1);
  background: transparent;
}
.cta-border:hover {
  background: var(--b1);
  color: #fff;
  transform: translateY(-3px);
}

/* ── SECTION COMMONS ── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(13, 74, 188, 0.07);
  color: var(--b1);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  border: 1px solid rgba(13, 74, 188, 0.1);
}
.tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--b2);
  flex-shrink: 0;
}
.sec-h {
  font-family: var(--display);
  font-size: clamp(34px, 4.8vw, 58px);
  letter-spacing: 1.5px;
  line-height: 1.05;
  color: var(--dark);
}
.sec-h .hi {
  color: var(--b1);
}
.sec-p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 560px;
}

/* ══════════════════════════════════════
   HERO — Clean Modern (no blue panel)
══════════════════════════════════════ */
#hero {
  min-height: 100vh;
  padding: 120px 0 80px;
  background: #f8faff;
  overflow: hidden;
  position: relative;
}
/* Subtle dot-grid over entire hero */
#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(13, 74, 188, 0.07) 1.5px,
    transparent 1.5px
  );
  background-size: 28px 28px;
  z-index: 0;
  pointer-events: none;
}
/* Large radial glow — centre-right */
#hero::after {
  content: "";
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(13, 74, 188, 0.07) 0%,
    transparent 65%
  );
  top: -180px;
  right: -180px;
  z-index: 0;
  pointer-events: none;
}
/* Second soft glow — bottom left */
.hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(16, 116, 218, 0.06) 0%,
    transparent 65%
  );
  bottom: -100px;
  left: -100px;
  pointer-events: none;
  z-index: 0;
}
/* Floating decorative dots */
.hdot {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: hdot 4s ease-in-out infinite;
}
.hd1 {
  width: 14px;
  height: 14px;
  background: var(--b2);
  opacity: 0.35;
  top: 20%;
  left: 38%;
  animation-delay: 0s;
}
.hd2 {
  width: 8px;
  height: 8px;
  background: var(--b1);
  opacity: 0.25;
  top: 60%;
  left: 45%;
  animation-delay: 0.7s;
}
.hd3 {
  width: 18px;
  height: 18px;
  background: #fbbf24;
  opacity: 0.4;
  bottom: 25%;
  right: 8%;
  animation-delay: 1.3s;
}
.hd4 {
  width: 10px;
  height: 10px;
  background: var(--b3);
  opacity: 0.3;
  bottom: 40%;
  left: 5%;
  animation-delay: 0.4s;
}
.hd5 {
  width: 6px;
  height: 6px;
  background: #60a5fa;
  opacity: 0.4;
  top: 35%;
  left: 2%;
  animation-delay: 1.8s;
}
@keyframes hdot {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-14px) rotate(10deg);
  }
}
/* Hero deco shapes — subtle bordered circles */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hs1 {
  width: 460px;
  height: 460px;
  border: 1.5px solid rgba(13, 74, 188, 0.08);
  top: -60px;
  right: -80px;
  animation: slow-spin 40s linear infinite;
}
.hs2 {
  width: 280px;
  height: 280px;
  border: 1px solid rgba(13, 74, 188, 0.06);
  top: 30%;
  right: 5%;
  animation: slow-spin 30s linear infinite reverse;
}
.hs3 {
  width: 140px;
  height: 140px;
  background: linear-gradient(
    135deg,
    rgba(13, 74, 188, 0.05),
    rgba(16, 116, 218, 0.03)
  );
  top: 18%;
  right: 22%;
  animation: hdot 8s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.08);
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(13, 74, 188, 0.07);
  border: 1px solid rgba(13, 74, 188, 0.14);
  color: var(--b1);
  font-size: 12.5px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.live {
  width: 8px;
  height: 8px;
  background: var(--b2);
  border-radius: 50%;
  flex-shrink: 0;
  animation: live 2s ease infinite;
}
@keyframes live {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(16, 116, 218, 0.5);
  }
  60% {
    box-shadow: 0 0 0 8px rgba(16, 116, 218, 0);
  }
}
.hero-h {
  font-family: var(--display);
  font-size: clamp(52px, 7.5vw, 100px);
  line-height: 0.96;
  letter-spacing: 2px;
  color: var(--dark);
  margin-bottom: 26px;
}
.hero-h .grad {
  display: block;
  background: linear-gradient(
    135deg,
    var(--b1) 0%,
    var(--b2) 60%,
    #5aa3f5 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 38px;
  max-width: 480px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.trust-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.trust-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--lighter);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 14px;
}
.trust-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--b1), var(--b2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}
.trust-chip span {
  font-size: 12px;
  font-weight: 600;
}
/* Hero image */
.hero-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
/* Image container card */
.hero-img-card {
  position: relative;
  width: 420px;
  max-width: 100%;
  border-radius: 32px;
  overflow: hidden;
}
.hero-img-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  filter: brightness(1.02);
}
/* Gradient overlay at bottom of image card */
.hero-img-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(13, 74, 188, 0.18), transparent);
  pointer-events: none;
}
/* Floating stat chips */
.hero-float {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 36px rgba(13, 74, 188, 0.14);
  border: 1px solid rgba(13, 74, 188, 0.08);
  z-index: 3;
  animation: float-card 5s ease-in-out infinite;
}
.hero-float-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.hero-float-icon.blue {
  background: linear-gradient(135deg, var(--b1), var(--b2));
  color: #fff;
}
.hero-float-icon.gold {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: #fff;
}
.hero-float-icon.green {
  background: linear-gradient(135deg, #059669, #34d399);
  color: #fff;
}
.hero-float-val {
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: 1px;
  color: var(--dark);
  line-height: 1;
}
.hero-float-lbl {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  margin-top: 2px;
}
.hf1 {
  top: 40px;
  left: -40px;
  animation-delay: 0s;
}
.hf2 {
  top: 180px;
  right: -30px;
  animation-delay: 1.4s;
}
.hf3 {
  bottom: 60px;
  left: -20px;
  animation-delay: 2.8s;
}
@keyframes float-card {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-22px);
  }
}

/* ══════════════════════════════════════
   STATS — light bg #F3F6FF
══════════════════════════════════════ */
#stats {
  background: #f3f6ff;
  padding: 90px 0;
  overflow: hidden;
  position: relative;
}
/* Subtle grid lines */
#stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(13, 74, 188, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 74, 188, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
/* Radial glow blobs */
#stats::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 10% 50%,
      rgba(13, 74, 188, 0.07) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 90% 50%,
      rgba(16, 116, 218, 0.06) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.stats-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
.stats-header h2 {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 46px);
  color: var(--dark);
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.stats-header p {
  font-size: 14px;
  color: var(--muted);
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(13, 74, 188, 0.08);
  overflow: hidden;
}
.stat-cell {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid var(--border);
  transition: background 0.3s;
}
.stat-cell:last-child {
  border-right: none;
}
.stat-cell:hover {
  background: var(--lighter);
}
.stat-ico {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  background: linear-gradient(
    135deg,
    rgba(13, 74, 188, 0.08),
    rgba(16, 116, 218, 0.06)
  );
  border: 1.5px solid rgba(13, 74, 188, 0.12);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--b1);
  transition: all 0.3s;
}
.stat-cell:hover .stat-ico {
  background: linear-gradient(135deg, var(--b1), var(--b2));
  color: #fff;
  border-color: transparent;
  transform: scale(1.08);
}
.stat-ico i {
  font-size: 28px;
  line-height: 1;
}
.stat-num {
  font-family: var(--display);
  font-size: clamp(46px, 6vw, 74px);
  line-height: 1;
  letter-spacing: 2px;
  background: linear-gradient(135deg, var(--b1), var(--b2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-lbl {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  margin-top: 8px;
}

.ol,
ul {
  padding-left: 0rem;
}

/* ══════════════════════════════════════
   PROCESS
══════════════════════════════════════ */
#process {
  padding: 115px 0;
  background: var(--lighter);
  overflow: hidden;
  position: relative;
}
.proc-parallax {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 0% 60%,
    rgba(13, 74, 188, 0.05) 0%,
    transparent 50%
  );
  pointer-events: none;
  will-change: transform;
}
.proc-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.proc-img-wrap::before {
  content: "";
  position: absolute;
  width: 88%;
  height: 88%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px dashed rgba(13, 74, 188, 0.14);
  border-radius: 50%;
  animation: slow-spin 26s linear infinite;
}
@keyframes slow-spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.proc-img-wrap img {
  position: relative;
  z-index: 2;
  max-height: 700px;
  border-radius: 28px;
  object-fit: cover;
}
.steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: var(--r);
  border: 1px solid transparent;
  cursor: default;
  transition: all 0.3s;
}
.step:hover {
  background: #fff;
  border-color: var(--border);
  box-shadow: var(--cs);
  transform: translateX(10px);
}
.step-n {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--b1), var(--b2));
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(13, 74, 188, 0.28);
  transition: transform 0.3s;
}
.step:hover .step-n {
  transform: scale(1.1) rotate(-4deg);
}
.step-title {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 3px;
  color: var(--dark);
}
.step-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

/* ══════════════════════════════════════
   WHY KOLZEH
══════════════════════════════════════ */
#why {
  padding: 115px 0;
  background: #fff;
  overflow: hidden;
  position: relative;
}
.why-para {
  position: absolute;
  right: -240px;
  top: 50%;
  transform: translateY(-50%);
  width: 560px;
  height: 560px;
  background: radial-gradient(
    circle,
    rgba(16, 116, 218, 0.05),
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}
.why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: all 0.3s;
}
.why-card:hover {
  border-color: rgba(16, 116, 218, 0.4);
  box-shadow: var(--csh);
  transform: translateY(-5px);
}
.why-num {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(13, 74, 188, 0.08);
  color: var(--b1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  transition: all 0.3s;
}
.why-card:hover .why-num {
  background: linear-gradient(135deg, var(--b1), var(--b2));
  color: #fff;
}
.why-t {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.why-p {
  font-size: 13px;
  color: ##3a3c3f;
  line-height: 1.75;
}

/* ══════════════════════════════════════
   ABOUT
══════════════════════════════════════ */
#about {
  padding: 115px 0;
  background: var(--lighter);
  overflow: hidden;
  position: relative;
}
.about-card {
  background: #fff;
  border-radius: 28px;
  padding: 56px;
  display: flex;
  gap: 52px;
  align-items: center;
  flex-wrap: wrap;
  border: 1px solid var(--border);
  box-shadow: 0 12px 56px rgba(13, 74, 188, 0.08);
  position: relative;
  overflow: hidden;
}
.about-card::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(13, 74, 188, 0.06), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
/* Logo — 30% */
.about-logo-col {
  flex: 0 0 28%;
  max-width: 28%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-bubble {
  width: 100%;
  aspect-ratio: 1;
  max-width: 240px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(13, 74, 188, 0.07),
    rgba(16, 116, 218, 0.04)
  );
  border: 2px solid rgba(13, 74, 188, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  animation: float 5s ease-in-out infinite;
}
.about-bubble img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* Text — 70% */
.about-copy {
  flex: 1 1 0;
  min-width: 0;
}
.about-copy h2 {
  margin-bottom: 16px;
}
.about-copy p {
  color: #3a3c3f;
  line-height: 1.85;
  margin-bottom: 16px;
}

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
#testi {
  padding: 115px 0;
  background: #fff;
}
.testi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 34px;
  position: relative;
  height: 100%;
  transition: all 0.3s;
  overflow: hidden;
}
.testi-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--b1), var(--b2));
  opacity: 0;
  transition: opacity 0.3s;
}
.testi-card:hover {
  border-color: rgba(13, 74, 188, 0.25);
  box-shadow: var(--csh);
  transform: translateY(-6px);
}
.testi-card:hover::before {
  opacity: 1;
}
.testi-q {
  font-size: 64px;
  line-height: 1;
  color: var(--b2);
  opacity: 0.15;
  font-family: Georgia, serif;
  position: absolute;
  top: 16px;
  left: 24px;
}
.testi-stars {
  color: #f59e0b;
  font-size: 14px;
  margin-bottom: 8px;
}
.testi-txt {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  margin: 24px 0;
}
.testi-av {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--b1), var(--b2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  margin-right: 12px;
}
.testi-name {
  font-weight: 700;
  font-size: 15px;
}
.testi-loc {
  font-size: 12px;
  color: var(--muted);
}

/* ══════════════════════════════════════
   ALUMNI MARQUEE
══════════════════════════════════════ */
#alumni {
  padding: 85px 0;
  background: var(--lighter);
  overflow: hidden;
}
.marquee-wrap {
  overflow: hidden;
  position: relative;
  margin-top: 44px;
}
.marquee-wrap::before,
.marquee-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 160px;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--lighter), transparent);
}
.marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--lighter), transparent);
}
.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee 26s linear infinite;
  padding: 8px 0;
}
.marquee-track:hover {
  animation-play-state: paused;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.m-tile {
  width: 240px;
  height: 120px;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  transition: all 0.3s;
}
.m-tile img {
  max-height: 80px;
  max-width: 200px;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter 0.3s;
}
.m-tile:hover {
  border-color: var(--b2);
  box-shadow: var(--cs);
}
.m-tile:hover img {
  filter: grayscale(0%);
}

/* ══════════════════════════════════════
   FAQ  ✅ ICON BUG FIXED
══════════════════════════════════════ */
#faq {
  padding: 115px 0;
  background: #fff;
}
.faq-wrap {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r);
  margin-bottom: 10px;
  overflow: hidden;
  transition: all 0.3s;
}
.faq-item:hover {
  box-shadow: var(--cs);
  border-color: rgba(13, 74, 188, 0.2);
}
.faq-q {
  /* Using grid instead of flex to guarantee icon never squishes */
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  transition: background 0.2s;
}
.faq-q:hover {
  background: var(--lighter);
}
.faq-q.open {
  color: var(--b1);
}
.faq-icon {
  /* Guaranteed square via both width+height AND min-width+min-height */
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  border-radius: 50%;
  background: var(--light);
  border: 1.5px solid var(--border);
  /* Flex for centring the + / × glyph */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  font-weight: 300;
  color: var(--text);
  transition: all 0.35s ease;
  /* No flex-shrink needed — it's in a grid cell now */
}
.faq-q.open .faq-icon {
  background: linear-gradient(135deg, var(--b1), var(--b2));
  border-color: transparent;
  color: #fff;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s;
  font-size: 14px;
  color: #3a3c3f;
  line-height: 1.85;
  padding: 0 24px;
}
.faq-a.open {
  max-height: 260px;
  padding: 0 24px 22px;
}

/* ══════════════════════════════════════
   ASSOCIATE COLLEGES — marquee carousel
══════════════════════════════════════ */
#colleges {
  padding: 85px 0;
  background: #fff;
  overflow: hidden;
}
.colleges-marquee-wrap {
  overflow: hidden;
  position: relative;
  margin-top: 44px;
}
.colleges-marquee-wrap::before,
.colleges-marquee-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}
.colleges-marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}
.colleges-marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}
.colleges-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 32s linear infinite;
  padding: 8px 0;
}
.colleges-track:hover {
  animation-play-state: paused;
}
.col-tile {
  flex-shrink: 0;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s;
  min-width: 200px;
}
.col-tile:hover {
  border-color: var(--b1);
  box-shadow: 0 8px 24px rgba(13, 74, 188, 0.1);
  transform: translateY(-3px);
}
.col-tile-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(
    135deg,
    rgba(13, 74, 188, 0.08),
    rgba(16, 116, 218, 0.06)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--b1);
  font-size: 20px;
}
.col-tile span {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  line-height: 1.3;
}
#colleges {
  padding: 85px 0;
  background: var(--lighter);
}

/* ══════════════════════════════════════
   APP SECTION — light bg #F3F6FF
══════════════════════════════════════ */
#app {
  background: #f3f6ff;
  padding: 115px 0;
  overflow: hidden;
  position: relative;
}
#app::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(13, 74, 188, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 74, 188, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
#app::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 80% 20%,
      rgba(13, 74, 188, 0.07) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 20% 80%,
      rgba(16, 116, 218, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.app-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(13, 74, 188, 0.08);
  border: 1px solid rgba(13, 74, 188, 0.15);
  color: var(--b1);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.app-h {
  font-family: var(--display);
  font-size: clamp(40px, 5.5vw, 68px);
  color: var(--dark);
  letter-spacing: 2px;
  line-height: 1.05;
  margin-bottom: 18px;
}
.app-h .grad {
  background: linear-gradient(135deg, var(--b1), var(--b2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.app-p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 36px;
}
.store-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.store-btn {
  background: #fff;
  border: 1.5px solid var(--border);
  color: var(--dark);
  border-radius: 14px;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  box-shadow: 0 2px 12px rgba(13, 74, 188, 0.06);
}
.store-btn i {
  font-size: 22px;
  color: var(--b1);
}
.store-btn:hover {
  background: linear-gradient(135deg, var(--b1), var(--b2));
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 74, 188, 0.3);
}
.store-btn:hover i {
  color: #fff;
}
.app-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.app-stat {
  text-align: center;
  padding: 18px 10px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: #fff;
  box-shadow: 0 2px 12px rgba(13, 74, 188, 0.06);
  transition: all 0.3s;
}
.app-stat:hover {
  border-color: rgba(13, 74, 188, 0.3);
  box-shadow: 0 8px 24px rgba(13, 74, 188, 0.12);
  transform: translateY(-3px);
}
.app-sn {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: 1px;
  background: linear-gradient(135deg, var(--b1), var(--b2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.app-sl {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.4;
}
/* ══════════════════════════════════════
   APP PHONE MOCKUP — Attractive 3D style
══════════════════════════════════════ */
.app-phone-scene {
  position: relative;
  width: 320px;
  margin: 0 auto;
}
.phone {
  width: 260px;
  margin: 0 auto;
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 48px;
  padding: 16px;
  box-shadow:
    0 60px 120px rgba(13, 74, 188, 0.25),
    0 20px 40px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: perspective(900px) rotateY(-6deg) rotateX(3deg);
  animation: phone-tilt 6s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
@keyframes phone-tilt {
  0%,
  100% {
    transform: perspective(900px) rotateY(-6deg) rotateX(3deg) translateY(0);
  }
  50% {
    transform: perspective(900px) rotateY(-3deg) rotateX(1deg) translateY(-12px);
  }
}
.phone-notch {
  width: 80px;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  margin: 0 auto 14px;
}
.phone-scr {
  background: linear-gradient(160deg, #0d2470 0%, #0d4abc 60%, #1074da 100%);
  border-radius: 32px;
  height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.phone-scr::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 30% 20%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 70% 80%,
      rgba(16, 116, 218, 0.3) 0%,
      transparent 50%
    );
}
/* Owl logo on phone */
.phone-owl {
  width: 80px;
  height: 80px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  position: relative;
  z-index: 1;
  animation: owl-pulse 3s ease-in-out infinite;
}
.phone-owl img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@keyframes owl-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(96, 165, 250, 0);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(96, 165, 250, 0.12);
  }
}
.phone-app-name {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 3px;
  color: #fff;
  position: relative;
  z-index: 1;
}
.phone-app-tagline {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.phone-bar {
  width: 56%;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.phone-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #60a5fa, #93c5fd);
  border-radius: 99px;
  animation: fill-loop 2.5s ease infinite;
}
@keyframes fill-loop {
  0% {
    width: 0;
  }
  70%,
  100% {
    width: 100%;
  }
}
.phone-launch-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}
.phone-home {
  width: 50px;
  height: 4px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 99px;
  margin: 14px auto 0;
}
/* Floating feature cards around phone */
.phone-float {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(13, 74, 188, 0.12);
  font-size: 12px;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
  animation: float-card 5s ease-in-out infinite;
  z-index: 3;
}
.phone-float i {
  font-size: 18px;
  color: var(--b1);
}
.pf1 {
  top: 20px;
  left: -30px;
  animation-delay: 0s;
}
.pf2 {
  top: 140px;
  right: -20px;
  animation-delay: 1.2s;
}
.pf3 {
  bottom: 80px;
  left: -20px;
  animation-delay: 2.4s;
}
@keyframes float-card {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* ══════════════════════════════════════
   FOOTER — white bg with minimal elements
══════════════════════════════════════ */
footer {
  background: #ffffff;
  padding: 90px 0 0;
  color: var(--muted);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}
/* Top gradient accent line */
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--b1) 30%,
    var(--b2) 70%,
    transparent 100%
  );
}
/* Subtle grid bg */
.foot-bg-dots {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(13, 74, 188, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 74, 188, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.foot-bg-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.foot-bg-circle.fc1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(13, 74, 188, 0.04), transparent 70%);
  top: -100px;
  right: -100px;
}
.foot-bg-circle.fc2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(16, 116, 218, 0.04),
    transparent 70%
  );
  bottom: 0;
  left: -80px;
}
.foot-logo img {
  height: 36px;
  margin-bottom: 18px;
}
.foot-desc {
  font-size: 13.5px;
  line-height: 1.85;
  max-width: 280px;
  margin-bottom: 28px;
  color: var(--muted);
}
.foot-h {
  color: var(--dark);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.foot-ul {
  list-style: none;
}
.foot-ul li {
  margin-bottom: 10px;
}
.foot-ul a {
  font-size: 13.5px;
  color: var(--muted);
  transition: color 0.2s;
}
.foot-ul a:hover {
  color: var(--b1);
}
.foot-cr {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
}
.foot-cr a {
  color: var(--muted);
  transition: color 0.2s;
}
.foot-cr a:hover {
  color: var(--b1);
}
.foot-ci {
  width: 32px;
  height: 32px;
  background: rgba(13, 74, 188, 0.08);
  border: 1px solid rgba(13, 74, 188, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--b1);
  flex-shrink: 0;
}
.sub-box {
  display: flex;
  background: var(--lighter);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  overflow: hidden;
  max-width: 320px;
}
.sub-box input {
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  padding: 12px 18px;
  font-family: var(--body);
  font-size: 13px;
  flex: 1;
}
.sub-box input::placeholder {
  color: var(--muted);
}
.sub-box button {
  background: linear-gradient(135deg, var(--b1), var(--b2));
  color: #fff;
  border: none;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}
.sub-box button:hover {
  background: linear-gradient(135deg, #0a3ca0, var(--b1));
}
.soc-row {
  display: flex;
  gap: 8px;
  margin-top: 22px;
}
.soc {
  width: 40px;
  height: 40px;
  background: var(--lighter);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 16px;
  transition: all 0.3s;
}
.soc:hover {
  background: linear-gradient(135deg, var(--b1), var(--b2));
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
}
.foot-bar {
  border-top: 1px solid var(--border);
  margin-top: 64px;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
  z-index: 2;
}
.foot-bar p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.foot-bar b {
  color: var(--b1);
}

/* ── AOS ── */
[data-aos] {
  opacity: 0;
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
[data-aos="fade-up"] {
  transform: translateY(48px);
}
[data-aos="fade-right"] {
  transform: translateX(-48px);
}
[data-aos="fade-left"] {
  transform: translateX(48px);
}
[data-aos="zoom-in"] {
  transform: scale(0.87);
}
[data-aos].aos-ok {
  opacity: 1 !important;
  transform: none !important;
}

/* ── Scroll top ── */
#toTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--b1), var(--b2));
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(13, 74, 188, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 8000;
  transition: all 0.3s;
}
#toTop:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(13, 74, 188, 0.5);
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  #hero {
    text-align: center;
  }
  .hero-sub,
  .trust-row,
  .hero-btns {
    justify-content: center;
    max-width: 100%;
  }
  .trust-row {
    display: flex;
  }
  .hero-img-wrap {
    margin-top: 50px;
  }
  #hero::before {
    width: 100%;
    clip-path: none;
    opacity: 0.15;
  }
  .hdot {
    display: none;
  }
  .about-card {
    flex-direction: column;
    text-align: center;
    padding: 36px 28px;
    gap: 28px;
  }
  .about-logo-col {
    flex: 0 0 100%;
    max-width: 160px;
    margin: 0 auto;
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-cell:nth-child(2) {
    border-right: none;
  }
  .stat-cell:nth-child(3),
  .stat-cell:last-child {
    border-top: 1px solid var(--border);
  }
  .stat-cell:nth-child(3) {
    border-right: 1px solid var(--border);
  }
  .stat-cell:last-child {
    border-right: none;
  }
  .app-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .phone-float {
    display: none;
  }
}
@media (max-width: 767px) {
  .sec-h {
    font-size: 36px;
  }
  .hero-h {
    font-size: 52px;
  }
  .proc-img-wrap {
    display: none;
  }
  .phone {
    width: 220px;
  }
  .phone-scr {
    height: 280px;
  }
  .foot-bar {
    flex-direction: column;
    text-align: center;
  }
  .sub-box {
    max-width: 100%;
  }
  .about-bubble {
    width: 120px;
    height: 120px;
  }
  .nb-toggle {
    display: flex;
  }
}
@media (max-width: 575px) {
  .hero-h {
    font-size: 44px;
  }
  .cta {
    padding: 12px 22px;
    font-size: 13px;
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ══════════════════════════════════════
   TESTIMONIALS — RTL Auto-scroll Carousel
   Added to support testi-marquee-outer / testi-marquee-track
   Existing .testi-card styles above remain unchanged.
   ══════════════════════════════════════ */

/* Outer container: hides overflow, adds fade-edge masks */
.testi-marquee-outer {
  position: relative;
  overflow: hidden;
  margin-top: 48px;
  padding: 8px 0 24px;
}
.testi-marquee-outer::before,
.testi-marquee-outer::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 180px;
  z-index: 2;
  pointer-events: none;
}
.testi-marquee-outer::before {
  left: 0;
  background: linear-gradient(to right, #fff 30%, transparent);
}
.testi-marquee-outer::after {
  right: 0;
  background: linear-gradient(to left, #fff 30%, transparent);
}

/* Scrolling track — slides right-to-left */
.testi-marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: testi-slide-rtl 40s linear infinite;
  will-change: transform;
}
/* Pause on hover so users can read */
.testi-marquee-track:hover {
  animation-play-state: paused;
}
@keyframes testi-slide-rtl {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Card sizing inside the marquee — inherits all .testi-card styles */
.testi-marquee-track .testi-card {
  width: 340px;
  flex-shrink: 0;
  height: auto; /* override height:100% which causes issues in flex row */
  cursor: default;
}

/* Footer row inside each card (avatar + name/location) */
.testi-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* Responsive: shrink cards a bit on smaller screens */
@media (max-width: 768px) {
  .testi-marquee-track .testi-card {
    width: 280px;
  }
  .testi-marquee-outer::before,
  .testi-marquee-outer::after {
    width: 60px;
  }
}
