/* ── ROOT ── */
:root {
  --red: #e74c3c;
  --red-dk: #c0392b;
  --red-lt: #fdecea;
  --red-md: #fca5a5;
  --grad-red: linear-gradient(44.44deg, #ed2775 7.79%, #ff7448 94.18%);
  /* --grad-red: linear-gradient(44.44deg, #0d6efd 7.79%, #0d6efd 94.18%); */
  --blue: #2563eb;
  --ocean: #1e40af;
  --deep: #0f2057;
  --navy: #1e3a8a;
  --sky: #0ea5e9;
  --mist: #dbeafe;
  --amber: #d97706;
  --gold: #f59e0b;
  --terra: #ea580c;
  --white: #ffffff;
  --bg: #f8faff;
  --bg2: #f0f6ff;
  --ink: #0f172a;
  --ink2: #374151;
  --ink3: #6b7280;
  --line: #e2e8f0;
  --grad-blue: linear-gradient(135deg, #0ea5e9 0%, #2563eb 60%, #1e40af 100%);
  --grad-warm: linear-gradient(135deg, #ea580c 0%, #d97706 100%);
  --cj-red: #e74c3c;
  /* primary */
  --cj-red-dark: #b01720;
  --cj-red-light: #f15b6c;
  --cj-off-white: #ffffff;
  --cj-charcoal: #181818;
  --cj-mid: #444;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito", sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  height: 70px;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(231, 76, 60, 0.08);
  box-shadow: 0 2px 20px rgba(15, 32, 87, 0.07);
  transition:
    height 0.3s,
    box-shadow 0.3s;
}

.navbar.scrolled {
  height: 62px;
  box-shadow: 0 4px 28px rgba(15, 32, 87, 0.11);
}

.nav-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--deep);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-logo span {
  color: var(--red);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin-bottom: 0;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ink2);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

.nav-links a:hover {
  color: var(--red);
}

.nav-cta {
  background: var(--grad-red);
  color: #fff;
  padding: 0.58rem 1.6rem;
  border-radius: 50px;
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(231, 76, 60, 0.18);
  transition: all 0.25s;
  letter-spacing: 0.02em;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(231, 76, 60, 0.2);
}

/* ── HERO (original classes, but layout now handled by bootstrap) ── */
.hero {
  min-height: 100vh;
  padding-top: 7rem;
  padding-bottom: 3.5rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, #f3f3f3 0%, #f8faff 40%, #eef5ff 100%);
}

/* Floating blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: floatB var(--d, 8s) ease-in-out infinite alternate;
}

.blob-1 {
  width: 520px;
  height: 520px;
  top: -90px;
  right: -90px;
  --d: 9s;
  background: radial-gradient(
    circle,
    rgba(231, 76, 60, 0.1) 0%,
    rgba(14, 165, 233, 0.08) 55%,
    transparent 80%
  );
}

.blob-2 {
  width: 360px;
  height: 360px;
  bottom: -60px;
  left: 12%;
  --d: 11s;
  background: radial-gradient(
    circle,
    rgba(234, 88, 12, 0.09) 0%,
    rgba(217, 119, 6, 0.05) 60%,
    transparent 80%
  );
}

.blob-3 {
  width: 200px;
  height: 200px;
  top: 40%;
  left: 36%;
  --d: 7s;
  background: radial-gradient(
    circle,
    rgba(231, 76, 60, 0.07) 0%,
    transparent 70%
  );
}

@keyframes floatB {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(22px, 32px) scale(1.07);
  }
}

/* Rings */
.ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  border: 1.5px dashed rgba(231, 76, 60, 0.13);
  animation: spinR var(--sp, 35s) linear infinite;
}

@keyframes spinR {
  from {
    transform: translateY(-50%) rotate(0);
  }

  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

.ring-1 {
  width: 430px;
  height: 430px;
  right: 7%;
  top: 50%;
  --sp: 42s;
}

.ring-2 {
  width: 295px;
  height: 295px;
  right: 14%;
  top: 50%;
  --sp: 26s;
  animation-direction: reverse;
}

/* Dots */
.dot {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.dot-1 {
  width: 12px;
  height: 12px;
  top: 18%;
  left: 7%;
  background: var(--red);
  opacity: 0.22;
  animation: floatB 6s ease-in-out infinite alternate;
}

.dot-2 {
  width: 9px;
  height: 9px;
  top: 68%;
  right: 34%;
  background: var(--terra);
  opacity: 0.28;
  animation: floatB 9s ease-in-out infinite alternate;
}

.dot-3 {
  width: 16px;
  height: 16px;
  top: 28%;
  right: 28%;
  background: var(--gold);
  opacity: 0.18;
  animation: floatB 7s 2s ease-in-out infinite alternate;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--red-lt);
  border: 1.5px solid rgba(231, 76, 60, 0.28);
  color: var(--red);
  padding: 0.4rem 1.1rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  width: fit-content;
  margin-bottom: 1rem;
  animation: riseUp 0.5s ease both;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #52c41a;
  animation: blink 1.7s infinite;
  margin-bottom: 3px;
  display: inline-block;
}

.journey-timeline {
  position: relative;
  padding-left: 2rem;
  margin-top: 2.5rem;
}

.journey-timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--cj-red), transparent);
}

