/* ============================================
   LearnMore Academy - Premium CSS
   Author: Premium Design System
   ============================================ */

/* ---- CSS Custom Properties ---- */
:root {
  --primary: #14532D;
  --primary-light: #166534;
  --secondary: #16A34A;
  --accent: #FFD54A;
  --accent-dark: #F59E0B;
  --dark: #111827;
  --dark-2: #1F2937;
  --dark-3: #374151;
  --light: #F8FAFC;
  --light-2: #F1F5F9;
  --light-3: #E2E8F0;
  --white: #FFFFFF;
  --text-primary: #111827;
  --text-secondary: #4B5563;
  --text-muted: #9CA3AF;
  --border: rgba(20, 83, 45, 0.1);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.08);
  --shadow-green: 0 8px 32px rgba(22, 163, 74, 0.25);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }

/* ---- Loading Screen ---- */
#loading-screen {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--dark);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  gap: 20px;
  padding: 20px;
  width: 100%; height: 100%;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#loading-screen.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo {
  width: 110px; height: 110px;
  object-fit: contain; border-radius: 18px;
  filter: drop-shadow(0 0 28px rgba(22,163,74,0.45));
  animation: loaderPulse 1.5s ease-in-out infinite;
  display: block;
  margin: 0 auto;
  flex-shrink: 0;
}
.loader-brand {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.loader-brand-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 800; font-size: 1.25rem; color: white;
  letter-spacing: -0.01em;
}
.loader-brand-name span { color: #16A34A; }
.loader-brand-tagline {
  font-size: 0.72rem; color: rgba(255,255,255,0.4);
  letter-spacing: 0.12em; text-transform: uppercase;
}
.loader-bar {
  width: min(220px, 70vw); height: 3px;
  background: rgba(255,255,255,0.1); border-radius: 99px; overflow: hidden;
}
.loader-bar-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  border-radius: 99px; animation: loaderFill 2s ease forwards;
}
.loader-text {
  color: var(--text-muted); font-size: 0.8rem;
  letter-spacing: 0.08em; text-align: center;
}
@keyframes loaderPulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(0.93);opacity:0.7} }
@keyframes loaderFill { 0%{width:0%} 100%{width:100%} }

/* ---- Navbar ---- */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: var(--transition);
  padding: 0 0;
}
#navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--light-3);
  box-shadow: var(--shadow-md);
}
.nav-container {
  max-width: 1280px; margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img {
  height: 56px; width: 56px;
  object-fit: contain;
  border-radius: 10px;
  filter: drop-shadow(0 2px 8px rgba(20,83,45,0.18));
  transition: var(--transition);
}
.nav-logo:hover img { transform: scale(1.06); filter: drop-shadow(0 4px 12px rgba(22,163,74,0.3)); }
.nav-logo-text { font-family: var(--font-heading); font-weight: 800; font-size: 1.3rem; line-height: 1.1; }
.nav-logo-text span { color: var(--secondary); }
.nav-logo-text small { display: block; font-size: 0.6rem; font-weight: 500; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 1px; }
.nav-links {
  display: flex; align-items: center; gap: 8px;
}
.nav-link {
  font-size: 0.9rem; font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 14px; border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; right: 50%;
  height: 2px; background: var(--secondary); border-radius: 99px;
  transition: var(--transition);
}
.nav-link:hover { color: var(--primary); background: rgba(22,163,74,0.06); }
.nav-link:hover::after { left: 14px; right: 14px; }
.nav-link.active { color: var(--primary); }
.nav-link.active::after { left: 14px; right: 14px; }
.nav-cta {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: white; font-weight: 600; font-size: 0.9rem;
  padding: 10px 22px; border-radius: var(--radius-md);
  transition: var(--transition);
  box-shadow: var(--shadow-green);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(22,163,74,0.35); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 36px; height: 36px; align-items: center; justify-content: center;
  border-radius: var(--radius-sm); cursor: pointer;
  transition: var(--transition);
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--dark); border-radius: 99px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed; top: 80px; left: 0; right: 0; z-index: 999;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--light-3);
  box-shadow: var(--shadow-lg);
  transform: translateY(-110%); opacity: 0;
  transition: var(--transition);
  padding: 16px 24px 24px;
}
.mobile-nav.open { transform: translateY(0); opacity: 1; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-link {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: var(--radius-md);
  font-size: 0.95rem; font-weight: 500; color: var(--text-secondary);
  transition: var(--transition);
}
.mobile-nav-link:hover, .mobile-nav-link.active {
  background: rgba(22,163,74,0.08); color: var(--primary);
}
.mobile-nav-divider { height: 1px; background: var(--light-3); margin: 12px 0; }
.mobile-nav-cta {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: white; font-weight: 600; padding: 14px;
  border-radius: var(--radius-md); margin-top: 8px;
  box-shadow: var(--shadow-green);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-family: var(--font-body);
  font-weight: 600; border-radius: var(--radius-md);
  transition: var(--transition); cursor: pointer; border: none;
  white-space: nowrap; text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: white; padding: 14px 28px; font-size: 1rem;
  box-shadow: var(--shadow-green);
}
.btn-primary:hover {
  transform: translateY(-3px); box-shadow: 0 16px 48px rgba(22,163,74,0.4);
  filter: brightness(1.05);
}
.btn-secondary {
  background: var(--white); color: var(--primary);
  border: 2px solid var(--secondary); padding: 12px 26px; font-size: 1rem;
}
.btn-secondary:hover {
  background: rgba(22,163,74,0.05); transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--dark); padding: 14px 28px; font-size: 1rem;
  box-shadow: 0 8px 24px rgba(255,213,74,0.35);
}
.btn-accent:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(255,213,74,0.4); }
.btn-ghost {
  color: var(--text-secondary); padding: 12px 20px; font-size: 0.95rem;
}
.btn-ghost:hover { color: var(--primary); background: rgba(22,163,74,0.06); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; border-radius: var(--radius-lg); }
.btn-sm { padding: 8px 18px; font-size: 0.875rem; border-radius: var(--radius-sm); }

