/* ============================================================
   home.css – Styles specific to the Home page
   ============================================================ */

/* ============================================================
   HERO SECTION — Image Background, Modern Redesign
   ============================================================ */

/* ── Section shell ── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--h-dark, #061929);
}

/* ── Background image ── */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

/* ── Hero Video (YouTube iframe / MP4) ── */
.hero-video-wrap {
  position: absolute; inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-video-yt {
  position: absolute;
  top: 50%; left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 */
  min-height: 100%;
  min-width: 177.78vh;
  transform: translate(-50%, -50%);
  border: none;
}

/* ── Overlay — single gradient, dark → transparent ── */
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--h-dark-96) 0%, var(--h-dark-80) 50%, var(--h-dark-45) 100%);
}

/* ── Decorative ring (one, accent color) ── */
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06);
  pointer-events: none;
  z-index: 1;
}
.hero-ring-1 { width: 600px; height: 600px; top: -200px; right: -150px; border-color: var(--h-accent-14); }
.hero-ring-2 { display: none; }
.hero-ring-3 { display: none; }

/* ── Dot grid decoration ── */
.hero-dots {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  right: 30px; top: 20%;
  width: 160px; height: 200px;
  background-image: radial-gradient(circle, rgba(255,255,255,.18) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  opacity: .5;
}

/* ── Layout container ── */
.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  min-height: 100vh;
  padding-top: 80px;
  padding-bottom: 100px;
}

/* ── LEFT: text content ── */
.hero-content { max-width: 600px; flex-shrink: 0; }

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  background: var(--h-gold-12);
  border: 1px solid var(--h-gold-35);
  color: var(--h-gold);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 8px 20px 8px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  animation: fadeInDown .7s ease both;
}
.hero-badge-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--h-gold);
  flex-shrink: 0;
  box-shadow: 0 0 0 0 var(--h-gold-40);
  animation: pulse-ring 1.8s ease-out infinite;
}
@keyframes fadeInDown { from { opacity:0; transform:translateY(-16px); } to { opacity:1; transform:translateY(0); } }

/* Headline */
.hero-headline {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 24px;
  letter-spacing: -.03em;
  animation: fadeInUp .7s .1s ease both;
}
/* Accent underline */
.hero-accent-wrap {
  position: relative;
  display: inline-block;
  color: var(--h-gold);
}
.hero-accent-line {
  display: block;
  position: absolute;
  bottom: -4px; left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--h-gold), var(--h-gold-dk));
  border-radius: 2px;
  transform-origin: left;
  animation: lineGrow .9s .6s cubic-bezier(.22,1,.36,1) both;
}
@keyframes lineGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* Subtext */
.hero-subtext {
  font-size: 1.08rem;
  color: rgba(255,255,255,.78);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
  animation: fadeInUp .7s .2s ease both;
}
.hero-subtext strong { color: #fff; font-weight: 700; }

/* CTA buttons */
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 36px;
  animation: fadeInUp .7s .3s ease both;
}
.hero-btn-primary {
  background: linear-gradient(135deg, var(--h-gold), var(--h-gold-dk));
  color: #0a1628;
  border: none;
  font-weight: 800;
  font-size: 1rem;
  padding: 15px 34px;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 24px var(--h-gold-40);
  transition: all .25s ease;
}
.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px var(--h-gold-40);
  filter: brightness(1.12);
  color: #0a1628;
}
.hero-btn-ghost {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.4);
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 34px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  transition: all .25s ease;
}
.hero-btn-ghost:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.7);
  transform: translateY(-3px);
  color: #fff;
}

/* Trust pills */
.hero-trust {
  display: flex; gap: 10px; flex-wrap: wrap;
  animation: fadeInUp .7s .4s ease both;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(6px);
}
.trust-pill i { color: #22c55e; font-size: .7rem; }

/* ── RIGHT: stat cards ── */
.hero-stats-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
  animation: fadeInRight .7s .3s ease both;
}
@keyframes fadeInRight { from { opacity:0; transform:translateX(40px); } to { opacity:1; transform:translateX(0); } }
@keyframes fadeInUp    { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }

.hero-stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  padding: 18px 24px;
  min-width: 230px;
  color: #fff;
  transition: transform .3s ease, box-shadow .3s ease;
}
.hero-stat-card:hover {
  transform: translateX(-6px);
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
}
.hsc-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.hsc-num {
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
  color: #fff;
}
.hsc-num span { font-size: 1.1rem; font-weight: 700; opacity: .85; }
.hsc-label {
  font-size: .75rem;
  color: rgba(255,255,255,.65);
  font-weight: 500;
  margin-top: 3px;
  letter-spacing: .02em;
}
/* Staggered float animations */
.hsc-1 { animation: float 6s ease-in-out infinite; }
.hsc-2 { animation: float 6s ease-in-out 1.2s infinite; }
.hsc-3 { animation: float 6s ease-in-out 2.4s infinite; }
.hsc-4 { animation: float 6s ease-in-out 3.6s infinite; }

/* ── Scroll indicator (mouse style) ── */
.hero-scroll-hint {
  position: absolute;
  bottom: 90px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero-scroll-mouse {
  width: 22px; height: 36px;
  border: 2px solid rgba(255,255,255,.35);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.hero-scroll-wheel {
  width: 3px; height: 8px;
  background: rgba(255,255,255,.6);
  border-radius: 2px;
  animation: scrollWheel 1.8s ease-in-out infinite;
}
@keyframes scrollWheel {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(12px); }
}

/* ── Bottom wave divider ── */
.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  z-index: 3;
  line-height: 0;
}
.hero-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-stats-col { display: none; }
  .hero-container {
    justify-content: center;
    text-align: center;
  }
  .hero-content { max-width: 720px; }
  .hero-actions { justify-content: center; }
  .hero-trust   { justify-content: center; }
  .hero-badge   { margin-left: auto; margin-right: auto; }
}
@media (max-width: 600px) {
  .hero-headline { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-subtext  { font-size: .98rem; }
  .hero-btn-primary, .hero-btn-ghost { padding: 13px 24px; font-size: .92rem; }
  .hero-scroll-hint { display: none; }
}

/* Keep lower hero info blocks in one straight row on desktop */
@media (min-width: 1025px) {
  .hero-trust,
  .hs2-stats-strip,
  .hs3-stats-row,
  .hs4-chips,
  .hs5-stats {
    flex-wrap: nowrap;
  }

  .hero-trust {
    justify-content: flex-start;
    gap: 12px;
  }

  .trust-pill,
  .hs2-stat,
  .hs3-stat-card,
  .hs4-chip,
  .hs5-stat-card {
    white-space: nowrap;
    flex: 0 0 auto;
  }
}

/* ============================================================
   HERO STYLE 2 — Split Screen
   ============================================================ */
.hs2 {
  background: var(--h-dark);
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-height: 100vh;
  padding: 0;
}
.hs2-left {
  width: 55%;
  background: var(--h-dark);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 100px 60px 50px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.hs2-circles .hs2-c1,
.hs2-circles .hs2-c2 { display: none; }
.hs2-content { position: relative; z-index: 1; }
.hs2-stats-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.hs2-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 10px 14px;
  flex: 1;
  min-width: 120px;
  animation: fadeInUp .7s .5s ease both;
}
.hs2-stat-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.hs2-stat-num { font-size: 1.25rem; font-weight: 900; color: #fff; line-height: 1; }
.hs2-stat-num span { font-size: .8rem; font-weight: 700; opacity: .8; }
.hs2-stat-lbl { font-size: .68rem; color: rgba(255,255,255,.55); margin-top: 2px; }

.hs2-right {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.hs2-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.hs2-right::after { display: none; }
.hs2-wave {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 60px; z-index: 2;
}
.hs2-wave svg { width: 100%; height: 100%; }
.hs2-right-badge {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  background: var(--h-gold);
  color: #0a1628;
  font-size: .78rem;
  font-weight: 800;
  padding: 8px 18px;
  border-radius: 999px;
  display: flex; align-items: center; gap: 6px;
  box-shadow: 0 6px 20px rgba(0,0,0,.3);
  white-space: nowrap;
}
@media (max-width: 900px) {
  .hs2 { flex-direction: column; }
  .hs2-left { width: 100%; padding: 100px 24px 40px; }
  .hs2-right { height: 280px; }
  .hs2-wave { display: none; }
}
@media (max-width: 600px) {
  .hs2-left { padding: 88px 18px 32px; }
  .hs2-right { height: 220px; }
}

/* ============================================================
   HERO STYLE 3 — Centered Bold (animated gradient)
   ============================================================ */
.hs3 {
  background: var(--h-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
  overflow: hidden;
}
.hs3-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hs3-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}
.hs3-overlay {
  position: absolute; inset: 0;
  background: var(--h-dark-88);
}
.hs3-bg::after { display: none; }
.hs3-shape,
.hs3-dots { display: none; }
.hs3-wrap {
  position: relative; z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 100px;
}
.hs3-badge {
  background: var(--h-neon1-12) !important;
  border-color: var(--h-neon1-35) !important;
  color: var(--h-neon1) !important;
  margin: 0 auto 24px;
}
.hs3-badge .hero-badge-pulse { background: var(--h-neon1) !important; }
.hs3-headline { text-align: center; }
.hs3-accent {
  color: var(--h-neon1);
  position: relative;
}
.hs3-subtext { text-align: center; margin: 0 auto 36px; max-width: 560px; }
.hs3-btn-primary {
  background: var(--h-neon1);
  color: #fff; border: none;
  font-weight: 800; font-size: 1rem;
  padding: 15px 34px; border-radius: var(--radius-full);
  box-shadow: 0 6px 24px var(--h-neon1-35);
  transition: all .25s;
}
.hs3-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 32px var(--h-neon1-40); color: #fff; }
.hs3-btn-ghost {
  background: rgba(255,255,255,.1); color: #fff;
  border: 1.5px solid rgba(255,255,255,.35);
  font-weight: 600; font-size: 1rem;
  padding: 15px 34px; border-radius: var(--radius-full);
  backdrop-filter: blur(8px); transition: all .25s;
}
.hs3-btn-ghost:hover { background: rgba(255,255,255,.2); color: #fff; transform: translateY(-3px); }
.hs3-stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 48px;
  width: 100%;
  animation: fadeInUp .7s .5s ease both;
}
.hs3-stat-card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 18px;
  padding: 20px 24px;
  text-align: center;
  min-width: 130px;
  flex: 1;
  max-width: 180px;
  transition: transform .3s, box-shadow .3s;
}
.hs3-stat-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.2); }
.hs3-stat-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin: 0 auto 10px;
}
.hs3-stat-num { font-size: 1.6rem; font-weight: 900; color: #fff; line-height: 1; }
.hs3-stat-num span { font-size: 1rem; font-weight: 700; opacity: .8; }
.hs3-stat-lbl { font-size: .72rem; color: rgba(255,255,255,.55); margin-top: 4px; }
@media (max-width: 600px) {
  .hs3-stats-row { gap: 10px; }
  .hs3-stat-card { padding: 14px 16px; min-width: 110px; }
  .hs3-stat-num { font-size: 1.3rem; }
}

/* ============================================================
   HERO STYLE 4 — Glass Morphism
   ============================================================ */
.hs4 {
  background: var(--h-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
}
.hs4-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hs4-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  /* brighter so the image is clearly visible behind the glass card */
  filter: brightness(.78) saturate(1.05);
}
.hs4-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.42);
}
.hs4-overlay2 { display: none; }
.hs4-wrap {
  position: relative; z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 80px;
  padding-bottom: 100px;
  min-height: 100vh;
}
.hs4-glass-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 28px;
  padding: 52px 56px;
  max-width: 660px;
  box-shadow: 0 32px 80px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.15);
  animation: fadeInUp .7s .1s ease both;
}
.hs4-badge {
  background: var(--h-gold-12) !important;
  border-color: var(--h-gold-35) !important;
  color: var(--h-gold) !important;
}
.hs4-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.hs4-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  padding: 10px 14px;
  flex: 1;
  min-width: 140px;
  transition: background .2s;
}
.hs4-chip:hover { background: rgba(255,255,255,.16); }
.hs4-chip-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.hs4-chip-num { font-size: 1.1rem; font-weight: 900; color: #fff; line-height: 1; }
.hs4-chip-num span { font-size: .75rem; font-weight: 700; opacity: .8; }
.hs4-chip-lbl { font-size: .65rem; color: rgba(255,255,255,.55); margin-top: 2px; }
@media (max-width: 860px) {
  .hs4-glass-card { padding: 36px 28px; max-width: 100%; }
}
@media (max-width: 600px) {
  .hs4-glass-card { padding: 28px 20px; border-radius: 20px; }
  .hs4-chip { min-width: 110px; }
}

/* ============================================================
   HERO STYLE 5 — Light Professional
   ============================================================ */
.hs5 {
  background: #f0f7ff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}
.hs5-topbar {
  width: 100%; height: 5px;
  background: var(--h-accent);
  flex-shrink: 0;
}
.hs5-container {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 60px;
  padding-top: 80px;
  padding-bottom: 60px;
  min-height: calc(100vh - 5px);
}
.hs5-content { flex: 1; min-width: 0; }
.hs5-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--h-accent-08);
  border: 1px solid var(--h-accent-22);
  color: var(--h-accent);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 22px;
  animation: fadeInDown .7s ease both;
}
.hs5-headline {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: #0c2340;
  line-height: 1.12;
  margin-bottom: 22px;
  letter-spacing: -.03em;
  animation: fadeInUp .7s .1s ease both;
}
.hs5-headline span { color: var(--h-accent); }
.hs5-subtext {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 34px;
  max-width: 520px;
  animation: fadeInUp .7s .2s ease both;
}
.hs5-subtext strong { color: #0c2340; }
.hs5-btn-primary {
  background: var(--h-accent);
  color: #fff; border: none;
  font-weight: 800; font-size: 1rem;
  padding: 15px 34px; border-radius: var(--radius-full);
  box-shadow: 0 6px 24px var(--h-accent-22);
  transition: all .25s;
}
.hs5-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 32px var(--h-accent-22); color: #fff; }
.hs5-btn-outline {
  background: #fff;
  color: var(--h-accent);
  border: 2px solid var(--h-accent);
  font-weight: 700; font-size: 1rem;
  padding: 13px 32px; border-radius: var(--radius-full);
  transition: all .25s;
}
.hs5-btn-outline:hover { background: var(--h-accent); color: #fff; transform: translateY(-3px); }
.hs5-trust {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin: 18px 0 28px;
  animation: fadeInUp .7s .4s ease both;
}
.hs5-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .78rem; font-weight: 600; color: #475569;
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 5px 13px;
  border-radius: var(--radius-full);
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.hs5-stats {
  display: flex; flex-wrap: wrap; gap: 12px;
  animation: fadeInUp .7s .5s ease both;
}
.hs5-stat-card {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  transition: transform .25s, box-shadow .25s;
  flex: 1; min-width: 150px;
}
.hs5-stat-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.hs5-stat-icon { width: 42px; height: 42px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 1.15rem; flex-shrink: 0; }
.hs5-stat-num { font-size: 1.35rem; font-weight: 900; color: #0c2340; line-height: 1; }
.hs5-stat-num span { font-size: .85rem; font-weight: 700; color: var(--h-accent); }
.hs5-stat-lbl { font-size: .68rem; color: #64748b; margin-top: 3px; }
.hs5-visual {
  flex-shrink: 0;
  width: 42%;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
}
.hs5-img-wrap {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.16);
  position: relative;
  height: 520px;
}
.hs5-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.hs5-img-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.14);
}
.hs5-ib-icon { width: 36px; height: 36px; border-radius: 10px; background: linear-gradient(135deg,#f5c518,#c9a000); display: flex; align-items: center; justify-content: center; color: #0a1628; font-size: .9rem; }
.hs5-ib-num  { font-size: 1.1rem; font-weight: 900; color: #0c2340; line-height: 1; }
.hs5-ib-lbl  { font-size: .65rem; color: #64748b; }
@media (max-width: 1024px) {
  .hs5-visual { display: none; }
  .hs5-container { justify-content: center; }
  .hs5-subtext { max-width: 100%; }
}
@media (max-width: 600px) {
  .hs5-container { padding-top: 70px; padding-bottom: 40px; }
  .hs5-headline { font-size: clamp(2rem, 8vw, 2.8rem); }
}

/* ============================================================
   HERO STYLE 6 — Neon Glow
   ============================================================ */
.hs6 {
  background: var(--h-dark);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
/* ── background image layer ── */
.hs6-img-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hs6-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  /* keep it visible but dark enough for neon effect */
  filter: brightness(.35) saturate(.7);
}
.hs6-img-overlay {
  position: absolute; inset: 0;
  background: var(--h-dark-85);
}
.hs6-grid { display: none; }
.hs6-orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none; z-index: 2;
}
.hs6-orb.o1 { width: 480px; height: 480px; top: -120px; right: -80px; background: var(--h-neon1-18); }
.hs6-orb.o2,
.hs6-orb.o3 { display: none; }
.hs6-container {
  position: relative; z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 100vh;
  padding-top: 80px;
  padding-bottom: 100px;
}
.hs6-content { max-width: 580px; flex-shrink: 0; }
.hs6-badge {
  display: inline-flex;
  align-items: center; gap: 8px;
  background: var(--h-neon1-08);
  border: 1px solid var(--h-neon1-35);
  color: var(--h-neon1);
  font-size: .78rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  animation: fadeInDown .7s ease both;
  box-shadow: 0 0 16px var(--h-neon1-15);
}
.hs6-headline {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 24px;
  letter-spacing: -.03em;
  animation: fadeInUp .7s .1s ease both;
}
.hs6-headline span {
  color: var(--h-neon1);
}
.hs6-btn-primary {
  background: var(--h-neon1);
  color: #fff; border: none;
  font-weight: 800; font-size: 1rem;
  padding: 15px 34px; border-radius: 10px;
  box-shadow: 0 0 24px var(--h-neon1-40);
  transition: all .25s;
}
.hs6-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 0 40px var(--h-neon1-60); color: #fff; }
.hs6-btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.4);
  font-weight: 600; font-size: 1rem;
  padding: 15px 34px; border-radius: 10px;
  transition: all .25s;
}
.hs6-btn-ghost:hover { background: rgba(255,255,255,.1); color: #fff; transform: translateY(-3px); }
.hs6-stats-col {
  display: flex; flex-direction: column; gap: 14px;
  flex-shrink: 0;
  animation: fadeInRight .7s .3s ease both;
}
.hs6-card {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid;
  border-radius: 16px;
  padding: 18px 24px;
  min-width: 230px;
  transition: transform .3s, box-shadow .3s;
}
.hs6-card:hover { transform: translateX(-6px); }
.hs6-card-icon {
  width: 50px; height: 50px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.hs6-card-num { font-size: 1.65rem; font-weight: 900; line-height: 1; }
.hs6-card-num span { font-size: 1rem; font-weight: 700; opacity: .8; }
.hs6-card-lbl { font-size: .72rem; color: rgba(255,255,255,.45); margin-top: 3px; }
@media (max-width: 1024px) {
  .hs6-stats-col { display: none; }
  .hs6-container { justify-content: center; text-align: center; }
  .hs6-content { max-width: 720px; }
  .hs6-btn-primary, .hs6-btn-ghost { display: inline-flex; justify-content: center; }
}
@media (max-width: 600px) {
  .hs6-headline { font-size: clamp(2rem, 8vw, 2.8rem); }
}

/* ============================================================
   END OF HERO STYLE ADDITIONS
   ============================================================ */

/* ---------- Stats ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

/* ---------- About Preview ---------- */
.about-preview-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-preview-img { position: relative; }
.img-main {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); height: 480px;
}
.img-main img { width: 100%; height: 100%; object-fit: cover; }
.img-badge-card {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--accent); color: #fff;
  border-radius: var(--radius-lg); padding: 18px 22px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 30px rgba(245,197,24,.4);
  animation: float 5s ease-in-out infinite;
}
.badge-icon { font-size: 2rem; }
.badge-num { font-size: 1.4rem; font-weight: 800; line-height: 1; }
.badge-text { font-size: .75rem; opacity: .9; }
.img-secondary {
  position: absolute; top: -20px; left: -20px;
  width: 160px; height: 130px; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md);
  border: 4px solid #fff;
}
.img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-features { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }
.af-item { display: flex; gap: 14px; align-items: flex-start; }
.af-icon {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: .75rem; flex-shrink: 0; margin-top: 2px;
}
.af-item h4 { font-size: .95rem; font-weight: 700; margin-bottom: 4px; }
.af-item p { font-size: .85rem; color: var(--text-muted); }
.about-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== Company Logo Auto Slider ===== */
.logo-slider-section {
  background: #fff;
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--border-light, #e5e7eb);
  border-bottom: 1px solid var(--border-light, #e5e7eb);
  padding: 0;
}
.ls-header {
  text-align: center;
  padding: 20px 0 8px;
}
.ls-header span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted, #6b7280);
}
.ls-header span i { color: var(--primary, #0096c7); }

/* Fade edges */
.logo-slider-section::before,
.logo-slider-section::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}
.logo-slider-section::before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, transparent 100%);
}
.logo-slider-section::after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, transparent 100%);
}

