/* ══════════════════════════════════════════════════════════════
   EDUCATION & E-LEARNING - INDUSTRY PAGE STYLES
   ══════════════════════════════════════════════════════════════ */

/* ── Floating Education Icons ────────────────────────────────── */
.floating-education-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.float-edu-icon {
  position: absolute;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 92, 246, 0.1);
  border: 2px solid rgba(139, 92, 246, 0.3);
  border-radius: 16px;
  font-size: 32px;
  color: #8B5CF6;
  animation: eduFloat 8s ease-in-out infinite;
  backdrop-filter: blur(10px);
}

.book-icon {
  top: 10%;
  left: 8%;
  animation-delay: 0s;
}

.cap-icon {
  top: 50%;
  left: 5%;
  animation-delay: 1.5s;
}

.laptop-icon {
  top: 20%;
  right: 12%;
  animation-delay: 3s;
}

.trophy-icon {
  bottom: 25%;
  right: 8%;
  animation-delay: 4.5s;
}

.chart-icon {
  top: 65%;
  right: 18%;
  animation-delay: 6s;
}

.pencil-icon {
  bottom: 15%;
  left: 15%;
  animation-delay: 2s;
}

@keyframes eduFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-25px) rotate(8deg) scale(1.05);
  }
  50% {
    transform: translateY(-15px) rotate(-8deg) scale(0.95);
  }
  75% {
    transform: translateY(-35px) rotate(5deg) scale(1.02);
  }
}

/* ── Animated Badge ──────────────────────────────────────────── */
.animated-badge {
  animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(139, 92, 246, 0);
  }
}

/* ── Hero Section ─────────────────────────────────────────────── */
.education-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #0F172A 0%, #1E1B4B 50%, #0F172A 100%);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 25% 35%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 75% 65%, rgba(99, 102, 241, 0.12) 0%, transparent 50%);
  opacity: 0.7;
}

.hero-bg-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 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='%238B5CF6' fill-opacity='0.06'%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");
}

.hero-inner {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.industry-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.4);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #A78BFA;
  width: fit-content;
  letter-spacing: 0.5px;
}

.industry-badge i {
  font-size: 18px;
}

.hero-content h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin: 0;
}

.hero-content h1 .accent {
  background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: eduGradientShift 4s ease infinite;
}

@keyframes eduGradientShift {
  0%, 100% {
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
    -webkit-background-clip: text;
    background-clip: text;
  }
  50% {
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    -webkit-background-clip: text;
    background-clip: text;
  }
}

.hero-desc {
  font-size: 18px;
  line-height: 1.7;
  color: #CBD5E1;
  max-width: 540px;
}

.hero-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin: 8px 0;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(139, 92, 246, 0.3);
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(139, 92, 246, 0.2);
  transform: translateY(-2px);
}

.stat-item i {
  font-size: 20px;
  color: #A78BFA;
}

.stat-item span {
  font-size: 14px;
  color: #CBD5E1;
}