/* ---- Section Layouts ---- */
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.section-lg { padding: 120px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 960px; margin: 0 auto; padding: 0 24px; }

/* Section Label */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(22,163,74,0.08); color: var(--secondary);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 6px 14px;
  border-radius: 99px; border: 1px solid rgba(22,163,74,0.2);
  margin-bottom: 16px;
}
.section-label i { font-size: 0.75rem; }

/* Section Headings */
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.15; color: var(--dark);
  margin-bottom: 16px;
}
.section-title .highlight {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-subtitle {
  font-size: 1.05rem; color: var(--text-secondary);
  max-width: 600px; line-height: 1.7;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* Dividers */
.gradient-divider {
  height: 2px; width: 60px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  border-radius: 99px; margin-bottom: 24px;
}
.gradient-divider.center { margin: 0 auto 24px; }

/* ---- Hero Section ---- */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #0A2E1A 0%, #0f3d24 40%, #14532D 70%, #166534 100%);
  padding-top: 80px;
}
.hero-bg-elements { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-blob {
  position: absolute; border-radius: 50%; filter: blur(80px);
  animation: blobFloat 8s ease-in-out infinite;
}
.hero-blob-1 {
  width: 600px; height: 600px; top: -200px; right: -100px;
  background: radial-gradient(circle, rgba(22,163,74,0.25) 0%, transparent 70%);
}
.hero-blob-2 {
  width: 400px; height: 400px; bottom: -100px; left: -100px;
  background: radial-gradient(circle, rgba(255,213,74,0.15) 0%, transparent 70%);
  animation-delay: -3s;
}
.hero-blob-3 {
  width: 300px; height: 300px; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(22,163,74,0.1) 0%, transparent 70%);
  animation-delay: -5s;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
@keyframes blobFloat {
  0%,100%{transform:translate(0,0) scale(1);}
  33%{transform:translate(30px,-20px) scale(1.05);}
  66%{transform:translate(-20px,15px) scale(0.95);}
}
.hero-container {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 1;
  padding-top: 60px; padding-bottom: 60px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
  color: var(--accent); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 99px;
  border: 1px solid rgba(255,213,74,0.3); margin-bottom: 24px;
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); animation: badgePulse 2s ease infinite;
}
@keyframes badgePulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(1.3)} }
.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900; line-height: 1.05; color: white;
  margin-bottom: 20px; letter-spacing: -0.02em;
}
.hero-title .line-green {
  color: var(--accent);
  display: block;
}
.hero-typed-wrapper {
  display: flex; align-items: center; gap: 0;
  margin-bottom: 6px;
}
.hero-typed { color: white; }
.hero-typed-cursor {
  display: inline-block; width: 3px; height: 1em;
  background: var(--accent); margin-left: 4px; border-radius: 2px;
  animation: cursorBlink 0.8s step-end infinite;
}
@keyframes cursorBlink { 0%,100%{opacity:1} 50%{opacity:0} }
.hero-subtitle {
  font-size: 1.1rem; color: rgba(255,255,255,0.72);
  line-height: 1.7; margin-bottom: 36px; max-width: 520px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 32px;
}
.hero-stat-item { display: flex; flex-direction: column; }
.hero-stat-number {
  font-size: 1.8rem; font-weight: 800; color: white;
  font-family: var(--font-heading); line-height: 1;
}
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-top: 4px; }
.hero-stat-divider {
  width: 1px; background: rgba(255,255,255,0.15); height: 40px; align-self: center;
}

