/* ============================================
   RAJ ACADEMY HUB — Clean Professional Theme
   ============================================ */

/* === Google Fonts === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* === CSS Custom Properties === */
:root {
  /* Colors — Clean & Professional */
  --primary: #1a3a5c;
  --primary-light: #2c5a8c;
  --primary-dark: #0f2440;
  --accent: #c8963e;
  --accent-light: #d4a855;
  --accent-hover: #b8862e;
  --dark: #1a2332;
  --dark-surface: #f8f9fb;
  --dark-card: #ffffff;
  --dark-border: #e2e8f0;
  --light: #f0f2f8;
  --light-surface: #ffffff;
  --text-white: #1a2332;
  --text-light: #475569;
  --text-muted: #64748b;
  --text-dark: #0f172a;
  --success: #16a34a;
  --whatsapp: #25d366;
  --error: #ef4444;

  /* Professional Gradients */
  --gradient-hero: linear-gradient(135deg, #1a3a5c 0%, #2c5a8c 50%, #1a3a5c 100%);
  --gradient-accent: linear-gradient(135deg, #c8963e, #d4a855);
  --gradient-card: linear-gradient(145deg, #f8f9fb, #ffffff);
  --gradient-glow: none;
  --gradient-dark-section: linear-gradient(180deg, #f8f9fb, #f1f5f9);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 90px 0;
  --container-width: 1200px;
  --container-padding: 0 24px;

  /* Borders & Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 50px;

  /* Shadows — Subtle & Professional */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 4px 14px rgba(200, 150, 62, 0.2);
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 8px 30px rgba(0, 0, 0, 0.12);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-spring: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: #ffffff;
  color: var(--text-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--transition-base);
}

input, select, textarea {
  font-family: var(--font-body);
  border: none;
  outline: none;
}

/* === Container === */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* === Section Base === */
.section {
  padding: var(--section-padding);
  position: relative;
}

.section-dark {
  background: #f8f9fb;
}

.section-light {
  background: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(26, 58, 92, 0.06);
  border: 1px solid rgba(26, 58, 92, 0.12);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text-dark);
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition-base);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--dark-border);
  padding: 10px 0;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.06);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo — LEFT */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.navbar-logo .logo-image {
  height: 50px;
  max-height: 50px;
  width: auto;
  max-width: 100%;
  display: block;
  transition: var(--transition-base);
}

.navbar-logo:hover .logo-image {
  transform: scale(1.05);
}

.navbar.scrolled .navbar-logo .logo-image {
  height: 40px;
  max-height: 40px;
}

/* Nav Menu — CENTER */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu a {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  position: relative;
  transition: var(--transition-base);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary);
  background: rgba(26, 58, 92, 0.05);
}

.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

/* CTA Button — RIGHT */
.nav-cta {
  flex-shrink: 0;
}

.btn-get-consultant {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--primary);
  color: white;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn-get-consultant::before {
  display: none;
}

.btn-get-consultant:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(26, 58, 92, 0.3);
  background: var(--primary-dark);
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition-base);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--gradient-hero);
  overflow: hidden;
  padding-top: 80px;
}

/* Animated Background Elements — simplified */
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
  animation: float 25s infinite ease-in-out;
}

.hero-bg-shapes .shape-1 {
  width: 600px;
  height: 600px;
  background: #ffffff;
  top: -200px;
  right: -150px;
}

.hero-bg-shapes .shape-2 {
  width: 400px;
  height: 400px;
  background: #ffffff;
  bottom: -100px;
  left: -100px;
  animation-delay: -5s;
}

.hero-bg-shapes .shape-3 {
  width: 300px;
  height: 300px;
  background: #ffffff;
  top: 50%;
  left: 60%;
  animation-delay: -10s;
}

.hero-bg-shapes .shape-4 {
  width: 200px;
  height: 200px;
  background: #ffffff;
  bottom: 20%;
  right: 20%;
  animation-delay: -15s;
  border-radius: 30%;
  animation-name: floatRotate;
}

/* Grid overlay */
.hero-grid-overlay {
  display: none;
}

/* Glow effect */
.hero-glow {
  display: none;
}

