/* =====================================================
   HOVER INFOTECH — v11 Complete Redesign
   Design: Deep Navy + Electric Blue + Warm Accents
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* === RESET & ROOT === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
img { max-width: 100%; height: auto; display: block; }
html { scroll-behavior: smooth; }

:root {
  --navy: #0a0f1e;
  --navy-mid: #111827;
  --navy-light: #1a2235;
  --blue: #3b82f6;
  --blue-bright: #60a5fa;
  --indigo: #6366f1;
  --cyan: #06b6d4;
  --orange: #f97316;
  --emerald: #10b981;
  --pink: #ec4899;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --text: #111827;
  --text-muted: #6b7280;
  --card-bg: #ffffff;
  --card-border: rgba(59,130,246,0.1);
  --shadow-sm: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-md: 0 10px 40px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --header-h: 88px;
  --ticker-h: 42px;
  --top-offset: 130px;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  --gradient-brand: linear-gradient(135deg, #3b82f6, #6366f1, #ec4899);
  --gradient-warm: linear-gradient(135deg, #f97316, #ec4899);
  --gradient-cool: linear-gradient(135deg, #06b6d4, #3b82f6);
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: var(--top-offset);
}

/* =====================================================
   TICKER / ANNOUNCEMENT BAR
   ===================================================== */