/* Hero Visual Side */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-main-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-2xl);
  padding: 32px; width: 100%; max-width: 420px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
  position: relative; z-index: 2;
}
.hero-card-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 24px;
}
.hero-card-icon {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; color: var(--dark);
}
.hero-card-title { font-family: var(--font-heading); font-weight: 700; color: white; font-size: 1.05rem; }
.hero-card-sub { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

.hero-modules { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.hero-module-item {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.06); border-radius: var(--radius-sm);
  padding: 10px 14px;
}
.hero-module-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), #15803d);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 0.65rem; color: white;
}
.hero-module-text { font-size: 0.85rem; color: rgba(255,255,255,0.8); }
.hero-card-progress { margin-top: 8px; }
.hero-progress-label {
  display: flex; justify-content: space-between;
  font-size: 0.8rem; color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}
.hero-progress-bar {
  height: 6px; background: rgba(255,255,255,0.1);
  border-radius: 99px; overflow: hidden;
}
.hero-progress-fill {
  height: 100%; width: 70%;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  border-radius: 99px; animation: progressGrow 2s ease 1s both;
}
@keyframes progressGrow { from{width:0} }

/* Floating Hero Cards */
.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius-lg); padding: 14px 18px;
  box-shadow: var(--shadow-xl);
  display: flex; align-items: center; gap: 12px;
  z-index: 3; animation: floatCard 4s ease-in-out infinite;
}
.hero-float-card-1 { top: -30px; left: -30px; animation-delay: 0s; }
.hero-float-card-2 { bottom: 20px; right: -40px; animation-delay: -2s; }
@keyframes floatCard {
  0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)}
}
.float-icon {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.float-icon.green { background: rgba(22,163,74,0.12); color: var(--secondary); }
.float-icon.yellow { background: rgba(255,213,74,0.15); color: var(--accent-dark); }
.float-text { font-size: 0.8rem; font-weight: 600; color: var(--dark); white-space: nowrap; }
.float-sub { font-size: 0.72rem; color: var(--text-muted); }

/* ---- Trusted Section ---- */
.trusted-section { padding: 40px 0; background: var(--light-2); }
.trusted-label {
  text-align: center; font-size: 0.8rem;
  font-weight: 600; color: var(--text-muted);
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 28px;
}
.trusted-logos {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: 32px 48px;
}
.trusted-logo-item {
  display: flex; align-items: center; gap: 8px;
  opacity: 0.45; filter: grayscale(100%);
  transition: var(--transition); font-size: 0.9rem;
  font-weight: 700; color: var(--dark-3);
}
.trusted-logo-item:hover { opacity: 0.8; filter: grayscale(0%); color: var(--primary); }
.trusted-logo-item i { font-size: 1.3rem; }

/* ---- About Section ---- */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-visual { position: relative; }
.about-img-container {
  border-radius: var(--radius-2xl); overflow: hidden;
  box-shadow: var(--shadow-xl); position: relative;
}
.about-img-placeholder {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px; color: white;
}
.about-img-placeholder i { font-size: 4rem; opacity: 0.6; }
.about-stat-card {
  position: absolute;
  background: white; border-radius: var(--radius-lg);
  padding: 16px 20px; box-shadow: var(--shadow-xl);
  border: 1px solid var(--light-3);
}
.about-stat-card.bottom-right { bottom: -24px; right: -24px; }
.about-stat-card.top-left { top: -24px; left: -24px; }
.about-stat-number { font-size: 1.6rem; font-weight: 800; color: var(--primary); line-height: 1; }
.about-stat-text { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }
.about-features { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.about-feature-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px; background: var(--light-2); border-radius: var(--radius-md);
  border: 1px solid var(--light-3); transition: var(--transition);
}
.about-feature-item:hover { border-color: rgba(22,163,74,0.3); background: rgba(22,163,74,0.04); transform: translateX(4px); }
.about-feature-icon {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(22,163,74,0.12), rgba(20,83,45,0.08));
  color: var(--secondary); display: flex; align-items: center;
  justify-content: center; font-size: 1rem; flex-shrink: 0;
}
.about-feature-title { font-weight: 600; font-size: 0.95rem; color: var(--dark); }
.about-feature-desc { font-size: 0.85rem; color: var(--text-secondary); margin-top: 2px; }