.ls-track-wrap { overflow: hidden; padding: 24px 0 36px; }
.ls-track {
  display: flex;
  width: max-content;
  animation: logoScroll 26s linear infinite;
}
.ls-track:hover { animation-play-state: paused; }

@keyframes logoScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Each item = exactly 1/7 of the viewport so 7 logos show at once */
.ls-item {
  flex-shrink: 0;
  width: 14.285vw;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
}

.ls-img {
  height: 150px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  opacity: 1;
  filter: none;
  transition: transform .35s ease, box-shadow .35s ease;
  display: block;
  border-radius: 12px;
}
.ls-img:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 30px rgba(0,0,0,.15);
}

/* ===== WHO WE ARE / VISION / MISSION — REDESIGNED ===== */
.wwa-section {
  background: #f8faff;
  padding: 96px 0 108px;
  position: relative;
  overflow: hidden;
}

/* Background blobs */
.wwa-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.wwa-blob-1 {
  width: 520px; height: 520px;
  top: -180px; left: -180px;
  background: radial-gradient(circle, rgba(0,150,199,.08) 0%, transparent 70%);
}
.wwa-blob-2 {
  width: 400px; height: 400px;
  bottom: -140px; right: -100px;
  background: radial-gradient(circle, rgba(245,197,24,.07) 0%, transparent 70%);
}
.wwa-section .container { position: relative; z-index: 1; }

/* ---- Top Heading ---- */
.wwa-top-heading {
  text-align: center;
  margin-bottom: 64px;
}
.wwa-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(0,150,199,.1), rgba(245,197,24,.1));
  color: var(--primary, #0096c7);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 50px;
  margin-bottom: 16px;
  border: 1px solid rgba(0,150,199,.12);
}
.wwa-top-heading h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--text-dark, #0f172a);
  line-height: 1.15;
  margin-bottom: 14px;
}
.wwa-top-heading h2 .text-accent { color: #f5c518; }
.wwa-subtitle {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1rem;
  color: var(--text-muted, #6b7280);
  line-height: 1.7;
}

/* ---- Main Grid ---- */
.wwa-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}

/* ---- IMAGE COLUMN ---- */
.wwa-img-col { position: relative; }

.wwa-img-wrap {
  position: relative;
  padding: 24px 0 24px 24px;
}

/* Main image */
.wwa-img-main {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 24px 64px rgba(0,150,199,.18);
  display: block;
}

/* Mini overlapping image */
.wwa-img-mini-wrap {
  position: absolute;
  bottom: -28px;
  left: -24px;
  width: 200px;
  height: 150px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.2);
  border: 4px solid #fff;
  z-index: 3;
}
.wwa-img-mini {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Floating stat badges */
.wwa-stat-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 16px;
  padding: 10px 18px 10px 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.14);
  z-index: 4;
  min-width: 160px;
  animation: wsb-float 4s ease-in-out infinite;
}
.wwa-stat-badge--tl { top: 24px; left: -20px; animation-delay: 0s; }
.wwa-stat-badge--br { bottom: 46px; right: -20px; animation-delay: 2s; }