/* Canvas for particles */
#hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.1s forwards;
  opacity: 0;
  color: #ffffff;
}

.hero-title .highlight {
  color: var(--accent-light);
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  position: relative;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-light);
  border-radius: 2px;
  opacity: 0.4;
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 36px;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
  animation: fadeInUp 0.8s ease 0.3s forwards;
  opacity: 0;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--accent);
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 150, 62, 0.35);
  background: var(--accent-hover);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  backdrop-filter: blur(10px);
  transition: var(--transition-base);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

/* Hero Stats Row */
.hero-stats {
  display: flex;
  gap: 40px;
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

.hero-stat {
  text-align: left;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

/* Hero Visual / Illustration Side */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 1s ease 0.3s forwards;
  opacity: 0;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.hero-image-wrapper img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Floating badges around hero image */
.hero-floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  animation: floatSmall 4s ease-in-out infinite;
}

.hero-floating-badge.badge-1 {
  top: 10%;
  right: -30px;
}

.hero-floating-badge.badge-2 {
  bottom: 15%;
  left: -40px;
  animation-delay: -2s;
}

.hero-floating-badge .badge-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.hero-floating-badge .badge-icon.orange {
  background: rgba(200, 150, 62, 0.12);
  color: var(--accent);
}

.hero-floating-badge .badge-icon.blue {
  background: rgba(26, 58, 92, 0.1);
  color: var(--primary);
}

.hero-floating-badge .badge-info strong {
  font-size: 0.85rem;
  display: block;
  color: var(--text-dark);
}

.hero-floating-badge .badge-info span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  padding: 36px 0;
  background: #ffffff;
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
  overflow: hidden;
}

.trust-bar-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.trust-bar-scroll {
  display: flex;
  gap: 60px;
  animation: scrollLeft 30s linear infinite;
  width: max-content;
}

.trust-bar-scroll .trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  opacity: 0.7;
  transition: var(--transition-base);
}

.trust-bar-scroll .trust-item:hover {
  opacity: 1;
  color: var(--primary);
}

.trust-bar-scroll .trust-item .trust-icon {
  width: 34px;
  height: 34px;
  background: rgba(26, 58, 92, 0.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

/* ============================================
   STATS COUNTER SECTION
   ============================================ */
.stats-section {
  padding: 70px 0;
  background: #ffffff;
  position: relative;
}

.stats-section::before {
  display: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.stat-card {
  text-align: center;
  padding: 36px 20px;
  background: #f8f9fb;
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
}

.stat-card:hover {
  background: #ffffff;
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.stat-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  background: rgba(26, 58, 92, 0.07);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number .suffix {
  color: var(--accent);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================
   SERVICES / BENTO GRID
   ============================================ */
.services-section {
  padding: var(--section-padding);
  background: #ffffff;
}

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

.service-card {
  position: relative;
  padding: 32px 24px;
  background: #f8f9fb;
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-base);
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-base);
}

.service-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  background: #ffffff;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(26, 58, 92, 0.07);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  transition: var(--transition-base);
}

.service-card:hover .service-icon {
  background: var(--primary);
  box-shadow: 0 4px 12px rgba(26, 58, 92, 0.25);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.service-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   POPULAR COURSES
   ============================================ */
.courses-section {
  padding: var(--section-padding);
  background: #f8f9fb;
}

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

.course-card {
  background: #ffffff;
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-base);
}

.course-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--primary);
}

.course-card-image {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.course-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 14px;
  background: var(--primary);
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.course-card-body {
  padding: 22px;
}

.course-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.course-card-meta {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.course-card-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.course-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--dark-border);
}

.course-fee {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
}

.course-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition-base);
}

.course-link:hover {
  color: var(--accent-hover);
  gap: 8px;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-section {
  padding: var(--section-padding);
  background: #ffffff;
}

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

.why-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.why-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-feature {
  display: flex;
  gap: 16px;
  padding: 18px;
  background: #f8f9fb;
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}

.why-feature:hover {
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.why-feature-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background: rgba(26, 58, 92, 0.07);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
}

.why-feature-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.why-feature-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  padding: var(--section-padding);
  background: #f8f9fb;
}

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