/* ---- Course Cards ---- */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px; margin-top: 48px;
}
.course-card {
  background: white; border-radius: var(--radius-xl);
  border: 1px solid var(--light-3); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: var(--transition);
  display: flex; flex-direction: column;
}
.course-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(22,163,74,0.2);
}
.course-card-img {
  width: 100%; aspect-ratio: 16/9; position: relative; overflow: hidden;
}
.course-card-img-bg {
  width: 100%; height: 100%; display: flex;
  align-items: center; justify-content: center;
  font-size: 3rem; transition: transform 0.4s ease;
}
.course-card:hover .course-card-img-bg { transform: scale(1.05); }
.course-card-img-bg.cyber { background: linear-gradient(135deg, #0A2E1A, #14532D); color: rgba(255,255,255,0.6); }
.course-card-img-bg.ai { background: linear-gradient(135deg, #1e1b4b, #3730a3); color: rgba(255,255,255,0.6); }
.course-card-img-bg.data { background: linear-gradient(135deg, #0c4a6e, #0369a1); color: rgba(255,255,255,0.6); }
.course-card-img-bg.devops { background: linear-gradient(135deg, #1c1917, #44403c); color: rgba(255,255,255,0.6); }
.course-card-img-bg.sap { background: linear-gradient(135deg, #4c0519, #881337); color: rgba(255,255,255,0.6); }
.course-card-img-bg.marketing { background: linear-gradient(135deg, #451a03, #92400e); color: rgba(255,255,255,0.6); }

.course-badge {
  position: absolute; top: 12px; left: 12px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
  padding: 5px 12px; border-radius: 99px; text-transform: uppercase;
}
.course-badge.available { background: var(--accent); color: var(--dark); }
.course-badge.coming-soon { background: rgba(255,255,255,0.15); backdrop-filter: blur(8px); color: white; border: 1px solid rgba(255,255,255,0.3); }
.course-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.course-card-category {
  font-size: 0.75rem; font-weight: 600; color: var(--secondary);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px;
}
.course-card-title {
  font-size: 1.15rem; font-weight: 700; color: var(--dark);
  margin-bottom: 8px; line-height: 1.3;
}
.course-card-desc {
  font-size: 0.875rem; color: var(--text-secondary);
  line-height: 1.6; margin-bottom: 16px; flex: 1;
}
.course-card-meta {
  display: flex; gap: 16px; margin-bottom: 20px;
  flex-wrap: wrap;
}
.course-meta-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.8rem; color: var(--text-muted);
}
.course-meta-item i { color: var(--secondary); font-size: 0.75rem; }
.course-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--light-3);
}
.course-card-level {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.8rem; font-weight: 600;
}
.level-dots { display: flex; gap: 3px; }
.level-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--light-3);
}
.level-dot.filled { background: var(--secondary); }

/* ---- Why Choose Us ---- */
.why-bg { background: linear-gradient(135deg, #0A2E1A 0%, #14532D 100%); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px; margin-top: 48px;
}
.why-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl); padding: 28px 24px;
  transition: var(--transition); text-align: center;
}
.why-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,213,74,0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.why-card-icon {
  width: 56px; height: 56px; margin: 0 auto 16px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255,213,74,0.2), rgba(255,213,74,0.05));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--accent);
  border: 1px solid rgba(255,213,74,0.2);
}
.why-card-title { font-size: 0.95rem; font-weight: 700; color: white; margin-bottom: 8px; }
.why-card-desc { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.5; }

/* ---- Testimonials ---- */
.testimonials-section { background: var(--light-2); }
.testimonial-card {
  background: white; border-radius: var(--radius-xl);
  padding: 32px; box-shadow: var(--shadow-md);
  border: 1px solid var(--light-3); height: 100%;
  display: flex; flex-direction: column;
}
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 16px; color: var(--accent-dark); }
.testimonial-quote { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; flex: 1; margin-bottom: 24px; }
.testimonial-quote::before { content: '\201C'; font-size: 2rem; color: var(--secondary); line-height: 0; vertical-align: -0.5em; margin-right: 4px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700;
  font-size: 1rem; color: white; flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.95rem; color: var(--dark); }
.testimonial-role { font-size: 0.8rem; color: var(--text-muted); }

/* Swiper overrides */
.swiper-pagination-bullet { background: var(--light-3); opacity: 1; }
.swiper-pagination-bullet-active { background: var(--secondary); }
.swiper-button-next, .swiper-button-prev {
  width: 44px; height: 44px;
  background: white; border-radius: 50%;
  box-shadow: var(--shadow-md); border: 1px solid var(--light-3);
  color: var(--primary) !important;
}
.swiper-button-next::after, .swiper-button-prev::after { font-size: 0.9rem !important; font-weight: 900 !important; }

/* ---- FAQ ---- */
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 40px; }
.faq-item {
  background: white; border-radius: var(--radius-lg);
  border: 1px solid var(--light-3); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.faq-item.open { border-color: rgba(22,163,74,0.3); box-shadow: var(--shadow-md); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; cursor: pointer;
  font-weight: 600; font-size: 0.95rem; color: var(--dark);
  transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--light-2); display: flex;
  align-items: center; justify-content: center;
  flex-shrink: 0; transition: var(--transition); font-size: 0.8rem; color: var(--text-secondary);
}
.faq-item.open .faq-icon {
  background: var(--secondary); color: white; transform: rotate(45deg);
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 20px; }
.faq-answer p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }

