/* ========================================
   DOKKHON — Computer Training Institute
   style.css
   ======================================== */

/* ---- 1. CSS Variables / Design Tokens ---- */
:root {
  --red:        #E31E1E;
  --red-dark:   #B71616;
  --red-light:  #FFEAEA;
  --gold:       #FFD700;
  --black:      #111111;
  --gray-900:   #1A1A1A;
  --gray-700:   #444444;
  --gray-500:   #888888;
  --gray-200:   #E8E8E8;
  --gray-100:   #F5F5F5;
  --white:      #FFFFFF;

  --font-head:  'Outfit', sans-serif;
  --font-body:  'Inter', sans-serif;

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --radius-xl:  32px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:  0 6px 24px rgba(0,0,0,0.10);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.13);
  --shadow-red: 0 8px 30px rgba(227,30,30,0.25);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-h: 72px;
}

/* ---- 2. Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--black);
  background:
    radial-gradient(circle at top left, rgba(227,30,30,0.06), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255,215,0,0.08), transparent 26%),
    linear-gradient(180deg, #fffdfa 0%, #ffffff 28%, #faf7f7 100%);
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(17,17,17,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(17,17,17,0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.25), transparent 75%);
  opacity: 0.45;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.2;
  font-weight: 700;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 96px 0; }

section {
  position: relative;
  scroll-margin-top: calc(var(--nav-h) + 24px);
}

.bg-light { background: var(--gray-100); }

/* ---- 3. Utility ---- */
.red-text { color: var(--red); }

.hidden { display: none !important; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: var(--shadow-red);
}
.btn-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(227,30,30,0.35);
}

.btn-outline-red {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-outline-red:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* ---- 4. Section Header ---- */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  background: var(--red-light);
  color: var(--red);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--black);
  margin-bottom: 12px;
}

.section-sub {
  color: var(--gray-500);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

.train-shell {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.train-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 24px;
  width: max-content;
  animation: train-scroll 34s linear infinite;
}

.train-track:hover {
  animation-play-state: paused;
}

.train-track .course-card,
.train-track .feature-card {
  flex: 0 0 clamp(260px, 28vw, 320px);
  max-width: clamp(260px, 28vw, 320px);
}

@keyframes train-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---- 5. Scroll Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  will-change: transform, opacity;
}
.reveal.visible,
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.15s; }
.reveal:nth-child(5) { transition-delay: 0.2s; }
.reveal:nth-child(6) { transition-delay: 0.25s; }

/* ---- 6. NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.navbar.scrolled {
  border-bottom-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-svg { width: 44px; height: 44px; flex-shrink: 0; }

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--black);
  letter-spacing: 1px;
}
.brand-tagline {
  font-family: var(--font-head);
  font-size: 0.62rem;
  color: var(--red);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  padding: 8px 14px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.25s ease;
  border-radius: 2px;
}
.nav-link:hover, .nav-link.active { color: var(--red); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.btn-nav-enroll {
  padding: 10px 22px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  box-shadow: var(--shadow-red);
}
.btn-nav-enroll:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(227,30,30,0.35);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}
.bar {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open .bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open .bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---- 7. HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 40px) 0 80px;
  background:
    radial-gradient(circle at 20% 20%, rgba(227,30,30,0.09), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(255,215,0,0.12), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,250,250,0.92));
}

/* Decorative background shapes */
.hero-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.hs {
  position: absolute;
  border-radius: 50%;
}
.hs1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(227,30,30,0.06) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: pulse-shape 6s ease-in-out infinite;
}
.hs2 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(227,30,30,0.05) 0%, transparent 70%);
  bottom: 80px; left: -80px;
  animation: pulse-shape 8s ease-in-out infinite reverse;
}
.hs3 {
  width: 180px; height: 180px;
  background: rgba(255,215,0,0.07);
  top: 40%; right: 15%;
  animation: pulse-shape 5s ease-in-out infinite;
}
.hs4 {
  width: 60px; height: 60px;
  background: var(--red);
  opacity: 0.08;
  top: 25%; left: 10%;
  border-radius: var(--radius-md);
  animation: spin-slow 20s linear infinite;
}

@keyframes pulse-shape {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.7; }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-text { z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red-light);
  color: var(--red);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid rgba(227,30,30,0.2);
  margin-bottom: 24px;
  animation: fade-up 0.7s ease both;
  box-shadow: 0 10px 28px rgba(227,30,30,0.08);
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 22px;
  animation: fade-up 0.7s 0.1s ease both;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--gray-700);
  max-width: 500px;
  margin-bottom: 36px;
  animation: fade-up 0.7s 0.2s ease both;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fade-up 0.7s 0.3s ease both;
}

.hero-numbers {
  display: flex;
  align-items: center;
  gap: 28px;
  animation: fade-up 0.7s 0.4s ease both;
}
.hn-item {
  display: flex;
  flex-direction: column;
}
.hn-item strong {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--black);
}
.hn-item span {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}
.hn-divider {
  width: 1px;
  height: 36px;
  background: var(--gray-200);
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.hv-ring {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 2px dashed rgba(227,30,30,0.2);
  position: absolute;
  animation: spin-slow 30s linear infinite;
}
.hv-ring::before {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(227,30,30,0.1);
  top: -30px; left: -30px;
}

.hv-center-badge {
  width: 110px;
  height: 110px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 2;
  animation: fade-up 0.8s 0.3s ease both;
}

.hv-card {
  position: absolute;
  background: white;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  z-index: 2;
  min-width: 200px;
}
.hv-card strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--black);
}
.hv-card small {
  font-size: 0.75rem;
  color: var(--gray-500);
}
.hvc-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.float-a {
  top: 30px; right: -20px;
  animation: float-a 4s ease-in-out infinite;
}
.float-b {
  top: 50%; left: -20px;
  transform: translateY(-50%);
  animation: float-b 5s ease-in-out infinite;
}
.float-c {
  bottom: 30px; right: -10px;
  animation: float-c 4.5s ease-in-out infinite;
}

@keyframes float-a {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes float-b {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(calc(-50% - 10px)); }
}
@keyframes float-c {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Scroll Down */
.scroll-down {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 50px;
  border: 2px solid rgba(227,30,30,0.3);
  border-radius: 16px;
  transition: var(--transition);
}
.scroll-down:hover { border-color: var(--red); }
.sd-dot {
  width: 5px; height: 5px;
  background: var(--red);
  border-radius: 50%;
  animation: scroll-bounce 2s ease infinite;
}
@keyframes scroll-bounce {
  0% { opacity: 1; transform: translateY(-8px); }
  100% { opacity: 0; transform: translateY(8px); }
}

/* ---- 8. ABOUT ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-content p {
  color: var(--gray-700);
  margin-bottom: 16px;
  font-size: 1rem;
}
.about-intro {
  font-size: 1.08rem !important;
  color: var(--gray-900) !important;
}

.checklist {
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--gray-700);
  font-size: 0.95rem;
}
.check {
  width: 22px; height: 22px;
  background: var(--red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ac-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.ac-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.ac-card.red-card {
  background: var(--red);
  border-color: var(--red);
  color: white;
}
.ac-card.red-card h4, .ac-card.red-card p { color: white; }

.ac-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
  display: block;
}
.ac-card h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--black);
}
.ac-card p {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.4;
}

/* ---- 9. COURSES ---- */
.courses-grid {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
}

.course-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.course-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(227,30,30,0.2);
}
.course-card:hover .cc-icon-wrap {
  transform: scale(1.1);
}