.stat-item strong {
  color: #fff;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.6);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ── LMS Mockup Visual ───────────────────────────────────────── */
.hero-visual-edu {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lms-mockup-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.lms-desktop {
  position: absolute;
  top: 0;
  left: 0;
  width: 550px;
  background: #1E293B;
  border-radius: 16px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  animation: floatLMS 7s ease-in-out infinite;
}

@keyframes floatLMS {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(-1deg);
  }
}

.lms-header {
  background: #0F172A;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lms-header .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #64748b;
}

.lms-header .dot:nth-child(1) { background: #f87171; }
.lms-header .dot:nth-child(2) { background: #fbbf24; }
.lms-header .dot:nth-child(3) { background: #4ade80; }

.lms-title {
  margin-left: auto;
  font-size: 13px;
  color: #94a3b8;
  font-weight: 600;
}

.lms-sidebar {
  position: absolute;
  left: 0;
  top: 45px;
  width: 70px;
  height: calc(100% - 45px);
  background: #0F172A;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-item {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #64748b;
  font-size: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.sidebar-item.active {
  background: #8B5CF6;
  color: #fff;
}

.sidebar-item:not(.active):hover {
  background: rgba(139, 92, 246, 0.1);
  color: #A78BFA;
}

.lms-content {
  margin-left: 70px;
  margin-top: 45px;
  padding: 24px;
  background: #fff;
  height: 350px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.course-card-mini {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px;
  transition: all 0.3s ease;
}

.course-card-mini:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.15);
}

.course-thumb {
  width: 100%;
  height: 80px;
  background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 50%, #A78BFA 100%);
  background-size: 200% 200%;
  border-radius: 8px;
  margin-bottom: 12px;
  animation: courseGradient 5s ease infinite;
}

@keyframes courseGradient {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.course-progress-bar {
  width: 100%;
  height: 6px;
  background: #e2e8f0;
  border-radius: 3px;
  overflow: hidden;
}

.progress {
  height: 100%;
  background: linear-gradient(90deg, #8B5CF6 0%, #6366F1 100%);
  border-radius: 3px;
  animation: progressFill 2s ease-in-out;
}

@keyframes progressFill {
  from {
    width: 0;
  }
}

.mobile-learn-mockup {
  position: absolute;
  bottom: 50px;
  right: 30px;
  width: 220px;
  height: 450px;
  background: #1E293B;
  border-radius: 32px;
  padding: 14px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
  animation: floatMobile 7s ease-in-out infinite 1.5s;
  z-index: 3;
}

@keyframes floatMobile {
  0%, 100% {
    transform: translateY(0) rotate(3deg);
  }
  50% {
    transform: translateY(-25px) rotate(-3deg);
  }
}

.mobile-screen-edu {
  width: 100%;
  height: calc(100% - 28px);
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  padding: 16px;
}

.mobile-course-header {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.course-icon {
  width: 40px;
  height: 40px;
  background: #8B5CF6;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}

.course-title-mini {
  flex: 1;
}

.line {
  height: 8px;
  background: #e2e8f0;
  border-radius: 4px;
  margin-bottom: 6px;
}

.line.short {
  width: 60%;
}

.video-player {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #1E293B 0%, #334155 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.video-player i {
  font-size: 48px;
  color: #8B5CF6;
  animation: playPulse 2s ease-in-out infinite;
}

@keyframes playPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

.mobile-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.tab {
  width: 40px;
  height: 4px;
  background: #e2e8f0;
  border-radius: 2px;
}

.tab.active {
  background: #8B5CF6;
  width: 60px;
}

/* ── Learning Journey Section ────────────────────────────────── */
.learning-journey {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8f9fb 0%, #fff 100%);
}

.journey-timeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
  position: relative;
}

.journey-step {
  flex: 1;
  text-align: center;
  padding: 20px;
  position: relative;
  z-index: 2;
}

.step-number {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: #8B5CF6;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.step-icon {
  width: 100px;
  height: 100px;
  margin: 20px auto 24px;
  background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #fff;
  transition: all 0.4s ease;
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
}

.journey-step:hover .step-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 36px rgba(139, 92, 246, 0.5);
}

.journey-step h3 {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #0D1B2A;
  margin: 0 0 12px;
}

.journey-step p {
  font-size: 15px;
  line-height: 1.6;
  color: #6B7280;
  margin: 0;
}

.journey-connector {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #8B5CF6 0%, #6366F1 100%);
  position: relative;
  z-index: 1;
  opacity: 0.3;
}

/* ── Platform Features Section ───────────────────────────────── */
.platform-features {
  padding: 100px 0;
  background: #fff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.feature-box {
  background: #fff;
  padding: 40px 32px;
  border-radius: 20px;
  border: 2px solid #e5e7eb;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(139, 92, 246, 0.05), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
}

.feature-box:hover::before {
  transform: rotate(45deg) translate(50%, 50%);
}

.feature-box:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.15);
  border-color: #8B5CF6;
}

.highlighted-feature {
  border: 2px solid #8B5CF6;
  background: linear-gradient(135deg, #fff 0%, #f5f3ff 100%);
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.feature-box-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
  border-radius: 16px;
  font-size: 36px;
  color: #fff;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.feature-box:hover .feature-box-icon {
  transform: scale(1.1) rotate(-5deg);
}

.feature-box h3 {
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #0D1B2A;
  margin: 0 0 12px;
}

.feature-box p {
  font-size: 16px;
  line-height: 1.6;
  color: #6B7280;
  margin: 0 0 20px;
}

.feature-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #8B5CF6;
}

/* ── Interactive Demo Section ────────────────────────────────── */
.interactive-demo {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8f9fb 0%, #fff 100%);
}

.demo-container {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.demo-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.demo-card.reverse {
  direction: rtl;
}

.demo-card.reverse > * {
  direction: ltr;
}

.demo-content {
  padding: 20px;
}

.demo-icon {
  font-size: 48px;
  color: #8B5CF6;
  margin-bottom: 20px;
  display: block;
}

.demo-content h3 {
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #0D1B2A;
  margin: 0 0 16px;
}

.demo-content p {
  font-size: 17px;
  line-height: 1.7;
  color: #6B7280;
  margin: 0 0 24px;
}

.demo-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.demo-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #374151;
  font-weight: 500;
}

.demo-points i {
  color: #8B5CF6;
  font-size: 18px;
}

.demo-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Progress Dashboard Demo */
.progress-dashboard {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  padding: 32px;
  width: 100%;
  max-width: 400px;
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
}

.progress-dashboard:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2);
}

.dashboard-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: #0D1B2A;
  margin-bottom: 24px;
}

.dashboard-header i {
  color: #8B5CF6;
}

.circular-progress {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 24px;
}

.circular-progress svg {
  transform: scale(1);
  animation: rotateSVG 2s ease-in-out;
}

@keyframes rotateSVG {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.progress-circle {
  animation: drawCircle 2s ease-in-out forwards;
}

@keyframes drawCircle {
  from {
    stroke-dashoffset: 283;
  }
}

.progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 42px;
  font-weight: 800;
  color: #8B5CF6;
  font-family: 'Sora', sans-serif;
}

.stats-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-mini {
  background: #f8f9fb;
  padding: 16px;
  border-radius: 12px;
  text-align: center;
}

.stat-value {
  font-size: 28px;
  font-weight: 700;
  color: #0D1B2A;
  margin-bottom: 4px;
  font-family: 'Sora', sans-serif;
}

.stat-label {
  font-size: 13px;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Quiz Mockup Demo */
.quiz-mockup {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  padding: 28px;
  width: 100%;
  max-width: 400px;
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
}

.quiz-mockup:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2);
}