.journey-item {
  position: relative;
  margin-bottom: 1.75rem;
}

.journey-item::before {
  content: "";
  position: absolute;
  left: -1.8rem;
  top: 2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cj-red);
  border: 2px solid var(--cj-off-white);
  box-shadow: 0 0 0 2px var(--cj-red);
}

.journey-item .ji-year {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--cj-red);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.journey-item .ji-text {
  font-size: 0.97rem;
  color: var(--cj-mid);
  line-height: 1.6;
  margin-top: 0.2rem;
}

@keyframes blink {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(0.45);
    opacity: 0.25;
  }
}

@keyframes riseUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--deep);
  margin-bottom: 1.5rem;
  animation: riseUp 0.5s 0.1s ease both;
}

.hero-title i {
  font-style: italic;
  background: var(--grad-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink2);
  line-height: 1.82;
  margin-bottom: 2.75rem;
  animation: riseUp 0.5s 0.18s ease both;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: riseUp 0.5s 0.26s ease both;
}

.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--grad-red);
  color: #fff;
  padding: 0.9rem 2.1rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 6px 22px rgba(231, 76, 60, 0.38);
  transition: all 0.25s;
  letter-spacing: 0.02em;
  border: none;
}

.btn-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(231, 76, 60, 0.56);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #fff;
  color: var(--ink);
  padding: 0.9rem 2.1rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid var(--line);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transition: all 0.25s;
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.15);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  padding: 1rem 2.4rem;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  transition: all 0.25s;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--red-md);
  color: #fff;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  margin-top: 1.5rem;
  animation: riseUp 0.5s 0.34s ease both;
}

.hs {
  text-align: left;
}

.hs-num {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 900;
  background: var(--grad-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.hs-lbl {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ink2);
  margin-top: 0.8rem;
}

.hs-div {
  width: 1px;
  height: 38px;
  background: var(--line);
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  animation: riseUp 0.6s 0.22s ease both;
}

.fcard {
  background: #fff;
  border-radius: 28px;
  width: 100%;
  max-width: 395px;
  box-shadow:
    0 32px 80px rgba(15, 32, 87, 0.14),
    0 4px 14px rgba(15, 32, 87, 0.05);
  overflow: hidden;
}

.fcard-head {
  background: #387de3;
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
}

.fcard-head::before {
  content: '"';
  position: absolute;
  top: -14px;
  right: 10px;
  font-family: "Playfair Display", serif;
  font-size: 10rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, 0.07);
  pointer-events: none;
}

.fcard-quote {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-style: italic;
  color: #fff;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.fcard-name {
  font-size: 1rem;
  font-weight: 800;
  color: #ffd65b;
  letter-spacing: 0.04em;
}

.fcard-role {
  font-size: 0.84rem;
  color: #fff;
  margin-top: 0.2rem;
}

.fcard-body {
  padding: 1.75rem 2rem;
}

.tl {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.tl-row {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.tl-yr {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  font-weight: 600;
  background: var(--red-lt);
  color: var(--red);
  border: 1px solid rgba(231, 76, 60, 0.25);
  padding: 0.22rem 0.5rem;
  border-radius: 7px;
  min-width: 50px;
  text-align: center;
  flex-shrink: 0;
}

.tl-txt {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink2);
  line-height: 1.45;
}

.fcard-bar {
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--red),
    var(--terra),
    var(--amber),
    var(--gold),
    var(--sky)
  );
}