.testimonial-card {
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
  position: relative;
}

.testimonial-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.testimonial-card .quote-icon {
  font-size: 1.8rem;
  color: var(--primary);
  opacity: 0.2;
  margin-bottom: 12px;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.85rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: white;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-dark);
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  padding: var(--section-padding);
  background: #ffffff;
}

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

.faq-item {
  background: #f8f9fb;
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: var(--transition-base);
}

.faq-item.active {
  border-color: var(--primary);
  background: #ffffff;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition-base);
  gap: 16px;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 58, 92, 0.06);
  border-radius: 50%;
  font-size: 0.9rem;
  color: var(--primary);
  transition: var(--transition-base);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--primary);
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer-inner {
  padding: 0 22px 18px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-section {
  padding: 70px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.cta-card {
  background: var(--gradient-hero);
  border-radius: var(--radius-xl);
  padding: 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.cta-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--primary-dark);
  border-top: none;
  padding: 56px 0 0;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-brand .footer-logo .logo-icon {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.1rem;
  color: white;
}

.footer-brand .footer-logo .logo-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
}

.footer-brand .footer-logo .logo-text span {
  color: var(--accent-light);
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 18px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition-base);
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
  transform: translateY(-2px);
}

.footer-column h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition-base);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-column ul li a:hover {
  color: var(--accent-light);
  padding-left: 4px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  margin-top: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ============================================
   LEAD POPUP
   ============================================ */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-card {
  width: 100%;
  max-width: 440px;
  background: #ffffff;
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
  transform: translateY(30px) scale(0.95);
  transition: var(--transition-spring);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.popup-overlay.active .popup-card {
  transform: translateY(0) scale(1);
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  background: #f1f5f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-base);
}

.popup-close:hover {
  background: #fee2e2;
  color: var(--error);
}

.popup-header {
  text-align: center;
  margin-bottom: 24px;
}

.popup-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 14px;
  background: rgba(26, 58, 92, 0.06);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.popup-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.popup-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.popup-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.popup-field {
  position: relative;
}

.popup-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.popup-field input,
.popup-field select {
  width: 100%;
  padding: 12px 14px;
  background: #f8f9fb;
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  font-size: 0.92rem;
  transition: var(--transition-base);
}

.popup-field input::placeholder {
  color: var(--text-muted);
}

.popup-field input:focus,
.popup-field select:focus {
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(26, 58, 92, 0.08);
}

.popup-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.popup-field select option {
  background: #ffffff;
  color: var(--text-dark);
}

.popup-submit {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-base);
  margin-top: 4px;
}

.popup-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(26, 58, 92, 0.3);
  background: var(--primary-dark);
}

.popup-success {
  display: none;
  text-align: center;
  padding: 20px 0;
}

.popup-success.show {
  display: block;
}

.popup-success .success-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.popup-success h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.popup-success p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
}

.whatsapp-btn {
  width: 56px;
  height: 56px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: var(--transition-base);
  position: relative;
}

.whatsapp-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.whatsapp-btn::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid var(--whatsapp);
  opacity: 0;
  animation: whatsappPulse 2s infinite;
}

.whatsapp-tooltip {
  position: absolute;
  bottom: 66px;
  right: 0;
  background: #ffffff;
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  white-space: nowrap;
  font-size: 0.82rem;
  color: var(--text-dark);
  font-weight: 500;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-base);
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateY(0);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 20px;
  width: 12px;
  height: 12px;
  background: #ffffff;
  border-right: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
  transform: rotate(45deg);
}

/* ============================================
   ACADEMY PAGE STYLES
   ============================================ */
.page-hero {
  padding: 130px 0 70px;
  background: var(--gradient-hero);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  display: none;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  color: #ffffff;
}

.page-hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 1;
}

/* University Cards */
.university-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.university-card {
  background: #ffffff;
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-base);
  cursor: pointer;
}

.university-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--primary);
}

.university-card-header {
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--dark-border);
}