.quiz-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: #0D1B2A;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid #e5e7eb;
}

.quiz-header i {
  color: #8B5CF6;
}

.quiz-question {
  margin-bottom: 20px;
}

.question-text {
  font-size: 14px;
  color: #6B7280;
  margin-bottom: 12px;
  font-weight: 600;
}

.question-content {
  height: 60px;
  background: #f8f9fb;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.option {
  height: 44px;
  background: #f8f9fb;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.option:hover {
  border-color: #A78BFA;
  background: #f5f3ff;
}

.option.selected {
  background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
  border-color: #8B5CF6;
  animation: selectOption 0.4s ease;
}

@keyframes selectOption {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

.quiz-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: #f8f9fb;
  border-radius: 10px;
  font-weight: 700;
  color: #8B5CF6;
}

.quiz-timer i {
  font-size: 18px;
}

/* ── Section Styles ──────────────────────────────────────────── */
.section {
  padding: 100px 0;
  position: relative;
}

.section.light {
  background: #f8f9fb;
}

.section.dark {
  background: linear-gradient(135deg, #0F172A 0%, #1E1B4B 100%);
  color: #fff;
}

.page {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 6%;
}

.head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.kicker {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8B5CF6;
  margin-bottom: 16px;
}

.head h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 20px;
}

.section.light .head h2 {
  color: #0D1B2A;
}

.section.dark .head h2 {
  color: #fff;
}

.head p {
  font-size: 18px;
  line-height: 1.7;
  color: #6B7280;
  margin: 0;
}

.section.dark .head p {
  color: #CBD5E1;
}

