/* ===== CSS Variables ===== */
:root {
  --primary: hsla(168, 80%, 32%, 1);
  --primary-dark: #0e7490;
  --secondary: #1e3a5f;
  --accent: #f59e0b;
  --background: #ffffff;
  --foreground: #1a1a2e;
  --muted: #f1f5f9;
  --muted-foreground: #64748b;
  --card: #ffffff;
  --border: #e2e8f0;
  --radius: 12px;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #0891b2, #06b6d4);
  --gradient-secondary: linear-gradient(135deg, #1e3a5f, #2d4a6f);
  --gradient-accent: linear-gradient(135deg, #f59e0b, #fbbf24);
  --gradient-hero: linear-gradient(135deg, #1e3a5f 0%, #0e7490 100%);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--foreground);
  line-height: 1.6;
  background: var(--background);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}


/* ===== Utility Classes ===== */
.text-primary { color: var(--primary) !important; }
.text-yellow { color: var(--accent); }
.gradient-text {
  background: linear-gradient(135deg, var(--primary), #06b6d4, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(8, 145, 178, 0.3);
}

.btn-cta {
  background: var(--gradient-accent);
  color: white;
  font-size: 16px;
  padding: 14px 28px;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

.btn-secondary {
  background: var(--muted);
  color: var(--foreground);
}
.btn-secondary:hover {
  background: var(--border);
}

.btn-white {
  background: white;
  color: var(--primary);
}
.btn-white:hover {
  background: rgba(255,255,255,0.9);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
}
.btn-whatsapp:hover {
  background: #20bd5a;
}

/* Gradient buttons */
.btn-gradient-blue { background: linear-gradient(135deg, #3b82f6, #06b6d4); color: white; }
.btn-gradient-purple { background: linear-gradient(135deg, #a855f7, #ec4899); color: white; }
.btn-gradient-green { background: linear-gradient(135deg, #22c55e, #10b981); color: white; }
.btn-gradient-orange { background: linear-gradient(135deg, #f97316, #fbbf24); color: white; }

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--gradient-hero);
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: pulse 4s ease-in-out infinite;
}

.orb-1 {
  top: 80px;
  left: 80px;
  width: 288px;
  height: 288px;
  background: rgba(6, 182, 212, 0.2);
}

.orb-2 {
  bottom: 80px;
  right: 80px;
  width: 384px;
  height: 384px;
  background: rgba(168, 85, 247, 0.15);
  animation-delay: 1s;
}

.orb-3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: rgba(59, 130, 246, 0.1);
  animation-delay: 2s;
}

.grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: 
    linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 60px 60px;
}

.floating-particle {
  position: absolute;
  border-radius: 50%;
  animation: bounce 3s ease-in-out infinite;
}
.p1 { top: 25%; left: 25%; width: 8px; height: 8px; background: rgba(6, 182, 212, 0.4); }
.p2 { top: 33%; right: 33%; width: 12px; height: 12px; background: rgba(168, 85, 247, 0.3); animation-delay: 0.5s; }
.p3 { bottom: 33%; left: 33%; width: 8px; height: 8px; background: rgba(250, 204, 21, 0.4); animation-delay: 1s; }
.p4 { top: 66%; right: 25%; width: 8px; height: 8px; background: rgba(20, 184, 166, 0.3); animation-delay: 1.5s; }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 32px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 8px 20px;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  font-weight: 500;
  margin: 0 auto 32px;
  text-align: center;
}
.hero-badge i { color: var(--accent); }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
}

.hero-text h1 { color: white; }

.hero-text h1 {
  font-size: clamp(32px, 5vw, 60px);
  margin-bottom: 24px;
}
.hero-text h1 .highlight { color: var(--accent); }

.hero-text > p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  line-height: 1.7;
}

.partner-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}
.partner-badge span { color: rgba(255,255,255,0.6); font-size: 14px; }
.partner-logo {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 16px;
  border-radius: 8px;
  color: white;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .partner-badge { justify-content: center; }
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
}

.highlight-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.highlight-card:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.3);
}
.highlight-card i {
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 8px;
}
.highlight-card span {
  font-size: 12px;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .hero-cta { justify-content: center; }
}

.hero-video {
  position: relative;
}

.video-container {
  aspect-ratio: 16/9;
  background: rgba(30, 58, 95, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.play-button {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.play-button:hover { background: rgba(255,255,255,0.3); }
.play-button i { color: white; font-size: 24px; margin-left: 4px; }

.video-container p { color: white; font-size: 20px; font-weight: 600; }

.floating-stat {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  text-align: center;
  animation: float 3s ease-in-out infinite;
}
.stat-left { bottom: -24px; left: -24px; }
.stat-right { top: -16px; right: -16px; animation-delay: 0.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.stat-value {
  display: block;
  font-size: 28px;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
}
.stat-left .stat-value { color: var(--primary); }
.stat-right .stat-value { color: var(--accent); }

.stat-label {
  font-size: 12px;
  color: var(--muted-foreground);
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.hero-wave svg { display: block; width: 100%; }

/* ===== Section Headers ===== */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header.light h2 { color: white; }
.section-header.light p { color: rgba(255,255,255,0.6); }

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(8, 145, 178, 0.1);
  border: 1px solid rgba(8, 145, 178, 0.2);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-badge.violet {
  background: rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.3);
  color: #c4b5fd;
}

.section-badge.yellow {
  background: rgba(250, 204, 21, 0.2);
  border-color: rgba(250, 204, 21, 0.3);
  color: #fde047;
}

.section-badge.green {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

.section-badge.primary {
  background: rgba(8, 145, 178, 0.1);
  border-color: rgba(8, 145, 178, 0.2);
  color: var(--primary);
}

.section-badge.accent {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.2);
  color: var(--accent);
}

.section-badge.yellow-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: var(--muted-foreground);
  max-width: 700px;
  margin: 0 auto;
}

/* ===== Outcome Stats Section ===== */
.outcome-stats {
  padding: 80px 0;
  background: white;
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

.stat-card {
  text-align: center;
  padding: 32px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-color: rgba(8, 145, 178, 0.3);
}

.stat-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: white;
}

.gradient-cyan { background: linear-gradient(135deg, #06b6d4, #14b8a6); }
.gradient-purple { background: linear-gradient(135deg, #a855f7, #ec4899); }
.gradient-orange { background: linear-gradient(135deg, #f97316, #fbbf24); }
.gradient-green { background: linear-gradient(135deg, #22c55e, #10b981); }
.gradient-blue { background: linear-gradient(135deg, #3b82f6, #06b6d4); }
.gradient-pink { background: linear-gradient(135deg, #ec4899, #f43f5e); }
.gradient-violet { background: linear-gradient(135deg, #8b5cf6, #a855f7); }
.gradient-amber { background: linear-gradient(135deg, #f59e0b, #fbbf24); }
.gradient-emerald { background: linear-gradient(135deg, #10b981, #14b8a6); }
.gradient-indigo { background: linear-gradient(135deg, #6366f1, #3b82f6); }
.gradient-teal { background: linear-gradient(135deg, #14b8a6, #06b6d4); }
.gradient-yellow { background: linear-gradient(135deg, #eab308, #f97316); }
.gradient-red { background: linear-gradient(135deg, #ef4444, #f97316); }
.gradient-rose { background: linear-gradient(135deg, #f43f5e, #ec4899); }

.stat-card h3 {
  font-size: 48px;
  color: var(--foreground);
  margin-bottom: 8px;
}

.stat-card p {
  font-size: 14px;
  color: var(--muted-foreground);
  font-weight: 500;
}

.placement-stats {
  background: var(--gradient-secondary);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 64px;
}

.placement-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

@media (max-width: 768px) {
  .placement-stats { grid-template-columns: repeat(2, 1fr); }
}

.placement-stat {
  text-align: center;
  color: white;
}
.placement-stat i {
  font-size: 24px;
  margin-right: 12px;
}
.placement-stat .value {
  font-size: 32px;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
}
.placement-stat .label {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* Colored icons in placement stats */
.placement-stat:nth-child(1) i { color: #22d3ee; }
.placement-stat:nth-child(2) i { color: #fbbf24; }
.placement-stat:nth-child(3) i { color: #c084fc; }
.placement-stat:nth-child(4) i { color: #4ade80; }

.alumni-section {
  text-align: center;
}

.alumni-section h3 {
  font-size: 32px;
  margin-bottom: 8px;
}

.alumni-section > p {
  color: var(--muted-foreground);
  margin-bottom: 32px;
}

.company-marquee {
  overflow: hidden;
  padding: 16px 0;
  position: relative;
}

.company-marquee::before,
.company-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
}
.company-marquee::before {
  left: 0;
  background: linear-gradient(to right, white, transparent);
}
.company-marquee::after {
  right: 0;
  background: linear-gradient(to left, white, transparent);
}

.marquee-content {
  display: flex;
  gap: 48px;
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.company-logo {
  flex-shrink: 0;
  padding: 16px 32px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  color: var(--muted-foreground);
  min-width: 160px;
  text-align: center;
}

/* ===== Why SAP Section ===== */
.why-sap {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.why-sap-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
}

.grid-pattern-dark {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: 
    linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 60px 60px;
}

.orb-violet {
  top: 0;
  left: 25%;
  width: 600px;
  height: 600px;
  background: rgba(139, 92, 246, 0.2);
}

.orb-cyan {
  bottom: 0;
  right: 25%;
  width: 500px;
  height: 500px;
  background: rgba(6, 182, 212, 0.15);
  animation-delay: 1s;
}

.orb-indigo {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: rgba(99, 102, 241, 0.1);
  animation-delay: 2s;
}

.why-sap .container {
  position: relative;
  z-index: 10;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.benefit-card {
  position: relative;
  padding: 32px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.5));
  border: 1px solid rgba(100, 116, 139, 0.3);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}
.benefit-card:hover {
  transform: translateY(-8px);
  border-color: rgba(100, 116, 139, 0.6);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 28px;
  color: white;
  transition: all 0.3s ease;
}
.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(5deg);
}

.benefit-card h3 {
  color: white;
  font-size: 20px;
  margin-bottom: 12px;
}

.benefit-card p {
  color: rgba(148, 163, 184, 1);
  font-size: 14px;
  line-height: 1.7;
}

.key-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.4));
  border: 1px solid rgba(100, 116, 139, 0.3);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.key-highlights::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #8b5cf6, #a855f7, #06b6d4);
}

@media (max-width: 1024px) {
  .key-highlights { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .key-highlights { grid-template-columns: 1fr; }
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(100, 116, 139, 0.3);
  border-radius: 12px;
  transition: all 0.3s ease;
}
.highlight-item:hover {
  background: rgba(30, 41, 59, 0.8);
  border-color: rgba(100, 116, 139, 0.5);
  transform: translateY(-4px);
}

.highlight-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(30, 41, 59, 1), rgba(51, 65, 85, 1));
  border: 1px solid rgba(100, 116, 139, 0.5);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.highlight-item:nth-child(1) .highlight-icon i { color: #c4b5fd; }
.highlight-item:nth-child(2) .highlight-icon i { color: #fde68a; }
.highlight-item:nth-child(3) .highlight-icon i { color: #6ee7b7; }
.highlight-item:nth-child(4) .highlight-icon i { color: #67e8f9; }

.highlight-item span {
  color: rgba(203, 213, 225, 1);
  font-size: 14px;
  font-weight: 500;
}

/* ===== Curriculum Section ===== */
.curriculum {
  padding: 96px 0;
  background: white;
  position: relative;
}

.curriculum-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.curriculum-bg .orb-primary {
  top: 80px;
  left: 80px;
  width: 288px;
  height: 288px;
  background: rgba(8, 145, 178, 0.05);
}

.curriculum-bg .orb-secondary {
  bottom: 80px;
  right: 80px;
  width: 384px;
  height: 384px;
  background: rgba(30, 58, 95, 0.05);
  animation-delay: 1.5s;
}

.modules-list {
  max-width: 900px;
  margin: 0 auto 64px;
}

.module-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}
.module-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #3b82f6, #06b6d4);
  transition: width 0.3s;
}
.module-card.active::before { width: 6px; }
.module-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-color: rgba(8, 145, 178, 0.2);
}
.module-card.active {
  box-shadow: 0 15px 40px rgba(8, 145, 178, 0.15);
  border-color: rgba(8, 145, 178, 0.3);
}

.module-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 20px 28px;
  cursor: pointer;
}

.module-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.module-icon {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
}

.module-number {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 24px;
  height: 24px;
  background: white;
  border: 2px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--foreground);
}

.module-details h3 {
  font-size: 18px;
  color: var(--foreground);
  margin-bottom: 6px;
  transition: color 0.3s;
}
.module-card:hover .module-details h3 { color: var(--primary); }

.module-meta {
  display: flex;
  gap: 16px;
}
.module-meta span {
  font-size: 13px;
  color: var(--muted-foreground);
  display: flex;
  align-items: center;
  gap: 6px;
}
.module-meta i { color: var(--primary); }
.module-meta span:last-child i { color: #eab308; }
.module-meta span:last-child { font-weight: 600; color: var(--foreground); }

.module-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--muted);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}
.module-card.active .module-toggle {
  background: var(--primary);
  color: white;
}
.module-toggle i {
  transition: transform 0.3s;
}
.module-card.active .module-toggle i {
  transform: rotate(180deg);
}

.module-content {
  padding: 0 24px 24px 32px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
  padding-top: 20px;
  display: none;
}
.module-card.active .module-content { display: block; }

.module-content > p {
  color: var(--muted-foreground);
  margin-bottom: 24px;
  line-height: 1.7;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

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

.topic {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--muted-foreground);
  transition: background 0.3s;
}
.topic:hover { background: rgba(8, 145, 178, 0.05); }
.topic i { color: var(--primary); margin-top: 2px; }

.skills-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-tag {
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: white;
  background: var(--gradient-primary);
}

/* Different colored module cards */
.module-card[data-module="1"]::before { background: linear-gradient(180deg, #3b82f6, #06b6d4); }
.module-card[data-module="2"]::before { background: linear-gradient(180deg, #22c55e, #10b981); }
.module-card[data-module="3"]::before { background: linear-gradient(180deg, #f97316, #fbbf24); }
.module-card[data-module="4"]::before { background: linear-gradient(180deg, #ec4899, #f43f5e); }
.module-card[data-module="5"]::before { background: linear-gradient(180deg, #8b5cf6, #a855f7); }
.module-card[data-module="6"]::before { background: linear-gradient(180deg, #6366f1, #3b82f6); }
.module-card[data-module="7"]::before { background: linear-gradient(180deg, #14b8a6, #06b6d4); }
.module-card[data-module="8"]::before { background: linear-gradient(180deg, #eab308, #f97316); }

.tools-section {
  text-align: center;
}

.tools-section h3 {
  font-size: 28px;
  margin: 16px 0 40px;
}

.tools-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.tool-tag {
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  color: white;
  cursor: pointer;
  transition: all 0.3s;
}
.tool-tag:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* ===== Real Projects Section ===== */
.real-projects {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.projects-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

.orb-cyan-dark {
  top: 0;
  left: 25%;
  width: 384px;
  height: 384px;
  background: rgba(6, 182, 212, 0.2);
}

.orb-purple-dark {
  bottom: 0;
  right: 25%;
  width: 320px;
  height: 320px;
  background: rgba(168, 85, 247, 0.2);
  animation-delay: 1s;
}

.real-projects .container {
  position: relative;
  z-index: 10;
}

.projects-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 16px 32px;
    border-radius: 50px;
    margin: 0 auto 48px;
    text-align: center;
    justify-content: center;
    width: 35%;
}
 
.projects-badge i { font-size: 24px; }
.projects-badge i:first-child { color: #fde047; }
.projects-badge i:last-child { color: #22d3ee; }
.projects-badge .badge-number {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, #fde047, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.projects-badge span:last-of-type {
  color: rgba(255,255,255,0.8);
  font-size: 18px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.project-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.project-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255,255,255,0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.project-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.project-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  transition: transform 0.3s;
}
.project-card:hover .project-icon {
  transform: rotate(-5deg) scale(1.1);
}

.project-industry {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.1);
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.1);
}

.project-card h3 {
  color: white;
  font-size: 20px;
  margin-bottom: 12px;
}

.project-card > p {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.project-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.project-skills span {
  font-size: 12px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.9);
  border-radius: 8px;
}

.project-link {
  background: none;
  border: none;
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  transition: gap 0.3s;
}
.project-link:hover { gap: 12px; }

/* ===== Mentors Section ===== */
.mentors {
  padding: 96px 0;
  background: linear-gradient(135deg, #f8fafc, #ffffff, #f8fafc);
  position: relative;
  overflow: hidden;
}

.mentors-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb-primary-light {
  top: 80px;
  left: 40px;
  width: 288px;
  height: 288px;
  background: rgba(8, 145, 178, 0.05);
}

.orb-secondary-light {
  bottom: 80px;
  right: 40px;
  width: 384px;
  height: 384px;
  background: rgba(30, 58, 95, 0.05);
  animation-delay: 1s;
}

.mentors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .mentors-grid { 
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .mentors-grid { 
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

.mentor-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px 28px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.mentor-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mentor-card:hover::before {
  opacity: 1;
}

.mentor-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 48px rgba(8, 145, 178, 0.18);
  border-color: rgba(8, 145, 178, 0.4);
}

.mentor-image-wrapper {
  position: relative;
  width: 128px;
  margin: 0 auto 24px;
}

.mentor-avatar {
  position: relative;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  font-weight: 700;
  border: 5px solid white;
  box-shadow: 0 12px 36px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.gradient-blue {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.gradient-purple {
  background: linear-gradient(135deg, #a855f7, #ec4899);
}

.mentor-card:hover .mentor-avatar {
  transform: scale(1.05);
  box-shadow: 0 16px 42px rgba(0,0,0,0.2);
}

#mentors .section-header h2 {
  color: #000;
}

.mentor-rating {
  position: absolute;
  bottom: 0;
  right: 0;
  background: white;
  border-radius: 50px;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  color: var(--foreground);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  border: 2px solid #f1f5f9;
}

.mentor-rating i { 
  color: #eab308; 
  font-size: 13px; 
}

.mentor-card h3 {
  font-size: 22px;
  color: var(--foreground);
  margin-bottom: 6px;
  font-weight: 700;
}

.mentor-role {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.4;
}

.mentor-card:nth-child(1) .mentor-role { 
  background: linear-gradient(135deg, #3b82f6, #06b6d4); 
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mentor-card:nth-child(2) .mentor-role { 
  background: linear-gradient(135deg, #a855f7, #ec4899); 
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mentor-experience {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted-foreground);
  background: var(--muted);
  padding: 10px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
  font-weight: 500;
}

.mentor-experience i { 
  color: var(--primary); 
}

.mentor-companies {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.mentor-companies span {
  font-size: 11px;
  background: rgba(8, 145, 178, 0.08);
  color: var(--secondary);
  padding: 7px 14px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(8, 145, 178, 0.1);
}

.mentor-companies span:hover {
  background: rgba(8, 145, 178, 0.12);
  transform: translateY(-2px);
}

.mentor-companies span i {
  font-size: 10px;
}

.mentor-bio {
  font-size: 14px;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: left;
}

.mentor-specialization {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--foreground);
  padding: 12px 16px;
  background: rgba(8, 145, 178, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(8, 145, 178, 0.1);
}

.mentor-specialization i { 
  color: var(--primary); 
  font-size: 14px;
}

/* ===== Testimonials Section ===== */
.testimonials {
  padding: 96px 0;
  background: linear-gradient(135deg, #f8fafc, #ffffff, #f1f5f9);
  position: relative;
}

.testimonials-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb-primary-fade {
  top: 80px;
  right: 80px;
  width: 320px;
  height: 320px;
  background: rgba(8, 145, 178, 0.1);
}

.orb-accent-fade {
  bottom: 80px;
  left: 80px;
  width: 384px;
  height: 384px;
  background: rgba(245, 158, 11, 0.1);
  animation-delay: 1s;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.testimonial-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-color: rgba(8, 145, 178, 0.2);
}

.quote-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

.hike-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #22c55e, #10b981);
  color: white;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.hike-badge.first-job {
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
}

.career-transition {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.previous-role {
  background: var(--muted);
  padding: 4px 8px;
  border-radius: 6px;
  color: var(--muted-foreground);
}
.career-transition > i { color: var(--primary); }
.current-role { font-weight: 600; }

.company-transition {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.previous-company {
  font-size: 12px;
  color: var(--muted-foreground);
  background: rgba(0,0,0,0.03);
  padding: 4px 8px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.company-transition > i { color: var(--primary); font-size: 12px; }
.current-company {
  font-size: 12px;
  font-weight: 700;
  color: white;
  padding: 4px 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.testimonial-quote {
  color: var(--muted-foreground);
  font-size: 14px;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.testimonial-rating i { color: #eab308; font-size: 18px; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  font-weight: 700;
}

.author-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 2px;
}
.author-info span {
  font-size: 12px;
  color: var(--muted-foreground);
  display: flex;
  align-items: center;
  gap: 4px;
}
.author-info i { color: var(--primary); }

/* Pricing Card */
/* ===== Pricing Section ===== */
.pricing {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  color: white;
}

.pricing-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0d9488 0%, #357c76 50%, #16746a 100%);
}

.orb-cyan-pricing {
  top: 40px;
  left: 40px;
  width: 256px;
  height: 256px;
  background: rgba(6, 182, 212, 0.1);
}

.orb-purple-pricing {
  bottom: 40px;
  right: 40px;
  width: 320px;
  height: 320px;
  background: rgba(168, 85, 247, 0.1);
  animation-delay: 1s;
}

.grid-pattern-pricing {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: 
    linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 50px 50px;
}

.pricing .container {
  position: relative;
  z-index: 10;
}

/* Two Column Grid */
.pricing-grid-two {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto 64px;
  align-items: start;
}

@media (max-width: 1024px) {
  .pricing-grid-two { 
    grid-template-columns: 1fr; 
    max-width: 500px;
  }
}

/* Pricing Card */
.pricing-card {
  background: white;
  color: var(--foreground);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.pricing-card.featured {
  border: 2px solid rgba(34, 197, 94, 0.3);
}

.job-assured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #22c55e, #10b981);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
}

.pricing-card h3 {
  font-size: 26px;
  text-align: center;
  margin-bottom: 8px;
  font-weight: 700;
}

.pricing-description {
  text-align: center;
  color: var(--muted-foreground);
  font-size: 14px;
  margin-bottom: 24px;
}

.pricing-price {
  text-align: center;
  margin-bottom: 8px;
}

.current-price {
  font-size: 40px;
  font-weight: 800;
  color: var(--primary);
  margin-right: 8px;
}

.original-price {
  font-size: 20px;
  color: var(--muted-foreground);
  text-decoration: line-through;
}

.pricing-duration {
  text-align: center;
  font-size: 14px;
  color: var(--muted-foreground);
  margin-bottom: 24px;
  font-weight: 500;
}

.pricing-features {
  list-style: none;
  margin-bottom: 24px;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 8px;
}

.pricing-features::-webkit-scrollbar {
  width: 4px;
}

.pricing-features::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li i { 
  color: var(--primary); 
  margin-top: 2px;
  font-size: 16px;
}

.pricing-card .btn { 
  width: 100%; 
  justify-content: center;
  font-size: 16px;
  padding: 14px;
}

/* Enhanced Token Card */
.token-card-enhanced {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  color: var(--foreground);
  border-radius: 24px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: all 0.4s ease;
  border: 2px solid rgba(251, 191, 36, 0.3);
}

.token-card-enhanced:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(251, 191, 36, 0.3);
}

.token-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
  animation: rotate 8s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.token-header {
  text-align: center;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.token-icon-large {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 8px 24px rgba(251, 191, 36, 0.4);
}

.token-icon-large i {
  font-size: 36px;
  color: white;
}

.token-header h3 {
  font-size: 28px;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--foreground);
}

.token-tagline {
  font-size: 14px;
  color: var(--muted-foreground);
}

.token-highlights {
  display: flex;
  justify-content: space-around;
  gap: 12px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.token-highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted-foreground);
  font-weight: 600;
}

.token-highlight-item i {
  font-size: 20px;
  color: var(--primary);
}

.token-price-box {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(245, 158, 11, 0.1));
  border: 2px solid rgba(251, 191, 36, 0.3);
  border-radius: 16px;
  padding: 15px;
  text-align: center;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.token-label {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--muted-foreground);
  font-weight: 700;
  letter-spacing: 1px;
}

.token-price-large {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary);
  margin: 8px 0;
}

.token-note {
  font-size: 13px;
  color: var(--muted-foreground);
  font-weight: 500;
}

.token-benefits {
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.token-benefits h4 {
  font-size: 16px;
  margin-bottom: 16px;
  color: var(--foreground);
  font-weight: 700;
}

.token-benefits ul {
  list-style: none;
}

.token-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  padding: 10px 0;
  color: var(--foreground);
}

.token-benefits li i {
  color: #22c55e;
  font-size: 16px;
}

.btn-token-cta {
  width: 100%;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: white;
  border: none;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
  position: relative;
  z-index: 1;
}

.btn-token-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.5);
}

.token-urgency {
  margin-top: 16px;
  text-align: center;
  font-size: 13px;
  color: #dc2626;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(220, 38, 38, 0.1);
  padding: 10px;
  border-radius: 8px;
  position: relative;
  z-index: 1;
}

.token-urgency i {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.token-section {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.token-section > i { font-size: 48px; color: var(--accent); margin-bottom: 16px; }
.token-section h3 { font-size: 24px; margin-bottom: 8px; }
.token-section > p { color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.token-price { font-size: 48px; font-weight: 800; color: var(--accent); margin-bottom: 8px; }
.token-note { font-size: 14px; color: rgba(255,255,255,0.6); display: block; margin-bottom: 24px; }

.enrollment-steps {
  max-width: 1000px;
  margin: 0 auto 48px;
  text-align: center;
}

.steps-header { margin-bottom: 32px; }
.steps-badge {
  display: inline-block;
  font-size: 14px;
  color: #67e8f9;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.steps-header h3 { font-size: 32px; }

.steps-line {
  display: none;
  position: absolute;
  top: 150px;
  left: 10%;
  right: 10%;
  height: 4px;
  background: linear-gradient(90deg, rgba(103, 232, 249, 0.3), rgba(250, 204, 21, 0.5), rgba(103, 232, 249, 0.3));
  border-radius: 2px;
}

@media (min-width: 768px) {
  .steps-line { display: block; }
  .enrollment-steps { position: relative; }
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

.step-item { text-align: center; }

.step-icon {
  position: relative;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 28px;
  color: var(--accent);
  transition: all 0.3s;
}
.step-item:hover .step-icon {
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.2), rgba(250, 204, 21, 0.05));
  border-color: rgba(250, 204, 21, 0.5);
}

.step-number {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #fde047, #f97316);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: white;
}

.step-item h4 {
  font-size: 16px;
  margin-bottom: 4px;
  transition: color 0.3s;
}
.step-item:hover h4 { color: var(--accent); }

.step-item p { font-size: 12px; color: rgba(255,255,255,0.6); }

.pricing-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== FAQ Section ===== */
.faq {
  padding: 96px 0;
  background: linear-gradient(135deg, #f8fafc, #ffffff, #f8fafc);
  position: relative;
  overflow: hidden;
}

.faq-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb-primary-faq {
  top: 25%;
  left: 25%;
  width: 384px;
  height: 384px;
  background: rgba(8, 145, 178, 0.1);
}

.orb-secondary-faq {
  bottom: 25%;
  right: 25%;
  width: 320px;
  height: 320px;
  background: rgba(30, 58, 95, 0.1);
  animation-delay: 1s;
}

.faq-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.faq-category {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  background: var(--muted);
  color: var(--muted-foreground);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.faq-category:hover { background: var(--border); }
.faq-category.active {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 10px 20px rgba(8, 145, 178, 0.3);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-group { display: none; }
.faq-group.active { display: block; }

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
}
.faq-item:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-color: rgba(8, 145, 178, 0.2);
}
.faq-item.active {
  box-shadow: 0 15px 40px rgba(8, 145, 178, 0.15);
  border-color: rgba(8, 145, 178, 0.3);
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-primary);
  transition: width 0.3s;
}
.faq-item.active::before { width: 6px; }
.faq-item { position: relative; }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px 20px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.question-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(8, 145, 178, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  transition: all 0.3s;
}
.faq-item.active .question-icon {
  background: var(--gradient-primary);
  color: white;
}

.faq-question span {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  color: var(--foreground);
  transition: color 0.3s;
}
.faq-item.active .faq-question span { color: var(--primary); }

.toggle-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}
.faq-item.active .toggle-icon {
  background: var(--gradient-primary);
  color: white;
}
.toggle-icon i { transition: transform 0.3s; }
.faq-item.active .toggle-icon i { transform: rotate(180deg); }

.faq-answer {
  padding: 0 24px 20px 84px;
  display: none;
}
.faq-item.active .faq-answer { display: block; }

.faq-answer p {
  color: var(--muted-foreground);
  line-height: 1.7;
}

.faq-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.05), rgba(30, 58, 95, 0.05), rgba(8, 145, 178, 0.05));
  border: 1px solid rgba(8, 145, 178, 0.1);
  border-radius: 24px;
  padding: 32px;
  margin-top: 48px;
  text-align: center;
}
.faq-cta > i { font-size: 32px; color: var(--primary); }
.faq-cta p { color: var(--muted-foreground); font-size: 18px; }


/* ===== Animations ===== */
.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.animate-slide-left {
  animation: slideLeft 0.6s ease forwards;
}

.animate-slide-right {
  animation: slideRight 0.6s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Scroll Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .hero {padding-top: 30px;} .outcome-stats, .why-sap, .curriculum, .real-projects, .mentors, .testimonials, .pricing, .faq {padding: 40px 0;}
  .hero-badge { font-size: 12px; padding: 6px 16px; }
  .section-header h2 { font-size: 28px; }
  .section-header p { font-size: 16px; }
  .btn { padding: 10px 20px; font-size: 13px; }
  .btn-cta { padding: 12px 24px; font-size: 14px; }
  .faq-bg, .curriculum-bg, .mentors-bg, .testimonials-bg {display:none;}
  .stats-grid {gap: 10px;} .stat-card {padding: 15px;}
  .projects-badge {width:100%; padding: 8px 10px; margin: 0 auto 20px;}
}

/* ================================================
   REDESIGNED PRICING SECTION — NEW ATTRACTIVE CSS
   Add these styles to your sap.css file
   ================================================ */

/* ── 2-Card Row ── */
.pricing-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 960px;
  margin: 0 auto 48px;
  align-items: start;
}

@media (max-width: 768px) {
  .pricing-cards-row {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}

/* ── New Pricing Card Base ── */
.pricing-card-new {
  background: #ffffff;
  border-radius: 28px;
  padding: 36px 32px 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1.5px solid rgba(255,255,255,0.6);
}

.pricing-card-new:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.18);
}

/* Featured Card Lift */
.pricing-card-featured {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(16, 185, 129, 0.22);
  border: 2px solid rgba(16, 185, 129, 0.35);
}

.pricing-card-featured:hover {
  transform: translateY(-18px);
  box-shadow: 0 36px 72px rgba(16, 185, 129, 0.28);
}

/* Glow BG Blobs */
.card-glow-bg {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  filter: blur(60px);
  top: -60px;
  right: -60px;
  pointer-events: none;
  z-index: 0;
}
.card-glow-purple { background: rgba(139, 92, 246, 0.12); }
.card-glow-green  { background: rgba(16, 185, 129, 0.12); }

/* Popular Banner */
.card-popular-banner {
  position: absolute;
  top: 20px;
  right: -32px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 44px;
  transform: rotate(45deg);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

/* Badge at Top */
.card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.card-badge-purple { background: rgba(139, 92, 246, 0.12); color: #7c3aed; }
.card-badge-green  { background: rgba(16, 185, 129, 0.12); color: #059669; }

/* Card Top Section */
.card-top {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 28px;
}

/* Icon Circle */
.card-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 30px;
  color: white;
}
.icon-purple { background: linear-gradient(135deg, #8b5cf6, #a855f7); box-shadow: 0 8px 20px rgba(139,92,246,0.35); }
.icon-green  { background: linear-gradient(135deg, #10b981, #059669); box-shadow: 0 8px 20px rgba(16,185,129,0.35); }

.card-top h3 {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 6px;
}
.card-subtitle {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 20px;
}

/* Price */
.card-price-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.card-original-price {
  font-size: 16px;
  color: #94a3b8;
  text-decoration: line-through;
  font-weight: 500;
}
.card-current-price {
  font-size: 38px;
  font-weight: 900;
  color: #1a1a2e;
  line-height: 1;
}
.card-price-tag {
  background: linear-gradient(135deg, #fde047, #f97316);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  align-self: center;
}
.card-duration {
  font-size: 13px;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
}
.card-duration i { color: #0891b2; }

/* Feature List */
.card-features-list {
  list-style: none;
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
}
.card-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #334155;
  padding: 9px 0;
  border-bottom: 1px solid #f1f5f9;
  font-weight: 500;
}
.card-features-list li:last-child { border-bottom: none; }

.feat-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
  color: white;
}
.feat-purple { background: linear-gradient(135deg, #8b5cf6, #a855f7); }
.feat-green  { background: linear-gradient(135deg, #10b981, #059669); }

/* CTA Buttons */
.card-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 24px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  z-index: 1;
}
.btn-purple-cta {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: white;
  box-shadow: 0 6px 20px rgba(139,92,246,0.4);
}
.btn-purple-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(139,92,246,0.5);
  color: white;
}
.btn-green-cta {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  box-shadow: 0 6px 20px rgba(16,185,129,0.4);
}
.btn-green-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(16,185,129,0.5);
  color: white;
}


/* ================================================
   NEW TOKEN CARD — Full Width, 3-Column Layout
   ================================================ */
.token-card-new {
  position: relative;
  background: linear-gradient(135deg, #1e1b4b 0%, #1e3a5f 50%, #0e4f5c 100%);
  border-radius: 28px;
  padding: 44px 48px;
  max-width: 1200px;
  margin: 0 auto 64px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.9fr;
  gap: 40px;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
}

@media (max-width: 1024px) {
  .token-card-new {
    grid-template-columns: 1fr 1fr;
    padding: 36px 32px;
    gap: 28px;
  }
  .token-right { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .token-card-new {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }
  .token-right { grid-column: auto; }
}

/* Animated gradient glow orb behind card */
.token-card-glow {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251,191,36,0.18) 0%, transparent 70%);
  pointer-events: none;
  animation: rotate 10s linear infinite;
}

/* Left Section */
.token-left {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.token-bolt-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(251,191,36,0.45);
}
.token-left-text h3 {
  font-size: 24px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
  line-height: 1.2;
}
.token-left-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Live badge */
.token-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239,68,68,0.18);
  border: 1px solid rgba(239,68,68,0.3);
  color: #fca5a5;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.token-pulse-dot {
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

/* Perks Row */
.token-perks-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.token-perk {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.08);
  padding: 6px 12px;
  border-radius: 50px;
  font-weight: 600;
}
.token-perk i { color: #fbbf24; font-size: 13px; }

/* Center Section */
.token-center {
  position: relative;
  z-index: 1;
}
.token-amount-box {
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(251,191,36,0.35);
  border-radius: 20px;
  padding: 22px 24px;
  text-align: center;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}
.token-amount-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fbbf24;
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}
.token-amount-value {
  font-size: 52px;
  font-weight: 900;
  color: #fbbf24;
  line-height: 1;
  text-shadow: 0 4px 20px rgba(251,191,36,0.4);
}
.token-amount-note {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-top: 6px;
}
.token-benefits-list {
  list-style: none;
}
.token-benefits-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-weight: 500;
}
.token-benefits-list li:last-child { border-bottom: none; }
.token-benefits-list li i { color: #10b981; font-size: 15px; }

/* Right Section */
.token-right {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.token-seats-count {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 20px 28px;
  text-align: center;
  width: 100%;
  backdrop-filter: blur(8px);
}
.seats-number {
  font-size: 56px;
  font-weight: 900;
  color: #ef4444;
  line-height: 1;
  text-shadow: 0 4px 20px rgba(239,68,68,0.5);
}
.seats-label {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  margin-top: 4px;
}
.seats-bar {
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  height: 8px;
  margin: 10px 0 6px;
  overflow: hidden;
}
.seats-bar-fill {
  height: 100%;
  width: 83%;
  background: linear-gradient(90deg, #ef4444, #f97316);
  border-radius: 10px;
  animation: growBar 1.5s ease-out;
}
@keyframes growBar {
  from { width: 0; }
  to   { width: 83%; }
}
.seats-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
}

.token-pay-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b, #f97316);
  color: #1a1a2e;
  font-size: 15px;
  font-weight: 800;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(251,191,36,0.45);
  text-align: center;
}
.token-pay-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(251,191,36,0.55);
  color: #1a1a2e;
}
.token-secure-note {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}
.token-secure-note i { color: #10b981; }