.university-logo {
  width: 50px;
  height: 50px;
  background: rgba(26, 58, 92, 0.07);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.university-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.university-location {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}

.university-card-body {
  padding: 22px;
}

.university-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.university-tag {
  padding: 3px 10px;
  background: #f1f5f9;
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  color: var(--text-muted);
}

.university-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--dark-border);
}

.university-courses-count {
  font-size: 0.82rem;
  color: var(--text-light);
}

.university-courses-count strong {
  color: var(--primary);
}

.view-fees-btn {
  padding: 7px 18px;
  background: var(--primary);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-base);
}

.view-fees-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26, 58, 92, 0.25);
}

/* University Detail / Fee Table */
.university-detail {
  display: none;
  background: #ffffff;
  border: 1px solid var(--primary);
  border-radius: var(--radius-lg);
  margin-top: 24px;
  overflow: hidden;
  animation: fadeInUp 0.5s ease;
}

.university-detail.active {
  display: block;
}

.university-detail-header {
  padding: 28px;
  background: #f8f9fb;
  border-bottom: 1px solid var(--dark-border);
}

.university-detail-header h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.university-detail-header p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.fee-table-wrapper {
  padding: 20px 28px 28px;
  overflow-x: auto;
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
}

.fee-table thead th {
  padding: 12px 14px;
  background: #f8f9fb;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-light);
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--dark-border);
}

.fee-table tbody tr {
  transition: var(--transition-base);
}

.fee-table tbody tr:hover {
  background: #f8f9fb;
}

.fee-table tbody td {
  padding: 12px 14px;
  font-size: 0.88rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--dark-border);
}

.fee-table .fee-amount {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary);
}

.fee-table .apply-btn {
  padding: 6px 14px;
  background: rgba(26, 58, 92, 0.06);
  border: 1px solid rgba(26, 58, 92, 0.15);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  transition: var(--transition-base);
}

.fee-table .apply-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* Course Filter Tabs */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}

.filter-tab {
  padding: 9px 22px;
  background: #f8f9fb;
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-base);
}

.filter-tab:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.filter-tab.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card {
  background: #ffffff;
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  padding: 28px;
  transition: var(--transition-base);
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.8rem;
  color: white;
}

.team-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.82rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 12px;
}

.team-bio {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--dark-border);
}

.timeline-item {
  display: flex;
  gap: 22px;
  padding-bottom: 36px;
  position: relative;
}

.timeline-dot {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: #f8f9fb;
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--primary);
  z-index: 1;
}

.timeline-content h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.timeline-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.contact-form-wrapper {
  background: #ffffff;
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  background: #f8f9fb;
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  font-size: 0.92rem;
  transition: var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(26, 58, 92, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.form-group select option {
  background: #ffffff;
}

.form-submit {
  padding: 14px 32px;
  background: var(--primary);
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-base);
  align-self: flex-start;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(26, 58, 92, 0.3);
  background: var(--primary-dark);
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-info-card {
  display: flex;
  gap: 14px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}

.contact-info-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.info-card-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(26, 58, 92, 0.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
}

.info-card-title {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.92rem;
  margin-bottom: 3px;
}

.info-card-value {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--dark-border);
  margin-top: 14px;
}

.map-container iframe {
  width: 100%;
  height: 260px;
  border: 0;
}

/* ============================================
   SKILL INDIA PAGE
   ============================================ */
.skill-india-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
}

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

.benefit-card {
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition-base);
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
  background: rgba(26, 58, 92, 0.06);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.benefit-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.benefit-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   APPROVALS & SCHOLARSHIP BANNER
   ============================================ */
.approvals-section {
  padding: 60px 0;
  background: #f8f9fb;
}

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

.approval-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #ffffff;
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition-base);
}

.approval-badge:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.scholarship-banner {
  margin-top: 40px;
  padding: 32px;
  background: linear-gradient(135deg, #1a3a5c, #2c5a8c);
  border-radius: var(--radius-lg);
  text-align: center;
  color: white;
}

.scholarship-banner h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.scholarship-banner p {
  font-size: 1rem;
  opacity: 0.85;
}

/* Fee Highlight Cards */
.fee-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.fee-highlight-card {
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition-base);
}