/* stats band, story, compare, impact, metrics, curriculum, cta, footer — all original styles kept */
.stats-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 55%, #0369a1 100%);
  padding: 5rem 8%;
}

.stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.04) 1.5px,
    transparent 1.5px
  );
  background-size: 30px 30px;
  pointer-events: none;
}

.sbp {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.sbp-1 {
  width: 420px;
  height: 420px;
  top: -110px;
  left: -80px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.07) 0%,
    transparent 70%
  );
}

.sbp-2 {
  width: 320px;
  height: 320px;
  bottom: -90px;
  right: 8%;
  background: radial-gradient(
    circle,
    rgba(231, 76, 60, 0.18) 0%,
    transparent 70%
  );
}

.sbp-3 {
  width: 210px;
  height: 210px;
  top: 15%;
  right: 30%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 70%
  );
}

.stats-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.snum {
  font-family: "Playfair Display", serif;
  font-size: 3.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.15);
}

.ssuf {
  color: var(--gold);
}

.slbl {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.6rem;
}

.sbar {
  width: 36px;
  height: 3px;
  border-radius: 2px;
  background: var(--grad-red);
  margin: 0.75rem auto 0;
}

section {
  padding: 6rem 8%;
}

.stag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

.stag::before {
  content: "";
  width: 24px;
  height: 3px;
  background: var(--grad-red);
  border-radius: 2px;
}

.stitle {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.1rem, 3vw, 3rem);
  font-weight: 900;
  line-height: 1.16;
  color: var(--deep);
  margin-bottom: 1.25rem;
}

.stitle span {
  background: var(--grad-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sbody {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink2);
  line-height: 1.82;
  /* max-width: 620px; */
}

.story-sec {
  background: #fff;
  position: relative;
  overflow: hidden;
  padding-top: 2.8rem;
  padding-bottom: 2.8rem;
}

.story-sec::before {
  content: "";
  position: absolute;
  top: -180px;
  left: -160px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(231, 76, 60, 0.04) 0%,
    transparent 70%
  );
}

.prose p {
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--ink2);
  line-height: 1.88;
  margin-bottom: 1.2rem;
}

.prose em {
  color: var(--red);
  font-style: normal;
  font-weight: 800;
}

/* .ecards {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
} */

.ecard {
  border-radius: 18px;
  padding: 1.75rem;
  border: 1px solid;
  border-left: 4px solid;
  transition: all 0.25s;
  height: 100%;
  /* position: relative; */
  /* overflow: hidden; */
}

.ecard:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(231, 76, 60, 0.12);
}

.ec-red {
  background: #fef7f7;
  border-color: rgba(231, 76, 60, 0.15);
  border-left-color: var(--red);
}

.ec-terra {
  background: #fff6f2;
  border-color: rgba(234, 88, 12, 0.15);
  border-left-color: var(--terra);
}

.ec-gold {
  background: #fffbeb;
  border-color: rgba(217, 119, 6, 0.18);
  border-left-color: var(--amber);
}

.ec-icon {
  font-size: 1.7rem;
  margin-bottom: 0.75rem;
}

.ec-title {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 0.5rem;
}

.ec-body {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink2);
  line-height: 1.65;
}

.quote-band {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 2rem 8%;
  /* background: linear-gradient(145deg, #fff8f5 0%, #fff2ee 50%, #fef9f5 100%); */
  background-color: #fcf6e7;
}

.qb-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  will-change: transform;
  background:
    radial-gradient(
      circle 420px at 8% 50%,
      rgba(231, 76, 60, 0.07) 0%,
      transparent 70%
    ),
    radial-gradient(
      circle 420px at 92% 50%,
      rgba(245, 158, 11, 0.08) 0%,
      transparent 70%
    );
}

.qb-dec {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.qb-dec-1 {
  width: 320px;
  height: 320px;
  top: -100px;
  left: -60px;
  background: radial-gradient(
    circle,
    rgba(231, 76, 60, 0.08) 0%,
    transparent 70%
  );
}

.qb-dec-2 {
  width: 260px;
  height: 260px;
  bottom: -80px;
  right: -40px;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.09) 0%,
    transparent 70%
  );
}

.qb-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}

.qb-mark {
  font-family: "Playfair Display", serif;
  font-size: 7rem;
  line-height: 0.6;
  background: var(--grad-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.qb-text {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  font-style: italic;
  color: var(--deep);
  line-height: 1.48;
  margin-bottom: 1.5rem;
}

.qb-author {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--red);
  letter-spacing: 0.04em;
}

.qb-role {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink3);
  margin-top: 0.22rem;
}