.cc-icon-wrap {
  font-size: 2.2rem;
  transition: var(--transition);
  display: inline-block;
  width: fit-content;
}

.course-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
}
.course-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.5;
  flex-grow: 1;
}

.cc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.cc-tags span {
  background: var(--gray-100);
  color: var(--gray-700);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  font-family: var(--font-head);
}

.cc-link {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--red);
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
  margin-top: 4px;
}
.cc-link span { transition: transform 0.2s ease; }
.cc-link:hover span { transform: translateX(4px); }

.featured-course {
  border-color: var(--red);
  background: var(--red);
  color: white;
}
.featured-course h3,
.featured-course p { color: white; }
.featured-course .cc-tags span {
  background: rgba(255,255,255,0.2);
  color: white;
}
.featured-course .cc-link { color: var(--gold); }
.featured-course:hover { border-color: var(--red-dark); }

.popular-badge {
  position: absolute;
  top: -12px; right: 20px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.72rem;
  padding: 4px 12px;
  border-radius: 100px;
}

/* ---- 10. STATS ---- */
.stats-section {
  background: var(--black);
  padding: 72px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-item {
  text-align: center;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 10%; height: 80%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}

.stat-num {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 8px;
}
.stat-suffix {
  font-size: 1.6rem;
  color: var(--red);
}
.counter { color: var(--white); }

.stat-label {
  font-family: var(--font-head);
  font-size: 0.85rem;
  color: var(--gray-500);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ---- 11. WHY US ---- */
.features-grid {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: var(--red);
  border-radius: 0 0 4px 4px;
  transition: height 0.35s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(227,30,30,0.15);
}
.feature-card:hover::before { height: 100%; }

.fc-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}
.feature-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.55;
}

/* ---- 12. CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.ci-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.ci-item strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
  font-size: 0.95rem;
}
.ci-item p {
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.55;
  margin: 0;
}
.ci-item a {
  color: var(--red);
  font-weight: 500;
  transition: var(--transition);
}
.ci-item a:hover { text-decoration: underline; }

.urgency-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(227,30,30,0.06);
  border: 1px solid rgba(227,30,30,0.2);
  border-left: 4px solid var(--red);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
}
.ub-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 1px; }
.urgency-box p {
  font-size: 0.9rem;
  color: var(--gray-700);
  margin: 0;
}
.urgency-box strong { color: var(--red); }

/* Enroll Form */
.enroll-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
}
.enroll-form-wrap h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 28px;
}

.fg {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fg label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--gray-700);
}
.optional {
  font-weight: 400;
  color: var(--gray-500);
}

.fg input,
.fg select,
.fg textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--black);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(227,30,30,0.1);
}
.fg select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.fg textarea { resize: vertical; min-height: 80px; }

.form-success {
  text-align: center;
  padding: 48px 24px;
}
.form-success span { font-size: 3rem; display: block; margin-bottom: 16px; }
.form-success p {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--gray-700);
}

/* ---- 13. FOOTER ---- */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.75);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-brand-name {
  display: block;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: 1px;
}
.footer-brand-tag {
  display: block;
  font-family: var(--font-head);
  font-size: 0.6rem;
  color: var(--red);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 500;
}

.footer-about {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.55);
}

.footer-socials {
  display: flex;
  gap: 10px;
}
.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--red);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--red); padding-left: 4px; }

.footer-col p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
}
.footer-col a {
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer-col a:hover { color: var(--red); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ---- ABOUT US PAGE ---- */
.about-us-page {
  background:
    radial-gradient(circle at top left, rgba(227,30,30,0.08), transparent 26%),
    radial-gradient(circle at 90% 15%, rgba(255,215,0,0.1), transparent 20%),
    linear-gradient(180deg, #fffdfd 0%, #ffffff 42%, #faf7f7 100%);
}

.about-us-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 56px) 0 88px;
}

.about-us-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.au-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  animation: pulse-shape 8s ease-in-out infinite;
}

.au-shape-1 {
  width: 280px;
  height: 280px;
  background: rgba(227,30,30,0.08);
  top: -80px;
  right: -60px;
}

.au-shape-2 {
  width: 160px;
  height: 160px;
  background: rgba(255,215,0,0.12);
  left: 6%;
  top: 28%;
  animation-delay: 1.4s;
}

.au-shape-3 {
  width: 110px;
  height: 110px;
  background: rgba(17,17,17,0.05);
  right: 16%;
  bottom: 10%;
  animation-delay: 2.2s;
}

.about-us-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: center;
}

.about-us-copy h1 {
  font-family: var(--font-head);
  font-size: clamp(2.7rem, 6vw, 4.6rem);
  line-height: 0.98;
  font-weight: 900;
  margin: 16px 0 18px;
  color: var(--black);
}

.about-us-lead {
  font-size: 1.05rem;
  color: var(--gray-700);
  max-width: 680px;
  line-height: 1.8;
}

.about-us-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.about-us-pills span,
.leader-points li {
  font-family: var(--font-head);
}

.about-us-pills span {
  background: rgba(227,30,30,0.08);
  color: var(--red);
  border: 1px solid rgba(227,30,30,0.14);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
}

.about-us-highlight-card {
  background: rgba(17,17,17,0.94);
  color: var(--white);
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.about-us-highlight-card::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227,30,30,0.22), transparent 70%);
  right: -80px;
  bottom: -110px;
}

.about-us-highlight-label {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.about-us-highlight-card p {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
}

.about-us-stats {
  padding-top: 8px;
}

.about-us-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.about-stat {
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--gray-200);
  border-radius: 22px;
  padding: 24px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.about-stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(227,30,30,0.16);
}

.about-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 900;
  line-height: 1;
  color: var(--red);
  margin-bottom: 8px;
}

.about-stat span {
  display: block;
  color: var(--gray-700);
  font-family: var(--font-head);
  font-size: 0.82rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-weight: 700;
}

/* .leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.leader-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
} */

.leadership-grid {
  grid-template-columns: 1fr !important;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.leader-card {
  width: 100%;
}

.leader-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(227,30,30,0.18);
}

.leader-visual {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  overflow: hidden;
}