.fee-highlight-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.fee-highlight-card .fee-course {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.fee-highlight-card .fee-amount-big {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.fee-highlight-card .fee-label {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Universities Grid */
.universities-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.uni-card {
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition-base);
}

.uni-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.uni-card .uni-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.uni-card .uni-name {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* Skill India Highlight */
.skill-india-highlight {
  padding: 50px 0;
  background: linear-gradient(135deg, #1a3a5c, #2c5a8c);
  color: white;
  text-align: center;
}

.skill-india-highlight .section-badge {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.skill-india-highlight .section-title {
  color: #ffffff;
}

.skill-india-highlight .section-subtitle {
  color: rgba(255, 255, 255, 0.75);
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal-stagger > * {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-stagger.revealed > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.revealed > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.revealed > *:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger.revealed > *:nth-child(4) { transition-delay: 0.2s; }
.reveal-stagger.revealed > *:nth-child(5) { transition-delay: 0.25s; }
.reveal-stagger.revealed > *:nth-child(6) { transition-delay: 0.3s; }

.reveal-stagger.revealed > * {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   KEYFRAME ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(20px, -20px) scale(1.03); }
  50% { transform: translate(-15px, 15px) scale(0.97); }
  75% { transform: translate(15px, 8px) scale(1.01); }
}

@keyframes floatRotate {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(15px, -15px) rotate(90deg); }
  50% { transform: translate(-10px, 10px) rotate(180deg); }
  75% { transform: translate(10px, 8px) rotate(270deg); }
}

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

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

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

@keyframes whatsappPulse {
  0% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.3); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content { max-width: 100%; }
  .hero-title { font-size: 2.6rem; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }

  .services-grid,
  .courses-grid,
  .testimonials-grid,
  .university-grid,
  .team-grid,
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .section-title { font-size: 2rem; }
  .fee-highlights { grid-template-columns: repeat(2, 1fr); }
  .universities-showcase { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }

  /* Mobile Navbar */
  .nav-toggle { display: flex; }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 80px 28px 28px;
    gap: 4px;
    transition: var(--transition-base);
    border-left: 1px solid var(--dark-border);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.08);
  }

  .nav-menu.active { right: 0; }

  .nav-menu a {
    padding: 12px 14px;
    font-size: 0.95rem;
    width: 100%;
    border-radius: var(--radius-sm);
    color: var(--text-dark);
  }

  .nav-cta { display: none; }

  /* Hero */
  .hero {
    padding-top: 100px;
    min-height: auto;
    padding-bottom: 60px;
  }

  .hero-title { font-size: 2rem; }
  .hero-description { font-size: 0.95rem; }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .hero-floating-badge { display: none; }

  /* Grids */
  .services-grid,
  .courses-grid,
  .testimonials-grid,
  .university-grid,
  .team-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }

  /* Section */
  .section-title { font-size: 1.7rem; }
  .section-subtitle { font-size: 0.95rem; }

  /* Popup */
  .popup-card {
    margin: 16px;
    padding: 24px;
  }

  /* CTA */
  .cta-card { padding: 36px 20px; }
  .cta-title { font-size: 1.6rem; }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  /* Page Hero */
  .page-hero { padding: 110px 0 50px; }
  .page-hero-title { font-size: 1.8rem; }

  /* Fee Table */
  .fee-table-wrapper { padding: 14px; }

  .fee-table thead th,
  .fee-table tbody td {
    padding: 10px;
    font-size: 0.8rem;
  }

  /* Fee highlights */
  .fee-highlights { grid-template-columns: repeat(2, 1fr); }
  .universities-showcase { grid-template-columns: repeat(2, 1fr); }

  /* WhatsApp */
  .whatsapp-float { bottom: 18px; right: 18px; }
  .whatsapp-btn { width: 50px; height: 50px; }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE
   ============================================ */
@media (max-width: 480px) {
  .hero-title { font-size: 1.7rem; }
  .stat-number { font-size: 1.8rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .filter-tabs { gap: 6px; }
  .filter-tab { padding: 7px 14px; font-size: 0.78rem; }
  .fee-highlights { grid-template-columns: 1fr 1fr; }
  .courses-grid { grid-template-columns: 1fr; }
}
