/* ============================================
   SUPPORT FOR EXAMS - Main Stylesheet
   Light Professional Theme with Purple/Blue Gradients
   ============================================ */

/* ============================================
   CSS Variables / Design Tokens
   ============================================ */
:root {
  /* Primary Colors */
  --primary-color: #07CA8D;
  --primary-dark: #05a673;
  --primary-light: #3fdbb0;
  --primary-gradient: linear-gradient(135deg, #07CA8D 0%, #059e70 100%);

  /* Secondary Colors */
  --secondary-color: #ffffff;
  /* User requested font color white on header */

  /* Background Colors */
  --bg-white: #FFFFFF;
  --bg-smoke: #F5F5F5;
  --bg-light: #F0FDF4;
  /* Very light green tint for contrast sections */
  --bg-dark: #0F172A;

  /* Text Colors */
  --text-dark: #1E293B;
  --text-gray: #64748B;
  --text-light: #94A3B8;
  --text-white: #FFFFFF;
  --text-primary: #07CA8D;

  /* Accent Colors */
  --accent-success: #07CA8D;
  /* Matching primary */
  --accent-warning: #F59E0B;
  --accent-error: #EF4444;

  /* WhatsApp */
  --whatsapp-green: #25D366;
  --whatsapp-dark: #128C7E;

  /* Legacy / Mapped Colors */
  --primary-purple: #07CA8D;
  /* Mapping old purple usage to new green */
  --primary-cyan: #3fdbb0;
  /* Mapping old cyan to light green */

  /* Shadows - Soft & Modern */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 10px 15px -3px rgba(7, 202, 141, 0.1), 0 4px 6px -2px rgba(7, 202, 141, 0.05);
  /* Colored shadow */
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.08);

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Poppins', var(--font-primary);

  /* Spacing */
  --section-padding: 6rem;
  --container-max: 1280px;
}

/* ============================================
   Reset & Base Styles
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-smoke);
  /* Smoke White Background */
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ============================================
   Utility Classes
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Glassmorphism Utilities */
.glass-effect {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

/* Glassmorphism Utilities - Darker/Stronger for Cards */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Applying Glassmorphism to Header */
/* Applying Glassmorphism to Header - Scroll Effect */
.header {
  background: rgba(255, 255, 255, 0.5);
  /* Semi-transparent initially */
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition-normal);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  /* Stronger background on scroll */
  backdrop-filter: blur(12px);
  /* Stronger blur on scroll */
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-md);
}

/* Enhancing Cards with Glassmorphism */
/* Enhancing Cards with Glassmorphism */
.service-card,
.exam-card,
.faq-item,
.trust-badge,
.testimonial-card,
.contact-info-card,
.why-us-item {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.service-card:hover,
.exam-card:hover,
.trust-badge:hover,
.testimonial-card:hover,
.contact-info-card:hover,
.why-us-item:hover {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: var(--shadow-xl);
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.section {
  padding: var(--section-padding) 0;
}

.section-light {
  background-color: var(--bg-light);
}

.section-gray {
  background-color: var(--bg-gray);
}

.gradient-text {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-center {
  text-align: center;
}

/* ============================================
   Typography
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  color: var(--text-gray);
}

.section-subtitle {
  color: var(--primary-purple);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-description {
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
  text-decoration: none;
}

.btn-primary {
  background: var(--bg-white);
  color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  background: var(--bg-white);
  color: var(--primary-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--bg-white);
  border: 2px solid var(--bg-white);
}

.btn-secondary:hover {
  background: var(--bg-white);
  color: var(--primary-color);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--text-white);
}

.btn-whatsapp {
  background: var(--whatsapp-green);
  color: var(--text-white);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

/* ============================================
   Header & Navigation
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-white);
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: var(--container-max);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 70px;
  /* Increased from 45px as requested */
  width: auto;
  /* Removed filter: brightness(0) invert(1) so original logo colors show */
}

/* Logo Text removed in HTML as per request, but keeping style just in case of revert */
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  display: none;
  /* Force hide in CSS too just to be safe */
}

.logo-text span {
  color: var(--primary-color);
}

/* Main Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-menu {
  display: flex;
  gap: 0.5rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.75rem 1rem;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
  background: var(--bg-light);
}

.nav-link svg,
.nav-link i {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.nav-item:hover .nav-link svg,
.nav-item:hover .nav-link i {
  transform: rotate(180deg);
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  width: 800px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 100;
  color: var(--text-dark);
  margin-top: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  /* Added border for better definition on white */
}