/* ---- Journey / Timeline ---- */
.journey-section { background: var(--light); }
.timeline { display: flex; flex-direction: column; gap: 0; position: relative; margin-top: 48px; }
.timeline::before {
  content: ''; position: absolute; left: 40px; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, var(--secondary), var(--accent), transparent);
}
.timeline-item { display: flex; gap: 28px; padding-bottom: 40px; position: relative; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  width: 80px; height: 80px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.timeline-dot-inner {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: white; box-shadow: var(--shadow-green);
  border: 3px solid white;
}
.timeline-content {
  flex: 1; background: white; border-radius: var(--radius-lg);
  padding: 24px 28px; border: 1px solid var(--light-3);
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.timeline-content:hover { border-color: rgba(22,163,74,0.25); box-shadow: var(--shadow-md); transform: translateX(4px); }
.timeline-step { font-size: 0.75rem; font-weight: 700; color: var(--secondary); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; }
.timeline-title { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.timeline-desc { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; }

/* ---- Cybersecurity Page ---- */
.cyber-hero {
  background: linear-gradient(135deg, #050c0a 0%, #0a2018 50%, #14532D 100%);
  padding: 140px 0 100px; position: relative; overflow: hidden;
}
.cyber-grid-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(22,163,74,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22,163,74,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cyber-hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900; color: white; line-height: 1.1;
  margin-bottom: 20px; letter-spacing: -0.02em;
}
.cyber-hero-title .glitch {
  color: var(--accent);
  text-shadow: 2px 0 var(--secondary), -2px 0 rgba(22,163,74,0.5);
}
.module-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px; margin-top: 40px;
}
.module-card {
  background: white; border-radius: var(--radius-lg);
  padding: 24px; border: 1px solid var(--light-3);
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.module-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
  border-color: rgba(22,163,74,0.3);
}
.module-num {
  font-size: 0.75rem; font-weight: 800; color: var(--secondary);
  letter-spacing: 0.1em; margin-bottom: 10px;
}
.module-title { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.module-topics { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.module-topic {
  font-size: 0.72rem; font-weight: 500;
  background: rgba(22,163,74,0.08); color: var(--primary);
  border: 1px solid rgba(22,163,74,0.15); padding: 3px 10px; border-radius: 99px;
}
.tool-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 12px; margin-top: 32px;
}
.tool-card {
  background: white; border: 1px solid var(--light-3);
  border-radius: var(--radius-md); padding: 16px 12px;
  text-align: center; transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.tool-card:hover { transform: translateY(-3px); border-color: rgba(22,163,74,0.3); box-shadow: var(--shadow-md); }
.tool-card i { font-size: 1.5rem; color: var(--secondary); margin-bottom: 8px; display: block; }
.tool-card span { font-size: 0.78rem; font-weight: 600; color: var(--dark); }

/* ---- Career Path Cards ---- */
.career-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px; margin-top: 32px;
}
.career-card {
  background: white; border-radius: var(--radius-lg); padding: 20px;
  border: 1px solid var(--light-3); text-align: center;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.career-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(22,163,74,0.3); }
.career-card-icon { font-size: 1.8rem; margin-bottom: 10px; }
.career-card-title { font-size: 0.9rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.career-card-salary { font-size: 0.8rem; font-weight: 600; color: var(--secondary); }

/* ---- Contact Page ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.contact-info-card {
  background: linear-gradient(135deg, var(--primary), #166534);
  border-radius: var(--radius-2xl); padding: 40px;
  color: white; position: sticky; top: 100px;
}
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.12); display: flex;
  align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--accent); flex-shrink: 0;
}
.contact-info-label { font-size: 0.75rem; color: rgba(255,255,255,0.55); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px; }
.contact-info-value { font-size: 0.95rem; color: white; font-weight: 500; }
.contact-social-links { display: flex; gap: 12px; margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12); }
.contact-social-link {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.1); color: white;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); font-size: 1rem;
}
.contact-social-link:hover { background: var(--accent); color: var(--dark); transform: translateY(-2px); }
.contact-form-card {
  background: white; border-radius: var(--radius-2xl);
  padding: 40px; border: 1px solid var(--light-3); box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--light-3); border-radius: var(--radius-md);
  font-size: 0.9rem; color: var(--dark); background: var(--light-2);
  transition: var(--transition); outline: none;
  font-family: var(--font-body);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--secondary);
  background: white; box-shadow: 0 0 0 3px rgba(22,163,74,0.12);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ---- Map ---- */
.map-container {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-md); height: 400px; margin-top: 60px;
  border: 1px solid var(--light-3);
}
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ---- Footer ---- */
footer {
  background: var(--dark); color: rgba(255,255,255,0.65);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { max-width: 320px; }
.footer-logo { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.footer-logo img {
  height: 56px; width: 56px;
  object-fit: contain; border-radius: 10px;
  filter: drop-shadow(0 2px 8px rgba(22,163,74,0.25));
}
.footer-tagline { font-size: 0.875rem; line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social-link {
  width: 38px; height: 38px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); font-size: 0.95rem;
}
.footer-social-link:hover { background: var(--secondary); color: white; transform: translateY(-2px); }
.footer-col-title { font-family: var(--font-heading); font-weight: 700; color: white; font-size: 0.95rem; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-size: 0.875rem; color: rgba(255,255,255,0.5);
  transition: var(--transition); display: flex; align-items: center; gap: 6px;
}
.footer-link:hover { color: var(--accent); transform: translateX(4px); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.875rem; }
.footer-contact-item i { color: var(--secondary); margin-top: 2px; flex-shrink: 0; }
.footer-bottom {
  padding: 24px 0; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-bottom-text { font-size: 0.8rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-link { font-size: 0.8rem; color: rgba(255,255,255,0.4); transition: var(--transition); }
.footer-bottom-link:hover { color: var(--accent); }
.footer-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(22,163,74,0.12); color: var(--secondary);
  font-size: 0.72rem; font-weight: 600; padding: 4px 10px;
  border-radius: 99px; border: 1px solid rgba(22,163,74,0.2); margin-bottom: 12px;
}

/* ---- Upcoming Courses Banner ---- */
.upcoming-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px; margin-top: 40px;
}
.upcoming-card {
  background: white; border-radius: var(--radius-lg); padding: 20px 16px;
  border: 2px dashed var(--light-3); text-align: center; transition: var(--transition);
  position: relative; overflow: hidden;
}
.upcoming-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent, rgba(22,163,74,0.03));
  opacity: 0; transition: var(--transition);
}
.upcoming-card:hover { border-color: rgba(22,163,74,0.4); transform: translateY(-4px); }
.upcoming-card:hover::before { opacity: 1; }
.upcoming-card-icon { font-size: 2rem; margin-bottom: 10px; }
.upcoming-card-title { font-size: 0.9rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.upcoming-card-status {
  font-size: 0.72rem; font-weight: 600; color: var(--text-muted);
  background: var(--light-2); padding: 3px 10px; border-radius: 99px; display: inline-block;
}

/* ---- Benefits ---- */
.benefits-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px; margin-top: 40px;
}
.benefit-card {
  background: white; border-radius: var(--radius-xl); padding: 28px;
  border: 1px solid var(--light-3); box-shadow: var(--shadow-sm);
  transition: var(--transition); display: flex; flex-direction: column; gap: 14px;
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: rgba(22,163,74,0.2); }
.benefit-icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(22,163,74,0.1), rgba(20,83,45,0.06));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--secondary);
}
.benefit-title { font-size: 1rem; font-weight: 700; color: var(--dark); }
.benefit-desc { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; }

/* ---- Page Headers ---- */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, #166534 100%);
  padding: 140px 0 80px; position: relative; overflow: hidden;
}
.page-header-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}
.page-header-content { position: relative; z-index: 1; }
.page-header-breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.page-header-breadcrumb a { color: rgba(255,255,255,0.7); transition: var(--transition); }
.page-header-breadcrumb a:hover { color: var(--accent); }
.page-header-breadcrumb span { color: rgba(255,255,255,0.3); }
.page-title { font-size: clamp(2.2rem, 4.5vw, 3.8rem); color: white; margin-bottom: 16px; }
.page-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.65); max-width: 600px; }