.ticker-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--ticker-h);
  background: linear-gradient(90deg, #0a0f1e 0%, #1a1f35 40%, #0a0f1e 100%);
  border-bottom: 1px solid rgba(99,102,241,0.4);
  z-index: 1100;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.ticker-label {
  flex-shrink: 0;
  background: linear-gradient(135deg, #f97316, #ec4899);
  color: white;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.ticker-track {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.ticker-content {
  display: flex;
  animation: ticker-scroll 40s linear infinite;
  white-space: nowrap;
  align-items: center;
}
.ticker-content span {
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-weight: 500;
  padding: 0 48px;
  position: relative;
}
.ticker-content span::after {
  content: '◆';
  position: absolute;
  right: 0;
  color: #6366f1;
  transform: translateX(50%);
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-bar:hover .ticker-content { animation-play-state: paused; }

/* =====================================================
   HEADER / NAV
   ===================================================== */
.header {
  position: fixed;
  top: var(--ticker-h);
  left: 0; right: 0;
  height: var(--header-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(59,130,246,0.12);
  z-index: 1000;
  transition: var(--transition);
}
.header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}
.header-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.logo img { height: 72px; transition: transform 0.3s; }
.logo img:hover { transform: scale(1.05); }

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}
.nav-link {
  color: var(--gray-600);
  text-decoration: none;
  font-weight: 600;
  font-size: 13.5px;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
}
.nav-link:hover { color: var(--blue); background: rgba(59,130,246,0.07); }
.nav-link.active { color: var(--blue); background: rgba(59,130,246,0.1); }
.nav-link.jobs-link {
  color: var(--orange);
  background: rgba(249,115,22,0.08);
  border: 1px solid rgba(249,115,22,0.2);
}
.nav-link.jobs-link:hover { background: rgba(249,115,22,0.15); }

.nav-actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.btn-enroll {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: white;
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13.5px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(59,130,246,0.35);
  white-space: nowrap;
}
.btn-enroll:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(59,130,246,0.45); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5.5px,5.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5.5px,-5.5px); }

/* =====================================================
   UTILITIES
   ===================================================== */
.container { max-width: 1240px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3.5rem 0; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(99,102,241,0.1);
  color: var(--indigo);
  margin-bottom: 1rem;
}
.badge-orange { background: rgba(249,115,22,0.1); color: var(--orange); }
.badge-emerald { background: rgba(16,185,129,0.1); color: var(--emerald); }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--navy);
}
.section-title .grad {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.8rem 2rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: white;
  box-shadow: 0 6px 20px rgba(59,130,246,0.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(59,130,246,0.5); }
.btn-secondary {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-secondary:hover { background: var(--blue); color: white; }
.btn-white { background: white; color: var(--blue); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.btn-ghost { background: rgba(255,255,255,0.1); color: white; border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(10px); }
.btn-ghost:hover { background: rgba(255,255,255,0.2); }
.btn-orange { background: linear-gradient(135deg, #f97316, #ef4444); color: white; box-shadow: 0 6px 20px rgba(249,115,22,0.4); }
.btn-orange:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(249,115,22,0.5); }
.btn-lg { padding: 1rem 2.5rem; font-size: 16px; border-radius: 14px; }
.btn-sm { padding: 0.55rem 1.25rem; font-size: 13px; border-radius: 8px; }

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
  background: linear-gradient(135deg, #050b1a 0%, #0d1530 40%, #0a1525 100%);
  color: white;
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - var(--top-offset));
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(99,102,241,0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero-container { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(99,102,241,0.15);
  border: 1px solid rgba(99,102,241,0.3);
  color: var(--blue-bright);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease 0.15s forwards;
  opacity: 0;
}
.hero-title .line2 {
  background: linear-gradient(90deg, #60a5fa, #a78bfa, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 480px;
  animation: fadeInUp 0.6s ease 0.3s forwards;
  opacity: 0;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeInUp 0.6s ease 0.45s forwards;
  opacity: 0;
}
.hero-trust {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.6s forwards;
  opacity: 0;
}
.trust-item {
  display: flex;
  flex-direction: column;
}
.trust-num {
  font-size: 1.75rem;
  font-weight: 900;
  background: linear-gradient(90deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.trust-label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  margin-top: 2px;
  letter-spacing: 0.5px;
}

/* Hero visual */
.hero-visual {
  position: relative;
  animation: fadeInRight 0.8s ease 0.3s forwards;
  opacity: 0;
}
.hero-img-main {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center 20%;
}
.hero-card {
  position: absolute;
  background: rgba(15,23,42,0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 0.875rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.hero-card-1 { bottom: -20px; left: -20px; animation: float 4s ease-in-out infinite; }
.hero-card-2 { top: -20px; right: -20px; animation: float 4s ease-in-out 2s infinite; }
.hero-card-icon { font-size: 1.5rem; }
.hero-card-text { display: flex; flex-direction: column; }
.hero-card-val { font-size: 1rem; font-weight: 800; color: white; line-height: 1; }
.hero-card-sub { font-size: 11px; color: rgba(255,255,255,0.6); }

/* Floating orbs on hero */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}
.orb-1 { width: 120px; height: 120px; background: rgba(99,102,241,0.5); top: 20%; right: 15%; animation-delay: 1s; }
.orb-2 { width: 80px; height: 80px; background: rgba(236,72,153,0.4); bottom: 30%; left: 20%; animation-delay: 3s; }

/* =====================================================
   SCROLLING MARQUEE — PARTNERS / COMPANIES
   ===================================================== */
.marquee-section {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 1.75rem 0;
  overflow: hidden;
}
.marquee-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 1.25rem;
}
.marquee-track {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.marquee-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  animation: marquee 30s linear infinite;
  flex-shrink: 0;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-400);
  white-space: nowrap;
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.marquee-item:hover { color: var(--blue); border-color: var(--blue); }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =====================================================
   FEATURES / WHY CHOOSE
   ===================================================== */
.features-section { background: var(--gray-50); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon-wrap {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(99,102,241,0.1));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}
.feature-card:hover .feature-icon-wrap { background: linear-gradient(135deg, rgba(59,130,246,0.2), rgba(99,102,241,0.2)); transform: scale(1.1); }
.feature-title { font-size: 1.05rem; font-weight: 800; margin-bottom: 0.5rem; color: var(--navy); }
.feature-desc { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

/* =====================================================
   COURSES GRID
   ===================================================== */
.courses-section { background: white; }
.courses-filter {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid var(--gray-200);
  background: white;
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active { background: var(--blue); color: white; border-color: var(--blue); }

.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.course-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.course-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(59,130,246,0.15); border-color: rgba(59,130,246,0.3); }

.course-img-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: var(--gray-100);
  flex-shrink: 0;
}
.course-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
  display: block;
}
.course-card:hover .course-img-wrap img { transform: scale(1.06); }
.course-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(10,15,30,0.6));
}
.course-badge-pill {
  position: absolute;
  top: 12px; left: 12px;
  background: linear-gradient(135deg, #f97316, #ec4899);
  color: white;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(249,115,22,0.4);
}
.course-mode-pill {
  position: absolute;
  bottom: 10px; right: 10px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
}

.course-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.course-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.course-meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
}
.course-title { font-size: 1.05rem; font-weight: 800; margin-bottom: 0.5rem; color: var(--navy); line-height: 1.3; }
.course-desc { color: var(--text-muted); font-size: 0.875rem; line-height: 1.6; margin-bottom: 1.25rem; flex: 1; }
.course-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.course-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(59,130,246,0.08);
  color: var(--blue);
}
.course-footer {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.course-footer .btn { flex: 1; text-align: center; }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials-section { background: var(--navy); position: relative; overflow: hidden; }
.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.testimonials-section .section-title { color: white; }
.testimonials-section .section-subtitle { color: rgba(255,255,255,0.6); }
.testimonials-section .section-tag { color: var(--blue-bright); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(99,102,241,0.3); transform: translateY(-4px); }
.testimonial-quote { font-size: 3rem; line-height: 1; color: var(--indigo); opacity: 0.5; margin-bottom: 0.75rem; font-family: Georgia, serif; }
.testimonial-text { color: rgba(255,255,255,0.85); font-size: 0.95rem; line-height: 1.75; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: white;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; color: white; font-size: 0.9rem; }
.testimonial-meta { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.testimonial-stars { color: #fbbf24; font-size: 13px; margin-bottom: 2px; }

/* =====================================================
   STATS STRIP
   ===================================================== */
.stats-strip {
  background: linear-gradient(135deg, #3b82f6, #6366f1, #ec4899);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.1), transparent);
}
.stats-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
  text-align: center;
}
.stat-strip-num {
  font-size: 3rem;
  font-weight: 900;
  color: white;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-strip-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
  background: linear-gradient(135deg, #050b1a, #0d1530, #0a1020);
  padding: 5.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(99,102,241,0.2), transparent 70%);
  pointer-events: none;
}
.cta-section .section-title { color: white; }
.cta-section .section-subtitle { color: rgba(255,255,255,0.6); margin-bottom: 2.5rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* =====================================================
   PROJECTS PAGE
   ===================================================== */
.projects-hero { background: linear-gradient(135deg, #050b1a, #0d1530); color: white; padding: 4rem 0; }
.projects-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.tab-btn {
  padding: 0.75rem 2rem;
  border-radius: 12px;
  border: 1.5px solid rgba(255,255,255,0.15);
  background: transparent;
  color: rgba(255,255,255,0.6);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}
.tab-btn.active, .tab-btn:hover {
  background: white;
  color: var(--navy);
  border-color: white;
}
.domain-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: var(--transition);
}
.domain-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(59,130,246,0.3); }
.domain-title { font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-bottom: 0.75rem; }
.domain-desc { color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.7; }
.domain-types { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.domain-type-tag {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  background: rgba(59,130,246,0.08);
  color: var(--blue);
  border-radius: 20px;
  border: 1px solid rgba(59,130,246,0.15);
}

/* =====================================================
   JOBS PAGE
   ===================================================== */
.jobs-hero { background: linear-gradient(135deg, #050b1a, #0a0f1e); padding: 4rem 0; color: white; position: relative; overflow: hidden; }
.jobs-hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(249,115,22,0.15), transparent 70%); border-radius: 50%; pointer-events: none; }
.jobs-section { background: var(--gray-50); }
.jobs-tabs {
  display: flex;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 6px;
  max-width: 400px;
  margin: 0 auto 2.5rem;
}
.jobs-tab {
  flex: 1;
  padding: 0.7rem;
  border-radius: 10px;
  border: none;
  background: transparent;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-muted);
}
.jobs-tab.active { background: var(--blue); color: white; box-shadow: 0 4px 12px rgba(59,130,246,0.35); }

.jobs-panel { display: none; }
.jobs-panel.active { display: block; }

.jobs-search-bar {
  display: flex;
  gap: 1rem;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 0.75rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}
.jobs-search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: transparent;
  padding: 0 0.5rem;
}
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.job-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: var(--transition);
  position: relative;
}
.job-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(59,130,246,0.3); }
.job-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; }
.job-company { font-size: 12px; font-weight: 700; color: var(--text-muted); letter-spacing: 0.5px; text-transform: uppercase; }
.job-type { font-size: 11px; font-weight: 700; background: rgba(16,185,129,0.1); color: var(--emerald); padding: 3px 10px; border-radius: 20px; }
.job-title { font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: 0.5rem; }
.job-meta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.job-meta-item { display: flex; align-items: center; gap: 4px; font-size: 12px; color: var(--text-muted); font-weight: 600; }
.job-skills { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.25rem; }
.job-skill { font-size: 11px; font-weight: 600; padding: 3px 8px; border-radius: 6px; background: rgba(59,130,246,0.08); color: var(--blue); }
.job-footer { display: flex; justify-content: space-between; align-items: center; }
.job-salary { font-size: 1rem; font-weight: 800; color: var(--emerald); }
.job-posted { font-size: 11px; color: var(--text-muted); }

.post-job-form {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}
.post-job-form h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.5rem; color: var(--navy); }
.post-job-form .subtitle { color: var(--text-muted); margin-bottom: 2rem; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-weight: 700; font-size: 13px; color: var(--navy); margin-bottom: 0.5rem; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
  background: var(--gray-50);
  transition: var(--transition);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--blue);
  background: white;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}
.form-textarea { resize: vertical; min-height: 120px; }

/* =====================================================
   ABOUT PAGE
   ===================================================== */
.about-hero { background: linear-gradient(135deg, #050b1a, #0d1530); color: white; padding: 4rem 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-main { width: 100%; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }
.about-img-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: linear-gradient(135deg, #f97316, #ec4899);
  color: white;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(249,115,22,0.4);
  text-align: center;
}
.about-img-badge .num { font-size: 2rem; font-weight: 900; display: block; line-height: 1; }
.about-text h2 { font-size: 2.5rem; font-weight: 900; margin-bottom: 1.5rem; color: var(--navy); }
.about-text p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.8; margin-bottom: 1.25rem; }
.about-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-top: 2.5rem; }
.about-stat-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
}
.about-stat-num { font-size: 2rem; font-weight: 900; background: var(--gradient-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.about-stat-label { font-size: 12px; font-weight: 600; color: var(--text-muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; }

/* =====================================================
   CONTACT / ENROLL
   ===================================================== */
.contact-section { background: var(--gray-50); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-info h3 { font-size: 2rem; font-weight: 900; margin-bottom: 1rem; color: var(--navy); }
.contact-info > p { color: var(--text-muted); margin-bottom: 2rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding: 1.25rem;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: var(--transition);
}
.contact-item:hover { transform: translateX(6px); border-color: rgba(59,130,246,0.3); box-shadow: var(--shadow-sm); }
.contact-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(99,102,241,0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
.contact-item-text h4 { font-weight: 700; color: var(--navy); margin-bottom: 2px; font-size: 0.9rem; }
.contact-item-text p { color: var(--text-muted); font-size: 0.875rem; }

.enroll-tabs {
  display: flex;
  background: var(--gray-100);
  border-radius: 14px;
  padding: 5px;
  margin-bottom: 2rem;
}
.enroll-tab {
  flex: 1;
  padding: 0.65rem;
  border-radius: 10px;
  border: none;
  background: transparent;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-muted);
}
.enroll-tab.active { background: white; color: var(--blue); box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.enroll-panel { display: none; }
.enroll-panel.active { display: block; }

.contact-form-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

/* =====================================================
   CORPORATE PAGE
   ===================================================== */
.corporate-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}
.corporate-feature {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: var(--transition);
}
.corporate-feature:hover { box-shadow: var(--shadow-md); border-color: rgba(59,130,246,0.3); }
.corporate-feature-icon { font-size: 2rem; flex-shrink: 0; }
.corporate-feature h4 { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 0.4rem; }
.corporate-feature p { color: var(--text-muted); font-size: 0.875rem; line-height: 1.6; }

/* =====================================================
   DOWNLOADS PAGE
   ===================================================== */
.downloads-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.downloads-category {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.downloads-category:hover { box-shadow: var(--shadow-md); }
.downloads-category-header {
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: white;
}
.downloads-category-header h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 4px; }
.downloads-category-header p { font-size: 0.8rem; opacity: 0.8; }
.downloads-files { padding: 1.25rem; }
.download-file-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text);
  transition: var(--transition);
  margin-bottom: 0.5rem;
  border: 1px solid transparent;
}
.download-file-item:hover { background: rgba(59,130,246,0.06); border-color: rgba(59,130,246,0.2); color: var(--blue); }
.download-file-icon { font-size: 1.5rem; }
.download-file-name { font-weight: 600; font-size: 0.9rem; flex: 1; }
.download-arrow { color: var(--blue); opacity: 0; transition: var(--transition); }
.download-file-item:hover .download-arrow { opacity: 1; transform: translateX(4px); }

/* =====================================================
   PAGE HERO BANNER
   ===================================================== */
.page-hero {
  background: linear-gradient(135deg, #050b1a, #0d1530);
  color: white;
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99,102,241,0.4), transparent);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; margin-bottom: 0.75rem; }
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.7); max-width: 600px; }
.page-hero-decoration {
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(99,102,241,0.2), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer { background: #050b1a; color: white; padding: 5rem 0 2rem; position: relative; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(99,102,241,0.5), transparent); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 3rem; margin-bottom: 4rem; }
.footer-brand img { height: 44px; margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-brand-text { color: rgba(255,255,255,0.55); font-size: 0.875rem; line-height: 1.8; max-width: 260px; }
.footer-brand-socials { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: white;
  text-decoration: none;
  transition: var(--transition);
}
.social-btn:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-2px); }
.footer-heading { font-size: 0.875rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.9); margin-bottom: 1.5rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.875rem; transition: var(--transition); display: inline-flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--blue-bright); transform: translateX(4px); }
.footer-contact-item { display: flex; gap: 0.75rem; margin-bottom: 1rem; color: rgba(255,255,255,0.6); font-size: 0.875rem; align-items: flex-start; }
.footer-contact-item span:first-child { flex-shrink: 0; margin-top: 1px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copyright { color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); font-size: 0.8rem; text-decoration: none; transition: color 0.3s; }
.footer-bottom-links a:hover { color: var(--blue-bright); }

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  z-index: 999;
  text-decoration: none;
  animation: float 3s ease-in-out infinite;
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.7); }

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(28px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
  0%,100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .hero-grid { gap: 2.5rem; }
  .stats-strip-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --header-h: 70px; --ticker-h: 38px; --top-offset: 108px; }
  body { padding-top: var(--top-offset); }

  .hamburger { display: flex; }
  .logo img { height: 54px; }
  .nav {
    position: fixed;
    top: var(--top-offset);
    left: 0; right: 0;
    background: white;
    flex-direction: column;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transform: translateY(-110%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    z-index: 999;
    gap: 0.25rem;
  }
  .nav.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-link { width: 100%; padding: 0.875rem 1rem; text-align: center; border-radius: 10px; }
  .nav-actions .btn-enroll { display: none; }
  .nav .btn-enroll-mobile { display: block !important; width: 100%; text-align: center; margin-top: 0.75rem; }

  .hero { padding: 3rem 0; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { order: -1; }
  .hero-card { display: none; }
  .hero-title { font-size: 2.2rem; }

  .courses-grid, .testimonials-grid, .jobs-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .downloads-grid { grid-template-columns: 1fr; }
  .corporate-features { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .hero-trust { gap: 1.25rem; }
  .stats-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 3.5rem 0; }
}

@media (max-width: 480px) {
  :root { --ticker-h: 0px; --top-offset: 70px; }
  .ticker-bar { display: none; }
  .hero-title { font-size: 1.9rem; }
  .section-title { font-size: 1.75rem; }
  .stat-strip-num { font-size: 2.2rem; }
  .enroll-tabs { flex-direction: column; }
}

/* ============================================================
   REDESIGNED HOME PAGE — NEW STYLES
   ============================================================ */

/* --- HERO NEW --- */
.hero-new {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, #020817 0%, #050e22 40%, #0a0f2e 100%);
  overflow: hidden;
}
#heroCanvas {
  position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0;
}
.hero-new-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse at 20% 50%, rgba(249,115,22,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(99,102,241,0.1) 0%, transparent 60%);
}
.hero-new-container {
  position: relative; z-index: 2; display: grid;
  grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; padding: 8rem 0 5rem;
}
.hero-badge-wrap {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(249,115,22,0.12); border: 1px solid rgba(249,115,22,0.3);
  padding: 6px 16px; border-radius: 50px; font-size: 0.78rem;
  color: rgba(255,255,255,0.8); letter-spacing: 0.03em; margin-bottom: 1.5rem;
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #f97316;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-new-title {
  display: flex; flex-direction: column; font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 900; line-height: 1.05; margin-bottom: 1.5rem;
}
.hn-line1 { color: rgba(255,255,255,0.7); font-size: 0.6em; }
.hn-line2 { color: #fff; }
.hn-line3 { color: rgba(255,255,255,0.7); font-size: 0.7em; }
.hn-brand { background: linear-gradient(135deg, #f97316, #fb923c, #fbbf24); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.hero-new-desc {
  font-size: 1.1rem; color: rgba(255,255,255,0.65); line-height: 1.7;
  max-width: 520px; margin-bottom: 2.5rem;
}
.hero-new-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.btn-glow {
  padding: 14px 32px; border-radius: 50px; font-weight: 700; font-size: 1rem;
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: white; text-decoration: none;
  box-shadow: 0 0 30px rgba(249,115,22,0.5), 0 4px 20px rgba(249,115,22,0.3);
  transition: all 0.3s ease;
}
.btn-glow:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(249,115,22,0.7), 0 8px 30px rgba(249,115,22,0.4); }
.btn-outline-glow {
  padding: 14px 32px; border-radius: 50px; font-weight: 600; font-size: 1rem;
  border: 1.5px solid rgba(255,255,255,0.3); color: white; text-decoration: none;
  background: rgba(255,255,255,0.05); backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.btn-outline-glow:hover { border-color: #f97316; background: rgba(249,115,22,0.1); }

.hero-stats-row { display: flex; gap: 0; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.hs-item { display: flex; flex-direction: column; padding: 0 1.2rem; }
.hs-item:first-child { padding-left: 0; }
.hs-num { font-size: 1.6rem; font-weight: 900; color: #f97316; line-height: 1; }
.hs-lbl { font-size: 0.72rem; color: rgba(255,255,255,0.5); letter-spacing: 0.04em; margin-top: 2px; }
.hs-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.12); }

/* Orbit Visual */
.hero-new-visual { display: flex; align-items: center; justify-content: center; }
.tech-orbit-wrap {
  position: relative; width: 420px; height: 420px;
}
.tech-center-card {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 110px; height: 110px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(249,115,22,0.25), rgba(99,102,241,0.15));
  border: 2px solid rgba(249,115,22,0.4);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  z-index: 5; backdrop-filter: blur(10px);
  box-shadow: 0 0 40px rgba(249,115,22,0.3);
}
.tc-icon { font-size: 2rem; }
.tc-text { font-size: 0.6rem; color: rgba(255,255,255,0.7); font-weight: 600; text-align: center; margin-top: 4px; }

.orbit-ring {
  position: absolute; top: 50%; left: 50%; border-radius: 50%;
  border: 1px dashed rgba(249,115,22,0.2); transform: translate(-50%, -50%);
}
.orbit-ring-1 { width: 250px; height: 250px; animation: spin 12s linear infinite; }
.orbit-ring-2 { width: 380px; height: 380px; animation: spin 20s linear infinite reverse; }
@keyframes spin { from{transform:translate(-50%,-50%) rotate(0deg)} to{transform:translate(-50%,-50%) rotate(360deg)} }

.orbit-dot {
  position: absolute; width: 38px; height: 38px; border-radius: 50%;
  background: rgba(10,15,40,0.9); border: 1px solid rgba(249,115,22,0.3);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
  box-shadow: 0 0 12px rgba(249,115,22,0.2);
}
/* Position dots on orbit ring 1 */
.od-1 { top: -19px; left: calc(50% - 19px); }
.od-2 { top: calc(50% - 19px); right: -19px; }
.od-3 { bottom: -19px; left: calc(50% - 19px); }
.od-4 { top: calc(50% - 19px); left: -19px; }
/* orbit ring 2 */
.od2-1 { top: -19px; left: calc(50% - 19px); }
.od2-2 { bottom: 30px; right: -19px; }
.od2-3 { bottom: 30px; left: -19px; }

.floating-chip {
  position: absolute; padding: 6px 14px; border-radius: 20px;
  background: rgba(10,15,40,0.85); border: 1px solid rgba(249,115,22,0.35);
  color: #f97316; font-weight: 700; font-size: 0.75rem; letter-spacing: 0.05em;
  backdrop-filter: blur(6px); box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.fc-1 { top: 50px; left: 0px; animation: float 4s ease-in-out infinite; }
.fc-2 { bottom: 60px; left: 10px; animation: float 5s ease-in-out 1s infinite; }
.fc-3 { top: 20px; right: 20px; animation: float 3.5s ease-in-out 0.5s infinite; }
.fc-4 { bottom: 30px; right: 10px; animation: float 4.5s ease-in-out 1.5s infinite; }
.fc-5 { top: 50%; right: -10px; animation: float 5.5s ease-in-out 2s infinite; }

.hero-scroll-hint {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.35); font-size: 0.72rem; z-index: 3;
}
.scroll-arrow {
  width: 20px; height: 20px; border-right: 2px solid rgba(255,255,255,0.25);
  border-bottom: 2px solid rgba(255,255,255,0.25); transform: rotate(45deg);
  animation: bounceDown 1.5s ease-in-out infinite;
}
@keyframes bounceDown { 0%,100%{transform:translateY(0) rotate(45deg)} 50%{transform:translateY(6px) rotate(45deg)} }

/* --- DOMAIN CARDS --- */
.domains-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.domain-card {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px; overflow: hidden; transition: all 0.35s ease;
}
.domain-card:hover { border-color: rgba(249,115,22,0.4); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(249,115,22,0.1); }
.dc-anim {
  height: 150px; background: rgba(0,0,0,0.3); display: flex;
  align-items: center; justify-content: center; overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.dc-anim-inner { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }

/* SAP Animation */
.sap-anim { display: flex; flex-wrap: wrap; gap: 8px; padding: 1rem; align-content: center; justify-content: center; }
.sap-box {
  padding: 6px 12px; border-radius: 6px; font-size: 0.75rem; font-weight: 700;
  border: 1px solid rgba(249,115,22,0.4); color: #f97316;
  background: rgba(249,115,22,0.08);
  animation: sapPulse 3s ease-in-out infinite;
}
.b1{animation-delay:0s} .b2{animation-delay:0.5s} .b3{animation-delay:1s} .b4{animation-delay:1.5s} .b5{animation-delay:2s} .b6{animation-delay:2.5s}
@keyframes sapPulse { 0%,100%{opacity:0.5;transform:scale(1)} 50%{opacity:1;transform:scale(1.05)} }

/* Chip SVG */
.chip-svg { width: 110px; height: 110px; }
.chip-pulse { animation: chipPulse 2s ease-in-out infinite; }
@keyframes chipPulse { 0%,100%{r:6;opacity:0.2} 50%{r:16;opacity:0.5} }

/* Code Animation */
.code-anim { padding: 1rem 1.5rem; font-family: 'Courier New', monospace; }
.code-lines { display: flex; flex-direction: column; gap: 4px; }
.code-line { font-size: 0.72rem; opacity: 0; animation: fadeCodeLine 4s ease-in-out infinite; }
.cl1{animation-delay:0s} .cl2{animation-delay:0.4s} .cl3{animation-delay:0.8s} .cl4{animation-delay:1.2s} .cl5{animation-delay:1.6s}
@keyframes fadeCodeLine { 0%{opacity:0;transform:translateX(-8px)} 20%,80%{opacity:1;transform:translateX(0)} 100%{opacity:0} }
.kw{color:#c792ea} .fn{color:#82aaff} .va{color:#f78c6c} .pu{color:#89ddff} .nu{color:#f78c6c}

/* Arch Animation */
.arch-anim { flex-direction: column; gap: 6px; padding: 1rem; }
.arch-row { display: flex; align-items: center; gap: 8px; }
.arch-arrow { color: #f97316; font-size: 1rem; }
.arch-arrow-down { color: #f97316; font-size: 1.2rem; text-align: center; }
.arch-box {
  padding: 8px 12px; border-radius: 8px; font-size: 0.7rem; font-weight: 700;
  text-align: center; line-height: 1.3;
}
.arch-box small { display: block; font-weight: 400; opacity: 0.7; font-size: 0.6rem; }
.arch-frontend { background: rgba(99,102,241,0.2); border: 1px solid rgba(99,102,241,0.4); color: #818cf8; }
.arch-backend { background: rgba(249,115,22,0.15); border: 1px solid rgba(249,115,22,0.4); color: #fb923c; }
.arch-db { background: rgba(34,197,94,0.15); border: 1px solid rgba(34,197,94,0.3); color: #4ade80; }

/* Cloud Nodes */
.cloud-nodes { display: flex; flex-direction: column; gap: 10px; width: 80%; }
.cn-top, .cn-bottom { display: flex; gap: 12px; justify-content: center; }
.cn {
  padding: 8px 10px; border-radius: 10px; font-size: 0.65rem; font-weight: 600;
  text-align: center; background: rgba(99,102,241,0.15); border: 1px solid rgba(99,102,241,0.3);
  color: rgba(255,255,255,0.8); line-height: 1.4; animation: cloudFloat 3s ease-in-out infinite;
}
.cn-bottom .cn { animation-delay: 1s; background: rgba(249,115,22,0.1); border-color: rgba(249,115,22,0.25); }
@keyframes cloudFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }

/* Growth Chart */
.growth-svg { width: 100%; height: auto; }
.growth-line { stroke-dasharray: 200; stroke-dashoffset: 200; animation: drawLine 3s ease forwards infinite; }
@keyframes drawLine { 0%{stroke-dashoffset:200} 70%,100%{stroke-dashoffset:0} }

/* DC Body */
.dc-body { padding: 1.25rem; }
.dc-icon { font-size: 1.8rem; margin-bottom: 0.5rem; }
.dc-body h3 { font-size: 1rem; font-weight: 700; color: white; margin-bottom: 0.4rem; }
.dc-body p { font-size: 0.82rem; color: rgba(255,255,255,0.6); line-height: 1.5; margin-bottom: 0.75rem; }
.dc-tag {
  display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 0.7rem; font-weight: 700;
  background: rgba(249,115,22,0.15); border: 1px solid rgba(249,115,22,0.3); color: #f97316;
}

/* --- COURSE IMAGE FIX --- */
.course-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center !important;
  transition: transform 0.5s ease;
  display: block;
}

/* --- CAREER TIMELINE --- */
.career-section { background: rgba(0,0,0,0.2); }
.career-timeline {
  display: flex; align-items: flex-start; gap: 0; justify-content: center;
  flex-wrap: nowrap; overflow-x: auto; padding: 2rem 0;
}
.ct-step {
  flex: 1; min-width: 180px; text-align: center; padding: 0 1rem;
  display: flex; flex-direction: column; align-items: center;
}
.ct-num {
  font-size: 3rem; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, rgba(249,115,22,0.15), rgba(249,115,22,0.05));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 0.75rem;
}
.ct-icon {
  font-size: 2.5rem; margin-bottom: 1rem; width: 70px; height: 70px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(249,115,22,0.1); border: 1px solid rgba(249,115,22,0.25);
  border-radius: 50%; transition: all 0.3s;
}
.ct-step:hover .ct-icon { background: rgba(249,115,22,0.2); transform: scale(1.1); }
.ct-step h3 { font-size: 1rem; font-weight: 700; color: white; margin-bottom: 0.5rem; }
.ct-step p { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.5; }
.ct-connector {
  flex-shrink: 0; width: 60px; height: 2px;
  background: linear-gradient(90deg, rgba(249,115,22,0.2), rgba(249,115,22,0.6), rgba(249,115,22,0.2));
  margin-top: 100px; position: relative;
}
.ct-connector::after {
  content: '→'; position: absolute; right: -8px; top: -12px;
  color: rgba(249,115,22,0.6); font-size: 1rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .domains-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-new-container { grid-template-columns: 1fr; text-align: center; padding: 6rem 0 4rem; }
  .hero-new-desc { margin: 0 auto 2.5rem; }
  .hero-new-cta { justify-content: center; }
  .hero-stats-row { justify-content: center; }
  .hero-new-visual { display: none; }
  .career-timeline { gap: 0.5rem; }
}
@media (max-width: 640px) {
  .domains-grid { grid-template-columns: 1fr; }
  .career-timeline { flex-direction: column; align-items: center; }
  .ct-connector { width: 2px; height: 40px; margin-top: 0; }
  .ct-connector::after { top: auto; bottom: -8px; right: -8px; content: '↓'; }
  .hero-stats-row { flex-wrap: wrap; justify-content: center; }
  .hs-divider { display: none; }
  .hs-item { padding: 0.5rem 1rem; }
}
