/* ============================================================
   home.css – Styles specific to the Home page
   ============================================================ */

/* ---------- Hero Section ---------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img,
.hero-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    120deg,
    rgba(15,23,42,.88) 0%,
    rgba(26,60,143,.72) 60%,
    rgba(6,182,212,.35) 100%
  );
}
.hero-section .container {
  position: relative; z-index: 1;
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 60px; padding-top: 60px; padding-bottom: 60px;
  min-height: 100vh;
}
.hero-content { max-width: 620px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(249,115,22,.15);
  border: 1px solid rgba(249,115,22,.3);
  color: #fb923c; font-size: .82rem; font-weight: 600;
  padding: 7px 18px; border-radius: var(--radius-full); margin-bottom: 22px;
  animation: fadeInDown .6s ease;
}
@keyframes fadeInDown { from { opacity:0; transform:translateY(-12px); } to { opacity:1; transform:translateY(0); } }
.hero-headline {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900; color: #fff;
  line-height: 1.15; margin-bottom: 22px;
  letter-spacing: -.03em;
}
.hero-subtext {
  font-size: 1.12rem; color: rgba(255,255,255,.82);
  margin-bottom: 34px; line-height: 1.75;
  max-width: 540px;
}
.hero-subtext strong { color: #fff; }
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-trust {
  display: flex; gap: 20px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: .85rem; color: rgba(255,255,255,.8); font-weight: 500;
}
.trust-item i { color: #22c55e; }

/* Floating cards */
.hero-cards {
  display: flex; flex-direction: column; gap: 16px;
  flex-shrink: 0;
}
.hero-float-card {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  padding: 16px 24px; display: flex; align-items: center; gap: 14px;
  color: #fff; min-width: 200px;
}
.hero-float-card i { font-size: 1.8rem; opacity: .9; }
.hfc-num { font-size: 1.5rem; font-weight: 800; line-height: 1; }
.hfc-label { font-size: .75rem; opacity: .8; margin-top: 3px; }
.hfc-1 { animation: float 6s ease-in-out infinite; }
.hfc-2 { animation: float 6s ease-in-out 1.5s infinite; }
.hfc-3 { animation: float 6s ease-in-out 3s infinite; }

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,.6); font-size: .75rem; font-weight: 500;
  animation: bounce 2s ease-in-out infinite;
}
.scroll-hint i { font-size: .9rem; }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ---------- 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(249,115,22,.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, #1a3c8f); }

/* 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(26,60,143,.08) 0%, transparent 70%);
}
.wwa-blob-2 {
  width: 400px; height: 400px;
  bottom: -140px; right: -100px;
  background: radial-gradient(circle, rgba(249,115,22,.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(26,60,143,.1), rgba(249,115,22,.1));
  color: var(--primary, #1a3c8f);
  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(26,60,143,.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: #f97316; }
.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(26,60,143,.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(26,60,143,.12);
  color: var(--primary, #1a3c8f);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.wsb-orange {
  background: rgba(249,115,22,.12) !important;
  color: #f97316 !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, #1a3c8f 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(26,60,143,.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(26,60,143,.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(26,60,143,.08);
  color: var(--primary, #1a3c8f);
  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(26,60,143,.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, #1a3c8f); }
.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(26,60,143,.06) 0%, rgba(249,115,22,.05) 100%);
  border-left: 4px solid #f97316;
  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: #f97316;
  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(26,60,143,.12);
  color: var(--primary, #1a3c8f);
  font-size: .8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(26,60,143,.06);
  transition: background .25s, color .25s, transform .25s;
}
.wwa-pill .fa-check-circle { color: #22c55e; }
.wwa-pill:hover {
  background: var(--primary, #1a3c8f);
  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(26,60,143,.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(26,60,143,.1);
  color: var(--primary, #1a3c8f);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.wwa-vm-icon--orange {
  background: rgba(249,115,22,.1) !important;
  color: #f97316 !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; }
}

/* ===== 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(26,60,143,.07) 0%, transparent 70%);
}
.wml-blob-2 {
  width: 420px; height: 420px;
  bottom: -140px; left: -120px;
  background: radial-gradient(circle, rgba(249,115,22,.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(26,60,143,.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, #1a3c8f 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(26,60,143,.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(26,60,143,.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(26,60,143,.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;
}

/* ---- Certificate strip ---- */
.wml-cert-strip {
  display: flex;
  align-items: center;
  gap: 0;
  background: linear-gradient(135deg, #1a3c8f 0%, #2e5de8 100%);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(26,60,143,.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: #1a3c8f !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; }
}

/* ===== 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(26,60,143,.07) 0%, transparent 70%); }
.lfe-blob-2 { width: 400px; height: 400px; bottom: -100px; right: -120px;
  background: radial-gradient(circle, rgba(249,115,22,.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(26,60,143,.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(26,60,143,.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, #1a3c8f 0%, #2e5de8 100%);
  border-radius: 32px;
  padding: 56px 60px;
  margin-bottom: 72px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26,60,143,.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, #1a3c8f); }
.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(26,60,143,.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, #1a3c8f);
  background: rgba(26,60,143,.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; }
}

/* ===== 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(26,60,143,.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(26,60,143,.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; }
}

/* ================================================
   STATISTICS COUNTER SECTION  (.stc-*)
   ================================================ */
.stc-section {
  position: relative;
  padding: 100px 0 80px;
  background: linear-gradient(135deg, #071438 0%, #0f2260 40%, #1a3c8f 75%, #1e4fc0 100%);
  overflow: hidden;
}

/* ----- decorative blobs ----- */
.stc-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.stc-blob-1 {
  width: 520px; height: 520px;
  background: rgba(79,142,247,.18);
  top: -160px; left: -180px;
}
.stc-blob-2 {
  width: 400px; height: 400px;
  background: rgba(167,139,250,.14);
  bottom: -120px; right: -120px;
}
.stc-blob-3 {
  width: 300px; height: 300px;
  background: rgba(34,197,94,.10);
  top: 30%; left: 50%;
  transform: translateX(-50%);
}

/* ----- decorative rings ----- */
.stc-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.07);
  pointer-events: none;
  animation: stcRingSpin 22s linear infinite;
}
.stc-ring-1 { width: 700px; height: 700px; top: -250px; right: -250px; }
.stc-ring-2 { width: 460px; height: 460px; bottom: -180px; left: -160px; animation-direction: reverse; animation-duration: 30s; }

@keyframes stcRingSpin {
  to { transform: rotate(360deg); }
}

/* ----- container ----- */
.stc-container { position: relative; z-index: 2; }

/* ----- header ----- */
.stc-header {
  text-align: center;
  margin-bottom: 58px;
}
.stc-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  color: #93c5fd;
  font-size: .78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em;
  padding: 6px 16px; border-radius: 50px;
  margin-bottom: 18px;
  backdrop-filter: blur(6px);
}
.stc-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 800; color: #fff; line-height: 1.2;
  margin-bottom: 14px;
}
.stc-header h2 span {
  background: linear-gradient(90deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stc-header p {
  max-width: 560px; margin: 0 auto;
  color: rgba(255,255,255,0.60);
  font-size: 1rem; line-height: 1.7;
}

/* ----- grid ----- */
.stc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

/* ----- card ----- */
.stc-card {
  position: relative;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 36px 22px 32px;
  text-align: center;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  cursor: default;
}
.stc-card:hover {
  transform: translateY(-8px);
  border-color: color-mix(in srgb, var(--stc-c) 55%, transparent);
  box-shadow:
    0 20px 50px rgba(0,0,0,.3),
    0 0 30px color-mix(in srgb, var(--stc-c) 25%, transparent);
}

/* glow on hover (pseudo-element inside card) */
.stc-card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--stc-c) 18%, transparent) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
  border-radius: inherit;
}
.stc-card:hover .stc-card-glow { opacity: 1; }