.compare-sec {
  background: #f9f9f9;
  padding-top: 2.5rem;
  padding-bottom: 3.5rem;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.ccard {
  border-radius: 22px;
  padding: 2.5rem;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.ccard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 22px 22px 0 0;
}

.ccard:hover {
  transform: translateY(-4px);
}

.cc-old {
  background: #fff;
  border: 1px solid rgba(234, 88, 12, 0.16);
}

.cc-old::before {
  background: var(--grad-warm);
}

.cc-new {
  background: #fff;
  border: 1px solid rgba(231, 76, 60, 0.18);
  box-shadow: 0 8px 30px rgba(231, 76, 60, 0.08);
}

.cc-new::before {
  background: var(--grad-red);
}

.clabel {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cc-old .clabel {
  color: var(--terra);
}

.cc-new .clabel {
  color: var(--red);
}

.citem {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.55;
  color: var(--ink2);
}

.ci {
  flex-shrink: 0;
}

.impact-sec {
  background: linear-gradient(145deg, #f0f7ff 0%, #e8f2ff 60%, #eff6ff 100%);
  position: relative;
  overflow: hidden;
  padding-top: 2.5rem;
  padding-bottom: 3.5rem;
}

.impact-sec::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -150px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.07) 0%,
    transparent 65%
  );
}

.impact-sec::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(231, 76, 60, 0.05) 0%,
    transparent 65%
  );
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.icard {
  background: #fff;
  border-radius: 22px;
  padding: 2.25rem;
  border: 1px solid rgba(231, 76, 60, 0.09);
  box-shadow: 0 4px 22px rgba(231, 76, 60, 0.05);
  transition: all 0.27s;
  position: relative;
  overflow: hidden;
}

.icard::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.icard:hover::after {
  transform: scaleX(1);
}

.icard:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 54px rgba(231, 76, 60, 0.13);
  border-color: rgba(231, 76, 60, 0.22);
}

.ic-icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.ic-title {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 0.625rem;
}

.ic-body {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink2);
  line-height: 1.72;
}

.metrics-sec {
  background: #fff;
  padding-top: 2.5rem;
  padding-bottom: 3.5rem;
}

.metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.mcard {
  text-align: center;
  padding: 2.75rem 1.5rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--bg);
  transition: all 0.27s;
  position: relative;
  overflow: hidden;
}

.mcard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #fef2f2 0%, #fff 100%);
  opacity: 0;
  transition: opacity 0.27s;
}

.mcard::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.mcard:hover::before {
  opacity: 1;
}

.mcard:hover::after {
  transform: scaleX(1);
}

.mcard:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 54px rgba(231, 76, 60, 0.12);
  border-color: rgba(231, 76, 60, 0.24);
}

.mcard-in {
  position: relative;
  z-index: 1;
}

.mc-ico {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.mc-num {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  font-weight: 900;
  background: var(--grad-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.mc-lbl {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--ink3);
  margin-top: 0.45rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.curriculum-sec {
  background: var(--bg);
  position: relative;
  overflow: hidden;
  padding-top: 2.5rem;
  padding-bottom: 3.5rem;
}

.curriculum-sec::after {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(231, 76, 60, 0.05) 0%,
    transparent 70%
  );
}

.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.crcard {
  background: #fff;
  border-radius: 22px;
  padding: 2.25rem;
  border: 1px solid var(--line);
  transition: all 0.27s;
  position: relative;
  overflow: hidden;
}

.crcard::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  transform: translate(45px, -45px);
  transition: all 0.35s;
}

.cr-red::before {
  background: radial-gradient(
    circle,
    rgba(231, 76, 60, 0.09) 0%,
    transparent 70%
  );
}

.cr-warm::before {
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.1) 0%,
    transparent 70%
  );
}

.crcard:hover::before {
  transform: translate(20px, -20px) scale(1.45);
}

.crcard:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 54px rgba(231, 76, 60, 0.1);
  border-color: rgba(231, 76, 60, 0.2);
}