.mega-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid var(--bg-white);
}

.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.mega-menu-category h4 {
  color: var(--primary-color);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--bg-smoke);
}

.mega-menu-category ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mega-menu-category a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  color: var(--text-gray);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.mega-menu-category a:hover {
  background: var(--bg-light);
  color: var(--primary-color);
  padding-left: 1rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* ============================================
   Hero Section with Slider
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  /* Account for fixed header */
  overflow: hidden;
  background: var(--primary-color);
  /* Fallback */
  background: linear-gradient(180deg, var(--primary-color) 0%, rgba(7, 202, 141, 0.8) 100%);
  color: var(--text-white);
  padding-bottom: 5rem;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero-content {
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-purple);
  box-shadow: var(--shadow-md);
  margin-bottom: 1.5rem;
}

.hero-badge::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--accent-success);
  color: white;
  border-radius: 50%;
  font-size: 0.75rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-white);
  /* background: var(--primary-gradient); Removed gradient text for visibility on green bg */
  /* background-clip: text; */
  /* -webkit-background-clip: text; */
  /* -webkit-text-fill-color: transparent; */
}

.hero-stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  /* Updated for better visibility on green bg */
}

/* Hero Image/Slider */
.hero-visual {
  position: relative;
}

.hero-slider {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  /* Glassmorphism border for slider */
  border: 4px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
}

.hero-slide {
  display: none;
  animation: fadeIn 0.5s ease;
}

.hero-slide.active {
  display: block;
}

.hero-slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(1.05);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.slider-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.slider-dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slider-dot.active {
  background: var(--bg-white);
  transform: scale(1.2);
}

.slider-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  pointer-events: none;
}

.slider-arrow {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.slider-arrow:hover {
  background: var(--bg-white);
  transform: scale(1.1);
}

/* Hero Decorations */
.hero-decoration {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  z-index: 0;
}

.hero-decoration-1 {
  width: 400px;
  height: 400px;
  background: var(--primary-purple);
  top: -100px;
  right: -100px;
}

.hero-decoration-2 {
  width: 300px;
  height: 300px;
  background: var(--primary-cyan);
  bottom: -50px;
  left: -50px;
}

/* ============================================
   Trust Badges Section
   ============================================ */
.trust-badges {
  padding: 3rem 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--bg-gray);
}

.trust-badges-container {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
}

.trust-badge:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.trust-badge-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-gradient);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-badge-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.trust-badge-text h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.trust-badge-text p {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* ============================================
   Services Section
   ============================================ */
.services {
  padding: var(--section-padding) 0;
  background: var(--bg-smoke);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.service-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--primary-color);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-card);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: transform var(--transition-normal);
  background: var(--bg-light);
  color: var(--primary-color);
  box-shadow: inset 0 0 20px rgba(7, 202, 141, 0.1);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--primary-color);
  color: var(--text-white);
  box-shadow: var(--shadow-md);
}

.service-icon.azure,
.service-icon.aws,
.service-icon.cisco,
.service-icon.comptia,
.service-icon.google,
.service-icon.vmware {
  background: var(--bg-light);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.service-card p {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: var(--text-gray);
  line-height: 1.7;
}

/* ============================================
   Why Choose Us Section
   ============================================ */
.why-us {
  padding: var(--section-padding) 0;
  background: var(--bg-light);
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.why-us-content h2 {
  margin-bottom: 1.5rem;
}

.why-us-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.why-us-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.why-us-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}

.why-us-item-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--primary-color);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
}

.why-us-item h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.why-us-item p {
  font-size: 0.875rem;
}

.why-us-image {
  position: relative;
}