@keyframes wsb-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
.wsb-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(0,150,199,.12);
  color: var(--primary, #0096c7);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.wsb-orange {
  background: rgba(245,197,24,.12) !important;
  color: #f5c518 !important;
}
.wsb-text { display: flex; flex-direction: column; line-height: 1.2; }
.wsb-text strong {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark, #0f172a);
}
.wsb-text span {
  font-size: .72rem;
  color: var(--text-muted, #6b7280);
}

/* Experience circle */
.wwa-exp-circle {
  position: absolute;
  top: -12px; right: -12px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0096c7 0%, #2e5de8 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  box-shadow: 0 8px 28px rgba(0,150,199,.4);
  z-index: 4;
}
.wwa-exp-num {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
}
.wwa-exp-lbl {
  font-size: .6rem;
  font-weight: 600;
  opacity: .88;
  line-height: 1.3;
  margin-top: 2px;
}

/* Dot grid decoration */
.wwa-dots-grid {
  position: absolute;
  bottom: 10px; right: -30px;
  width: 110px; height: 110px;
  background-image: radial-gradient(circle, rgba(0,150,199,.22) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  z-index: 0;
  border-radius: 8px;
}

/* ---- CONTENT COLUMN ---- */
.wwa-content-col { padding-left: 8px; }

.wwa-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0,150,199,.08);
  color: var(--primary, #0096c7);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  border: 1px solid rgba(0,150,199,.1);
}
.wwa-content-col h3 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 900;
  color: var(--text-dark, #0f172a);
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -.4px;
}
.wwa-content-col h3 span { color: var(--primary, #0096c7); }
.wwa-content-col > p {
  font-size: .95rem;
  color: var(--text-muted, #6b7280);
  line-height: 1.85;
  margin-bottom: 14px;
}

/* Blockquote */
.wwa-quote {
  position: relative;
  background: linear-gradient(135deg, rgba(0,150,199,.06) 0%, rgba(245,197,24,.05) 100%);
  border-left: 4px solid #f5c518;
  border-radius: 0 12px 12px 0;
  padding: 16px 20px 16px 44px;
  font-size: .95rem;
  font-weight: 600;
  font-style: italic;
  color: var(--text-dark, #0f172a);
  margin: 20px 0 24px;
}
.wwa-quote .fa-quote-left {
  position: absolute;
  left: 14px; top: 16px;
  font-size: 1rem;
  color: #f5c518;
  opacity: .7;
}

/* Feature pills */
.wwa-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.wwa-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1.5px solid rgba(0,150,199,.12);
  color: var(--primary, #0096c7);
  font-size: .8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(0,150,199,.06);
  transition: background .25s, color .25s, transform .25s;
}
.wwa-pill .fa-check-circle { color: #22c55e; }
.wwa-pill:hover {
  background: var(--primary, #0096c7);
  color: #fff;
  transform: translateY(-2px);
}
.wwa-pill:hover .fa-check-circle { color: #86efac; }

/* Vision & Mission blocks */
.wwa-vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.wwa-vm-block {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border-radius: 18px;
  padding: 22px 18px;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  border: 1px solid rgba(0,150,199,.07);
  transition: transform .28s ease, box-shadow .28s ease;
}
.wwa-vm-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(0,0,0,.1);
}
.wwa-vm-icon {
  width: 46px; height: 46px;
  border-radius: 14px;
  background: rgba(0,150,199,.1);
  color: var(--primary, #0096c7);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.wwa-vm-icon--orange {
  background: rgba(245,197,24,.1) !important;
  color: #f5c518 !important;
}
.wwa-vm-body h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark, #0f172a);
  margin-bottom: 6px;
}
.wwa-vm-body p {
  font-size: .82rem;
  color: var(--text-muted, #6b7280);
  line-height: 1.7;
  margin: 0;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .wwa-grid { gap: 48px; grid-template-columns: 1fr 1.2fr; }
}
@media (max-width: 900px) {
  .wwa-grid { grid-template-columns: 1fr; gap: 80px; }
  .wwa-img-col .wwa-img-wrap { max-width: 520px; margin: 0 auto; }
  .wwa-content-col { padding-left: 0; }
}
@media (max-width: 640px) {
  .wwa-section { padding: 60px 0 72px; }
  .wwa-top-heading { margin-bottom: 40px; }
  .wwa-img-main { height: 320px; }
  .wwa-vm-grid { grid-template-columns: 1fr; }
  .wwa-stat-badge--tl { left: 0; top: 8px; }
  .wwa-stat-badge--br { right: 0; bottom: 28px; }
}

/* ===== WHO WE ARE STYLE VARIANTS (ADMIN SWITCHABLE) ===== */
/* Style 1 uses the default block above */

/* Style 2: Dark Glass */
.wwa-section.wwa-style-2 {
  background:
    radial-gradient(1200px 420px at 8% -2%, rgba(6,182,212,.14), transparent 56%),
    radial-gradient(900px 350px at 100% 102%, rgba(168,85,247,.18), transparent 62%),
    linear-gradient(145deg, #040a1a 0%, #0b1630 100%);
}
.wwa-style-2 .wwa-blob-1,
.wwa-style-2 .wwa-blob-2 { display: none; }
.wwa-style-2 .wwa-kicker {
  background: rgba(6,182,212,.13);
  border-color: rgba(6,182,212,.26);
  color: #67e8f9;
}
.wwa-style-2 .wwa-top-heading h2,
.wwa-style-2 .wwa-content-col h3,
.wwa-style-2 .wwa-vm-body h4 { color: #e2e8f0; }
.wwa-style-2 .wwa-top-heading h2 .text-accent { color: #a78bfa; }
.wwa-style-2 .wwa-subtitle,
.wwa-style-2 .wwa-content-col > p,
.wwa-style-2 .wwa-vm-body p { color: #94a3b8; }
.wwa-style-2 .wwa-label {
  background: rgba(15,23,42,.8);
  border-color: rgba(103,232,249,.28);
  color: #67e8f9;
}
.wwa-style-2 .wwa-img-main {
  box-shadow: 0 24px 68px rgba(2,132,199,.28);
  border: 1px solid rgba(103,232,249,.28);
}
.wwa-style-2 .wwa-img-mini-wrap { border-color: #0f172a; }
.wwa-style-2 .wwa-stat-badge,
.wwa-style-2 .wwa-vm-block {
  background: rgba(15,23,42,.72);
  border: 1px solid rgba(148,163,184,.22);
  box-shadow: 0 12px 36px rgba(2,6,23,.36);
}
.wwa-style-2 .wsb-text strong { color: #f8fafc; }
.wwa-style-2 .wsb-text span { color: #cbd5e1; }
.wwa-style-2 .wwa-exp-circle {
  background: linear-gradient(135deg, #06b6d4 0%, #a855f7 100%);
  box-shadow: 0 10px 34px rgba(34,211,238,.44);
}
.wwa-style-2 .wwa-quote {
  background: rgba(15,23,42,.58);
  border-left-color: #22d3ee;
  color: #e2e8f0;
}
.wwa-style-2 .wwa-quote .fa-quote-left { color: #22d3ee; }
.wwa-style-2 .wwa-pill {
  background: rgba(15,23,42,.75);
  border-color: rgba(34,211,238,.28);
  color: #67e8f9;
  box-shadow: none;
}
.wwa-style-2 .wwa-pill:hover {
  background: #22d3ee;
  color: #082f49;
}
.wwa-style-2 .wwa-pill:hover .fa-check-circle { color: #0f172a; }

/* Style 3: Stacked Story */
.wwa-section.wwa-style-3 {
  background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
}
.wwa-style-3 .wwa-grid {
  grid-template-columns: 1fr;
  gap: 40px;
}
.wwa-style-3 .wwa-content-col {
  order: 1;
  padding-left: 0;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.wwa-style-3 .wwa-img-col {
  order: 2;
  max-width: 840px;
  width: 100%;
  margin: 0 auto;
}
.wwa-style-3 .wwa-label,
.wwa-style-3 .wwa-kicker { margin-left: auto; margin-right: auto; }
.wwa-style-3 .wwa-content-col > p,
.wwa-style-3 .wwa-subtitle,
.wwa-style-3 .wwa-quote { margin-left: auto; margin-right: auto; max-width: 760px; }
.wwa-style-3 .wwa-quote { border-radius: 14px; padding-right: 22px; }
.wwa-style-3 .wwa-pills { justify-content: center; }
.wwa-style-3 .wwa-vm-grid {
  max-width: 880px;
  margin: 0 auto;
}
.wwa-style-3 .wwa-img-wrap { padding: 20px; }
.wwa-style-3 .wwa-img-main {
  border-radius: 28px;
  height: 430px;
}

/* Style 4: Warm Gradient */
.wwa-section.wwa-style-4 {
  background:
    radial-gradient(900px 320px at 4% -2%, rgba(251,146,60,.2), transparent 58%),
    radial-gradient(900px 320px at 98% 102%, rgba(217,119,6,.2), transparent 58%),
    linear-gradient(145deg, #fff7ed 0%, #ffedd5 100%);
}
.wwa-style-4 .wwa-blob-1 {
  background: radial-gradient(circle, rgba(234,88,12,.12) 0%, transparent 70%);
}
.wwa-style-4 .wwa-blob-2 {
  background: radial-gradient(circle, rgba(251,146,60,.12) 0%, transparent 70%);
}
.wwa-style-4 .wwa-grid {
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
}
.wwa-style-4 .wwa-img-col { order: 2; }
.wwa-style-4 .wwa-content-col { order: 1; padding-left: 0; }
.wwa-style-4 .wwa-kicker {
  background: rgba(251,146,60,.16);
  border-color: rgba(234,88,12,.2);
  color: #9a3412;
}
.wwa-style-4 .wwa-top-heading h2 .text-accent { color: #ea580c; }
.wwa-style-4 .wwa-label {
  background: rgba(251,146,60,.14);
  border-color: rgba(234,88,12,.2);
  color: #9a3412;
}
.wwa-style-4 .wwa-img-main { box-shadow: 0 24px 64px rgba(194,65,12,.2); }
.wwa-style-4 .wwa-exp-circle {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  box-shadow: 0 10px 32px rgba(234,88,12,.36);
}
.wwa-style-4 .wwa-pill {
  background: #fff;
  border-color: rgba(249,115,22,.28);
  color: #9a3412;
}
.wwa-style-4 .wwa-pill:hover { background: #f97316; color: #fff; }
.wwa-style-4 .wwa-vm-block {
  border-color: rgba(249,115,22,.18);
  box-shadow: 0 6px 20px rgba(194,65,12,.1);
}
.wwa-style-4 .wwa-vm-icon {
  background: rgba(249,115,22,.14);
  color: #ea580c;
}
.wwa-style-4 .wwa-vm-icon--orange {
  background: rgba(217,119,6,.14) !important;
  color: #b45309 !important;
}

/* Style 5: Minimal Card */
.wwa-section.wwa-style-5 {
  background: #f8fafc;
}
.wwa-style-5 .wwa-blob { display: none; }
.wwa-style-5 .container {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 26px;
  padding: 36px 24px;
  box-shadow: 0 20px 58px rgba(15,23,42,.07);
}
.wwa-style-5 .wwa-top-heading {
  text-align: left;
  margin-bottom: 34px;
}
.wwa-style-5 .wwa-subtitle {
  margin-left: 0;
  max-width: 720px;
}
.wwa-style-5 .wwa-grid {
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.wwa-style-5 .wwa-img-wrap {
  padding: 0;
}
.wwa-style-5 .wwa-img-main {
  height: 390px;
  border-radius: 18px;
  box-shadow: none;
}
.wwa-style-5 .wwa-img-mini-wrap {
  width: 156px;
  height: 114px;
  left: 10px;
  bottom: 10px;
  border-width: 2px;
}
.wwa-style-5 .wwa-exp-circle,
.wwa-style-5 .wwa-dots-grid { display: none; }
.wwa-style-5 .wwa-stat-badge {
  min-width: 140px;
  padding: 8px 12px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}
.wwa-style-5 .wwa-stat-badge--tl { top: 10px; left: 10px; }
.wwa-style-5 .wwa-stat-badge--br { right: 10px; bottom: 10px; }
.wwa-style-5 .wwa-content-col h3 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); }
.wwa-style-5 .wwa-content-col > p { line-height: 1.75; font-size: .9rem; }
.wwa-style-5 .wwa-quote {
  border-radius: 12px;
  border-left-width: 3px;
  padding: 14px 16px 14px 38px;
  font-size: .9rem;
}
.wwa-style-5 .wwa-pills { gap: 8px; margin-bottom: 24px; }
.wwa-style-5 .wwa-pill {
  border-radius: 10px;
  padding: 6px 10px;
  font-size: .74rem;
  box-shadow: none;
}
.wwa-style-5 .wwa-vm-block {
  border-radius: 14px;
  box-shadow: none;
}

@media (max-width: 900px) {
  .wwa-style-4 .wwa-grid,
  .wwa-style-5 .wwa-grid {
    grid-template-columns: 1fr;
  }
  .wwa-style-4 .wwa-img-col { order: 1; }
  .wwa-style-4 .wwa-content-col { order: 2; }
  .wwa-style-5 .wwa-top-heading { text-align: center; }
  .wwa-style-5 .wwa-subtitle { margin: 0 auto; }
}

@media (max-width: 640px) {
  .wwa-style-2 .wwa-content-col,
  .wwa-style-3 .wwa-content-col,
  .wwa-style-4 .wwa-content-col,
  .wwa-style-5 .wwa-content-col {
    text-align: left;
  }
  .wwa-style-3 .wwa-pills { justify-content: flex-start; }
  .wwa-style-3 .wwa-label,
  .wwa-style-3 .wwa-kicker { margin-left: 0; margin-right: 0; }
  .wwa-style-5 .container { border-radius: 16px; padding: 24px 16px; }
}

/* ===== WHY MYLEARNIFY TECHNOLOGY — REDESIGNED ===== */
.wml-section {
  background: #f8faff;
  padding: 96px 0 112px;
  position: relative;
  overflow: hidden;
}
.wml-blob { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; }
.wml-blob-1 {
  width: 560px; height: 560px;
  top: -200px; right: -160px;
  background: radial-gradient(circle, rgba(0,150,199,.07) 0%, transparent 70%);
}
.wml-blob-2 {
  width: 420px; height: 420px;
  bottom: -140px; left: -120px;
  background: radial-gradient(circle, rgba(245,197,24,.07) 0%, transparent 70%);
}
.wml-section .container { position: relative; z-index: 1; }

/* ---- Hero split grid ---- */
.wml-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 80px;
}

/* Image column */
.wml-hero-img-col { position: relative; }
.wml-hero-img-wrap {
  position: relative;
  padding: 28px 0 28px 28px;
}
.wml-hero-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 28px 72px rgba(0,150,199,.18);
  display: block;
}
/* Mini overlapping image */
.wml-hero-mini-wrap {
  position: absolute;
  bottom: -24px; left: -16px;
  width: 190px; height: 140px;
  border-radius: 18px;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 10px 36px rgba(0,0,0,.18);
  z-index: 3;
}
.wml-hero-mini { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Floating badge shared */
.wml-hw-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 16px;
  padding: 10px 16px 10px 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,.13);
  z-index: 4;
  animation: wmlFloat 4s ease-in-out infinite;
}
.wml-hw-badge--tl { top: 20px; left: -24px; animation-delay: 0s; }
.wml-hw-badge--br { bottom: 48px; right: -20px; animation-delay: 2s; }
@keyframes wmlFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
.wml-hw-badge-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.wml-hw-badge-txt { display: flex; flex-direction: column; line-height: 1.2; }
.wml-hw-badge-txt strong { font-size: .95rem; font-weight: 800; color: #0f172a; }
.wml-hw-badge-txt span  { font-size: .7rem; color: #6b7280; }
/* Experience circle */
.wml-hero-exp {
  position: absolute;
  top: -10px; right: -10px;
  width: 96px; height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0096c7 0%, #2e5de8 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: #fff; text-align: center;
  box-shadow: 0 8px 28px rgba(0,150,199,.4);
  z-index: 4;
}
.wml-hero-exp-n { font-size: 1.45rem; font-weight: 900; line-height: 1; }
.wml-hero-exp-l { font-size: .57rem; font-weight: 600; opacity: .88; line-height: 1.3; margin-top: 2px; }
/* Dot grid */
.wml-dots-bg {
  position: absolute;
  bottom: 12px; right: -28px;
  width: 104px; height: 104px;
  background-image: radial-gradient(circle, rgba(0,150,199,.22) 1.5px, transparent 1.5px);
  background-size: 13px 13px;
  z-index: 0; border-radius: 8px;
}

/* Content column */
.wml-hero-content { padding-left: 4px; }
.wml-hero-content h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  font-weight: 900;
  color: #0f172a;
  line-height: 1.2;
  margin: 14px 0 16px;
}
.wml-hero-lead {
  font-size: .97rem;
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 28px;
}
/* USP checklist */
.wml-usp-list {
  list-style: none;
  padding: 0; margin: 0 0 32px;
  display: flex; flex-direction: column; gap: 16px;
}
.wml-usp-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.wml-usp-chk {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--ck) 12%, transparent);
  color: var(--ck);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  margin-top: 2px;
}
.wml-usp-list strong {
  display: block;
  font-size: .95rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 2px;
}
.wml-usp-list p {
  font-size: .82rem;
  color: #6b7280;
  line-height: 1.65;
  margin: 0;
}
.wml-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---- Feature cards with images ---- */
.wml-feat-img-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}
.wml-fic-card {
  background: #fff;
  border-radius: 22px;
  overflow: visible;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  border: 1px solid rgba(0,150,199,.07);
  transition: transform .3s ease, box-shadow .3s ease;
}
.wml-fic-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.13);
}
.wml-fic-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  border-radius: 22px 22px 0 0;
}
.wml-fic-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.wml-fic-card:hover .wml-fic-img-wrap img { transform: scale(1.07); }
.wml-fic-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--ibg);
  color: #fff;
  font-size: 1.25rem;
  box-shadow: 0 6px 20px rgba(0,0,0,.22);
  border: 3px solid #fff;
  margin-top: -26px;
  margin-left: 20px;
  margin-bottom: 14px;
  position: relative;
  z-index: 3;
}
.wml-fic-body {
  padding: 0 22px 26px;
  border-radius: 0 0 22px 22px;
}
.wml-fic-body h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}
.wml-fic-body p {
  font-size: .85rem;
  color: #6b7280;
  line-height: 1.75;
  margin: 0;
}

/* ---- Why Choose Cards Style Variants (1-5) ---- */
/* style-1 default */
.wml-feat-img-grid.wml-card-style-2 .wml-fic-card {
  background: rgba(255,255,255,.72);
  border-color: rgba(148,163,184,.3);
  box-shadow: 0 10px 28px rgba(15,23,42,.14);
  backdrop-filter: blur(10px);
}
.wml-feat-img-grid.wml-card-style-2 .wml-fic-icon-badge {
  border-color: rgba(255,255,255,.75);
}

.wml-feat-img-grid.wml-card-style-3 .wml-fic-card {
  border-radius: 14px;
  box-shadow: none;
  border: 1.5px solid #cbd5e1;
}
.wml-feat-img-grid.wml-card-style-3 .wml-fic-card:hover {
  transform: translateY(-4px);
  box-shadow: none;
  border-color: #94a3b8;
}
.wml-feat-img-grid.wml-card-style-3 .wml-fic-img-wrap {
  height: 172px;
  border-radius: 14px 14px 0 0;
}
.wml-feat-img-grid.wml-card-style-3 .wml-fic-body {
  padding: 0 14px 16px;
}

.wml-feat-img-grid.wml-card-style-4 .wml-fic-card {
  background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
  border: 1px solid rgba(34,211,238,.36);
  box-shadow: 0 12px 32px rgba(2,6,23,.4);
}
.wml-feat-img-grid.wml-card-style-4 .wml-fic-body h4 { color: #e2e8f0; }
.wml-feat-img-grid.wml-card-style-4 .wml-fic-body p { color: #cbd5e1; }
.wml-feat-img-grid.wml-card-style-4 .wml-fic-icon-badge {
  border-color: #0f172a;
  box-shadow: 0 6px 20px rgba(2,6,23,.38);
}

.wml-feat-img-grid.wml-card-style-5 .wml-fic-card {
  border: 1.5px dashed rgba(148,163,184,.85);
  border-radius: 10px;
  box-shadow: none;
}
.wml-feat-img-grid.wml-card-style-5 .wml-fic-img-wrap {
  border-radius: 10px 10px 0 0;
}
.wml-feat-img-grid.wml-card-style-5 .wml-fic-body {
  padding: 0 14px 16px;
}
.wml-feat-img-grid.wml-card-style-5 .wml-fic-body h4 { font-size: .96rem; }
.wml-feat-img-grid.wml-card-style-5 .wml-fic-body p { font-size: .8rem; line-height: 1.68; }

/* ---- Certificate strip ---- */
.wml-cert-strip {
  display: flex;
  align-items: center;
  gap: 0;
  background: linear-gradient(135deg, #0096c7 0%, #2e5de8 100%);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(0,150,199,.28);
  position: relative;
}
.wml-cert-strip::before {
  content: '';
  position: absolute;
  top: -60px; right: 80px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  pointer-events: none;
}
.wml-cert-img {
  flex-shrink: 0;
  width: 220px;
  height: 160px;
  overflow: hidden;
  opacity: .75;
}
.wml-cert-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wml-cert-left {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  flex: 1;
  padding: 32px 28px;
  position: relative; z-index: 1;
}
.wml-cert-icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #fff;
}
.wml-cert-text h4 { font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: 6px; }
.wml-cert-text p  { font-size: .88rem; color: rgba(255,255,255,.82); line-height: 1.7; margin: 0; max-width: 420px; }
.wml-cert-btn {
  flex-shrink: 0;
  background: #fff !important;
  color: #0096c7 !important;
  border-color: #fff !important;
  font-weight: 800;
  padding: 14px 32px;
  font-size: .92rem;
  border-radius: 50px;
  margin-right: 36px;
  position: relative; z-index: 1;
  transition: transform .25s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.wml-cert-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.2); }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .wml-feat-img-grid { grid-template-columns: repeat(2, 1fr); }
  .wml-hero-grid { gap: 48px; }
}
@media (max-width: 900px) {
  .wml-hero-grid { grid-template-columns: 1fr; gap: 80px; margin-bottom: 56px; }
  .wml-hero-img-wrap { max-width: 520px; margin: 0 auto; }
  .wml-hero-content { padding-left: 0; }
}
@media (max-width: 768px) {
  .wml-feat-img-grid { grid-template-columns: 1fr; }
  .wml-cert-strip { flex-direction: column; align-items: stretch; }
  .wml-cert-img { width: 100%; height: 160px; }
  .wml-cert-btn { margin: 0 24px 28px; }
}
@media (max-width: 480px) {
  .wml-section { padding: 60px 0 72px; }
  .wml-hero-main { height: 300px; }
  .wml-hw-badge--tl { left: 0; }
  .wml-hw-badge--br { right: 0; }
}

/* ===== WHY CHOOSE SECTION STYLE VARIANTS (ADMIN SWITCHABLE) ===== */
/* Style 1 uses default block above */

/* Style 2: Dark Glass */
.wml-section.wml-style-2 {
  background:
    radial-gradient(980px 340px at 2% -4%, rgba(34,211,238,.15), transparent 58%),
    radial-gradient(900px 320px at 98% 102%, rgba(168,85,247,.22), transparent 62%),
    linear-gradient(145deg, #040a1a 0%, #0c1734 100%);
}
.wml-style-2 .wml-blob-1,
.wml-style-2 .wml-blob-2 { display: none; }
.wml-style-2 .wml-hero-content h2,
.wml-style-2 .wml-fic-body h4,
.wml-style-2 .wml-usp-list strong { color: #e2e8f0; }
.wml-style-2 .wml-hero-lead,
.wml-style-2 .wml-usp-list p,
.wml-style-2 .wml-fic-body p { color: #cbd5e1; }
.wml-style-2 .wml-hero-main {
  border: 1px solid rgba(103,232,249,.28);
  box-shadow: 0 24px 68px rgba(2,132,199,.28);
}
.wml-style-2 .wml-hw-badge,
.wml-style-2 .wml-fic-card {
  background: rgba(15,23,42,.72);
  border: 1px solid rgba(148,163,184,.24);
  box-shadow: 0 12px 36px rgba(2,6,23,.38);
}
.wml-style-2 .wml-hw-badge-txt strong { color: #f8fafc; }
.wml-style-2 .wml-hw-badge-txt span { color: #cbd5e1; }
.wml-style-2 .wml-usp-chk {
  background: rgba(103,232,249,.14);
  color: #67e8f9;
}

/* Style 3: Centered Story */
.wml-section.wml-style-3 {
  background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
}
.wml-style-3 .wml-hero-grid {
  grid-template-columns: 1fr;
  gap: 44px;
  margin-bottom: 54px;
}
.wml-style-3 .wml-hero-img-col {
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
}
.wml-style-3 .wml-hero-content {
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  padding-left: 0;
}
.wml-style-3 .wml-hero-content > .badge { margin-left: auto; margin-right: auto; }
.wml-style-3 .wml-hero-lead { margin-left: auto; margin-right: auto; max-width: 760px; }
.wml-style-3 .wml-usp-list { max-width: 840px; margin-left: auto; margin-right: auto; text-align: left; }
.wml-style-3 .wml-hero-btns { justify-content: center; }
.wml-style-3 .wml-feat-img-grid { gap: 20px; }

/* Style 4: Warm Editorial */
.wml-section.wml-style-4 {
  background:
    radial-gradient(980px 340px at 4% -2%, rgba(251,146,60,.2), transparent 58%),
    radial-gradient(900px 320px at 98% 102%, rgba(217,119,6,.2), transparent 58%),
    linear-gradient(145deg, #fff7ed 0%, #ffedd5 100%);
}
.wml-style-4 .wml-blob-1 {
  background: radial-gradient(circle, rgba(249,115,22,.12) 0%, transparent 70%);
}
.wml-style-4 .wml-blob-2 {
  background: radial-gradient(circle, rgba(217,119,6,.12) 0%, transparent 70%);
}
.wml-style-4 .wml-hero-content h2,
.wml-style-4 .wml-fic-body h4,
.wml-style-4 .wml-usp-list strong { color: #7c2d12; }
.wml-style-4 .wml-hero-lead,
.wml-style-4 .wml-usp-list p,
.wml-style-4 .wml-fic-body p { color: #9a3412; }
.wml-style-4 .wml-hw-badge,
.wml-style-4 .wml-fic-card {
  border-color: rgba(249,115,22,.2);
  box-shadow: 0 10px 28px rgba(194,65,12,.14);
}
.wml-style-4 .wml-hero-exp {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  box-shadow: 0 10px 32px rgba(234,88,12,.34);
}

/* Style 5: Minimal Frame */
.wml-section.wml-style-5 {
  background: #f8fafc;
}
.wml-style-5 .wml-blob { display: none; }
.wml-style-5 .container {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 26px;
  padding: 36px 24px;
  box-shadow: 0 20px 58px rgba(15,23,42,.07);
}
.wml-style-5 .wml-hero-grid { gap: 36px; margin-bottom: 46px; }
.wml-style-5 .wml-hero-img-wrap { padding: 0; }
.wml-style-5 .wml-hero-main {
  height: 420px;
  border-radius: 18px;
  box-shadow: none;
}
.wml-style-5 .wml-hero-mini-wrap {
  width: 156px;
  height: 114px;
  left: 10px;
  bottom: 10px;
  border-width: 2px;
}
.wml-style-5 .wml-hero-exp,
.wml-style-5 .wml-dots-bg { display: none; }
.wml-style-5 .wml-hw-badge {
  min-width: 140px;
  padding: 8px 12px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}
.wml-style-5 .wml-hw-badge--tl { top: 10px; left: 10px; }
.wml-style-5 .wml-hw-badge--br { right: 10px; bottom: 10px; }
.wml-style-5 .wml-feat-img-grid { gap: 16px; margin-bottom: 20px; }
.wml-style-5 .wml-fic-card { border-radius: 14px; box-shadow: none; }
.wml-style-5 .wml-fic-img-wrap { border-radius: 14px 14px 0 0; height: 168px; }
.wml-style-5 .wml-fic-body { padding: 0 14px 16px; }

@media (max-width: 900px) {
  .wml-style-5 .container { border-radius: 16px; padding: 24px 16px; }
}

/* ===== LEARN FROM EXPERTS — WHAT SETS US APART ===== */
.lfe-section {
  background: linear-gradient(180deg, #fff 0%, #f0f4ff 40%, #fff 100%);
  padding: 96px 0 108px;
  position: relative;
  overflow: hidden;
}
.lfe-blob { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; }
.lfe-blob-1 { width: 480px; height: 480px; top: -160px; left: -160px;
  background: radial-gradient(circle, rgba(0,150,199,.07) 0%, transparent 70%); }
.lfe-blob-2 { width: 400px; height: 400px; bottom: -100px; right: -120px;
  background: radial-gradient(circle, rgba(245,197,24,.06) 0%, transparent 70%); }
.lfe-section .container { position: relative; z-index: 1; }

/* ── Top Split ── */
.lfe-top {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 80px;
}
.lfe-top-left h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #0f172a;
  line-height: 1.15;
  margin: 14px 0 16px;
}
.lfe-lead {
  font-size: .97rem;
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 440px;
}
/* Image stack */
.lfe-top-right { position: relative; }
.lfe-img-stack { position: relative; padding: 24px 0 24px 24px; }
.lfe-img-main {
  width: 100%; height: 420px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: 0 24px 64px rgba(0,150,199,.16);
  display: block;
}
.lfe-img-sm-wrap {
  position: absolute;
  bottom: -20px; left: -16px;
  width: 180px; height: 130px;
  border-radius: 16px;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 10px 32px rgba(0,0,0,.16);
  z-index: 3;
}
.lfe-img-sm { width: 100%; height: 100%; object-fit: cover; display: block; }
.lfe-stat-badge {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  background: #fff;
  border-radius: 14px;
  padding: 9px 16px 9px 10px;
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
  z-index: 4;
  animation: lfeFloat 4s ease-in-out infinite;
}
.lfe-sb-tl { top: 18px; left: -20px; animation-delay: 0s; }
.lfe-sb-br { bottom: 40px; right: -16px; animation-delay: 2s; }
@keyframes lfeFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }
.lfe-sb-icon { width:36px; height:36px; border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:.95rem; flex-shrink:0; }
.lfe-sb-txt { display:flex; flex-direction:column; line-height:1.2; }
.lfe-sb-txt strong { font-size:.95rem; font-weight:800; color:#0f172a; }
.lfe-sb-txt span   { font-size:.68rem; color:#6b7280; }

/* ── USP Cards ── */
.lfe-usp-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}
.lfe-usp-card {
  background: #fff;
  border-radius: 22px;
  padding: 28px 22px 24px;
  border: 1px solid rgba(0,150,199,.08);
  box-shadow: 0 4px 20px rgba(0,0,0,.05);
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.lfe-usp-card:hover { transform: translateY(-6px); box-shadow: 0 14px 44px rgba(0,0,0,.1); }
.lfe-usp-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--uc);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.lfe-usp-card:hover::after { transform: scaleX(1); }
.lfe-usp-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 16px;
}
.lfe-usp-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--uc) 12%, transparent);
  color: var(--uc);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.lfe-usp-num {
  font-size: 2rem;
  font-weight: 900;
  color: color-mix(in srgb, var(--uc) 10%, transparent);
  line-height: 1;
}
.lfe-usp-card h4 {
  font-size: .95rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
  line-height: 1.3;
}
.lfe-usp-card p {
  font-size: .82rem;
  color: #6b7280;
  line-height: 1.72;
  margin: 0;
}
.lfe-usp-line {
  display: none;
}

/* ── Learning Experience ── */
.lfe-exp-block {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: center;
  background: linear-gradient(135deg, #0096c7 0%, #2e5de8 100%);
  border-radius: 32px;
  padding: 56px 60px;
  margin-bottom: 72px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,150,199,.22);
}
.lfe-exp-block::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  pointer-events: none;
}
.lfe-exp-block::after {
  content: '';
  position: absolute;
  bottom: -60px; left: 240px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  pointer-events: none;
}
.lfe-exp-left { position: relative; z-index: 1; }
.lfe-exp-left .badge {
  background: rgba(255,255,255,.18) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.25) !important;
}
.lfe-exp-left h3 {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin: 14px 0 16px;
}
.lfe-exp-left h3 span { color: #fbbf24; }
.lfe-exp-left > p {
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  line-height: 1.8;
  margin-bottom: 28px;
}
.lfe-exp-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.lfe-exp-stat {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 14px 20px;
  min-width: 90px;
  text-align: center;
}
.lfe-exp-stat strong {
  font-size: 1.6rem;
  font-weight: 900;
  color: #fbbf24;
  line-height: 1;
}
.lfe-exp-stat span {
  font-size: .72rem;
  color: rgba(255,255,255,.75);
  margin-top: 4px;
  line-height: 1.3;
}
/* Experience sub-cards */
.lfe-exp-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative; z-index: 1;
}
.lfe-exp-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 18px;
  padding: 22px 20px;
  backdrop-filter: blur(4px);
  transition: background .25s ease, transform .25s ease;
}
.lfe-exp-card:hover {
  background: rgba(255,255,255,.18);
  transform: translateY(-3px);
}
.lfe-exp-card-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--ec);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 12px;
}
.lfe-exp-card h4 {
  font-size: .92rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.lfe-exp-card p {
  font-size: .8rem;
  color: rgba(255,255,255,.78);
  line-height: 1.7;
  margin: 0;
}

/* ── Accreditations ── */
.lfe-accred-block { }
.lfe-accred-header {
  text-align: center;
  margin-bottom: 48px;
}
.lfe-accred-header h3 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  color: #0f172a;
  line-height: 1.2;
  margin: 14px 0 12px;
}
.lfe-accred-header h3 span { color: var(--primary, #0096c7); }
.lfe-accred-header p {
  font-size: .97rem;
  color: #6b7280;
  line-height: 1.75;
  max-width: 500px;
  margin: 0 auto;
}
.lfe-accred-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.lfe-accred-card {
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(0,150,199,.08);
  box-shadow: 0 6px 28px rgba(0,0,0,.07);
  transition: transform .3s ease, box-shadow .3s ease;
}
.lfe-accred-card:hover { transform: translateY(-6px); box-shadow: 0 18px 52px rgba(0,0,0,.12); }
.lfe-accred-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.lfe-accred-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.lfe-accred-card:hover .lfe-accred-img-wrap img { transform: scale(1.06); }
.lfe-accred-ribbon {
  position: absolute;
  top: 16px; right: 0;
  background: var(--rb);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 5px 16px 5px 12px;
  border-radius: 4px 0 0 4px;
  box-shadow: -3px 3px 10px rgba(0,0,0,.2);
}
.lfe-accred-body {
  padding: 28px 28px 32px;
}
.lfe-accred-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.lfe-accred-body h4 {
  font-size: 1.15rem;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 10px;
}
.lfe-accred-body p {
  font-size: .88rem;
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 16px;
}
.lfe-accred-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--primary, #0096c7);
  background: rgba(0,150,199,.07);
  padding: 5px 14px;
  border-radius: 50px;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .lfe-usp-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 960px) {
  .lfe-top { grid-template-columns: 1fr; gap: 60px; }
  .lfe-img-stack { max-width: 500px; margin: 0 auto; }
  .lfe-exp-block { grid-template-columns: 1fr; padding: 40px 32px; gap: 40px; }
}
@media (max-width: 768px) {
  .lfe-usp-grid { grid-template-columns: repeat(2, 1fr); }
  .lfe-accred-cards { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .lfe-usp-grid { grid-template-columns: 1fr; }
  .lfe-exp-cards { grid-template-columns: 1fr; }
  .lfe-section { padding: 60px 0 72px; }
  .lfe-sb-tl { left: 0; }
  .lfe-sb-br { right: 0; }
}

/* ===== AT TOP MNCS SECTION STYLE VARIANTS (ADMIN SWITCHABLE) ===== */
/* Style 1 uses defaults above */

/* Style 2: Dark Glass */
.lfe-section.lfe-style-2 {
  background:
    radial-gradient(980px 340px at 3% -4%, rgba(34,211,238,.15), transparent 58%),
    radial-gradient(900px 320px at 98% 102%, rgba(168,85,247,.2), transparent 62%),
    linear-gradient(145deg, #040a1a 0%, #0c1734 100%);
}
.lfe-style-2 .lfe-blob-1,
.lfe-style-2 .lfe-blob-2 { display: none; }
.lfe-style-2 .lfe-top-left h2,
.lfe-style-2 .lfe-accred-header h3,
.lfe-style-2 .lfe-usp-card h4,
.lfe-style-2 .lfe-accred-body h4 { color: #e2e8f0; }
.lfe-style-2 .lfe-lead,
.lfe-style-2 .lfe-usp-card p,
.lfe-style-2 .lfe-accred-header p,
.lfe-style-2 .lfe-accred-body p { color: #cbd5e1; }
.lfe-style-2 .lfe-img-main {
  border: 1px solid rgba(103,232,249,.28);
  box-shadow: 0 24px 68px rgba(2,132,199,.28);
}
.lfe-style-2 .lfe-stat-badge,
.lfe-style-2 .lfe-usp-card,
.lfe-style-2 .lfe-accred-card {
  background: rgba(15,23,42,.72);
  border: 1px solid rgba(148,163,184,.24);
  box-shadow: 0 12px 36px rgba(2,6,23,.36);
}
.lfe-style-2 .lfe-sb-txt strong { color: #f8fafc; }
.lfe-style-2 .lfe-sb-txt span { color: #cbd5e1; }
.lfe-style-2 .lfe-accred-header h3 span { color: #67e8f9; }

/* Style 3: Centered Story */
.lfe-section.lfe-style-3 {
  background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
}
.lfe-style-3 .lfe-top {
  grid-template-columns: 1fr;
  gap: 44px;
  margin-bottom: 54px;
}
.lfe-style-3 .lfe-top-left {
  text-align: center;
}
.lfe-style-3 .lfe-top-left .badge,
.lfe-style-3 .lfe-top-left > .btn { margin-left: auto; margin-right: auto; display: inline-flex; }
.lfe-style-3 .lfe-lead { max-width: 760px; margin-left: auto; margin-right: auto; }
.lfe-style-3 .lfe-top-right .lfe-img-stack { max-width: 620px; margin: 0 auto; }
.lfe-style-3 .lfe-usp-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.lfe-style-3 .lfe-exp-block {
  grid-template-columns: 1fr;
  gap: 34px;
}

/* Style 4: Warm Editorial */
.lfe-section.lfe-style-4 {
  background:
    radial-gradient(980px 340px at 4% -2%, rgba(251,146,60,.2), transparent 58%),
    radial-gradient(900px 320px at 98% 102%, rgba(217,119,6,.2), transparent 58%),
    linear-gradient(145deg, #fff7ed 0%, #ffedd5 100%);
}
.lfe-style-4 .lfe-blob-1 {
  background: radial-gradient(circle, rgba(249,115,22,.12) 0%, transparent 70%);
}
.lfe-style-4 .lfe-blob-2 {
  background: radial-gradient(circle, rgba(217,119,6,.12) 0%, transparent 70%);
}
.lfe-style-4 .lfe-top-left h2,
.lfe-style-4 .lfe-accred-header h3,
.lfe-style-4 .lfe-usp-card h4,
.lfe-style-4 .lfe-accred-body h4 { color: #7c2d12; }
.lfe-style-4 .lfe-lead,
.lfe-style-4 .lfe-usp-card p,
.lfe-style-4 .lfe-accred-header p,
.lfe-style-4 .lfe-accred-body p { color: #9a3412; }
.lfe-style-4 .lfe-usp-card,
.lfe-style-4 .lfe-accred-card {
  border-color: rgba(249,115,22,.2);
  box-shadow: 0 10px 28px rgba(194,65,12,.14);
}
.lfe-style-4 .lfe-exp-block {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  box-shadow: 0 20px 60px rgba(234,88,12,.24);
}

/* Style 5: Minimal Framed */
.lfe-section.lfe-style-5 {
  background: #f8fafc;
}
.lfe-style-5 .lfe-blob { display: none; }
.lfe-style-5 .container {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 26px;
  padding: 36px 24px;
  box-shadow: 0 20px 58px rgba(15,23,42,.07);
}
.lfe-style-5 .lfe-top { gap: 38px; margin-bottom: 42px; }
.lfe-style-5 .lfe-img-stack { padding: 0; }
.lfe-style-5 .lfe-img-main { height: 390px; border-radius: 16px; box-shadow: none; }
.lfe-style-5 .lfe-img-sm-wrap { width: 146px; height: 106px; left: 10px; bottom: 10px; border-width: 2px; }
.lfe-style-5 .lfe-stat-badge { min-width: 130px; padding: 8px 12px; border-radius: 12px; box-shadow: 0 6px 18px rgba(0,0,0,.08); }
.lfe-style-5 .lfe-sb-tl { top: 10px; left: 10px; }
.lfe-style-5 .lfe-sb-br { right: 10px; bottom: 10px; }
.lfe-style-5 .lfe-usp-grid { gap: 14px; margin-bottom: 48px; }
.lfe-style-5 .lfe-usp-card { border-radius: 14px; box-shadow: none; }
.lfe-style-5 .lfe-exp-block { border-radius: 18px; padding: 34px 24px; margin-bottom: 42px; }
.lfe-style-5 .lfe-accred-card { border-radius: 16px; box-shadow: none; }
.lfe-style-5 .lfe-accred-img-wrap { height: 190px; }

@media (max-width: 960px) {
  .lfe-style-3 .lfe-usp-grid { grid-template-columns: repeat(2, 1fr); }
  .lfe-style-5 .container { border-radius: 16px; padding: 24px 16px; }
}
@media (max-width: 520px) {
  .lfe-style-3 .lfe-usp-grid { grid-template-columns: 1fr; }
  .lfe-style-5 .lfe-top-left { text-align: left; }
}

/* ---- At Top MNCs: Independent Subsection Style Variants ---- */
/* Top block (lfe-top) */
.lfe-top.lfe-top-style-2 .lfe-img-main { filter: contrast(1.08) saturate(1.1); }
.lfe-top.lfe-top-style-2 .lfe-stat-badge {
  background: rgba(15,23,42,.74);
  border: 1px solid rgba(148,163,184,.24);
}
.lfe-top.lfe-top-style-2 .lfe-sb-txt strong { color: #f8fafc; }
.lfe-top.lfe-top-style-2 .lfe-sb-txt span { color: #cbd5e1; }
.lfe-top.lfe-top-style-3 {
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 58px;
}
.lfe-top.lfe-top-style-3 .lfe-top-left { text-align: center; }
.lfe-top.lfe-top-style-3 .lfe-top-left .badge,
.lfe-top.lfe-top-style-3 .lfe-top-left > .btn { margin-left: auto; margin-right: auto; display: inline-flex; }
.lfe-top.lfe-top-style-3 .lfe-lead { margin-left: auto; margin-right: auto; max-width: 760px; }
.lfe-top.lfe-top-style-3 .lfe-img-stack { max-width: 620px; margin: 0 auto; }
.lfe-top.lfe-top-style-4 .lfe-top-left h2 { color: #7c2d12; }
.lfe-top.lfe-top-style-4 .lfe-lead { color: #9a3412; }
.lfe-top.lfe-top-style-4 .lfe-img-main { box-shadow: 0 24px 64px rgba(194,65,12,.18); }
.lfe-top.lfe-top-style-5 .lfe-img-stack { padding: 0; }
.lfe-top.lfe-top-style-5 .lfe-img-main { height: 370px; border-radius: 16px; box-shadow: none; }
.lfe-top.lfe-top-style-5 .lfe-img-sm-wrap { width: 146px; height: 106px; left: 10px; bottom: 10px; border-width: 2px; }
.lfe-top.lfe-top-style-5 .lfe-stat-badge { min-width: 130px; padding: 8px 12px; border-radius: 12px; box-shadow: 0 6px 18px rgba(0,0,0,.08); }

/* USP grid block */
.lfe-usp-grid.lfe-usp-style-2 .lfe-usp-card {
  background: rgba(15,23,42,.72);
  border: 1px solid rgba(148,163,184,.24);
  box-shadow: 0 12px 36px rgba(2,6,23,.34);
}
.lfe-usp-grid.lfe-usp-style-2 .lfe-usp-card h4 { color: #e2e8f0; }
.lfe-usp-grid.lfe-usp-style-2 .lfe-usp-card p { color: #cbd5e1; }
.lfe-usp-grid.lfe-usp-style-3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.lfe-usp-grid.lfe-usp-style-3 .lfe-usp-card { border-radius: 16px; padding: 20px 16px; }
.lfe-usp-grid.lfe-usp-style-3 .lfe-usp-num { font-size: 1.6rem; }
.lfe-usp-grid.lfe-usp-style-4 .lfe-usp-card {
  background: linear-gradient(145deg, #fff7ed 0%, #ffffff 78%);
  border-color: rgba(251,146,60,.24);
  box-shadow: 0 10px 28px rgba(194,65,12,.14);
}
.lfe-usp-grid.lfe-usp-style-4 .lfe-usp-card h4 { color: #7c2d12; }
.lfe-usp-grid.lfe-usp-style-4 .lfe-usp-card p { color: #9a3412; }
.lfe-usp-grid.lfe-usp-style-5 .lfe-usp-card {
  border-radius: 12px;
  box-shadow: none;
  border: 1.5px solid #cbd5e1;
  padding: 18px 14px 16px;
}
.lfe-usp-grid.lfe-usp-style-5 .lfe-usp-card:hover { transform: translateY(-3px); box-shadow: none; border-color: #94a3b8; }

/* Learning Experience block */
.lfe-exp-block.lfe-exp-style-2 {
  background: linear-gradient(145deg, #0b1220 0%, #1e293b 100%);
  box-shadow: 0 20px 60px rgba(2,6,23,.34);
}
.lfe-exp-block.lfe-exp-style-2 .lfe-exp-left h3 span { color: #22d3ee; }
.lfe-exp-block.lfe-exp-style-2 .lfe-exp-card {
  background: rgba(15,23,42,.74);
  border-color: rgba(148,163,184,.24);
}
.lfe-exp-block.lfe-exp-style-3 {
  grid-template-columns: 1fr;
  gap: 32px;
  text-align: center;
}
.lfe-exp-block.lfe-exp-style-3 .lfe-exp-left > p { margin-left: auto; margin-right: auto; max-width: 760px; }
.lfe-exp-block.lfe-exp-style-3 .lfe-exp-stats { justify-content: center; }
.lfe-exp-block.lfe-exp-style-4 {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  box-shadow: 0 20px 60px rgba(234,88,12,.24);
}
.lfe-exp-block.lfe-exp-style-4 .lfe-exp-left h3 span { color: #fde68a; }
.lfe-exp-block.lfe-exp-style-5 {
  border-radius: 18px;
  padding: 32px 22px;
  box-shadow: none;
}
.lfe-exp-block.lfe-exp-style-5 .lfe-exp-card { border-radius: 12px; padding: 16px 14px; }
.lfe-exp-block.lfe-exp-style-5 .lfe-exp-stat { border-radius: 10px; padding: 10px 12px; min-width: 76px; }

/* Accreditation block */
.lfe-accred-block.lfe-accred-style-2 .lfe-accred-header h3,
.lfe-accred-block.lfe-accred-style-2 .lfe-accred-body h4 { color: #e2e8f0; }
.lfe-accred-block.lfe-accred-style-2 .lfe-accred-header p,
.lfe-accred-block.lfe-accred-style-2 .lfe-accred-body p { color: #cbd5e1; }
.lfe-accred-block.lfe-accred-style-2 .lfe-accred-card {
  background: rgba(15,23,42,.72);
  border: 1px solid rgba(148,163,184,.24);
}
.lfe-accred-block.lfe-accred-style-2 .lfe-accred-tag {
  background: rgba(103,232,249,.12);
  color: #67e8f9;
}
.lfe-accred-block.lfe-accred-style-3 .lfe-accred-header { text-align: left; max-width: 760px; margin: 0 auto 30px; }
.lfe-accred-block.lfe-accred-style-3 .lfe-accred-cards {
  grid-template-columns: 1fr;
  max-width: 900px;
  margin: 0 auto;
  gap: 22px;
}
.lfe-accred-block.lfe-accred-style-4 .lfe-accred-header h3,
.lfe-accred-block.lfe-accred-style-4 .lfe-accred-body h4 { color: #7c2d12; }
.lfe-accred-block.lfe-accred-style-4 .lfe-accred-header p,
.lfe-accred-block.lfe-accred-style-4 .lfe-accred-body p { color: #9a3412; }
.lfe-accred-block.lfe-accred-style-4 .lfe-accred-card {
  border-color: rgba(249,115,22,.2);
  box-shadow: 0 10px 28px rgba(194,65,12,.14);
}
.lfe-accred-block.lfe-accred-style-5 .lfe-accred-card {
  border-radius: 14px;
  box-shadow: none;
  border: 1.5px solid #cbd5e1;
}
.lfe-accred-block.lfe-accred-style-5 .lfe-accred-img-wrap { height: 180px; }
.lfe-accred-block.lfe-accred-style-5 .lfe-accred-body { padding: 18px 16px 20px; }

@media (max-width: 960px) {
  .lfe-usp-grid.lfe-usp-style-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .lfe-usp-grid.lfe-usp-style-3 { grid-template-columns: 1fr; }
}

/* ===== WHAT YOU'LL EXPERIENCE SECTION ===== */
.wye-section {
  background: #fff;
  padding: 96px 0 108px;
  position: relative;
  overflow: hidden;
}
.wye-blob { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; }
.wye-blob-1 {
  width: 500px; height: 500px;
  top: -180px; right: -140px;
  background: radial-gradient(circle, rgba(124,58,237,.06) 0%, transparent 70%);
}
.wye-blob-2 {
  width: 400px; height: 400px;
  bottom: -120px; left: -100px;
  background: radial-gradient(circle, rgba(0,150,199,.06) 0%, transparent 70%);
}
.wye-section .container { position: relative; z-index: 1; }

/* Header */
.wye-header {
  text-align: center;
  margin-bottom: 60px;
}
.wye-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #0f172a;
  line-height: 1.15;
  margin: 14px 0 14px;
}
.wye-emoji { font-style: normal; }
.wye-header p {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.75;
  max-width: 540px;
  margin: 0 auto;
}

/* 4-column grid */
.wye-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

/* Card */
.wye-card {
  background: #fff;
  border-radius: 24px;
  overflow: visible;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  border: 1px solid rgba(0,150,199,.07);
  transition: transform .35s ease, box-shadow .35s ease;
  display: flex;
  flex-direction: column;
}
.wye-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 56px rgba(0,0,0,.13);
}

/* Image */
.wye-card-img-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
}
.wye-card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s ease;
}
.wye-card:hover .wye-card-img-wrap img { transform: scale(1.08); }

/* Gradient overlay on image */
.wye-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.38) 100%);
  border-radius: 24px 24px 0 0;
}

/* Arrow badge top-right on image */
.wye-arrow-badge {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--wyc);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  box-shadow: 0 4px 14px rgba(0,0,0,.2);
  z-index: 2;
  transition: transform .3s ease;
}
.wye-card:hover .wye-arrow-badge { transform: rotate(45deg) scale(1.1); }

/* Card body */
.wye-card-body {
  padding: 0 22px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.wye-card-icon {
  width: 52px; height: 52px;
  border-radius: 15px;
  background: color-mix(in srgb, var(--wyc) 12%, transparent);
  color: var(--wyc);
  display: inline-flex;
  align-items: center; justify-content: center;
  font-size: 1.25rem;
  margin-top: -26px;
  margin-bottom: 14px;
  border: 3px solid #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
  position: relative; z-index: 2;
  flex-shrink: 0;
}
.wye-card-body h4 {
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
  line-height: 1.35;
}
.wye-card-body p {
  font-size: .85rem;
  color: #6b7280;
  line-height: 1.77;
  margin: 0 0 16px;
  flex: 1;
}
.wye-tag {
  display: inline-flex;
  align-items: center;
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--wyc);
  background: color-mix(in srgb, var(--wyc) 10%, transparent);
  padding: 4px 12px;
  border-radius: 50px;
  align-self: flex-start;
  margin-top: auto;
  border: 1px solid color-mix(in srgb, var(--wyc) 20%, transparent);
}

/* Responsive */
@media (max-width: 1024px) {
  .wye-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .wye-grid { grid-template-columns: 1fr; }
  .wye-section { padding: 60px 0 72px; }
}

/* ===== WHAT YOU'LL EXPERIENCE STYLE VARIANTS (ADMIN SWITCHABLE) ===== */
/* Style 1 uses default styles above */

/* Style 2: Glass Dark */
.wye-section.wye-style-2 {
  background:
    radial-gradient(900px 320px at 2% -4%, rgba(34,211,238,.16), transparent 58%),
    radial-gradient(900px 320px at 98% 102%, rgba(168,85,247,.2), transparent 62%),
    linear-gradient(145deg, #040a1a 0%, #0c1734 100%);
}
.wye-style-2 .wye-blob-1,
.wye-style-2 .wye-blob-2 { display: none; }
.wye-style-2 .wye-header h2 { color: #e2e8f0; }
.wye-style-2 .wye-header p { color: #94a3b8; }
.wye-style-2 .wye-grid { gap: 20px; }
.wye-style-2 .wye-card {
  background: rgba(15,23,42,.7);
  border: 1px solid rgba(148,163,184,.24);
  box-shadow: 0 10px 30px rgba(2,6,23,.34);
  backdrop-filter: blur(12px);
}
.wye-style-2 .wye-card:hover { box-shadow: 0 16px 40px rgba(2,6,23,.45); }
.wye-style-2 .wye-card-overlay {
  background: linear-gradient(180deg, rgba(2,6,23,.12) 30%, rgba(2,6,23,.72) 100%);
}
.wye-style-2 .wye-card-icon {
  border-color: #0f172a;
  box-shadow: 0 6px 18px rgba(2,6,23,.45);
}
.wye-style-2 .wye-card-body h4 { color: #f8fafc; }
.wye-style-2 .wye-card-body p { color: #cbd5e1; }
.wye-style-2 .wye-tag {
  color: #67e8f9;
  border-color: rgba(103,232,249,.28);
  background: rgba(103,232,249,.12);
}

/* Style 3: Magazine Split */
.wye-section.wye-style-3 {
  background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
}
.wye-style-3 .wye-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.wye-style-3 .wye-card:nth-child(1),
.wye-style-3 .wye-card:nth-child(2) {
  grid-column: span 1;
}
.wye-style-3 .wye-card:nth-child(1) .wye-card-img-wrap,
.wye-style-3 .wye-card:nth-child(2) .wye-card-img-wrap {
  height: 240px;
}
.wye-style-3 .wye-card:nth-child(3),
.wye-style-3 .wye-card:nth-child(4) {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: stretch;
}
.wye-style-3 .wye-card:nth-child(3) .wye-card-img-wrap,
.wye-style-3 .wye-card:nth-child(4) .wye-card-img-wrap {
  height: 100%;
  min-height: 190px;
  border-radius: 24px 0 0 24px;
}
.wye-style-3 .wye-card:nth-child(3) .wye-card-overlay,
.wye-style-3 .wye-card:nth-child(4) .wye-card-overlay {
  border-radius: 24px 0 0 24px;
}
.wye-style-3 .wye-card:nth-child(3) .wye-card-body,
.wye-style-3 .wye-card:nth-child(4) .wye-card-body {
  padding-top: 18px;
}

/* Style 4: Warm Editorial */
.wye-section.wye-style-4 {
  background:
    radial-gradient(900px 320px at 4% -2%, rgba(251,146,60,.18), transparent 56%),
    radial-gradient(900px 320px at 98% 102%, rgba(217,119,6,.2), transparent 58%),
    linear-gradient(145deg, #fff7ed 0%, #ffedd5 100%);
}
.wye-style-4 .wye-blob-1 {
  background: radial-gradient(circle, rgba(249,115,22,.1) 0%, transparent 70%);
}
.wye-style-4 .wye-blob-2 {
  background: radial-gradient(circle, rgba(217,119,6,.1) 0%, transparent 70%);
}
.wye-style-4 .wye-header h2 { color: #7c2d12; }
.wye-style-4 .wye-header p { color: #9a3412; }
.wye-style-4 .wye-card {
  border: 1px solid rgba(249,115,22,.18);
  box-shadow: 0 8px 28px rgba(194,65,12,.14);
}
.wye-style-4 .wye-card:hover { box-shadow: 0 16px 42px rgba(194,65,12,.2); }
.wye-style-4 .wye-card-body h4 { color: #7c2d12; }
.wye-style-4 .wye-card-body p { color: #9a3412; opacity: .88; }
.wye-style-4 .wye-card-icon {
  border-color: #fff7ed;
  box-shadow: 0 6px 16px rgba(194,65,12,.2);
}
.wye-style-4 .wye-tag {
  color: #9a3412;
  border-color: rgba(249,115,22,.24);
  background: rgba(249,115,22,.12);
}

/* Style 5: Minimal Bordered */
.wye-section.wye-style-5 {
  background: #f8fafc;
}
.wye-style-5 .wye-blob { display: none; }
.wye-style-5 .wye-header { margin-bottom: 42px; }
.wye-style-5 .wye-grid { gap: 16px; }
.wye-style-5 .wye-card {
  border: 1.5px solid #cbd5e1;
  border-radius: 14px;
  box-shadow: none;
}
.wye-style-5 .wye-card:hover {
  transform: translateY(-4px);
  box-shadow: none;
  border-color: #94a3b8;
}
.wye-style-5 .wye-card-img-wrap {
  height: 170px;
  border-radius: 14px 14px 0 0;
}
.wye-style-5 .wye-card-overlay {
  background: linear-gradient(180deg, transparent 50%, rgba(15,23,42,.26) 100%);
  border-radius: 14px 14px 0 0;
}
.wye-style-5 .wye-arrow-badge {
  width: 32px; height: 32px; top: 10px; right: 10px; font-size: .75rem;
}
.wye-style-5 .wye-card-body { padding: 0 14px 16px; }
.wye-style-5 .wye-card-icon {
  width: 42px; height: 42px; font-size: 1rem;
  border-radius: 11px; margin-top: -20px; margin-bottom: 10px;
  border-width: 2px; box-shadow: none;
}
.wye-style-5 .wye-card-body h4 { font-size: .95rem; margin-bottom: 8px; }
.wye-style-5 .wye-card-body p { font-size: .8rem; line-height: 1.65; margin-bottom: 12px; }
.wye-style-5 .wye-tag {
  letter-spacing: .04em;
  border-radius: 8px;
  font-size: .68rem;
  padding: 3px 9px;
}

@media (max-width: 1024px) {
  .wye-style-3 .wye-grid { grid-template-columns: 1fr; }
  .wye-style-3 .wye-card:nth-child(3),
  .wye-style-3 .wye-card:nth-child(4) {
    grid-template-columns: 1fr;
  }
  .wye-style-3 .wye-card:nth-child(3) .wye-card-img-wrap,
  .wye-style-3 .wye-card:nth-child(4) .wye-card-img-wrap {
    border-radius: 24px 24px 0 0;
    min-height: 210px;
  }
  .wye-style-3 .wye-card:nth-child(3) .wye-card-overlay,
  .wye-style-3 .wye-card:nth-child(4) .wye-card-overlay {
    border-radius: 24px 24px 0 0;
  }
}

@media (max-width: 580px) {
  .wye-style-5 .wye-card-img-wrap { height: 180px; }
}

/* ================================================
   STATISTICS COUNTER SECTION  (.stc-*)
   ================================================ */
.stc-section {
  position: relative;
  padding: 108px 0 88px;
  background:
    radial-gradient(circle at 12% 18%, rgba(59,130,246,.18) 0%, transparent 36%),
    radial-gradient(circle at 84% 8%, rgba(14,165,233,.2) 0%, transparent 34%),
    linear-gradient(130deg, #0b1d3f 0%, #123265 52%, #114b7d 100%);
  overflow: hidden;
}

/* ----- decorative blobs ----- */
.stc-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.stc-blob-1 {
  width: 460px; height: 460px;
  background: rgba(110,231,255,.16);
  top: -140px; left: -160px;
}
.stc-blob-2 {
  width: 360px; height: 360px;
  background: rgba(96,165,250,.14);
  bottom: -100px; right: -90px;
}
.stc-blob-3 {
  width: 260px; height: 260px;
  background: rgba(56,189,248,.11);
  top: 36%; left: 52%;
  transform: translateX(-50%);
}

/* ----- decorative rings ----- */
.stc-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.16);
  pointer-events: none;
  animation: stcRingSpin 28s linear infinite;
}
.stc-ring-1 { width: 620px; height: 620px; top: -210px; right: -210px; }
.stc-ring-2 { width: 420px; height: 420px; bottom: -150px; left: -140px; animation-direction: reverse; animation-duration: 34s; }

@keyframes stcRingSpin {
  to { transform: rotate(360deg); }
}

/* ----- container ----- */
.stc-container { position: relative; z-index: 2; }

/* ----- header ----- */
.stc-header {
  text-align: center;
  margin-bottom: 52px;
}
.stc-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(191,219,254,.42);
  color: #dbeafe;
  font-size: .76rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  padding: 7px 16px; border-radius: 999px;
  margin-bottom: 16px;
  backdrop-filter: blur(6px);
}
.stc-header h2 {
  font-size: clamp(1.9rem, 3.1vw, 2.8rem);
  font-weight: 800; color: #fff; line-height: 1.2;
  margin-bottom: 12px;
}
.stc-header h2 span {
  background: linear-gradient(90deg, #67e8f9, #93c5fd);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stc-header p {
  max-width: 620px; margin: 0 auto;
  color: rgba(226,232,240,.88);
  font-size: .98rem; line-height: 1.72;
}

/* ----- grid ----- */
.stc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 42px;
}

/* ----- card ----- */
.stc-card {
  position: relative;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 18px;
  padding: 28px 20px 24px;
  text-align: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  cursor: default;
}
.stc-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--stc-c) 60%, #ffffff);
  box-shadow:
    0 16px 34px rgba(2,6,23,.24),
    0 0 0 1px color-mix(in srgb, var(--stc-c) 24%, #ffffff);
}

/* glow on hover (pseudo-element inside card) */
.stc-card-glow {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 120px;
  background: radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--stc-c) 30%, #ffffff) 0%, transparent 68%);
  opacity: 0;
  transition: opacity .32s ease;
  pointer-events: none;
}
.stc-card:hover .stc-card-glow { opacity: 1; }

/* bottom accent bar */
.stc-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--stc-c) 30%, #fff), var(--stc-c), color-mix(in srgb, var(--stc-c) 30%, #fff));
  opacity: .95;
  transition: transform .35s ease;
  transform: scaleX(.25);
  transform-origin: center;
}
.stc-card:hover .stc-bar { transform: scaleX(1); }

/* ----- icon ring ----- */
.stc-icon-ring {
  width: 58px; height: 58px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--stc-c) 14%, #ffffff);
  border: 1px solid color-mix(in srgb, var(--stc-c) 42%, #ffffff);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  color: var(--stc-c);
  margin: 0 auto 16px;
  box-shadow: 0 6px 16px color-mix(in srgb, var(--stc-c) 24%, transparent);
  transition: transform .28s ease, box-shadow .28s ease;
}
.stc-card:hover .stc-icon-ring {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 10px 20px color-mix(in srgb, var(--stc-c) 36%, transparent);
}

/* ----- number ----- */
.stc-num {
  font-size: clamp(1.9rem, 3vw, 2.45rem);
  font-weight: 900; line-height: 1;
  color: #0f172a;
  margin-bottom: 7px;
  letter-spacing: -0.02em;
}

/* ----- label & sub ----- */
.stc-label {
  font-size: .91rem; font-weight: 800;
  color: #1e293b;
  margin-bottom: 5px;
}
.stc-sub {
  font-size: .73rem;
  color: #64748b;
  line-height: 1.45;
}

/* ----- trust strip ----- */
.stc-strip {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 8px 18px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(191,219,254,.5);
  border-radius: 999px;
  padding: 12px 26px;
  box-shadow: 0 10px 22px rgba(2,6,23,.16);
}
.stc-strip span   { color: #334155; font-size: .79rem; font-weight: 700; display:flex; align-items:center; gap:6px; }
.stc-strip span i { color: #0284c7; }
.stc-strip-dot    { width: 5px; height: 5px; border-radius: 50%; background: #cbd5e1; flex-shrink: 0; }

/* ----- responsive ----- */
@media (max-width: 1200px) {
  .stc-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
  .stc-section { padding: 90px 0 70px; }
  .stc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stc-strip { flex-direction: column; border-radius: 18px; }
  .stc-strip-dot { display: none; }
}
@media (max-width: 480px) {
  .stc-grid { grid-template-columns: 1fr; gap: 12px; }
  .stc-section { padding: 78px 0 58px; }
  .stc-card { padding: 24px 18px 20px; }
}

/* ---------- Programs Grid ---------- */
.programs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.program-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 32px 28px; border: 1px solid var(--border);
  box-shadow: var(--shadow); transition: var(--transition);
  position: relative; overflow: hidden;
}
.program-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--pcolor, var(--primary));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.program-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.program-card:hover::before { transform: scaleX(1); }
.pc-icon {
  width: 56px; height: 56px; border-radius: var(--radius);
  background: var(--pcolor, var(--primary));
  opacity: .1; /* will be overlaid */
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 18px; position: relative;
}
/* override opacity trick */
.pc-icon { background: none; }
.pc-icon {
  background: color-mix(in srgb, var(--pcolor, var(--primary)) 12%, transparent);
  color: var(--pcolor, var(--primary));
}
.program-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.program-card p { font-size: .87rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.65; }
.pc-stats { display: flex; gap: 16px; margin-bottom: 18px; }
.pc-stats span { font-size: .78rem; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
.pc-link {
  font-size: .88rem; font-weight: 700;
  color: var(--pcolor, var(--primary));
  display: inline-flex; align-items: center; gap: 6px;
  transition: var(--transition);
}
.pc-link:hover { gap: 10px; }

/* ---------- Categories ---------- */
.categories-grid {
  display: grid; grid-template-columns: repeat(8, 1fr); gap: 16px;
}
.cat-item {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  background: #fff; border-radius: var(--radius-lg);
  padding: 22px 12px; border: 1px solid var(--border);
  text-align: center; transition: var(--transition);
  cursor: pointer;
}
.cat-item:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-4px); }
.cat-icon { font-size: 2rem; width: 56px; height: 56px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; }
.cat-item span { font-size: .82rem; font-weight: 600; color: var(--text-dark); }
.cat-item small { font-size: .7rem; color: var(--text-muted); }

/* ---------- Gallery Preview ---------- */
.gallery-preview-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 16px;
}
.gp-item { border-radius: var(--radius-lg); overflow: hidden; position: relative; cursor: pointer; }
.gp-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gp-item:hover img { transform: scale(1.07); }
.gp-large { grid-row: 1 / 3; }
.gp-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.5), transparent 50%);
  display: flex; align-items: flex-end; padding: 16px;
  opacity: 0; transition: var(--transition);
}
.gp-item:hover .gp-overlay { opacity: 1; }
.gp-overlay span { color: #fff; font-size: .88rem; font-weight: 600; }

/* ---------- Testimonial Grid ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ---------- Placement ---------- */
.placement-logos {
  background: var(--bg-gray); border-radius: var(--radius-lg);
  padding: 32px; margin-bottom: 40px; text-align: center;
}
.pl-label { font-size: .8rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 20px; }
.pl-logos { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.pl-logo {
  padding: 10px 24px; background: #fff; border-radius: var(--radius);
  font-weight: 700; color: var(--text-muted);
  box-shadow: var(--shadow-sm); font-size: .9rem; border: 1px solid var(--border);
  transition: var(--transition); cursor: pointer; user-select: none;
}
.pl-logo:hover { color: var(--primary); border-color: var(--primary); background: #f0f4ff; }
.pl-logo.pl-active { color: #fff; background: var(--primary); border-color: var(--primary); box-shadow: var(--shadow); }
.placement-card.pl-hidden { display: none; }
.pl-no-results { display:none; text-align:center; padding:40px 20px; color:var(--text-muted); font-size:.95rem; grid-column:1/-1; }
.pl-no-results.show { display:block; }

.placement-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.placement-card {
  background: #fff; border-radius: var(--radius-lg);
  border: 1px solid var(--border); overflow: hidden;
  display: flex; flex-direction: column; box-shadow: var(--shadow); transition: var(--transition);
}
.placement-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.pc-img { height: 200px; overflow: hidden; }
.pc-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.pc-content { padding: 20px; }
.pc-company { margin-bottom: 8px; }
.pc-name { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.pc-package { font-size: .85rem; color: var(--success); font-weight: 600; margin-bottom: 2px; }
.pc-course { font-size: .78rem; color: var(--text-muted); margin-bottom: 12px; }
.pc-content p { font-size: .85rem; color: var(--text-muted); font-style: italic; line-height: 1.65; }

/* ---------- FAQ Grid ---------- */
.faq-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 70px; align-items: start; }

/* ---------- Contact Preview ---------- */
.contact-preview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info-list { display: flex; flex-direction: column; gap: 22px; margin-bottom: 28px; }
.ci-item { display: flex; align-items: flex-start; gap: 16px; }
.ci-icon {
  width: 46px; height: 46px; border-radius: var(--radius);
  background: rgba(0,150,199,.08); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.ci-item strong { display: block; font-size: .9rem; color: var(--text-dark); margin-bottom: 3px; }
.ci-item p { font-size: .85rem; color: var(--text-muted); margin: 0; }
.quick-contact-form { background: var(--bg-light); border-radius: var(--radius-xl); padding: 36px; border: 1px solid var(--border); }
.quick-contact-form h3 { font-size: 1.3rem; margin-bottom: 24px; }

/* ---------- Newsletter ---------- */
.newsletter-section { background: var(--bg-gray); }
.newsletter-inner {
  display: flex; align-items: center; gap: 40px;
  background: #fff; border-radius: var(--radius-xl);
  padding: 40px 48px; box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.nl-icon { font-size: 2.5rem; color: var(--primary); flex-shrink: 0; }
.nl-content h3 { font-size: 1.3rem; margin-bottom: 5px; }
.nl-content p { font-size: .9rem; color: var(--text-muted); }
.nl-form { flex-shrink: 0; min-width: 360px; }
.nl-disclaimer { font-size: .75rem; color: var(--text-muted); margin-top: 8px; display: flex; align-items: center; gap: 5px; }
.nl-disclaimer i { color: var(--success); }

/* ---------- Partners / Credential Trust Bar ---------- */
.partners-section {
  background: linear-gradient(135deg, #060d20 0%, #0f2460 40%, #1e40af 100%);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* --- decorative background blobs --- */
.partners-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  pointer-events: none;
}
.partners-blob-1 {
  width: 420px; height: 420px;
  background: #3b82f6;
  top: -120px; left: -100px;
  animation: partnersBlob 8s ease-in-out infinite alternate;
}
.partners-blob-2 {
  width: 300px; height: 300px;
  background: #06b6d4;
  bottom: -80px; right: -80px;
  animation: partnersBlob 10s ease-in-out infinite alternate-reverse;
}
.partners-blob-3 {
  width: 220px; height: 220px;
  background: #818cf8;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: partnersBlob 12s ease-in-out infinite alternate;
}
@keyframes partnersBlob {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.25) translate(20px, -20px); }
}

/* --- heading area --- */
.partners-heading {
  position: relative;
  z-index: 2;
  margin-bottom: 48px;
}
.partners-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(99,179,237,.12);
  border: 1px solid rgba(99,179,237,.35);
  color: #93c5fd;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.partners-heading h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.2;
}
.partners-heading p {
  color: #94a3b8;
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- card / image wrapper --- */
.partners-card {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}
.partners-img-wrap {
  position: relative;
  width: 100%;
  max-width: 1300px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(99,179,237,.18),
              0 20px 60px rgba(0,0,0,.55),
              0 0 80px rgba(59,130,246,.18);
  animation: partnersFloat 6s ease-in-out infinite;
}
@keyframes partnersFloat {
  0%, 100% { transform: translateY(0px);  box-shadow: 0 0 0 1px rgba(99,179,237,.18), 0 20px 60px rgba(0,0,0,.55), 0 0 80px rgba(59,130,246,.18); }
  50%       { transform: translateY(-10px); box-shadow: 0 0 0 1px rgba(99,179,237,.28), 0 32px 80px rgba(0,0,0,.65), 0 0 120px rgba(59,130,246,.30); }
}

.partners-full-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform .5s ease;
}
.partners-img-wrap:hover .partners-full-img {
  transform: scale(1.03);
}

/* --- moving shine sweep --- */
.partners-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(255,255,255,.12) 50%,
    transparent 70%
  );
  background-size: 200% 100%;
  animation: partnersShine 3.5s linear infinite;
  pointer-events: none;
}
@keyframes partnersShine {
  0%   { background-position: -100% 0; }
  100% { background-position: 200% 0; }
}

/* --- responsive --- */
@media (max-width: 768px) {
  .partners-section { padding: 60px 0 56px; }
  .partners-img-wrap { max-width: 96%; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1280px) {
  .stats-grid { grid-template-columns: repeat(3,1fr); }
  .categories-grid { grid-template-columns: repeat(4,1fr); }
}
@media (max-width: 1024px) {
  .hero-section .container { flex-direction: column; padding-top: 100px; padding-bottom: 80px; min-height: auto; }
  .hero-content { max-width: 100%; text-align: center; }
  .hero-subtext  { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-actions  { justify-content: center; }
  .hero-trust    { justify-content: center; }
  .hero-cards { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .about-preview-grid { grid-template-columns: 1fr; gap: 40px; }
  .img-main { height: 340px; }
  .img-secondary { display: none; }
  .testi-grid { grid-template-columns: 1fr; gap: 20px; }
  .programs-grid { grid-template-columns: repeat(2,1fr); }
  .categories-grid { grid-template-columns: repeat(4,1fr); }
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-preview-grid { grid-template-columns: 1fr; }
  .newsletter-inner { flex-direction: column; text-align: center; padding: 32px; }
  .nl-form { min-width: unset; width: 100%; }
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .hero-headline { font-size: 2rem; }
  .programs-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(3,1fr); }
  .gallery-preview-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gp-large { grid-row: auto; grid-column: 1 / 3; }
  .placement-cards { grid-template-columns: 1fr; }
  .hero-cards { display: none; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .categories-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-preview-grid { grid-template-columns: 1fr; }
  .gp-large { grid-column: auto; }
  .testi-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   HOME PAGE — Comprehensive Mobile Responsive Improvements
   ============================================================ */

/* ---------- Logo Slider — Mobile ---------- */
@media (max-width: 768px) {
  .logo-slider-section::before,
  .logo-slider-section::after { width: 60px; }
  .ls-item { width: 25vw; padding: 0 10px; }
  .ls-img  { height: 90px; max-width: 130px; }
  .ls-track-wrap { padding: 14px 0 22px; }
}
@media (max-width: 480px) {
  .logo-slider-section::before,
  .logo-slider-section::after { width: 28px; }
  .ls-item { width: 33.33vw; padding: 0 8px; }
  .ls-img  { height: 70px; max-width: 100px; border-radius: 8px; }
}
@media (max-width: 360px) {
  .ls-item { width: 50vw; }
  .ls-img  { height: 60px; max-width: 80px; }
}

/* ---------- Hero — Small Mobile ---------- */
@media (max-width: 480px) {
  .hero-section .container { padding-top: 80px; padding-bottom: 56px; gap: 24px; }
  .hero-headline { font-size: 1.8rem; }
  .hero-subtext  { font-size: .95rem; margin-bottom: 20px; }
  .hero-actions  { flex-direction: column; gap: 10px; }
  .hero-actions .btn { width: 100%; text-align: center; justify-content: center; }
  .hero-trust { gap: 12px; }
  .trust-item { font-size: .78rem; }
  .scroll-hint { display: none; }
}
@media (max-width: 360px) {
  .hero-badge    { font-size: .73rem; padding: 5px 12px; margin-bottom: 14px; }
  .hero-headline { font-size: 1.55rem; }
}

/* ---------- About Preview — Image Badge Overflow ---------- */
@media (max-width: 480px) {
  .img-main { height: 240px; }
  .img-badge-card { right: 0; bottom: 0; padding: 12px 14px; }
  .badge-num  { font-size: 1.1rem; }
  .badge-icon { font-size: 1.5rem; }
}

/* ---------- Stats Cards ---------- */
@media (max-width: 360px) {
  .stat-card { padding: 22px 12px; }
  .stat-card .stat-number { font-size: 2rem; }
  .stat-card .stat-label  { font-size: .8rem; }
}

/* ---------- Testimonial Cards ---------- */
@media (max-width: 480px) {
  .testimonial-card { padding: 20px 16px; }
  .testimonial-card p { font-size: .85rem; }
}

/* ---------- FAQ ---------- */
@media (max-width: 480px) {
  .faq-question     { padding: 15px 16px; font-size: .88rem; }
  .faq-answer-inner { padding: 0 16px 14px; font-size: .85rem; }
}

/* ---------- Contact Preview Form ---------- */
@media (max-width: 480px) {
  .quick-contact-form { padding: 24px 16px; }
}

/* ---------- Newsletter ---------- */
@media (max-width: 480px) {
  .newsletter-inner { padding: 24px 16px; }
  .nl-content h3 { font-size: 1.1rem; }
  .nl-content p  { font-size: .85rem; }
}

/* ---------- Placement Card Image ---------- */
@media (max-width: 480px) {
  .pc-img { height: 160px; }
}

/* ---------- Gallery Preview ---------- */
@media (max-width: 360px) {
  .gallery-preview-grid { gap: 8px; }
}

/* ---------- Section Headers & Padding (extra small) ---------- */
@media (max-width: 360px) {
  .section-header h2 { font-size: 1.4rem; }
  .section-header p  { font-size: .88rem; }
  .wwa-section  { padding: 56px 0 64px; }
  .lfe-section  { padding: 56px 0; }
  .stc-section  { padding: 48px 0; }
}

/* ============================================================
   COMPREHENSIVE SECTION-BY-SECTION MOBILE FIXES
   ============================================================ */

/* ---------- Prevent button text overflow on narrow screens ---------- */
@media (max-width: 480px) {
  .btn { white-space: normal; word-break: break-word; }
  .wml-cert-btn { white-space: normal; }
}

/* ---------- WHO WE ARE — stacked layout tweaks ---------- */
@media (max-width: 900px) {
  /* Gap is 80px when stacked — reduce it */
  .wwa-grid { gap: 48px; }
}
@media (max-width: 640px) {
  /* Mini image wrap negative left can clip content */
  .wwa-img-mini-wrap { left: 0; }
  /* Vision/Mission grid becomes 1-col on narrow */
  .wwa-vm-grid { grid-template-columns: 1fr; }
}

/* ---------- WHY MYLEARNIFY — stacked layout tweaks ---------- */
@media (max-width: 900px) {
  .wml-hero-grid { gap: 48px; }
  /* Mini image wrap — pull back from negative left */
  .wml-hero-mini-wrap { left: 0; bottom: 0; }
  /* Dots bg can overflow — hide on tablet */
  .wml-dots-bg { display: none; }
}
@media (max-width: 768px) {
  .wml-section { padding: 64px 0 72px; }
  .wml-feat-img-grid { gap: 20px; }
  /* Certificate strip padding */
  .wml-cert-left { padding: 24px 20px; gap: 14px; }
  .wml-cert-btn  { margin: 0 20px 24px; }
}

/* ============================================================
   v3 — HEADING CENTERING & FONT-SIZE CORRECTIONS FOR MOBILE
   ============================================================ */

/* ---- WHO WE ARE: h2 at clamp(2.2rem,4vw,3.2rem) = 35.2px on 375px screen.
        "We Are Gyanada Institute" spans ~330px in a 343px container → looks left-aligned
        even though text-align:center is set. Reduce font size so centering shows. ---- */
@media (max-width: 768px) {
  .wwa-top-heading h2 { font-size: 1.8rem; }
  /* Remove asymmetric padding-left: 24px from img-wrap when image is centered */
  .wwa-img-wrap { padding-left: 0; }
  /* Keep exp-circle within img-wrap bounds */
  .wwa-exp-circle { right: 0; }
}
@media (max-width: 640px) {
  .wwa-top-heading h2 { font-size: 1.65rem; }
  /* Long kicker text "LEARN FROM EXPERTS | AT TOP MNCS" wraps on narrow screens */
  .wwa-kicker { letter-spacing: .06em; font-size: .72rem; }
  /* Dots grid extends right: -30px — hidden by overflow:hidden but hide cleanly */
  .wwa-dots-grid { display: none; }
}

/* ---- WHO WE ARE: center content column elements when grid stacks (≤900px) ---- */
@media (max-width: 900px) {
  .wwa-content-col h3   { text-align: center; }
  .wwa-label            { display: flex; justify-content: center; }
  .wwa-pills            { justify-content: center; }
}

/* ---- WHY MYLEARNIFY: center content column when grid stacks (≤900px) ---- */
@media (max-width: 900px) {
  .wml-hero-content h2  { text-align: center; }
  .wml-hero-btns        { justify-content: center; }
}
@media (max-width: 480px) {
  .wml-hero-content h2  { font-size: 1.7rem; }
}

/* ---- LEARN FROM EXPERTS: center left column when grid stacks (≤960px) ---- */
@media (max-width: 960px) {
  .lfe-top-left h2      { text-align: center; }
  .lfe-kicker           { text-align: center; }
  .lfe-top-left > .btn  { display: inline-flex; margin: 0 auto; }
}
@media (max-width: 480px) {
  .lfe-top-left h2      { font-size: 1.7rem; }
  .lfe-exp-left h3      { font-size: 1.5rem; }
}
@media (max-width: 480px) {
  /* Badge positions already set to 0 in existing rule */
  .wml-hero-exp  { top: -8px; right: -8px; width: 80px; height: 80px; }
  .wml-hero-exp-n { font-size: 1.2rem; }

}

/* ---------- LEARN FROM EXPERTS — stacked layout tweaks ---------- */
@media (max-width: 960px) {
  .lfe-top { gap: 48px; }
  /* Small image wrap — reset negative offset */
  .lfe-img-sm-wrap { left: 0; bottom: 0; }
}
@media (max-width: 768px) {
  .lfe-section { padding: 64px 0 72px; }
  .lfe-usp-grid { gap: 16px; }
  /* Experience block padding */
  .lfe-exp-block { padding: 32px 20px; }
  /* Accreditation body padding */
  .lfe-accred-body { padding: 20px 20px 24px; }
}
@media (max-width: 520px) {
  /* Stat badges already reset to 0 in existing 520px rule */
  .lfe-exp-stats { gap: 12px; }
  .lfe-exp-stat  { padding: 10px 14px; min-width: 70px; }
  .lfe-exp-stat strong { font-size: 1.3rem; }
}

/* ---------- WHAT YOU'LL EXPERIENCE — padding tweaks ---------- */
@media (max-width: 768px) {
  .wye-section { padding: 64px 0 72px; }
  .wye-header  { margin-bottom: 40px; }
  .wye-grid    { gap: 20px; }
}
@media (max-width: 580px) {
  /* Already 1-col; reduce card image height */
  .wye-card-img-wrap { height: 180px; }
}

/* ---------- STATISTICS COUNTER — already well covered ---------- */
@media (max-width: 768px) {
  .stc-header { margin-bottom: 40px; }
}

/* ---------- PROGRAMS — padding tweaks ---------- */
@media (max-width: 768px) {
  .program-card { padding: 24px 20px; }
}

/* ---------- CATEGORIES — padding tweaks ---------- */
@media (max-width: 480px) {
  .cat-item { padding: 16px 8px; }
  .cat-icon { font-size: 1.6rem; width: 44px; height: 44px; }
}
@media (max-width: 360px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* ---------- GALLERY PREVIEW ---------- */
@media (max-width: 480px) {
  .gp-item { border-radius: 10px; }
}

/* ---------- TESTIMONIALS ---------- */
@media (max-width: 768px) {
  .testi-grid { grid-template-columns: 1fr; }
}

/* ---------- PLACEMENT CARDS ---------- */
@media (max-width: 768px) {
  .placement-logos { padding: 20px 16px; }
  .pl-logos { gap: 10px; }
  .pl-logo  { padding: 8px 16px; font-size: .82rem; }
}

/* ---------- FAQ ---------- */
@media (max-width: 768px) {
  .faq-info h2   { font-size: 1.6rem; }
  .faq-info p    { font-size: .9rem; }
}
@media (max-width: 480px) {
  .faq-grid { gap: 28px; }
}

/* ---------- CONTACT PREVIEW ---------- */
@media (max-width: 768px) {
  .contact-preview-grid { gap: 40px; }
}
@media (max-width: 480px) {
  .ci-item { gap: 12px; }
  .ci-icon { width: 38px; height: 38px; font-size: .95rem; }
}

/* ---------- NEWSLETTER ---------- */
@media (max-width: 480px) {
  .newsletter-inner { gap: 20px; }
  .nl-icon { font-size: 2rem; }
}

/* ---------- PARTNERS / CREDENTIAL BAR ---------- */
@media (max-width: 480px) {
  .partners-section { padding: 48px 0 44px; }
  .partners-heading h2 { font-size: 1.4rem; }
  .partners-heading p  { font-size: .88rem; }
}

/* ---------- LOGO SLIDER — ensure full containment ---------- */
.logo-slider-section { overflow: hidden; }

/* ---------- PREVENT GLOBAL OVERFLOW from absolute-positioned elements ---------- */
.wwa-section,
.wml-section,
.lfe-section,
.about-preview-section { overflow: hidden; }

/* ============================================================
   TESTIMONIALS — Responsive Fixes
   ============================================================ */

/* Critical: clip off-screen slides so the page doesn't scroll sideways */
.testimonial-slider {
  position: relative;
  overflow: hidden;
}

/* Ensure each slide is exactly full-width (belt-and-suspenders with inline min-width) */
.slider-slide {
  flex-shrink: 0;
  width: 100%;
  box-sizing: border-box;
}

/* Controls row: vertically center buttons with dots on all screen sizes */
.testimonial-slider > div:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ---- Tablet (≤1024px): 1 column inside each slide ---- */
@media (max-width: 1024px) {
  .testi-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 640px;
    margin: 0 auto;
  }
}

/* ---- Mobile (≤768px): tighter card padding, full-width ---- */
@media (max-width: 768px) {
  .testimonial-card {
    padding: 24px 20px;
  }
  .testimonial-card p {
    font-size: .88rem;
  }
  .testi-grid {
    max-width: 100%;
  }
}

/* ---- Small mobile (≤480px): minimal padding, smaller text ---- */
@media (max-width: 480px) {
  .testimonial-card {
    padding: 20px 16px;
  }
  .testimonial-card p {
    font-size: .85rem;
  }
  .testimonial-card .quote-icon {
    font-size: 3rem;
    top: 12px;
    right: 14px;
  }
  .slider-btn {
    width: 38px;
    height: 38px;
    font-size: .85rem;
  }
  /* Controls: tighter gap on small screens */
  .testimonial-slider > div:last-child {
    gap: 8px;
    margin-top: 24px;
  }
}

/* ============================================================
   OUR IMPACT IN NUMBERS SECTION
   ============================================================ */
.impact-section {
  position: relative;
  padding: 80px 0 90px;
  background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 50%, #f5f0ff 100%);
  overflow: hidden;
}

/* Decorative orbs */
.impact-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.impact-orb-1 {
  width: 420px; height: 420px;
  top: -120px; left: -140px;
  background: radial-gradient(circle, var(--h-accent-08, rgba(0,150,199,.08)) 0%, transparent 70%);
}
.impact-orb-2 {
  width: 360px; height: 360px;
  bottom: -100px; right: -100px;
  background: radial-gradient(circle, rgba(168,85,247,.08) 0%, transparent 70%);
}

/* Section header */
.impact-header {
  text-align: center;
  margin-bottom: 52px;
  position: relative;
  z-index: 1;
}
.impact-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f172a;
  margin: 14px 0 12px;
  line-height: 1.25;
}
.impact-subtext {
  font-size: 1.05rem;
  color: #64748b;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Stats grid */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
  position: relative;
  z-index: 1;
}

/* Individual stat card */
.impact-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 36px 28px 32px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,.07), 0 1px 4px rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.06);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.impact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.06);
}

/* Soft glow on hover */
.impact-card-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(0,150,199,.04) 100%);
  border-radius: 20px;
  pointer-events: none;
}

/* Icon */
.impact-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  border-radius: 16px;
  margin-bottom: 18px;
  font-size: 1.55rem;
}

/* Counter number */
.impact-counter {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.impact-num {
  font-size: 2.6rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1;
  letter-spacing: -.02em;
}
.impact-suffix {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--h-accent, #0096c7);
}

/* Label */
.impact-label {
  font-size: .92rem;
  color: #64748b;
  font-weight: 600;
  margin-top: 8px;
  letter-spacing: .01em;
}

/* Bottom accent line */
.impact-divider {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 0 0 20px 20px;
  opacity: .7;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .impact-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .impact-header h2 { font-size: 1.85rem; }
}
@media (max-width: 520px) {
  .impact-section { padding: 56px 0 64px; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .impact-card { padding: 28px 16px 24px; border-radius: 14px; }
  .impact-num { font-size: 2rem; }
  .impact-icon-wrap { width: 52px; height: 52px; font-size: 1.25rem; border-radius: 12px; }
  .impact-header h2 { font-size: 1.55rem; }
}