.leader-visual::before,
.leader-visual::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.leader-visual::before {
  inset: 22px;
  border: 1px solid rgba(255,255,255,0.16);
}

.leader-visual::after {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 68%);
  right: -40px;
  bottom: -40px;
}

.leader-photo-shell {
  position: relative;
  width: min(82%, 320px);
  max-width: 320px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-radius: 28px;
  background: rgba(255,255,255,0.08);
  box-shadow: 0 24px 48px rgba(0,0,0,0.14);
  backdrop-filter: blur(14px);
}

.leader-photo-frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}

.leader-photo-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), transparent 42%, rgba(0,0,0,0.16));
  z-index: 1;
  pointer-events: none;
}

.leader-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  animation: photo-rise 0.8s ease both;
}

.leader-photo-shell.image-missing .leader-photo {
  display: none;
}

.leader-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,0.24), rgba(255,255,255,0.08));
  color: var(--white);
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 8vw, 4.2rem);
  font-weight: 900;
  letter-spacing: 1px;
}

@keyframes photo-rise {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(12px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.leader-visual-one {
  background: linear-gradient(135deg, #8f1212 0%, #e43333 55%, #ff9a7b 100%);
}

.leader-visual-two {
  background: linear-gradient(135deg, #701111 0%, #b31f1f 52%, #ffae5d 100%);
}

.leader-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  background: rgba(255,255,255,0.16);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 9px 14px;
  font-family: var(--font-head);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.leader-avatar {
  width: min(78%, 250px);
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 24px 50px rgba(0,0,0,0.18));
  transition: transform 0.45s ease;
}

.leader-card:hover .leader-avatar {
  transform: translateY(-4px) scale(1.02);
}

.leader-content {
  padding: 30px 30px 32px;
}

.leader-heading h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 8px;
}

.leader-heading span {
  display: inline-block;
  color: var(--red);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.leader-content p {
  margin: 18px 0 20px;
  color: var(--gray-700);
  line-height: 1.75;
}

.leader-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.leader-points li {
  background: var(--gray-100);
  color: var(--gray-700);
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 0.78rem;
  font-weight: 600;
}

.about-us-story-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.about-us-story-copy,
.about-us-quote {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.about-us-story-copy h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 16px 0 14px;
  color: var(--black);
}

.about-us-story-copy p {
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-us-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top right, rgba(227,30,30,0.09), transparent 34%),
    var(--white);
}

.about-us-quote blockquote {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--black);
  line-height: 1.3;
  text-align: center;
  max-width: 14ch;
}

.about-us-page .section-tag {
  animation: fade-up 0.7s ease both;
}

.about-us-page .reveal {
  transition-duration: 0.75s;
}

/* ---- COURSES PAGE ---- */
.courses-page {
  background:
    radial-gradient(circle at top left, rgba(227,30,30,0.08), transparent 24%),
    radial-gradient(circle at 90% 12%, rgba(255,215,0,0.12), transparent 20%),
    linear-gradient(180deg, #fffdfc 0%, #ffffff 38%, #faf7f7 100%);
}

.courses-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 56px) 0 84px;
}

.courses-hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.course-glow {
  position: absolute;
  border-radius: 50%;
  animation: pulse-shape 9s ease-in-out infinite;
}

.course-glow-1 {
  width: 320px;
  height: 320px;
  background: rgba(227,30,30,0.08);
  top: -90px;
  right: -100px;
}

.course-glow-2 {
  width: 180px;
  height: 180px;
  background: rgba(255,215,0,0.12);
  left: 10%;
  top: 20%;
  animation-delay: 1.5s;
}

.course-glow-3 {
  width: 120px;
  height: 120px;
  background: rgba(17,17,17,0.05);
  right: 18%;
  bottom: 8%;
  animation-delay: 2.6s;
}

.courses-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.courses-hero-copy h1 {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6vw, 4.7rem);
  line-height: 0.98;
  margin: 16px 0 18px;
  color: var(--black);
  font-weight: 900;
}

.courses-hero-copy p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray-700);
  max-width: 690px;
}

.courses-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.courses-hero-panel {
  display: flex;
  justify-content: flex-end;
}

.courses-hero-card {
  width: 100%;
  max-width: 440px;
  background: linear-gradient(145deg, rgba(17,17,17,0.96), rgba(25,25,25,0.92));
  color: var(--white);
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}

.courses-hero-card::after {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227,30,30,0.2), transparent 70%);
  right: -100px;
  bottom: -120px;
}

.courses-hero-card span,
.courses-hero-card strong,
.courses-hero-card p,
.courses-hero-card ul {
  position: relative;
  z-index: 1;
}

.courses-hero-card span {
  display: inline-block;
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.courses-hero-card strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  margin: 14px 0 12px;
}

.courses-hero-card p {
  color: rgba(255,255,255,0.76);
  line-height: 1.8;
}

.courses-hero-card ul {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}

.courses-hero-card li {
  color: rgba(255,255,255,0.88);
  position: relative;
  padding-left: 18px;
}

.courses-hero-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.courses-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.course-showcase-card {
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--gray-200);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}

.course-showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(227,30,30,0.18);
}

.course-card-top {
  min-height: 150px;
  padding: 22px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.course-card-top::after {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  right: -64px;
  top: -52px;
}

.course-index {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.22);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.88rem;
  backdrop-filter: blur(10px);
}

.course-icon {
  position: relative;
  z-index: 1;
  width: 70px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.16);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: 1px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.14);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 28px rgba(0,0,0,0.12);
}