.why-us-image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.floating-stat {
  position: absolute;
  background: var(--bg-white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: float 3s ease-in-out infinite;
}

.floating-stat-1 {
  bottom: 2rem;
  left: -2rem;
  animation-delay: 0s;
}

.floating-stat-2 {
  top: 2rem;
  right: -2rem;
  animation-delay: 1.5s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.floating-stat h3 {
  font-size: 1.75rem;
  background: var(--primary-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.floating-stat p {
  font-size: 0.875rem;
  white-space: nowrap;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
  padding: var(--section-padding) 0;
  background: var(--bg-white);
}

.testimonials-slider {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 1rem;
  margin: 0 -1rem;
}

.testimonials-slider::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 350px;
  scroll-snap-align: start;
  background: var(--bg-light);
  border-radius: var(--radius-xl);
  padding: 2rem;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: var(--primary-purple);
  opacity: 0.2;
  line-height: 1;
}

.testimonial-content {
  font-size: 1rem;
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-purple);
}

.testimonial-info h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.testimonial-info p {
  font-size: 0.875rem;
  color: var(--text-light);
}

.testimonial-rating {
  color: #fbbf24;
  margin-bottom: 1rem;
}

/* ============================================
   CTA Section
   ============================================ */
.cta {
  padding: var(--section-padding) 0;
  background: var(--primary-gradient);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm-30 30v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
  position: relative;
  text-align: center;
  color: var(--text-white);
}

.cta h2 {
  color: var(--text-white);
  margin-bottom: 1rem;
}

.cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta .btn {
  background: var(--bg-white);
  color: var(--primary-purple);
}

.cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--bg-dark);
  color: var(--text-white);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--text-light);
  margin: 1.5rem 0;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--primary-purple);
  transform: translateY(-3px);
}

.footer-column h4 {
  color: var(--text-white);
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-column a {
  color: var(--text-light);
  transition: color var(--transition-fast);
}

.footer-column a:hover {
  color: var(--primary-purple);
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-light);
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  color: var(--primary-purple);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--text-light);
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--text-light);
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: var(--primary-purple);
}

/* ============================================
   WhatsApp Floating Button
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--whatsapp-green);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-normal);
}

.whatsapp-float a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  color: white;
}

.whatsapp-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--whatsapp-green);
  border-radius: 50%;
  animation: pulse 2s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* ============================================
   Exam Pages
   ============================================ */
.exam-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, #F0E7FF 0%, #E0F2FE 100%);
}

.exam-hero-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: center;
}

.exam-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-purple);
  margin-bottom: 1rem;
}

.exam-hero h1 {
  margin-bottom: 1rem;
}

.exam-hero p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.exam-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.exam-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-gray);
}

.exam-feature-item svg {
  color: var(--accent-success);
}

.exam-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-xl);
}

.exam-card h3 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.exam-price {
  text-align: center;
  margin-bottom: 1.5rem;
}

.exam-price .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-purple);
}

.exam-price .original {
  font-size: 1rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-left: 0.5rem;
}

.exam-card-features {
  margin-bottom: 1.5rem;
}

.exam-card-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--bg-gray);
  font-size: 0.9rem;
}

.exam-card-features li:last-child {
  border-bottom: none;
}

.exam-card-features svg {
  color: var(--accent-success);
  min-width: 20px;
}

.exam-info-section {
  padding: var(--section-padding) 0;
}

.exam-info-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.exam-description h2 {
  margin-bottom: 1.5rem;
}

.exam-description p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.exam-topics h3 {
  margin: 2rem 0 1rem;
}

.exam-topics ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.exam-topics li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-gray);
}