/* ---- 404 Page ---- */
.error-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #0A2E1A 0%, #14532D 100%);
  text-align: center; padding: 40px 24px;
}
.error-number {
  font-size: clamp(6rem, 20vw, 15rem); font-weight: 900;
  color: transparent; -webkit-text-stroke: 3px rgba(255,255,255,0.15);
  line-height: 0.85; font-family: var(--font-heading);
  margin-bottom: 24px;
}
.error-title { font-size: 2rem; color: white; margin-bottom: 12px; }
.error-desc { color: rgba(255,255,255,0.55); margin-bottom: 36px; font-size: 1.05rem; }

/* ---- Stats Counter ---- */
.stats-section {
  background: var(--light); padding: 60px 0;
  border-top: 1px solid var(--light-3);
  border-bottom: 1px solid var(--light-3);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; text-align: center;
}
.stat-item { padding: 20px; }
.stat-number {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900; font-family: var(--font-heading);
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1;
}
.stat-label { font-size: 0.875rem; color: var(--text-muted); margin-top: 6px; font-weight: 500; }

/* ---- Roadmap ---- */
.roadmap-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-top: 40px;
}
.roadmap-card {
  background: white; border-radius: var(--radius-lg); padding: 24px;
  border-left: 4px solid var(--secondary); box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.roadmap-card:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.roadmap-phase { font-size: 0.72rem; font-weight: 800; color: var(--secondary); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 6px; }
.roadmap-title { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.roadmap-desc { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }

/* ---- CTA Section ---- */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #15803d 60%, var(--secondary) 100%);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.06), transparent 60%),
    radial-gradient(circle at 70% 50%, rgba(255,213,74,0.08), transparent 60%);
}
.cta-content { position: relative; z-index: 1; }
.cta-title { font-size: clamp(2rem, 4vw, 3rem); color: white; margin-bottom: 14px; }
.cta-subtitle { font-size: 1.05rem; color: rgba(255,255,255,0.72); margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white { background: white; color: var(--primary); font-weight: 700; padding: 14px 32px; border-radius: var(--radius-md); transition: var(--transition); }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(0,0,0,0.2); }
.btn-outline-white { border: 2px solid rgba(255,255,255,0.5); color: white; font-weight: 600; padding: 12px 30px; border-radius: var(--radius-md); transition: var(--transition); }
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.08); }