.course-top-blue { background: linear-gradient(135deg, #1d4ed8, #2b7cff); }
.course-top-red { background: linear-gradient(135deg, #b91c1c, #f43f5e); }
.course-top-gold { background: linear-gradient(135deg, #b45309, #f59e0b); }
.course-top-dark { background: linear-gradient(135deg, #111827, #374151); }
.course-top-green { background: linear-gradient(135deg, #166534, #22c55e); }
.course-top-purple { background: linear-gradient(135deg, #5b21b6, #8b5cf6); }

.course-card-body {
  padding: 28px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.course-card-body h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.28rem;
  color: var(--black);
  letter-spacing: -0.02em;
}

.course-card-body p {
  color: var(--gray-500);
  line-height: 1.7;
  font-size: 0.93rem;
}

.view-details-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin-top: 2px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--red);
  background: rgba(227,30,30,0.06);
  border: 1px solid rgba(227,30,30,0.14);
  border-radius: 999px;
  padding: 10px 14px;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.view-details-btn span { transition: transform 0.25s ease; }
.view-details-btn:hover {
  transform: translateY(-2px);
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.view-details-btn:hover span { transform: translateX(3px); }

.featured-course-wide {
  border-color: rgba(227,30,30,0.22);
  box-shadow: 0 18px 50px rgba(89, 21, 138, 0.12);
}

.featured-course-wide .popular-badge {
  top: 14px;
  right: 16px;
  z-index: 2;
}

.course-details {
  position: relative;
}

.course-detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.course-detail-card {
  background: rgba(255,255,255,0.94);
  border: 1px solid var(--gray-200);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.course-detail-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(227,30,30,0.18);
}

.course-detail-head {
  padding: 24px 24px 20px;
  background: linear-gradient(135deg, rgba(227,30,30,0.96), rgba(123,20,20,0.96));
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.course-detail-head::after {
  content: '';
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  right: -42px;
  top: -36px;
}

.course-detail-head span {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 10px;
  opacity: 0.8;
}

.course-detail-head h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
}

.course-detail-body {
  padding: 24px;
}

.course-detail-lead {
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 18px;
}

.course-detail-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.course-detail-meta div {
  background: var(--gray-100);
  border-radius: 18px;
  padding: 14px 14px 13px;
  border: 1px solid var(--gray-200);
}

.course-detail-meta strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.9px;
  margin-bottom: 6px;
}

.course-detail-meta span {
  display: block;
  color: var(--gray-700);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
}

.course-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.course-detail-tags span {
  background: rgba(227,30,30,0.07);
  color: var(--red);
  border: 1px solid rgba(227,30,30,0.12);
  border-radius: 999px;
  padding: 8px 12px;
  font-family: var(--font-head);
  font-size: 0.76rem;
  font-weight: 700;
}

.courses-cta {
  padding-top: 10px;
}

.courses-cta-box {
  background: linear-gradient(135deg, rgba(17,17,17,0.96), rgba(28,28,28,0.94));
  color: var(--white);
  border-radius: 32px;
  padding: 40px 36px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.courses-cta-box::after {
  content: '';
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227,30,30,0.22), transparent 72%);
  right: -90px;
  bottom: -120px;
}

.courses-cta-box h2,
.courses-cta-box p,
.courses-cta-actions {
  position: relative;
  z-index: 1;
}

.courses-cta-box h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 14px;
}

.courses-cta-box p {
  color: rgba(255,255,255,0.76);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.75;
}

.courses-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.courses-page .reveal {
  transition-duration: 0.75s;
}

/* ---- COURSE DETAIL PAGES ---- */
.course-single-page {
  background:
    radial-gradient(circle at top left, rgba(227,30,30,0.06), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(255,215,0,0.1), transparent 20%),
    linear-gradient(180deg, #fffdfd 0%, #ffffff 38%, #f9f7f7 100%);
}

.course-single-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 48px) 0 70px;
}

.course-single-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: start;
}

.course-single-copy h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.02;
  color: var(--black);
  margin: 14px 0 16px;
}

.course-single-copy p {
  color: var(--gray-700);
  line-height: 1.8;
  max-width: 680px;
}

.course-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray-500);
}

.course-breadcrumb a {
  color: var(--red);
}

.course-single-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.course-single-pill-row span {
  background: rgba(227,30,30,0.08);
  color: var(--red);
  border: 1px solid rgba(227,30,30,0.14);
  border-radius: 999px;
  padding: 9px 14px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
}

.price-panel {
  background: linear-gradient(135deg, rgba(17,17,17,0.96), rgba(34,34,34,0.92));
  color: var(--white);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.08);
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  overflow: hidden;
}

.price-panel::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227,30,30,0.24), transparent 72%);
  right: -90px;
  bottom: -120px;
}

.price-panel > * {
  position: relative;
  z-index: 1;
}

.price-caption {
  font-family: var(--font-head);
  font-size: 0.74rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 10px 0 16px;
}

.price-amount strong {
  font-family: var(--font-head);
  font-size: clamp(2.3rem, 5vw, 3.5rem);
  line-height: 1;
  font-weight: 900;
}

.price-amount span {
  font-family: var(--font-head);
  font-weight: 700;
  color: rgba(255,255,255,0.76);
}

.price-panel p {
  color: rgba(255,255,255,0.76);
  line-height: 1.7;
  margin-bottom: 20px;
}

.price-meta {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.price-meta li {
  list-style: none;
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  position: relative;
  padding-left: 16px;
}

.price-meta li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.price-panel .btn {
  width: 100%;
  justify-content: center;
}

.course-single-section {
  padding-top: 10px;
}

.course-single-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.course-block {
  background: rgba(255,255,255,0.94);
  border: 1px solid var(--gray-200);
  border-radius: 26px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.course-block:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(227,30,30,0.14);
}

.course-block h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 12px;
}

.course-block p {
  color: var(--gray-700);
  line-height: 1.75;
}

.workflow-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.workflow-list li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--gray-700);
  line-height: 1.6;
}

.workflow-list li span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 800;
  background: rgba(227,30,30,0.1);
  color: var(--red);
}

.module-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.module-tags span {
  background: var(--gray-100);
  color: var(--gray-700);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 8px 12px;
  font-family: var(--font-head);
  font-size: 0.76rem;
  font-weight: 700;
}