.cr-ico {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.ico-red {
  background: linear-gradient(135deg, #fdecea, #fca5a5);
}

.ico-warm {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.cr-title {
  font-family: "Playfair Display", serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 0.6rem;
  position: relative;
  z-index: 1;
}

.cr-body {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink2);
  line-height: 1.72;
  position: relative;
  z-index: 1;
}

.cta-sec {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 3rem 8%;
  /* background-color: #387de3; */
  background-color: #262525;
}

.cta-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.04) 1.5px,
    transparent 1.5px
  );
  background-size: 30px 30px;
  pointer-events: none;
}

.ctab {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}

.ctab-1 {
  width: 620px;
  height: 620px;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.07) 0%,
    transparent 65%
  );
}

.ctab-2 {
  width: 310px;
  height: 310px;
  bottom: -100px;
  left: 4%;
  background: radial-gradient(
    circle,
    rgba(231, 76, 60, 0.2) 0%,
    transparent 70%
  );
}

.ctab-3 {
  width: 260px;
  height: 260px;
  top: -70px;
  right: 4%;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.14) 0%,
    transparent 70%
  );
}

.cta-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cta-ring-1 {
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.cta-ring-2 {
  width: 360px;
  height: 360px;
  border: 1px dashed rgba(255, 255, 255, 0.05);
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
}

.cta-stag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fca5a5;
  margin-bottom: 1rem;
  justify-content: center;
}

.cta-stag::before {
  content: "";
  width: 24px;
  height: 3px;
  background: var(--grad-red);
  border-radius: 2px;
}

.cta-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.16;
  color: #fff;
  margin-bottom: 1.25rem;
}

.cta-title span {
  background: var(--grad-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-body {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.82;
  margin-bottom: 3rem;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ───────── FOOTER BASE ───────── */

footer {
  background: #0f0f0f;
  padding: 2rem 0 2rem;
  border-top: 1px solid #757474;
}

.footer-brand {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
}

.footer-brand span {
  color: var(--cj-red-light);
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--line);
  margin-top: 0.5rem;
}

.footer-heading {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 7px;
}

.footer-link {
  display: block;
  font-size: 0.85rem;
  color: var(--line);
  text-decoration: none;
  margin-bottom: 0.6rem;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #fff;
}

.footer-info {
  font-size: 0.85rem;
  color: var(--line);
  line-height: 1.6;
}

.footer-info strong {
  color: #fff;
  font-weight: 600;
}

/* ───────── SOCIAL ICONS ───────── */

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.social-icon:hover {
  transform: translateY(-2px);
  color: #fff;
}

/* Platform hover colors */
.social-icon.linkedin:hover {
  background: #0a66c2;
}

.social-icon.youtube:hover {
  background: #ff0000;
}

.social-icon.facebook:hover {
  background: #1877f2;
}

.social-icon.whatsapp:hover {
  background: #25d366;
}

.social-icon.instagram:hover {
  background: radial-gradient(
    circle at 30% 110%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
}

/* Divider */
.footer-divider {
  margin: 2.5rem 0 1.2rem;
  border-color: #fff;
}

/* Copyright */
.copyright {
  font-size: 0.8rem;
  color: var(--line);
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.reveal.on {
  opacity: 1;
  transform: translateY(0);
}

.d1 {
  transition-delay: 0.08s;
}

.d2 {
  transition-delay: 0.16s;
}

.d3 {
  transition-delay: 0.24s;
}

.d4 {
  transition-delay: 0.32s;
}

.bg-overlay.pattern {
  background: url(../images/bg/pattern.png);
}

.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6) !important;
}

/* modal contact us */
#successModal .mymodal-header {
  border: none;
  padding: 2px;
}

#successModal .mymodal-header .btn-close {
  font-size: 12px;
  cursor: pointer;
  padding: 8px 24px 15px 5px;
}

#successModal .mymodal-header .btn-close:focus {
  box-shadow: none;
}

#successModal .modal-content {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

/* preserve original responsive overrides, but now bootstrap grid works */
@media (max-width: 960px) {
  .hero .row {
    flex-direction: column;
  }

  .hero-right {
    display: none;
  }

  /* original rule */
  .compare-grid,
  .curriculum-grid,
  .impact-grid {
    grid-template-columns: 1fr;
  }

  .metrics-row,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .nav-links {
    display: none;
  }

  section {
    padding: 4rem 6%;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .metrics-row {
    grid-template-columns: 1fr;
  }

  .ring {
    display: none;
  }
}

/* override any bootstrap conflicts (keep original button styles) */
.btn {
  border-radius: 0;
}