/* ---- Enroll CTA Card ---- */
.enroll-card {
  background: white; border-radius: var(--radius-2xl);
  padding: 40px; border: 1px solid var(--light-3);
  box-shadow: var(--shadow-xl); position: sticky; top: 100px;
}
.enroll-price-tag {
  display: flex; align-items: baseline; gap: 8px; margin-bottom: 8px;
}
.enroll-price { font-size: 2.2rem; font-weight: 900; color: var(--primary); font-family: var(--font-heading); }
.enroll-price-note { font-size: 0.8rem; color: var(--text-muted); }
.enroll-features { display: flex; flex-direction: column; gap: 10px; margin: 24px 0; }
.enroll-feature { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; color: var(--text-secondary); }
.enroll-feature i { color: var(--secondary); font-size: 0.8rem; width: 16px; }

/* ---- About Page ---- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; margin-top: 40px; }
.team-card { background: white; border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--light-3); box-shadow: var(--shadow-sm); transition: var(--transition); text-align: center; }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.team-card-img { aspect-ratio: 1; background: linear-gradient(135deg, var(--primary), var(--secondary)); display: flex; align-items: center; justify-content: center; font-size: 3rem; color: rgba(255,255,255,0.6); }
.team-card-body { padding: 20px; }
.team-card-name { font-weight: 700; font-size: 1rem; color: var(--dark); margin-bottom: 4px; }
.team-card-role { font-size: 0.82rem; color: var(--secondary); font-weight: 600; }

/* ---- Policy / Terms ---- */
.policy-content { max-width: 800px; margin: 0 auto; }
.policy-section { margin-bottom: 40px; }
.policy-section h2 { font-size: 1.4rem; color: var(--dark); margin-bottom: 12px; padding-top: 8px; border-top: 1px solid var(--light-3); }
.policy-section h2:first-child { border-top: none; padding-top: 0; }
.policy-section p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 12px; }
.policy-section ul { padding-left: 20px; list-style: disc; }
.policy-section ul li { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 6px; }

/* ---- Chips / Tags ---- */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8rem; font-weight: 600;
  padding: 5px 12px; border-radius: 99px;
  transition: var(--transition);
}
.chip-green { background: rgba(22,163,74,0.1); color: var(--secondary); border: 1px solid rgba(22,163,74,0.2); }
.chip-yellow { background: rgba(255,213,74,0.12); color: var(--accent-dark); border: 1px solid rgba(255,213,74,0.3); }
.chip-dark { background: var(--dark-2); color: rgba(255,255,255,0.7); }

/* ---- Back to Top ---- */
#back-to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 500;
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: white; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-green); font-size: 1rem; cursor: pointer;
  transition: var(--transition); opacity: 0; transform: translateY(16px) scale(0.8);
  pointer-events: none;
}
#back-to-top.visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
#back-to-top:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(22,163,74,0.4); }