.course-pricing-band {
  margin-top: 20px;
  background: rgba(227,30,30,0.06);
  border: 1px solid rgba(227,30,30,0.14);
  border-radius: 18px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.course-pricing-band strong {
  color: var(--red);
  font-family: var(--font-head);
  font-weight: 900;
}

.course-note {
  color: var(--gray-500);
  font-size: 0.82rem;
  margin-top: 12px;
}

@media (max-width: 1024px) {
  .course-single-grid,
  .course-single-section-grid {
    grid-template-columns: 1fr;
  }

  .price-panel {
    position: relative;
    top: auto;
  }
}

@media (max-width: 768px) {
  .course-single-hero {
    padding: calc(var(--nav-h) + 36px) 0 64px;
  }

  .course-single-copy h1 {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  .course-block,
  .price-panel {
    padding: 22px;
  }
}

.courses-showcase-grid .course-showcase-card:nth-child(1) .course-icon,
.courses-showcase-grid .course-showcase-card:nth-child(1) .course-card-top::after {
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}

.courses-showcase-grid .course-showcase-card:nth-child(2) .course-icon,
.courses-showcase-grid .course-showcase-card:nth-child(3) .course-icon,
.courses-showcase-grid .course-showcase-card:nth-child(4) .course-icon,
.courses-showcase-grid .course-showcase-card:nth-child(5) .course-icon,
.courses-showcase-grid .course-showcase-card:nth-child(6) .course-icon {
  text-transform: uppercase;
}

.course-showcase-card:hover .course-card-top::after {
  transform: scale(1.08);
  transition: transform 0.45s ease;
}

.course-showcase-card:hover .course-icon {
  transform: translateY(-2px) scale(1.05);
}

@media (max-width: 1024px) {
  .courses-hero-grid {
    grid-template-columns: 1fr;
  }

  .courses-hero-panel {
    justify-content: flex-start;
  }

  .courses-showcase-grid,
  .course-detail-list {
    grid-template-columns: 1fr 1fr;
  }

  .courses-hero-card {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .courses-hero {
    padding: calc(var(--nav-h) + 34px) 0 72px;
  }

  .courses-hero-copy h1 {
    font-size: clamp(2.3rem, 11vw, 3.5rem);
  }

  .courses-showcase-grid,
  .course-detail-list {
    grid-template-columns: 1fr;
  }

  .course-detail-meta {
    grid-template-columns: 1fr;
  }

  .course-card-top {
    min-height: 128px;
  }

  .course-icon {
    width: 62px;
    height: 62px;
    font-size: 1.2rem;
    border-radius: 20px;
  }

  .courses-cta-box {
    padding: 30px 22px;
  }
}

@media (max-width: 480px) {
  .courses-hero-actions,
  .courses-cta-actions {
    flex-direction: column;
  }

  .courses-hero-actions .btn,
  .courses-cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .course-card-body,
  .course-detail-body {
    padding: 20px;
  }

  .course-card-top {
    min-height: 118px;
  }
}

@media (max-width: 1024px) {
  .about-us-hero-grid,
  .about-us-story-grid,
  .leadership-grid {
    grid-template-columns: 1fr;
  }

  .about-us-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-us-highlight-card {
    min-height: 220px;
  }

  .leader-visual {
    min-height: 380px;
  }
}

@media (max-width: 768px) {
  .about-us-hero {
    padding: calc(var(--nav-h) + 34px) 0 72px;
  }

  .about-us-copy h1 {
    font-size: clamp(2.3rem, 11vw, 3.2rem);
  }

  .leader-visual {
    min-height: 320px;
  }

  .leader-photo-shell {
    width: min(88%, 280px);
    padding: 12px;
  }

  .leader-photo-frame {
    min-height: 280px;
  }

  .about-us-stats-grid {
    grid-template-columns: 1fr;
  }

  .leader-content,
  .about-us-story-copy,
  .about-us-quote,
  .about-us-highlight-card {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .train-track {
    animation: none !important;
    transform: none !important;
  }
}

/* ---- 14. RESPONSIVE ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-visual { display: none; }
  .hero-container { grid-template-columns: 1fr; }
  .hero-text { text-align: center; max-width: 640px; margin: 0 auto; }
  .hero-btns { justify-content: center; }
  .hero-numbers { justify-content: center; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .section-pad { padding: 72px 0; }

  /* Mobile Nav */
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 24px 28px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--gray-200);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    z-index: 999;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
  }
  .nav-link { padding: 12px 0; border-bottom: 1px solid var(--gray-100); }
  .nav-link::after { display: none; }
  .btn-nav-enroll {
    margin-top: 8px;
    text-align: center;
    padding: 14px;
    border-radius: var(--radius-sm);
  }

  /* Grids */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-cards { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-item:not(:last-child)::after { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .enroll-form-wrap { padding: 28px 20px; }
  .train-track { gap: 18px; animation-duration: 26s; }
  .train-track .course-card,
  .train-track .feature-card {
    flex-basis: 82vw;
    max-width: 82vw;
  }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .about-cards { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-numbers { flex-direction: column; gap: 12px; align-items: center; }
  .hn-divider { width: 40px; height: 1px; }
}

/* ========================================
            ABOUT PAGE
======================================== */

/* ---------- Hero ---------- */

.about-hero{
    padding:170px 0 120px;
    text-align:center;
    background:linear-gradient(180deg,#fff 0%,#fff6f6 100%);
    position:relative;
    overflow:hidden;
}

.about-hero::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(227,30,30,.05);
    border-radius:50%;
    top:-220px;
    right:-180px;
}

.about-hero::after{
    content:'';
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(227,30,30,.05);
    border-radius:50%;
    left:-120px;
    bottom:-120px;
}

.page-tag{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:var(--red-light);
    color:var(--red);
    font-weight:600;
    margin-bottom:20px;
}

.about-hero h1{
    font-size:clamp(2.5rem,5vw,4rem);
    margin-bottom:20px;
    color:var(--black);
}

.about-hero p{
    max-width:720px;
    margin:auto;
    color:var(--gray-700);
    font-size:1.05rem;
    line-height:1.8;
}

.breadcrumb{
    margin-top:35px;
    display:flex;
    justify-content:center;
    gap:10px;
    font-weight:600;
}

.breadcrumb a{
    color:var(--red);
}

/* ---------- Who We Are ---------- */

.about-company-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:var(--radius-lg);
    box-shadow:var(--shadow-lg);
}

.about-content h2{
    margin:15px 0 25px;
    font-size:2.2rem;
}

.about-content p{
    margin-bottom:18px;
    color:var(--gray-700);
}

.about-highlights{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-top:30px;
}

.highlight-card{
    padding:12px 20px;
    border-radius:12px;
    background:#fff;
    border:1px solid var(--gray-200);
    box-shadow:var(--shadow-sm);
    font-weight:600;
    transition:.3s;
}

.highlight-card:hover{
    background:var(--red);
    color:#fff;
}

/* ---------- Story ---------- */

.story-content{
    max-width:850px;
    margin:auto;
    text-align:center;
}

.story-content p{
    margin-bottom:22px;
    color:var(--gray-700);
    line-height:1.9;
}

.story-content blockquote{
    margin-top:40px;
    font-size:1.4rem;
    font-weight:700;
    color:var(--red);
    font-family:var(--font-head);
}

/* ---------- Mission ---------- */

.mission-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.mission-card{
    background:#fff;
    padding:45px;
    border-radius:var(--radius-lg);
    box-shadow:var(--shadow-md);
    border:1px solid var(--gray-200);
    transition:.3s;
}

.mission-card:hover{
    transform:translateY(-6px);
}

.mission-card.red{
    background:var(--red);
    color:#fff;
}

.mission-card.red h3,
.mission-card.red p{
    color:#fff;
}

.mission-card h3{
    margin-bottom:20px;
    font-size:1.5rem;
}

.mission-card p{
    color:var(--gray-700);
}

/* ---------- Values ---------- */

.values-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.value-card{
    background:#fff;
    padding:35px;
    border-radius:var(--radius-md);
    box-shadow:var(--shadow-sm);
    border:1px solid var(--gray-200);
    transition:.3s;
}

.value-card:hover{
    transform:translateY(-6px);
    box-shadow:var(--shadow-lg);
}

.value-card h4{
    margin-bottom:12px;
    font-size:1.2rem;
}

.value-card p{
    color:var(--gray-700);
}

/* ---------- CTA ---------- */

.about-cta{
    background:var(--red);
    color:#fff;
    text-align:center;
    padding:100px 20px;
}

.about-cta h2{
    color:#fff;
    margin-bottom:20px;
    font-size:2.3rem;
}

.about-cta p{
    max-width:650px;
    margin:0 auto 35px;
    color:rgba(255,255,255,.9);
}

.about-cta .btn{
    background:#fff;
    color:var(--red);
    border:none;
}

.about-cta .btn:hover{
    transform:translateY(-4px);
}

/* ---------- Responsive ---------- */

@media(max-width:900px){

.about-company-grid,
.mission-grid,
.values-grid{

grid-template-columns:1fr;

}

.about-content{

text-align:center;

}

.about-highlights{

justify-content:center;

}

}

@media(max-width:600px){

.about-hero{

padding:140px 0 90px;

}

.about-content h2{

font-size:1.8rem;

}

.about-cta h2{

font-size:1.9rem;

}

}

/* ========================================
            WHY US PAGE
======================================== */

.why-page {
  background:
    radial-gradient(circle at top left, rgba(227,30,30,0.08), transparent 24%),
    radial-gradient(circle at 88% 14%, rgba(255,215,0,0.12), transparent 20%),
    linear-gradient(180deg, #fffdfd 0%, #ffffff 40%, #faf7f7 100%);
}

.why-hero {
  padding: calc(var(--nav-h) + 56px) 0 86px;
  position: relative;
  overflow: hidden;
}

.why-hero::before,
.why-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.why-hero::before {
  width: 340px;
  height: 340px;
  background: rgba(227,30,30,0.08);
  top: -100px;
  right: -110px;
}

.why-hero::after {
  width: 170px;
  height: 170px;
  background: rgba(17,17,17,0.05);
  left: 8%;
  bottom: 14%;
}

.why-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.why-copy h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.01;
  color: var(--black);
  margin: 16px 0 18px;
}

.why-copy p {
  color: var(--gray-700);
  line-height: 1.8;
  max-width: 700px;
}

.why-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.why-pill-row span {
  background: rgba(227,30,30,0.08);
  border: 1px solid rgba(227,30,30,0.14);
  border-radius: 999px;
  color: var(--red);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 14px;
}

.why-panel-card {
  background: linear-gradient(145deg, rgba(17,17,17,0.95), rgba(30,30,30,0.92));
  border-radius: 30px;
  padding: 34px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.why-panel-card::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227,30,30,0.24), transparent 72%);
  right: -86px;
  bottom: -120px;
}

.why-panel-card > * {
  position: relative;
  z-index: 1;
}

.why-panel-card span {
  display: inline-block;
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 0.76rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
}

.why-panel-card h3 {
  margin: 14px 0 12px;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.06;
}

.why-panel-card p {
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
}

.why-pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.why-pillar-card {
  background: rgba(255,255,255,0.94);
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.why-pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(227,30,30,0.16);
}

.pillar-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(227,30,30,0.1);
  color: var(--red);
  font-family: var(--font-head);
  font-size: 0.84rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.why-pillar-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 10px;
}