.exam-sidebar {
  position: sticky;
  top: 100px;
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translate3d(50px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes pulse-soft {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.animate-fade-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-slide-right {
  animation: slideInRight 0.8s ease-out forwards;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    padding-top: 2rem;
    gap: 2rem;
  }

  .hero-visual {
    order: -1;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mega-menu {
    width: 100%;
    left: 0;
    transform: none;
    position: static;
    box-shadow: none;
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 4rem;
  }

  .header-container {
    padding: 1rem;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-white);
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    transform: translateY(-150%);
    transition: transform var(--transition-normal);
    z-index: 999;
    height: calc(100vh - 70px);
    overflow-y: auto;
  }

  body.menu-open {
    overflow: hidden;
  }

  .main-nav.active {
    transform: translateY(0);
  }

  .nav-menu {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }

  .nav-link {
    color: var(--text-dark);
    /* Dark text on white mobile menu */
    justify-content: space-between;
    padding: 1rem;
    background: var(--bg-smoke);
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--primary-color);
    background: var(--bg-light);
  }

  .why-us-grid,
  .about-grid,
  .contact-grid,
  .exam-hero-content,
  .exam-info-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}


.sidebar-card {
  background: var(--bg-light);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.sidebar-card h4 {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ============================================
   About Page
   ============================================ */
.about-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, #F0E7FF 0%, #E0F2FE 100%);
  text-align: center;
}

.about-hero h1 {
  margin-bottom: 1rem;
}

.about-content {
  padding: var(--section-padding) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.about-text h2 {
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.team-section {
  padding: var(--section-padding) 0;
  background: var(--bg-light);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition-normal);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  object-fit: cover;
  border: 4px solid var(--primary-purple);
}

/* ============================================
   Contact Page
   ============================================ */
.contact-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, #F0E7FF 0%, #E0F2FE 100%);
  text-align: center;
}

.contact-section {
  padding: var(--section-padding) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
  transition: all var(--transition-normal);
}

.contact-info-card:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--primary-gradient);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.contact-info-card h4 {
  margin-bottom: 0.25rem;
}

.contact-info-card p {
  font-size: 0.9rem;
}

.contact-info-card a {
  color: var(--primary-purple);
  font-weight: 500;
}

.contact-form {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--bg-gray);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: all var(--transition-fast);
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    order: 1;
  }

  .hero-visual {
    order: 0;
  }

  .hero-description {
    margin: 0 auto 2rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .mega-menu {
    width: 600px;
  }

  .mega-menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-us-grid,
  .about-grid,
  .contact-grid,
  .exam-hero-content,
  .exam-info-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 3rem;
  }

  .header-container {
    padding: 0.75rem 1rem;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .main-nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    padding: 1rem;
    box-shadow: var(--shadow-lg);
  }

  .main-nav.active .nav-menu {
    flex-direction: column;
    width: 100%;
  }

  .main-nav.active .mega-menu {
    position: static;
    transform: none;
    width: 100%;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    display: none;
  }

  .main-nav.active .nav-item:hover .mega-menu {
    display: block;
  }

  .mega-menu-grid {
    grid-template-columns: 1fr;
  }

  .hero-slide img {
    height: 350px;
  }

  .trust-badges-container {
    flex-direction: column;
    align-items: center;
  }

  .trust-badge {
    width: 100%;
    max-width: 350px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .floating-stat {
    display: none;
  }

  .exam-topics ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .testimonial-card {
    flex: 0 0 300px;
  }
}

/* ============================================
   Animated Background for Glassmorphism Visibility
   ============================================ */
.animated-bg {
  position: relative;
  background-color: #f8fafc;
  /* Very light gray base */
  background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
  background-size: 30px 30px;
  overflow: hidden;
  z-index: 0;
}

.animated-bg::before,
.animated-bg::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.5;
  animation: floatBlobs 15s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.animated-bg::before {
  background: rgba(7, 202, 141, 0.3);
  /* Primary Green */
  top: -150px;
  left: -150px;
}

.animated-bg::after {
  background: rgba(59, 130, 246, 0.3);
  /* Soft Blue for contrast */
  bottom: -150px;
  right: -150px;
  animation-delay: -7s;
}

@keyframes floatBlobs {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(50px, 30px) scale(1.1);
  }

  100% {
    transform: translate(-30px, 50px) scale(0.9);
  }
}

/* Ensure content stays above the blobs */
.animated-bg .container {
  position: relative;
  z-index: 2;
}