/* ---- AOS Customization ---- */
[data-aos] { will-change: transform, opacity; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* ---- Tablet (max 1024px) ---- */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-visual { display: none; }
  .hero-stats { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; max-width: 100%; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .roadmap-grid { grid-template-columns: 1fr; }
}

/* ---- Mobile (max 768px) ---- */
@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .section-lg { padding: 80px 0; }
  .container, .container-sm { padding: 0 16px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: 100svh; }
  .hero-container { padding-top: 40px; padding-bottom: 40px; padding-left: 16px; padding-right: 16px; }
  .hero-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .hero-subtitle { font-size: 1rem; }
  .hero-stats { gap: 24px; }
  .hero-stat-divider { display: none; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 320px; }
  .courses-grid { grid-template-columns: 1fr; gap: 20px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: 1fr; }
  .timeline::before { left: 24px; }
  .timeline-dot { width: 48px; }
  .timeline-dot-inner { width: 40px; height: 40px; font-size: 1rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; }
  .trusted-logos { gap: 20px 32px; }
  .upcoming-grid { grid-template-columns: repeat(2, 1fr); }
  .module-grid { grid-template-columns: 1fr; }
  .career-grid { grid-template-columns: repeat(2, 1fr); }
  .tool-grid { grid-template-columns: repeat(3, 1fr); }
  .roadmap-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .page-header { padding: 120px 0 60px; }
  .about-stat-card.bottom-right, .about-stat-card.top-left { display: none; }
  .cyber-hero { padding: 120px 0 60px; }
  .map-container { height: 280px; }
  .enroll-card { position: static; margin-top: 40px; }
}

/* ---- Small Mobile (max 480px) ---- */
@media (max-width: 480px) {
  .hero-title { font-size: clamp(1.9rem, 9vw, 2.8rem); }
  .why-grid { grid-template-columns: 1fr; }
  .upcoming-grid { grid-template-columns: 1fr; }
  .career-grid { grid-template-columns: 1fr; }
  .tool-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-badge { font-size: 0.72rem; }
  .section-title { font-size: clamp(1.7rem, 7vw, 2.2rem); }
  .hero-float-card { display: none; }
  .faq-question { font-size: 0.88rem; }
  .timeline-content { padding: 16px 20px; }
  .contact-form-card { padding: 24px 20px; }
  .contact-info-card { padding: 28px 20px; }
  .enroll-card { padding: 28px 20px; }
  /* Logo stays prominent on small screens */
  .nav-logo img { height: 50px; width: 50px; }
  .nav-logo-text { font-size: 1.1rem; }
  .loader-logo { width: 90px; height: 90px; }
}

/* ---- Extra Small (max 360px) ---- */
@media (max-width: 360px) {
  .hero-title { font-size: 1.75rem; }
  .nav-container { padding: 0 14px; }
  .container { padding: 0 14px; }
}

/* ---- Ultra Wide (min 1600px) ---- */
@media (min-width: 1600px) {
  .container { max-width: 1440px; }
  .hero-container { max-width: 1440px; }
}

/* ============================================
   HERO NAVBAR — initial transparent state
   ============================================ */
.hero-nav-init .nav-link { color: rgba(255,255,255,0.8); }
.hero-nav-init .nav-logo-text { color: white; }
.hero-nav-init .nav-logo-text span { color: var(--accent); }
.hero-nav-init .hamburger span { background: white; }
#navbar:not(.scrolled) { background: transparent; }

/* ============================================
   PAGE TRANSITIONS
   ============================================ */
.page-transition {
  position: fixed; inset: 0; z-index: 8888;
  background: var(--primary);
  transform: translateY(-100%);
  pointer-events: none;
}
.page-transition.entering {
  animation: pageEnter 0.4s cubic-bezier(0.4,0,0.2,1) forwards;
}
@keyframes pageEnter {
  from { transform: translateY(-100%); }
  to   { transform: translateY(0); }
}

/* ============================================
   EXTRA POLISH
   ============================================ */
/* Selection color */
::selection { background: rgba(22,163,74,0.2); color: var(--primary); }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--light-2); }
::-webkit-scrollbar-thumb { background: var(--secondary); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* Focus styles for accessibility */
:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Smooth image loading */
img { transition: opacity 0.3s ease; }
img.loaded { opacity: 1; }

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed; bottom: 84px; right: 28px; z-index: 500;
  width: 48px; height: 48px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition); text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.5); }

/* Glass card variant */
.glass-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
}

/* Animated underline on hover */
.hover-underline { position: relative; }
.hover-underline::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 100%;
  height: 2px; background: var(--secondary); border-radius: 99px;
  transition: right 0.3s cubic-bezier(0.4,0,0.2,1);
}
.hover-underline:hover::after { right: 0; }

/* Gradient text utility */
.gradient-text {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Badge pulse */
@keyframes badgePulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.6; transform:scale(1.3); }
}

/* Number highlights in dark sections */
.dark-stat { text-align: center; }
.dark-stat-number { font-size: 2.4rem; font-weight: 900; color: var(--accent); font-family: var(--font-heading); line-height: 1; }
.dark-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-top: 4px; }