.why-pillar-card p {
  color: var(--gray-700);
  line-height: 1.7;
}

.why-flow-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.why-flow-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.why-flow-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--red), var(--red-dark));
}

.why-flow-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.why-flow-card span {
  display: inline-block;
  color: var(--red);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.why-flow-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 10px;
}

.why-flow-card p {
  color: var(--gray-700);
  line-height: 1.7;
}

.why-impact {
  padding-top: 8px;
}

.why-impact-wrap {
  background: linear-gradient(135deg, rgba(17,17,17,0.95), rgba(37,37,37,0.92));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 30px;
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  box-shadow: var(--shadow-lg);
}

.impact-item {
  text-align: center;
  padding: 14px 10px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
}

.impact-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.impact-item span {
  display: block;
  font-family: var(--font-head);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.74);
  letter-spacing: 0.7px;
  text-transform: uppercase;
  font-weight: 700;
}

.why-contact-box {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 30px;
  padding: 36px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.why-contact-box h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 12px;
  color: var(--black);
}

.why-contact-box p {
  color: var(--gray-700);
  max-width: 760px;
  margin: 0 auto 22px;
  line-height: 1.75;
}

.contact-form-btn {
  margin-top: 18px;
}

@media (max-width: 1024px) {
  .why-hero-grid,
  .why-pillar-grid,
  .why-flow-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-hero-grid {
    grid-template-columns: 1fr;
  }

  .why-impact-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .why-hero {
    padding: calc(var(--nav-h) + 34px) 0 68px;
  }

  .why-copy h1 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .why-pillar-grid,
  .why-flow-grid,
  .why-impact-wrap {
    grid-template-columns: 1fr;
  }

  .why-panel-card,
  .why-contact-box {
    padding: 24px;
  }
}



/* =========================================================
   INTERACTIVE AUTO SLIDER
   Mouse Drag + Touch Swipe
   ========================================================= */

.train-shell {
    position: relative;
    width: 100%;
    overflow: hidden;

    cursor: grab;

    user-select: none;
    -webkit-user-select: none;

    /*
     * IMPORTANT:
     * Allows vertical page scrolling on mobile,
     * while our JavaScript controls horizontal movement.
     */
    touch-action: pan-y;
}

.train-shell.dragging {
    cursor: grabbing;
}

.train-track {
    position: relative;

    /*
     * IMPORTANT:
     * Disable any existing CSS animation.
     * Otherwise CSS animation can fight JavaScript dragging.
     */
    animation: none !important;

    will-change: transform;

    user-select: none;
    -webkit-user-select: none;

    touch-action: pan-y;

    /*
     * Make sure the track can actually become
     * wider than the visible container.
     */
    width: max-content;
}

.train-track > * {
    user-select: none;
    -webkit-user-select: none;

    /*
     * Prevent browser image/card dragging.
     */
    -webkit-user-drag: none;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .train-shell {
        overflow: hidden;

        cursor: grab;

        touch-action: pan-y;
    }

    .train-track {
        display: flex !important;

        flex-wrap: nowrap !important;

        width: max-content !important;

        gap: 20px;
    }

    .train-track > * {
        flex: 0 0 auto !important;
    }
}


/* =========================================================
   DRAGGING STATE
   ========================================================= */

.train-shell.dragging,
.train-shell.dragging .train-track {
    cursor: grabbing !important;
}


/*
 * During dragging we don't want transition
 * to create lag behind the pointer.
 */

.train-shell.dragging .train-track {
    transition: none !important;
}


/*
 * Prevent links/images from initiating their own
 * native drag operation.
 */

.train-track a,
.train-track img {
    -webkit-user-drag: none;
}

/* =========================================================
   DOKKHON NAVBAR LOGO
   ========================================================= */