/* ── Solutions Grid ──────────────────────────────────────────── */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

.solution-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px 32px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.solution-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: #8B5CF6;
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.3);
}

.solution-card-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.solution-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
  border-radius: 12px;
  font-size: 26px;
  color: #fff;
  flex-shrink: 0;
}

.solution-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 4px 0 0;
}

.solution-card > p {
  font-size: 16px;
  line-height: 1.7;
  color: #CBD5E1;
  margin: 0 0 24px;
}

.solution-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.solution-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #CBD5E1;
}

.solution-features li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(139, 92, 246, 0.3);
  color: #A78BFA;
  border-radius: 50%;
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}

/* ── Technology Categories ───────────────────────────────────── */
.tech-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.tech-category {
  background: #fff;
  padding: 36px 32px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.tech-category:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-color: #8B5CF6;
}

.tech-category h3 {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0D1B2A;
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tech-category h3 i {
  color: #8B5CF6;
  font-size: 22px;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-tag {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(99, 102, 241, 0.08) 100%);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #8B5CF6;
  transition: all 0.2s ease;
}

.tech-tag:hover {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(99, 102, 241, 0.15) 100%);
  transform: translateY(-2px);
}

/* ── CTA Section ─────────────────────────────────────────────── */
.cta-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #0F172A 0%, #1E1B4B 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
  opacity: 0.6;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 20px;
}

.cta-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #CBD5E1;
  margin: 0 0 40px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Reveal Animations ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transition: all 0.8s ease;
}

.reveal.in {
  opacity: 1;
}

.reveal.up {
  opacity: 0;
  transform: translateY(40px);
}

.reveal.up.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal.left {
  opacity: 0;
  transform: translateX(-40px);
}

.reveal.left.in {
  opacity: 1;
  transform: translateX(0);
}

.reveal.right {
  opacity: 0;
  transform: translateX(40px);
}

.reveal.right.in {
  opacity: 1;
  transform: translateX(0);
}

.reveal.fade {
  opacity: 0;
}

.reveal.fade.in {
  opacity: 1;
}

.reveal-group > * {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.reveal-group.in > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-group.in > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-group.in > *:nth-child(2) { transition-delay: 0.2s; }
.reveal-group.in > *:nth-child(3) { transition-delay: 0.3s; }
.reveal-group.in > *:nth-child(4) { transition-delay: 0.4s; }
.reveal-group.in > *:nth-child(5) { transition-delay: 0.5s; }
.reveal-group.in > *:nth-child(6) { transition-delay: 0.6s; }

/* ── Responsive Design ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-visual-edu {
    height: 500px;
  }

  .lms-desktop {
    width: 450px;
  }

  .demo-card,
  .demo-card.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
    direction: ltr;
  }

  .journey-timeline {
    flex-direction: column;
    gap: 40px;
  }

  .journey-connector {
    width: 4px;
    height: 60px;
    transform: rotate(90deg);
  }
}

@media (max-width: 768px) {
  .education-hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .floating-education-icons {
    display: none;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-desc {
    font-size: 16px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 12px;
  }

  .stat-item {
    width: 100%;
  }

  .hero-visual-edu {
    height: 400px;
  }

  .lms-desktop {
    width: 350px;
  }

  .mobile-learn-mockup {
    width: 180px;
    height: 370px;
    bottom: 30px;
    right: 20px;
  }

  .section {
    padding: 60px 0;
  }

  .features-grid,
  .solutions-grid,
  .tech-categories {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-section {
    padding: 80px 0;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .page {
    padding: 0 4%;
  }

  .hero-visual-edu {
    height: 300px;
  }

  .lms-desktop {
    width: 280px;
  }

  .mobile-learn-mockup {
    display: none;
  }

  .journey-step {
    padding: 15px;
  }

  .step-icon {
    width: 80px;
    height: 80px;
    font-size: 32px;
  }

  .feature-box,
  .solution-card,
  .tech-category {
    padding: 30px 24px;
  }

  .progress-dashboard,
  .quiz-mockup {
    max-width: 100%;
  }
}