/* bottom accent bar */
.stc-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--stc-c), transparent);
  opacity: 0;
  transition: opacity .35s ease;
}
.stc-card:hover .stc-bar { opacity: 1; }

/* ----- icon ring ----- */
.stc-icon-ring {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--stc-c) 18%, transparent);
  border: 2px solid color-mix(in srgb, var(--stc-c) 45%, transparent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--stc-c);
  margin: 0 auto 22px;
  box-shadow: 0 0 22px color-mix(in srgb, var(--stc-c) 30%, transparent);
  transition: transform .35s ease, box-shadow .35s ease;
}
.stc-card:hover .stc-icon-ring {
  transform: scale(1.12) rotate(-6deg);
  box-shadow: 0 0 36px color-mix(in srgb, var(--stc-c) 50%, transparent);
}

/* ----- number ----- */
.stc-num {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 900; line-height: 1;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

/* ----- label & sub ----- */
.stc-label {
  font-size: .95rem; font-weight: 700;
  color: rgba(255,255,255,0.90);
  margin-bottom: 6px;
}
.stc-sub {
  font-size: .75rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

/* ----- trust strip ----- */
.stc-strip {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 10px 20px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 14px 32px;
  backdrop-filter: blur(8px);
}
.stc-strip span   { color: rgba(255,255,255,0.75); font-size: .82rem; font-weight: 600; display:flex; align-items:center; gap:6px; }
.stc-strip span i { color: #60a5fa; }
.stc-strip-dot    { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.25); flex-shrink: 0; }

/* ----- responsive ----- */
@media (max-width: 1200px) {
  .stc-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .stc-grid { grid-template-columns: repeat(2, 1fr); }
  .stc-strip { flex-direction: column; border-radius: 20px; }
  .stc-strip-dot { display: none; }
}
@media (max-width: 480px) {
  .stc-grid { grid-template-columns: 1fr; }
  .stc-section { padding: 72px 0 60px; }
}

/* ---------- 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);
}
.pl-logo:hover { color: var(--primary); border-color: var(--primary); }

.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(26,60,143,.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, #eef2ff 0%, #e8f0fe 60%, #f0fdf4 100%);
  padding: 48px 0;
  position: relative;
}
.partners-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(26,60,143,.04) 0%, transparent 70%);
  pointer-events: none;
}
.partners-card {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  padding: 28px 40px;
  gap: 36px;
  box-shadow:
    0 4px 6px rgba(0,0,0,.04),
    0 12px 40px rgba(26,60,143,.08),
    0 0 0 1px rgba(26,60,143,.07);
  position: relative;
  overflow: hidden;
}
.partners-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, #6366f1 50%, #f97316 100%);
  border-radius: 20px 20px 0 0;
}

/* Left: AICTE block */
.partners-label { flex-shrink: 0; min-width: 185px; }
.pc-heading {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.pc-aicte {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pc-aicte-emblem {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(26,60,143,.12) 0%, rgba(26,60,143,.06) 100%);
  border: 2px solid rgba(26,60,143,.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  font-size: 1.3rem;
}
.pc-aicte-name {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: .04em;
  line-height: 1;
}
.pc-aicte-sub {
  font-size: .62rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 3px;
}

/* Vertical divider */
.partners-vdivider {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(to bottom, transparent 0%, var(--border) 25%, var(--border) 75%, transparent 100%);
  flex-shrink: 0;
  min-height: 60px;
}

/* Right: logos row */
.partners-logos {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  flex-wrap: wrap;
}
.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease;
}
.partner-item:hover { transform: translateY(-3px); }

/* ISO circular badge */
.iso-ring {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 2.5px solid var(--primary);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(26,60,143,.04) 0%, #fff 100%);
  gap: 1px;
  box-shadow: 0 2px 8px rgba(26,60,143,.12);
}
.iso-cert  { font-size: .42rem; font-weight: 700; letter-spacing: .1em; color: var(--text-muted); text-transform: uppercase; }
.iso-main  { font-size: 1.1rem; font-weight: 900; color: var(--primary); line-height: 1; }
.iso-year  { font-size: .5rem;  font-weight: 700; color: var(--primary); }

/* Chip-style logo items */
.partner-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: var(--bg-gray);
  cursor: default;
  white-space: nowrap;
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.partner-chip:hover {
  border-color: var(--primary);
  background: rgba(26,60,143,.03);
  box-shadow: 0 4px 12px rgba(26,60,143,.08);
}
.partner-chip i {
  font-size: 1.3rem;
  color: var(--primary);
  opacity: .85;
}
.chip-sub  { font-size: .55rem; color: var(--text-muted); letter-spacing: .05em; text-transform: uppercase; line-height: 1.3; }
.chip-main { font-size: .9rem; font-weight: 800; color: var(--text-dark); line-height: 1.2; }

/* Startup India accent */
.pl-startup i     { color: #16a34a; }
.pl-startup:hover { border-color: #16a34a; box-shadow: 0 4px 12px rgba(22,163,74,.1); }
.si-orange        { color: #f97316; }

/* IIT Bombay accent */
.pl-iit i       { color: #6366f1; }
.pl-iit:hover   { border-color: #6366f1; box-shadow: 0 4px 12px rgba(99,102,241,.1); }
.iit-brand      { font-size: 1.1rem !important; font-style: italic; letter-spacing: .04em; }

/* ---------- 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) {
  .partners-card { gap: 24px; padding: 22px 28px; }
  .partners-label { min-width: 150px; }
  .hero-section .container { flex-direction: column; padding-top: 100px; padding-bottom: 80px; min-height: auto; }
  .hero-content { max-width: 100%; }
  .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) {
  .partners-card { flex-direction: column; align-items: flex-start; gap: 18px; padding: 22px 22px; }
  .partners-vdivider { width: 100%; height: 1px; min-height: unset; background: linear-gradient(to right, transparent, var(--border), transparent); }
  .partners-logos { gap: 14px; }
  .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) {
  .partner-chip { padding: 8px 12px; gap: 7px; }
  .partner-chip i { font-size: 1.1rem; }
  .iso-ring { width: 60px; height: 60px; }
  .iso-main { font-size: .95rem; }
  .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; }
}