.logo-image {
    width: 58px;
    height: 58px;

    display: block;

    object-fit: cover;

    border-radius: 13px;

    flex-shrink: 0;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* Logo hover */

.nav-brand:hover .logo-image {
    transform: scale(1.05);

    box-shadow:
        0 6px 18px rgba(0, 0, 0, 0.12);
}


/* =========================================================
   BRAND
   ========================================================= */

.nav-brand {
    display: flex;

    align-items: center;

    gap: 12px;

    text-decoration: none;

    flex-shrink: 0;
}


/* =========================================================
   BRAND TEXT
   ========================================================= */

.brand-text {
    display: flex;

    flex-direction: column;

    justify-content: center;
}


.brand-name {
    font-family:
        "Outfit",
        sans-serif;

    font-size: 22px;

    line-height: 1;

    font-weight: 800;

    letter-spacing: 1px;

    color: #111111;
}


.brand-tagline {
    margin-top: 4px;

    font-family:
        "Inter",
        sans-serif;

    font-size: 8px;

    line-height: 1.2;

    font-weight: 500;

    letter-spacing: .7px;

    color: #777777;

    white-space: nowrap;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .logo-image {
        width: 48px;
        height: 48px;

        border-radius: 11px;
    }


    .nav-brand {
        gap: 9px;
    }


    .brand-name {
        font-size: 19px;
    }


    .brand-tagline {
        font-size: 7px;

        letter-spacing: .45px;
    }

}

/* =========================================================
   DOKKHON IMAGE LOGO
   ========================================================= */

.logo-image {
    width: 58px;
    height: 58px;

    display: block;

    object-fit: cover;

    border-radius: 13px;

    flex-shrink: 0;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* Logo hover */

.nav-brand:hover .logo-image {
    transform: scale(1.05);

    box-shadow:
        0 6px 18px rgba(0, 0, 0, 0.12);
}


/* =========================================================
   NAV BRAND
   ========================================================= */

.nav-brand {
    display: flex;

    align-items: center;

    gap: 12px;

    text-decoration: none;

    flex-shrink: 0;
}


/* =========================================================
   FOOTER LOGO
   ========================================================= */

.footer-logo-image {
    width: 48px;
    height: 48px;

    display: block;

    object-fit: cover;

    border-radius: 11px;

    flex-shrink: 0;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .logo-image {
        width: 48px;
        height: 48px;

        border-radius: 11px;
    }

    .nav-brand {
        gap: 9px;
    }

    .brand-name {
        font-size: 19px;
    }

    .brand-tagline {
        font-size: 7px;
        letter-spacing: .45px;
    }

}

.social-btn svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: currentColor;
}

.social-btn svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: currentColor;
}

/* =====================================================
   DOKKHON — PREMIUM ABOUT SECTION
   ===================================================== */

.about-premium {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}


/* =====================================================
   CENTER HEADER
   ===================================================== */

.about-center-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 75px;
}


/* Small top indicator */

.about-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;

  margin-bottom: 22px;

  color: #999;

  font-size: 0.68rem;
  font-weight: 800;

  letter-spacing: 2.5px;
}


.about-eyebrow span:first-child {
  color: #e31319;
}


.about-eyebrow i {
  display: block;

  width: 38px;
  height: 1px;

  background: #e31319;
}


.about-center-header .section-tag {
  display: inline-block;

  padding: 7px 15px;

  border: 1px solid rgba(227, 19, 25, 0.15);

  border-radius: 50px;

  background: rgba(227, 19, 25, 0.04);

  color: #e31319;

  font-size: 0.68rem;
  font-weight: 800;

  letter-spacing: 1.8px;
}


.about-center-header h2 {
  margin: 22px auto 20px;

  max-width: 850px;

  font-size: clamp(2.5rem, 5vw, 4.5rem);

  line-height: 1.05;

  font-weight: 850;

  letter-spacing: -2.5px;

  color: #111;
}


.about-center-header h2 .red-text {
  display: inline;
}


.about-header-text {
  max-width: 650px;

  margin: 0 auto;

  color: #777;

  font-size: 1rem;

  line-height: 1.8;
}


/* =====================================================
   MAIN GRID
   ===================================================== */

.about-premium-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 90px;

  align-items: center;
}


/* =====================================================
   LEFT CONTENT
   ===================================================== */

.about-content {
  max-width: 600px;
}


.content-label {
  display: flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 18px;

  color: #999;

  font-size: 0.7rem;

  font-weight: 800;

  letter-spacing: 2px;
}


.content-label span {
  width: 25px;
  height: 2px;

  background: #e31319;
}


.about-content h3 {
  margin: 0 0 22px;

  font-size: clamp(2rem, 4vw, 3.2rem);

  line-height: 1.1;

  letter-spacing: -1.5px;

  font-weight: 800;
}


.about-lead {
  color: #333;

  font-size: 1.05rem;

  line-height: 1.8;

  margin-bottom: 14px;
}


.about-description {
  color: #777;

  font-size: 0.92rem;

  line-height: 1.8;

  margin: 0;
}


/* =====================================================
   HIGHLIGHTS
   ===================================================== */

.about-highlights {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 22px 35px;

  margin-top: 35px;
}


.about-highlight {
  display: flex;

  align-items: flex-start;

  gap: 12px;
}


.highlight-icon {
  flex-shrink: 0;

  width: 27px;
  height: 27px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #e31319;

  color: #fff;

  font-size: 0.72rem;

  font-weight: 800;

  box-shadow:
    0 5px 15px rgba(227, 19, 25, 0.18);
}


.about-highlight strong {
  display: block;

  margin-bottom: 4px;

  color: #161616;

  font-size: 0.88rem;
}


.about-highlight span {
  display: block;

  color: #929292;

  font-size: 0.74rem;

  line-height: 1.5;
}


/* =====================================================
   CTA
   ===================================================== */

.about-actions {
  display: flex;

  align-items: center;

  gap: 28px;

  margin-top: 38px;
}


/* Small proper button */

.about-cta {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 13px;

  min-width: 175px;

  padding: 13px 20px;

  border-radius: 9px;

  background: #e31319;

  color: #fff;

  text-decoration: none;

  font-size: 0.82rem;

  font-weight: 800;

  box-shadow:
    0 10px 25px rgba(227, 19, 25, 0.18);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}


.about-cta b {
  font-size: 1.05rem;

  font-weight: 500;

  transition: transform 0.3s ease;
}


.about-cta:hover {
  transform: translateY(-3px);

  background: #c90f15;

  box-shadow:
    0 15px 30px rgba(227, 19, 25, 0.25);
}


.about-cta:hover b {
  transform: translateX(5px);
}


.about-link {
  display: inline-flex;

  align-items: center;

  gap: 7px;

  color: #222;

  text-decoration: none;

  font-size: 0.84rem;

  font-weight: 750;

  transition: color 0.3s ease;
}


.about-link span {
  font-size: 1rem;

  transition: transform 0.3s ease;
}


.about-link:hover {
  color: #e31319;
}


.about-link:hover span {
  transform: translate(3px, -3px);
}


/* =====================================================
   RIGHT VISUAL
   ===================================================== */

.about-visual {
  position: relative;

  min-height: 560px;

  display: flex;

  align-items: center;

  justify-content: center;
}


/* =====================================================
   ORBITS
   ===================================================== */

.visual-orbit {
  position: absolute;

  border: 1px solid rgba(227, 19, 25, 0.12);

  border-radius: 50%;

  pointer-events: none;
}


.orbit-one {
  width: 450px;
  height: 450px;
}


.orbit-two {
  width: 560px;
  height: 560px;

  border-color: rgba(227, 19, 25, 0.07);
}


/* =====================================================
   MAIN DARK CARD
   ===================================================== */

.about-main-card {
  position: relative;

  z-index: 3;

  width: 390px;

  min-height: 440px;

  padding: 32px;

  border-radius: 25px;

  overflow: hidden;

  color: #fff;

  background:
    radial-gradient(
      circle at 90% 0%,
      rgba(227, 19, 25, 0.35),
      transparent 35%
    ),
    linear-gradient(
      145deg,
      #171717,
      #050505
    );

  box-shadow:
    0 35px 75px rgba(0, 0, 0, 0.22);
}


.about-main-card::after {
  content: "";

  position: absolute;

  width: 250px;
  height: 250px;

  right: -140px;
  bottom: -140px;

  border-radius: 50%;

  border: 1px solid rgba(255,255,255,0.08);
}


/* =====================================================
   CARD BRAND
   ===================================================== */

.card-brand {
  display: flex;

  align-items: center;

  gap: 12px;
}


.card-logo {
  width: 43px;
  height: 43px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 10px;

  background: #e31319;

  font-size: 1.4rem;

  font-weight: 900;
}


.card-brand strong {
  display: block;

  font-size: 0.82rem;

  letter-spacing: 1px;
}


.card-brand small {
  display: block;

  margin-top: 2px;

  color: #777;

  font-size: 0.55rem;

  letter-spacing: 1.2px;
}


/* =====================================================
   CARD CONTENT
   ===================================================== */

.card-content {
  margin-top: 72px;
}


.card-content > span {
  color: #888;

  font-size: 0.58rem;

  font-weight: 800;

  letter-spacing: 2px;
}


.card-content h4 {
  margin: 20px 0 16px;

  max-width: 300px;

  font-size: 2.35rem;

  line-height: 1.08;

  letter-spacing: -1.5px;
}


.card-content h4 em {
  display: block;

  color: #e31319;

  font-style: normal;
}


.card-content p {
  max-width: 280px;

  margin: 0;

  color: #999;

  font-size: 0.82rem;

  line-height: 1.7;
}


/* =====================================================
   CARD BOTTOM
   ===================================================== */

.card-bottom {
  position: absolute;

  left: 32px;
  right: 32px;
  bottom: 28px;

  display: flex;

  align-items: center;

  justify-content: space-between;
}


.card-bottom div:not(.card-divider) {
  display: flex;

  flex-direction: column;
}


.card-bottom strong {
  font-size: 0.9rem;
}


.card-bottom span {
  margin-top: 4px;

  color: #777;

  font-size: 0.58rem;
}


.card-divider {
  width: 1px;

  height: 28px;

  background: rgba(255,255,255,0.12);
}


/* =====================================================
   FLOATING CARDS
   ===================================================== */

.floating-card {
  position: absolute;

  z-index: 6;

  display: flex;

  align-items: center;

  gap: 10px;

  padding: 11px 15px;

  border: 1px solid rgba(0,0,0,0.05);

  border-radius: 13px;

  background: rgba(255,255,255,0.94);

  box-shadow:
    0 15px 35px rgba(0,0,0,0.10);

  backdrop-filter: blur(12px);

  animation: floatAbout 4s ease-in-out infinite;
}


.float-icon {
  width: 34px;
  height: 34px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 9px;

  background: #f6f6f6;

  font-size: 0.95rem;
}


.floating-card strong {
  display: block;

  color: #171717;

  font-size: 0.75rem;
}


.floating-card span {
  display: block;

  margin-top: 2px;

  color: #999;

  font-size: 0.62rem;
}


.floating-certified {
  top: 55px;
  left: 15px;
}


.floating-practical {
  top: 130px;
  right: 5px;

  animation-delay: 0.8s;
}


.floating-career {
  bottom: 60px;
  left: 25px;

  animation-delay: 1.5s;
}


@keyframes floatAbout {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }

}


/* =====================================================
   BOTTOM FEATURES
   ===================================================== */

.about-features {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  margin-top: 75px;

  border-top: 1px solid #e9e9e9;

  border-bottom: 1px solid #e9e9e9;
}


.about-feature {
  display: flex;

  align-items: center;

  gap: 15px;

  min-height: 95px;

  padding: 20px 25px;

  border-right: 1px solid #e9e9e9;
}


.about-feature:last-child {
  border-right: none;
}


.feature-number {
  width: 39px;
  height: 39px;

  display: flex;

  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  border-radius: 50%;

  background: #fafafa;

  color: #e31319;

  font-size: 0.68rem;

  font-weight: 800;
}


.about-feature strong {
  display: block;

  color: #171717;

  font-size: 0.82rem;
}


.about-feature small {
  display: block;

  margin-top: 4px;

  color: #999;

  font-size: 0.67rem;
}


/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 1000px) {

  .about-premium-grid {
    grid-template-columns: 1fr;

    gap: 65px;
  }

  .about-content {
    max-width: 750px;
  }

  .about-visual {
    min-height: 540px;
  }

  .about-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-feature:nth-child(2) {
    border-right: none;
  }

  .about-feature:nth-child(-n + 2) {
    border-bottom: 1px solid #e9e9e9;
  }

}


@media (max-width: 650px) {

  .about-center-header {
    margin-bottom: 50px;
  }

  .about-center-header h2 {
    font-size: 2.5rem;

    letter-spacing: -1.2px;
  }

  .about-highlights {
    grid-template-columns: 1fr;

    gap: 18px;
  }

  .about-actions {
    flex-direction: column;

    align-items: flex-start;

    gap: 20px;
  }

  .about-visual {
    min-height: 480px;
  }

  .about-main-card {
    width: 82%;

    min-height: 400px;

    padding: 27px;
  }

  .card-content {
    margin-top: 55px;
  }

  .card-content h4 {
    font-size: 2rem;
  }

  .floating-certified {
    left: 0;
    top: 35px;
  }

  .floating-practical {
    right: 0;
    top: 145px;
  }

  .floating-career {
    left: 5px;
    bottom: 30px;
  }

  .orbit-one {
    width: 350px;
    height: 350px;
  }

  .orbit-two {
    width: 430px;
    height: 430px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .about-feature {
    border-right: none;

    border-bottom: 1px solid #e9e9e9;
  }

  .about-feature:last-child {
    border-bottom: none;
  }

}