/* ============================================
   ORIANA ACADEMY - PREMIUM DESIGN
   Enhanced with Animations & Dynamic Effects
   ============================================ */

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

/* ============================================
   CSS VARIABLES
   ============================================ */

:root {
  /* Primary Colors - Green/Emerald */
  --primary: #10B981;
  --primary-light: #34D399;
  --primary-dark: #059669;
  --primary-50: #ECFDF5;
  --primary-100: #D1FAE5;
  --primary-200: #A7F3D0;

  /* Secondary - Gradient Colors */
  --secondary: #34D399;
  --accent-blue: #3B82F6;
  --accent-cyan: #06B6D4;
  --accent-green: #10B981;
  --accent-orange: #F59E0B;
  --accent-red: #EF4444;

  /* Neutral Colors */
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #10B981 0%, #3B82F6 100%);
  --gradient-blue: linear-gradient(135deg, #10B981 0%, #059669 100%);
  --gradient-sunset: linear-gradient(135deg, #10B981 0%, #3B82F6 100%);
  --gradient-ocean: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --gradient-forest: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
  --gradient-dark: linear-gradient(135deg, #434343 0%, #000000 100%);
  --gradient-hero: linear-gradient(135deg, #059669 0%, #10B981 50%, #3B82F6 100%);

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

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 40px rgba(16, 185, 129, 0.3);

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-3xl: 2rem;
  --radius-full: 9999px;

  /* GlobalTalk Brand Colors */
  --gt-primary: #318693;
  --gt-primary-soft: #e5f4f5;
  --gt-dark: #000000;
  --gt-gray: #4a4a4a;
  --gt-gray-light: #717171;

  /* 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);
  --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* Backgrounds */
  --bg-dark-secondary: #064e3b;
}

/* ============================================
   PAGE LOADER
   ============================================ */

.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #0f172a 0%, #1e293b 40%, #0f172a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  overflow: hidden;
}

/* Subtle ambient particles */
.page-loader::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(1.5px 1.5px at 10% 20%, rgba(255, 255, 255, 0.12) 50%, transparent 50%),
    radial-gradient(1px 1px at 30% 65%, rgba(255, 255, 255, 0.08) 50%, transparent 50%),
    radial-gradient(1.5px 1.5px at 55% 15%, rgba(255, 255, 255, 0.1) 50%, transparent 50%),
    radial-gradient(1px 1px at 75% 80%, rgba(255, 255, 255, 0.06) 50%, transparent 50%),
    radial-gradient(1px 1px at 90% 40%, rgba(255, 255, 255, 0.09) 50%, transparent 50%);
  animation: particleDrift 8s ease-in-out infinite alternate;
}

@keyframes particleDrift {
  0% {
    transform: translateY(0) translateX(0);
  }

  100% {
    transform: translateY(-15px) translateX(10px);
  }
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  display: none !important;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

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

/* ============================================
   NEWTON'S CRADLE — PREMIUM REALISTIC
   ============================================ */
.newtons-cradle {
  --cradle-width: 220px;
  --cradle-height: 180px;
  --ball-size: 28px;
  --string-length: 100px;
  --swing-speed: 1.8s;
  position: relative;
  width: var(--cradle-width);
  height: var(--cradle-height);
}

/* ---- TOP BAR (Frame) ---- */
.cradle-frame {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(var(--ball-size) * 5 + 32px);
  height: 6px;
  background: linear-gradient(180deg, #e5e7eb 0%, #9ca3af 40%, #6b7280 100%);
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* ---- SIDE LEGS ---- */
.cradle-frame::before,
.cradle-frame::after {
  content: '';
  position: absolute;
  top: 4px;
  width: 4px;
  height: 28px;
  background: linear-gradient(180deg, #9ca3af, #6b7280);
  border-radius: 0 0 2px 2px;
  box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
}

.cradle-frame::before {
  left: 8px;
}

.cradle-frame::after {
  right: 8px;
}

/* ---- BASE PLATFORM ---- */
.cradle-base {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(var(--ball-size) * 5 + 48px);
  height: 5px;
  background: linear-gradient(180deg, #4b5563, #374151 60%, #1f2937 100%);
  border-radius: 2.5px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* ---- BALL WRAPPER ---- */
.cradle-balls {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

/* ---- INDIVIDUAL PENDULUM ---- */
.cradle-ball {
  width: var(--ball-size);
  display: flex;
  flex-direction: column;
  align-items: center;
  transform-origin: top center;
}

/* ---- STRING ---- */
.cradle-ball .string {
  width: 1.5px;
  height: var(--string-length);
  background: linear-gradient(to bottom,
      rgba(156, 163, 175, 0.9) 0%,
      rgba(107, 114, 128, 0.7) 50%,
      rgba(75, 85, 99, 0.5) 100%);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}

/* ---- METALLIC BALL ---- */
.cradle-ball .ball {
  width: var(--ball-size);
  height: var(--ball-size);
  border-radius: 50%;
  position: relative;
  /* Multi-layer chrome gradient */
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.95) 0%, transparent 25%),
    radial-gradient(circle at 35% 35%,
      #f9fafb 0%,
      #e5e7eb 15%,
      #c0c5ce 30%,
      #8b95a5 55%,
      #4b5563 80%,
      #1f2937 100%);
  box-shadow:
    inset -3px -4px 8px rgba(0, 0, 0, 0.45),
    inset 2px 3px 6px rgba(255, 255, 255, 0.5),
    0 8px 16px -4px rgba(0, 0, 0, 0.5),
    0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Specular highlight on ball */
.cradle-ball .ball::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 6px;
  width: 8px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  filter: blur(1.5px);
}

/* Reflection ring */
.cradle-ball .ball::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ---- SWING ANIMATIONS ---- */
.cradle-ball:first-child {
  animation: swingLeft var(--swing-speed) ease-in-out infinite;
}

.cradle-ball:last-child {
  animation: swingRight var(--swing-speed) ease-in-out infinite;
}

@keyframes swingLeft {
  0% {
    transform: rotate(0deg);
  }

  12% {
    transform: rotate(42deg);
  }

  25% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@keyframes swingRight {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(0deg);
  }

  62% {
    transform: rotate(-42deg);
  }

  75% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

/* ---- FLOOR SHADOW (moves with swing) ---- */
.cradle-shadow {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(var(--ball-size) * 5 + 20px);
  height: 8px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(3px);
  animation: shadowPulse var(--swing-speed) ease-in-out infinite;
}

@keyframes shadowPulse {

  0%,
  25%,
  75%,
  100% {
    transform: translateX(-50%) scaleX(1);
    opacity: 0.6;
  }

  12% {
    transform: translateX(-42%) scaleX(1.15);
    opacity: 0.8;
  }

  62% {
    transform: translateX(-58%) scaleX(1.15);
    opacity: 0.8;
  }
}

/* ---- LOADING TEXT ---- */
.loader-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  animation: textGlow 2.5s ease-in-out infinite;
}

@keyframes textGlow {

  0%,
  100% {
    opacity: 0.6;
    text-shadow: 0 0 0 transparent;
  }

  50% {
    opacity: 1;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
  }
}

/* ---- PROGRESS BAR ---- */
.loader-progress {
  width: 180px;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
  margin-top: -0.5rem;
}

.loader-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #10B981, #3B82F6, #10B981);
  background-size: 200% 100%;
  border-radius: 2px;
  animation: progressFill 2.5s ease-in-out forwards, progressShimmer 1.5s linear infinite;
}

@keyframes progressFill {
  0% {
    width: 0%;
  }

  30% {
    width: 40%;
  }

  60% {
    width: 65%;
  }

  85% {
    width: 85%;
  }

  100% {
    width: 100%;
  }
}

@keyframes progressShimmer {
  0% {
    background-position: 200% center;
  }

  100% {
    background-position: -200% center;
  }
}


/* ============================================
   RESET & BASE
   ============================================ */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  background-color: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-dark);
}

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

/* ============================================
   LAYOUT
   ============================================ */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

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

.section {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0.6ch;
  width: calc(100% - 1.2ch);
  height: 4px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
}

.section-header p {
  color: var(--gray-500);
  max-width: 600px;
  margin: 1rem auto 0;
  font-size: 1.125rem;
}

/* Section Backgrounds */
.section-white {
  background: var(--white);
}

.section-gray {
  background: var(--gray-50);
}

.section-gradient {
  background: var(--gradient-primary);
  color: var(--white);
}

.section-gradient h2,
.section-gradient p {
  color: var(--white);
}

/* NEW: Enhanced Section Backgrounds with Visual Interest */

/* Light Green Gradient */
.section-green-light {
  background: linear-gradient(180deg, var(--primary-50) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

/* Dark Green Gradient */
.section-green-dark {
  background: linear-gradient(135deg, #064e3b 0%, #065f46 50%, #047857 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.section-green-dark h2,
.section-green-dark h3,
.section-green-dark p {
  color: var(--white);
}

.section-green-dark .section-header h2::after {
  background: linear-gradient(90deg, #3B82F6, #34D399);
}

/* Blue Gradient Section */
.section-blue-gradient {
  background: linear-gradient(180deg, #EFF6FF 0%, #DBEAFE 50%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

/* Dark Blue Section */
.section-dark-blue {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #1e40af 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.section-dark-blue h2,
.section-dark-blue h3,
.section-dark-blue p,
.section-dark-blue .stat-number,
.section-dark-blue .stat-label {
  color: var(--white);
}

/* Green Gradient Section */
.section-green-light {
  background: linear-gradient(180deg, #ECFDF5 0%, #D1FAE5 50%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

/* Orange/Warm Gradient */
.section-cyan-light {
  background: linear-gradient(135deg, rgba(235, 250, 251, 1) 0%, rgba(206, 239, 242, 0.4) 100%);
}

.section-warm {
  background: linear-gradient(180deg, #FFF7ED 0%, #FFEDD5 50%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

/* Mesh Gradient (Premium Look) */
.section-mesh {
  background:
    radial-gradient(at 40% 20%, rgba(16, 185, 129, 0.08) 0px, transparent 50%),
    radial-gradient(at 80% 0%, rgba(59, 130, 246, 0.08) 0px, transparent 50%),
    radial-gradient(at 0% 50%, rgba(59, 130, 246, 0.08) 0px, transparent 50%),
    radial-gradient(at 80% 50%, rgba(16, 185, 129, 0.05) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(16, 185, 129, 0.05) 0px, transparent 50%),
    var(--white);
  position: relative;
  overflow: hidden;
}

/* ============================================
   FLOATING DECORATIVE ELEMENTS
   ============================================ */

/* Generic floating shapes container */
.section-with-floats {
  position: relative;
  overflow: hidden;
}

/* Floating Circle */
.float-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  animation: floatShape 8s ease-in-out infinite;
  pointer-events: none;
}

.float-circle.green {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(52, 211, 153, 0.1));
}

.float-circle.blue {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(96, 165, 250, 0.1));
}

.float-circle.blue {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(96, 165, 250, 0.1));
}

.float-circle.green {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(52, 211, 153, 0.1));
}

/* Floating Square/Diamond */
.float-square {
  position: absolute;
  opacity: 0.5;
  animation: floatSquare 10s ease-in-out infinite;
  pointer-events: none;
}

.float-square.green {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(52, 211, 153, 0.05));
}

/* Floating Dots Pattern */
.float-dots {
  position: absolute;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(circle, var(--primary-200) 2px, transparent 2px);
  background-size: 20px 20px;
  opacity: 0.4;
  animation: floatDots 15s linear infinite;
  pointer-events: none;
}

/* Floating Line/Bar */
.float-line {
  position: absolute;
  height: 3px;
  border-radius: 3px;
  opacity: 0.3;
  animation: floatLine 12s ease-in-out infinite;
  pointer-events: none;
}

.float-line.green {
  background: var(--gradient-primary);
}

/* Floating Icons (Emoji-based) */
.float-icon {
  position: absolute;
  z-index: 1;
  opacity: 0.15;
  filter: grayscale(0.5);
  pointer-events: none;
  transition: all var(--transition-slow);
  animation: floatIcon 20s linear infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

.float-icon img,
.float-icon svg {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.float-icon:hover {
  opacity: 0.4;
  filter: grayscale(0);
  transform: scale(1.2);
}

/* Specific positioned floats */
.float-top-left {
  top: 10%;
  left: 5%;
}

.float-top-right {
  top: 15%;
  right: 8%;
}

.float-bottom-left {
  bottom: 15%;
  left: 10%;
}

.float-bottom-right {
  bottom: 10%;
  right: 5%;
}

.float-center-left {
  top: 50%;
  left: 3%;
  transform: translateY(-50%);
}

.float-center-right {
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
}

/* Animation Keyframes */
@keyframes floatShape {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(10px, -15px) rotate(5deg);
  }

  50% {
    transform: translate(-5px, -25px) rotate(-3deg);
  }

  75% {
    transform: translate(-15px, -10px) rotate(3deg);
  }
}

@keyframes floatSquare {

  0%,
  100% {
    transform: translate(0, 0) rotate(45deg);
  }

  33% {
    transform: translate(15px, -20px) rotate(60deg);
  }

  66% {
    transform: translate(-10px, -15px) rotate(30deg);
  }
}

@keyframes floatDots {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(40px, -40px);
  }
}

@keyframes floatLine {

  0%,
  100% {
    transform: translateX(0) scaleX(1);
    opacity: 0.3;
  }

  50% {
    transform: translateX(20px) scaleX(1.2);
    opacity: 0.5;
  }
}

@keyframes floatIcon {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(20px, -30px) rotate(10deg);
  }

  50% {
    transform: translate(-10px, -50px) rotate(-5deg);
  }

  75% {
    transform: translate(-30px, -20px) rotate(5deg);
  }

  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

/* Sizes */
.size-sm {
  width: 60px;
  height: 60px;
}

.size-md {
  width: 100px;
  height: 100px;
}

.size-lg {
  width: 150px;
  height: 150px;
}

.size-xl {
  width: 200px;
  height: 200px;
}

/* Animation delays */
.delay-1 {
  animation-delay: 0s;
}

.delay-2 {
  animation-delay: 2s;
}

.delay-3 {
  animation-delay: 4s;
}

.delay-4 {
  animation-delay: 6s;
}

/* Wave Divider */
.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.wave-divider .shape-fill {
  fill: var(--white);
}

/* Blob Background */
.blob-bg {
  position: absolute;
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: blobMorph 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes blobMorph {

  0%,
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }

  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
}

/* ============================================
/* Cleaned up duplicate hero styles */

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.btn-enroll {
  color: var(--gt-dark);
  font-weight: 800;
  text-decoration: none;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s ease;
}

.btn-enroll span {
  font-size: 1.4rem;
}

.btn-enroll:hover {
  transform: translateX(5px);
  color: var(--gt-primary);
}

.btn-learn-more {
  background: var(--gt-primary-soft);
  color: var(--gt-primary);
  padding: 1.2rem 2.5rem;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-learn-more:hover {
  background: var(--gt-primary);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

/* ACHIEVEMENT SECTION */
.achievement-tabs {
  padding-top: 4rem;
}

.stat-item.students {
  background: rgba(59, 130, 246, 0.08);
}

.stat-item.trainers {
  background: rgba(245, 158, 11, 0.08);
}

.stat-item.placement {
  background: rgba(16, 185, 129, 0.08);
}

.stat-item.partners {
  background: rgba(139, 92, 246, 0.08);
}

.stat-icon.white-bg {
  background: none;
}

/* UTILITIES */
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gap-1 {
  gap: 1rem;
}

.flex-wrap {
  flex-wrap: wrap;
}

.border-white-30 {
  border-color: rgba(255, 255, 255, 0.3);
}

.text-white {
  color: var(--white);
}

.filter-invert {
  filter: brightness(0) invert(1);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-100);
  z-index: 1000;
  padding: 0.6rem 0;
  transition: all var(--transition-normal);
  box-sizing: border-box;
}

.header.scrolled {
  padding: 0.4rem 0;
  box-shadow: var(--shadow-md);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-left: 2rem;
}

.login-link {
  color: var(--gray-600);
  font-weight: 600;
  font-size: 0.85rem;
  line-height: 1;
  padding: 0.5rem 0.5rem;
  transition: all var(--transition-normal);
  position: relative;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  box-sizing: border-box;
}

.login-link:hover {
  color: var(--primary);
}

.login-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition-normal);
  border-radius: var(--radius-full);
}

.login-link:hover::after {
  width: 100%;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--gray-900);
  transition: transform var(--transition-normal);
}

.logo:hover {
  transform: scale(1.02);
  color: var(--gray-900);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 1.25rem;
  box-shadow: var(--shadow-md);
}

/* Logo Image */
.logo-img {
  height: 55px !important;
  max-height: 55px !important;
  width: auto !important;
  max-width: 250px !important;
  object-fit: contain;
  display: block;
}

.footer .logo-img {
  height: 55px !important;
  max-height: 55px !important;
  max-width: 220px !important;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-menu a {
  color: var(--gray-600);
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.5;
  padding: 0.25rem 0;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-menu a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width var(--transition-normal);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary);
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
  width: 100%;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-toggle::after {
  content: '▾';
  margin-left: 0.25rem;
  font-size: 0.7rem;
  transition: transform var(--transition-fast);
}

.dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -1rem;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 0.5rem;
  margin-top: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-xl);
  list-style: none;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-menu a:hover {
  background: var(--primary-50);
  color: var(--primary);
}

/* CTA Button */
.cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: var(--gradient-primary);
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  line-height: 1;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  box-sizing: border-box;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  color: var(--white);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  padding: 8rem 0 6rem;
  margin-top: 0;
  min-height: auto;
  display: flex;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(49, 134, 147, 0.12) 0%, rgba(235, 250, 251, 1) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: rgba(49, 134, 147, 0.22);
  filter: blur(180px);
  border-radius: 50%;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: rgba(16, 185, 129, 0.2);
  filter: blur(160px);
  border-radius: 50%;
  z-index: 1;
}

.hero-blob-3 {
  position: absolute;
  top: 40%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: rgba(59, 130, 246, 0.18);
  filter: blur(140px);
  border-radius: 50%;
  z-index: 1;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: flex-start;
  position: relative;
  z-index: 10;
  padding-top: 0;
}

.hero-content {
  margin-top: 0 !important;
}

.hero .tagline {
  color: var(--gt-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.9rem;
  margin-top: 0 !important;
  margin-bottom: 0.75rem;
  display: block;
  font-family: 'Outfit', sans-serif;
}

.hero-content h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1.2px;
  font-family: 'Outfit', sans-serif;
}

.hero-content .description {
  font-size: 1rem;
  color: var(--gray-600);
  max-width: 580px;
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Compact Info Grid */
.hero-info-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.hero-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.0rem;
}

.info-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.btn-sm-call {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gt-primary);
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.btn-sm-call:hover {
  color: var(--gt-dark);
  transform: translateX(3px);
}

.program-mini-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.program-mini-tags span {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  background: var(--gt-primary-soft);
  color: var(--gt-primary);
  border-radius: 4px;
  border: 1px solid rgba(49, 134, 147, 0.1);
}

/* Compact Hero Actions */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-compact {
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.btn-compact.primary {
  background: var(--gt-dark);
  color: var(--white);
}

.btn-compact.secondary {
  background: var(--gt-primary-soft);
  color: var(--gt-primary);
}

.btn-compact.outline {
  background: transparent;
  color: var(--gt-dark);
  border: 1.5px solid var(--gray-200);
}

.btn-compact:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-compact.primary:hover {
  background: var(--gt-primary);
}

/* Stats in Hero */
.hero-stats {
  display: flex;
  gap: 0;
  align-items: center;
}

.hero-stats .hero-stat-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding-right: 3rem;
}

.hero-stats .hero-stat-item:not(:last-child) {
  border-right: 1px solid #eee;
  margin-right: 3rem;
}

.hero-stats .hero-stat-icon {
  color: var(--gt-primary);
  font-size: 2.22rem;
}

.hero-stats .hero-stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: #000;
  line-height: 1;
  font-family: 'Outfit', sans-serif;
  letter-spacing: -1px;
}

.hero-stats .hero-stat-label {
  font-size: 1rem;
  color: var(--gt-gray-light);
  font-weight: 600;
  margin-top: 0.2rem;
}

/* Hero Visual Refined */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  height: 100%;
  padding-top: 4rem;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 700px;
  height: 350px;
  /* Reduced height to compact section */
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-image-wrapper .main-img {
  width: 100%;
  height: auto;
  z-index: 5;
  position: relative;
}

.hero-image-wrapper .floating-asset {
  position: absolute;
  z-index: 2;
  transition: transform 0.5s ease-out;
}

.hero-image-wrapper .asset-joystick {
  width: 180px;
  left: 0;
  top: 15%;
  filter: blur(2px);
  animation: floatJoystick 6s ease-in-out infinite;
}

.hero-image-wrapper .asset-plant {
  width: 280px;
  right: -5%;
  bottom: -5%;
  z-index: 10;
  /* Foreground element */
  filter: blur(3px);
  animation: floatPlant 8s ease-in-out infinite;
}

@keyframes floatJoystick {

  0%,
  100% {
    transform: translateY(0) rotate(-5deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes floatPlant {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-15px) scale(1.02);
  }
}

@media (max-width: 1024px) {
  .hero-image-wrapper {
    height: auto;
    margin-top: 2rem;
  }

  .hero-image-wrapper .main-img {
    width: 100%;
    transform: none;
  }

  .hero-image-wrapper .asset-joystick,
  .hero-image-wrapper .asset-plant {
    display: none;
    /* Simplify on smaller tablets/mobiles */
  }
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-image {
  position: relative;
  animation: fadeInRight 1s ease-out 0.3s both;
}

.hero-image img {
  width: 100%;
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-2xl);
}

/* Floating Elements on Hero */
.hero-float-1,
.hero-float-2,
.hero-float-3 {
  position: absolute;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  animation: floatElement 4s ease-in-out infinite;
}

.hero-float-1 {
  top: 10%;
  right: -20px;
  width: 80px;
  height: 80px;
  background: var(--gradient-ocean);
  animation-delay: 0s;
}

.hero-float-2 {
  bottom: 20%;
  left: -30px;
  width: 60px;
  height: 60px;
  background: var(--gradient-sunset);
  animation-delay: 1s;
}

.hero-float-3 {
  bottom: 10%;
  right: 10%;
  width: 50px;
  height: 50px;
  background: var(--gradient-forest);
  animation-delay: 2s;
}

@keyframes floatElement {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-xl);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left var(--transition-slow);
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--gray-700);
  border-color: var(--gray-300);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-50);
}

.btn-lg {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.btn-compact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
}

.btn-compact.primary {
  background: var(--gt-primary);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(49, 134, 147, 0.2);
}

.btn-compact.primary:hover {
  background: #2a737e;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(49, 134, 147, 0.3);
  color: var(--white);
}

/* ============================================
   STATS BAR
   ============================================ */

.stats-bar {
  background: var(--white);
  padding: 4rem 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem 2rem;
  border-radius: 30px;
  transition: all var(--transition-normal);
  background: rgba(255, 255, 255, 0.5);
  /* Default transparent white */
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.stat-item:hover {
  background: var(--gray-50);
  transform: translateY(-5px);
}

.stat-icon {
  width: 150px;
  height: 150px;
  min-width: 150px;
  min-height: 150px;
  margin: 0 auto 0.5rem;
  background: none !important;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: none !important;
  transition: all var(--transition-normal);
  padding: 0;
  overflow: hidden;
  filter: none !important;
}

.stat-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.stat-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat-item:hover .stat-icon {
  transform: translateY(-8px) scale(1.05);
  background: none;
  box-shadow: none;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
  display: block;
  /* Ensure separate line */
}

.stat-label {
  font-size: 0.9375rem;
  color: var(--gray-500);
  margin-top: 0.8rem;
  /* Increased margin for better spacing */
  display: block;
  /* Ensure separate line */
  font-weight: 600;
}

/* ============================================
   FEATURE CARDS
   ============================================ */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-2xl);
  padding: 1rem 1.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.feature-card:hover {
  border-color: var(--primary-200);
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
}

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

/* Standardized 3D Icons - Emerald Theme */
.icon-3d-emerald {
  width: 150px;
  height: 150px;
  min-width: 150px;
  min-height: 150px;
  background: none !important;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
  position: relative;
  box-shadow: none !important;
  transition: var(--transition-normal);
  overflow: hidden;
  padding: 0;
  flex-shrink: 0;
  border: none !important;
}

.small-icon-3d-emerald {
  width: 60px;
  height: 60px;
  background: none !important;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: none !important;
  transition: var(--transition-normal);
  overflow: hidden;
  padding: 0;
  flex-shrink: 0;
}

.icon-3d-emerald img,
.small-icon-3d-emerald img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: none !important;
  transition: var(--transition-normal);
}

.feature-card:hover .icon-3d-emerald {
  transform: translateY(-5px) scale(1.05);
}

.feature-card:hover .icon-3d-emerald img {
  transform: scale(1.1);
}

.feature-icon {
  width: 150px;
  height: 150px;
  min-width: 150px;
  min-height: 150px;
  margin: 0 auto 0.5rem;
  background: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
  padding: 0;
  overflow: hidden;
  filter: none !important;
  box-shadow: none !important;
}

.feature-icon img,
.icon-3d-emerald img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: none !important;
  transition: all var(--transition-normal);
}


.feature-icon.students,
.feature-icon.trainers,
.feature-icon.placement,
.feature-icon.partners,
.feature-icon.blue,
.feature-icon.purple,
.feature-icon.green {
  background: none !important;
  box-shadow: none !important;
}

/* Mobile Icon Scaling Fix */
@media (max-width: 768px) {

  .stat-icon,
  .feature-icon,
  .icon-3d-emerald {
    width: 150px !important;
    height: 150px !important;
    min-width: 150px !important;
    min-height: 150px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}


/* ============================================
   MOTIVATIONAL QUOTE POPUP
   ============================================ */

.quote-popup {
  position: fixed;
  bottom: 2rem;
  right: 2.5rem;
  max-width: 350px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl), 0 10px 40px rgba(16, 185, 129, 0.1);
  z-index: 9998;
  transform: translateY(120%);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.quote-popup.active {
  transform: translateY(0);
}

.quote-popup:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-5px);
}

.quote-content {
  position: relative;
}

.quote-text {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--gray-800);
  font-style: italic;
}

.quote-author {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.quote-close {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 24px;
  height: 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--gray-500);
  transition: all 0.3s;
  cursor: pointer;
}

.quote-close:hover {
  background: var(--danger);
  color: var(--white);
  border-color: var(--danger);
}

@media (max-width: 768px) {
  .quote-popup {
    bottom: 1.5rem;
    right: 1rem;
    left: 1rem;
    max-width: none;
    padding: 1.25rem;
  }
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card:hover .feature-icon {
  background: none;
  box-shadow: none;
  transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--gray-500);
  font-size: 0.9375rem;
  margin-bottom: 0;
}

/* ============================================
   COURSE CARDS
   ============================================ */

.courses-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.course-card {
  flex: 1 1 280px;
  max-width: calc(25% - 1.5rem);
  background: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all var(--transition-normal);
  position: relative;
  display: flex;
  flex-direction: column;
}

@media (max-width: 1200px) {
  .course-card {
    max-width: calc(33.333% - 1.4rem);
  }
}

@media (max-width: 992px) {
  .course-card {
    max-width: calc(50% - 1rem);
  }
}

@media (max-width: 576px) {
  .course-card {
    max-width: 100%;
  }
}

.course-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: 0;
}

.course-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-2xl);
  border-color: transparent;
}

.course-image {
  height: 180px;
  position: relative;
  overflow: hidden;
}

.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.course-card:hover .course-image img {
  transform: scale(1.1);
}

.course-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.7) 100%);
}

/* Gradient Backgrounds */
.course-card.gradient-green .course-image {
  background: var(--gradient-forest);
}

.course-card.gradient-orange .course-image {
  background: var(--gradient-sunset);
}

.course-card.gradient-blue .course-image {
  background: var(--gradient-ocean);
}

.course-card.gradient-purple .course-image {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.course-card.gradient-pink .course-image {
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.course-card.gradient-dark .course-image {
  background: var(--gradient-dark);
}

.course-content {
  padding: 1.5rem;
  position: relative;
  z-index: 1;
  background: var(--white);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.course-content h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  transition: color var(--transition-fast);
}

.course-content p {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  flex-grow: 1;
}

.course-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.course-badge {
  display: inline-flex;
  padding: 0.375rem 0.875rem;
  background: var(--primary-100);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
}

.course-badge.offline {
  background: var(--gray-100);
  color: var(--gray-600);
}

.course-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap var(--transition-fast);
}

.course-link:hover {
  gap: 0.5rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

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

.testimonial-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  position: relative;
  transition: all var(--transition-normal);
  box-shadow: 0 8px 32px 0 rgba(16, 185, 129, 0.05);
  display: flex;
  flex-direction: column;
}

.testimonial-card::before {
  content: '“';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--primary-100);
  line-height: 1;
  opacity: 0.5;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--primary-200);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 1.25rem;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.testimonial-info p {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-bottom: 0;
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  color: #FBBF24;
  margin-bottom: 1rem;
}

.testimonial-rating svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-50);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.verified-badge svg {
  width: 12px;
  height: 12px;
  stroke-width: 3;
}

.testimonial-text {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.7;
  font-style: italic;
}

/* ============================================
   LOGOS SECTION
   ============================================ */

.logos-section {
  background: var(--gray-50);
  padding: 4rem 0;
  text-align: center;
}

.logos-section h3 {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.logos-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.logos-grid img {
  height: 36px;
  opacity: 0.4;
  filter: grayscale(100%);
  transition: all var(--transition-normal);
}

.logos-grid img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  padding: 8rem 0;
  /* More padding for a premium feel */
  background: linear-gradient(135deg, #1e3a47 0%, #162a34 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -25%;
  width: 600px;
  height: 600px;
  background: rgba(49, 134, 147, 0.2);
  /* Muted teal glow */
  border-radius: 50%;
  filter: blur(80px);
  /* Soft glow */
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(49, 134, 147, 0.15);
  /* Muted teal glow */
  border-radius: 50%;
  filter: blur(60px);
  /* Soft glow */
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-content h2::after {
  display: none;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-content .btn-primary {
  background: #318693;
  /* GlobalTalk Teal - subtle */
  color: var(--white);
  border: none;
  box-shadow: 0 10px 20px rgba(49, 134, 147, 0.3);
}

.cta-content .btn-primary:hover {
  background: #2a737e;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(49, 134, 147, 0.4);
}

/* ============================================
   FORMS
   ============================================ */

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-100);
}

.form-input::placeholder {
  color: var(--gray-400);
}

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

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--gray-900);
  color: var(--gray-300);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-brand .logo-icon {
  background: var(--gradient-primary);
}

.footer-brand p {
  color: var(--gray-400);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  color: var(--gray-300);
  font-size: 0.9rem;
  transition: all var(--transition-normal);
}

.social-icon:hover {
  background: var(--gradient-primary);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-section h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section ul a {
  color: var(--gray-400);
  font-size: 0.9375rem;
  transition: all var(--transition-fast);
}

.footer-section ul a:hover {
  color: var(--white);
  padding-left: 0.5rem;
}

.footer-contact {
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  font-size: 0.9375rem;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.footer-contact .contact-icon {
  width: 32px;
  height: 32px;
  margin-top: 0.2rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.footer-contact .contact-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-newsletter {
  margin-top: 1.5rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-size: 0.9rem;
}

.newsletter-form input::placeholder {
  color: var(--gray-500);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary);
}

.newsletter-form button {
  padding: 0.75rem 1.25rem;
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: var(--gray-500);
  font-size: 0.875rem;
  margin-bottom: 0;
}

/* Logo Marquee Slider */
.logo-marquee {
  width: 100%;
  overflow: hidden;
  padding: 1.5rem 0;
  background: var(--white);
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.logo-track {
  display: flex;
  width: calc(180px * 20);
  animation: scroll 45s linear infinite;
  align-items: center;
}

.logo-track img {
  width: 110px;
  height: auto;
  margin: 0 35px;
  filter: grayscale(1);
  opacity: 0.4;
  transition: all var(--transition-normal);
  flex-shrink: 0;
}

.logo-track img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-180px * 10));
  }
}

/* Specific Logo Overrides */
.logo-tcs {
  filter: invert(1) grayscale(1) opacity(0.4) !important;
}

.logo-tcs:hover {
  filter: invert(1) grayscale(0) opacity(1) !important;
}

.logo-hcl {
  transform: scale(1.2);
}

.logo-hcl:hover {
  transform: scale(1.3) !important;
}

.logo-accenture {
  transform: scale(1.1);
}

.logo-accenture:hover {
  transform: scale(1.15) !important;
}

.logo-wipro {
  transform: scale(1.1);
}

.logo-wipro:hover {
  transform: scale(1.15) !important;
}

.logo-std {
  transform: scale(0.75);
}

.logo-std:hover {
  transform: scale(0.85) !important;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Reveal on Scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger Delays */
.stagger-1 {
  transition-delay: 0.1s;
}

.stagger-2 {
  transition-delay: 0.2s;
}

.stagger-3 {
  transition-delay: 0.3s;
}

.stagger-4 {
  transition-delay: 0.4s;
}

.stagger-5 {
  transition-delay: 0.5s;
}

.stagger-6 {
  transition-delay: 0.6s;
}

.stagger-7 {
  transition-delay: 0.7s;
}

.stagger-8 {
  transition-delay: 0.8s;
}

/* ============================================
   ABOUT PAGE SPECIFIC
   ============================================ */

.page-hero {
  padding: 10rem 0 5rem;
  background: var(--gradient-primary);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
  background-size: 50px 50px;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

/* About Content */
.about-content {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  /* Reduced image column, increased text column */
  gap: 4rem;
  align-items: flex-start;
  /* Align to top to better match heights */
}

.about-image {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  max-width: 100%;
  /* Full width */
  margin-right: auto;
}

/* Career Support Specific Refinement */
.career-content {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

/* Community Section Refinement */
.community-content {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.career-content .about-image {
  max-width: 85%;
  justify-self: center;
}

/* Learning Model Specific Styles */
.learning-content {
  grid-template-columns: 0.8fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.learning-step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
  padding: 1.25rem;
  border-radius: var(--radius-xl);
  transition: all var(--transition-normal);
  background: var(--white);
  border: 1px solid var(--gray-100);
}

.learning-step:hover {
  transform: translateX(10px);
  border-color: var(--primary-200);
  box-shadow: var(--shadow-md);
  background: var(--primary-50);
}

.step-number {
  width: 45px;
  height: 45px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.step-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--gray-900);
}

.step-info p {
  font-size: 0.9rem !important;
  color: var(--gray-600);
  margin-bottom: 0;
  line-height: 1.5;
}

.about-text h2 {
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--gray-600);
  font-size: 1.0625rem;
  line-height: 1.8;
  text-align: justify;
  /* Justify text as requested */
}

.about-text ul {
  list-style: none;
  margin-top: 1.5rem;
}

.about-text ul li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.about-text ul li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  background: var(--primary-100);
  color: var(--primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.team-card {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  transition: all var(--transition-normal);
}

.team-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-5px);
}

.team-avatar {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
}

.team-card h4 {
  margin-bottom: 0.25rem;
}

.team-card p {
  color: var(--gray-500);
  font-size: 0.875rem;
  margin-bottom: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet Landscape */
@media (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }

  /* Header Fixes */
  .header .container {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .header-actions {
    margin-left: auto;
    gap: 1rem;
  }

  .nav-menu {
    gap: 1.5rem;
  }

  .nav-menu a {
    font-size: 0.875rem;
  }

  .logo-img {
    height: 50px !important;
    max-height: 50px !important;
  }

  /* Hero Fixes */
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-content p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-info-grid {
    align-items: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-visual {
    padding-top: 2rem;
  }

  /* About Content */
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-text {
    text-align: left;
  }

  .about-image {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .community-content {
    grid-template-columns: 1fr;
  }

  .community-content .about-image img {
    transform: none;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: block;
  }

  /* Grids */
  .features-grid,
  .courses-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .stat-item {
    padding: 1.5rem 1rem;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  /* Section adjustments */
  .section {
    padding: 4rem 0;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  /* Learning steps */
  .learning-steps {
    margin: 1.5rem 0;
  }

  .learning-step {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .step-number {
    margin: 0 auto;
  }
}

/* Tablet Portrait */
@media (max-width: 768px) {

  /* Header Mobile */
  .mobile-toggle {
    display: flex;
    z-index: 1001;
  }

  .header .container {
    padding: 0 1rem;
  }

  .header-actions {
    display: flex;
    gap: 0.5rem;
    margin-left: auto;
    margin-right: 0.5rem;
  }

  .header-actions .login-link {
    font-size: 0.75rem;
    padding: 0.4rem 0.5rem;
  }

  .header-actions .cta-btn {
    display: inline-flex;
    font-size: 0.7rem;
    padding: 0.4rem 0.75rem;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 1.5rem 2rem;
    gap: 0;
    transition: right var(--transition-normal);
    box-shadow: var(--shadow-2xl);
    z-index: 1000;
    overflow-y: auto;
  }

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

  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid var(--gray-100);
  }

  .nav-menu a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  .nav-menu a::before,
  .nav-menu a::after {
    display: none;
  }

  /* Dropdown in mobile menu */
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 1rem;
    margin: 0;
    background: var(--gray-50);
    border-radius: 0;
  }

  .dropdown-menu li {
    border-bottom: none;
  }

  .dropdown-menu a {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .logo-img {
    height: 45px !important;
    max-height: 45px !important;
  }

  /* Hero Section */
  .hero {
    padding: 6rem 0 3rem;
    margin-top: 0;
  }

  .hero .tagline {
    font-size: 0.75rem;
    letter-spacing: 2px;
  }

  .hero-content h1 {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    line-height: 1.2;
  }

  .hero-content h1 br {
    display: none;
  }

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

  .hero-image,
  .hero-float-1,
  .hero-float-2,
  .hero-float-3 {
    display: none;
  }

  .hero-visual {
    display: none;
  }

  /* Hero Actions - Stack on mobile */
  .hero-actions {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .hero-actions .btn-compact {
    width: 100%;
    justify-content: center;
  }

  .program-mini-tags {
    justify-content: center;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .stat-item {
    padding: 1.25rem 0.75rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .stat-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 1rem;
  }

  /* Grids - Single column */
  .features-grid,
  .courses-grid,
  .testimonials-grid,
  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Footer - Standardize with Desktop */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: left;
  }

  .footer-brand {
    text-align: left;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .footer-section {
    text-align: left;
  }

  .footer-section ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-contact {
    align-items: flex-start;
  }

  .newsletter-form {
    max-width: 300px;
    margin: 0 auto;
  }

  .footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
  }

  .footer-bottom p {
    font-size: 0.85rem;
  }

  /* Sections */
  .section {
    padding: 3rem 0;
  }

  .section-header h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .section-header p {
    font-size: 1rem;
  }

  /* Buttons */
  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }

  .btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .btn-compact {
    padding: 0.65rem 1.25rem;
    font-size: 0.875rem;
  }

  /* CTA Section */
  .cta-content {
    padding: 2rem 1rem;
  }

  .cta-content h2 {
    font-size: 1.5rem;
  }

  .cta-content p {
    font-size: 0.95rem;
  }

  /* About content reverse on mobile */
  .career-content {
    flex-direction: column-reverse;
  }

  .career-content .about-text {
    order: 1;
  }

  .career-content .about-image {
    order: 2;
  }

  /* Floating elements - hide on mobile */
  .float-circle,
  .float-square,
  .float-dots,
  .float-line,
  .float-icon {
    display: none;
  }

  /* Logo marquee */
  .logos-section h3 {
    font-size: 0.7rem;
    padding: 0 1rem;
    text-align: center;
  }
}

/* Mobile Large */
@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }

  /* Header */
  .header {
    padding: 0.75rem 0;
  }

  .logo-img {
    height: 40px !important;
    max-height: 40px !important;
    max-width: 150px !important;
  }

  /* Hero */
  .hero {
    padding: 5rem 0 2rem;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content .description {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .hero-info-grid {
    gap: 1rem;
  }

  .info-label {
    font-size: 0.7rem;
  }

  .program-mini-tags span {
    font-size: 0.65rem;
    padding: 0.15rem 0.5rem;
  }

  /* Stats */
  .stats-grid {
    gap: 0.75rem;
  }

  .stat-item {
    padding: 1rem 0.5rem;
    border-radius: 20px;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .stat-label {
    font-size: 0.7rem;
    line-height: 1.3;
  }

  .stat-icon {
    /* Maintained at 150px via global mobile override */
    margin-bottom: 1rem;
  }

  /* Section headers */
  .section-header {
    margin-bottom: 2rem;
  }

  .section-header h2 {
    font-size: 1.35rem;
  }

  .section-header h2::after {
    height: 3px;
    bottom: -6px;
  }

  .section-header p {
    font-size: 0.9rem;
  }

  /* Cards */
  .feature-card,
  .course-card {
    padding: 1.25rem;
  }

  .feature-card h3 {
    font-size: 1.1rem;
  }

  .feature-card p {
    font-size: 0.875rem;
  }

  .feature-icon {
    /* Maintained at 150px via global mobile override */
    margin-bottom: 1rem;
  }

  /* Testimonials */
  .testimonial-card {
    padding: 1.25rem;
  }

  .testimonial-avatar {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }

  .testimonial-info h4 {
    font-size: 0.95rem;
  }

  .testimonial-info p {
    font-size: 0.75rem;
  }

  .testimonial-text {
    font-size: 0.875rem;
  }

  /* Learning steps */
  .learning-step {
    padding: 0.75rem 0;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .step-info h4 {
    font-size: 1rem;
  }

  .step-info p {
    font-size: 0.85rem;
  }

  /* CTA */
  .cta-section {
    padding: 3rem 0;
  }

  .cta-content h2 {
    font-size: 1.3rem;
  }

  .cta-content p {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
  }

  .flex-center.gap-1 {
    flex-direction: column;
    gap: 0.75rem !important;
  }

  .flex-center.gap-1 .btn {
    width: 100%;
    max-width: 280px;
  }

  /* Footer */
  .footer {
    padding: 2.5rem 0 1rem;
  }

  .footer-brand p {
    font-size: 0.85rem;
  }

  .footer-section h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .footer-section li {
    margin-bottom: 0.5rem;
  }

  .footer-section a {
    font-size: 0.85rem;
  }

  .footer-contact li {
    font-size: 0.9375rem;
    /* Standardized with link columns */
  }

  .newsletter-form input {
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
  }

  .newsletter-form button {
    padding: 0.65rem 1rem;
  }
}

/* Mobile Small */
@media (max-width: 400px) {
  .hero-content h1 {
    font-size: 1.35rem;
  }

  .hero-content .description {
    font-size: 0.85rem;
  }

  .hero-actions .btn-compact {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stat-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 1rem;
    gap: 1rem;
  }

  .stat-icon {
    margin: 0;
    flex-shrink: 0;
  }

  .stat-number {
    font-size: 1.5rem;
    display: block;
  }

  .stat-label {
    display: block;
    font-size: 0.75rem;
  }

  .section-header h2 {
    font-size: 1.2rem;
  }

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

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

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-bottom a {
  color: var(--gray-400);
  transition: color var(--transition-fast);
}

.footer-bottom a:hover {
  color: var(--white);
}

.feature-icon.partners {
  background: rgba(139, 92, 246, 0.08);
}

.feature-icon.blue {
  background: rgba(59, 130, 246, 0.08);
}

.feature-icon.purple {
  background: rgba(139, 92, 246, 0.08);
}

.feature-icon.green {
  background: rgba(16, 185, 129, 0.08);
}

/* Grid Utilities */
.grid-1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 1024px) {

  .grid-4,
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {

  .grid-4,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

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

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   MISSION & VISION LIGHT THEME
   ============================================ */
.section-vision-mission-light {
  background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
  position: relative;
  border-top: 1px solid var(--gray-100);
}

.section-vision-mission-light .feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  padding: 3rem;
  border-radius: var(--radius-2xl);
  transition: all 0.3s ease;
}

.section-vision-mission-light .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-200);
}

.section-vision-mission-light h3 {
  color: var(--gray-900);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.section-vision-mission-light p {
  color: var(--gray-600);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Missing Utilities for Button Visibility */
.text-white {
  color: var(--white) !important;
}

.border-white-30 {
  border-color: rgba(255, 255, 255, 0.3) !important;
}

.flex-center {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.gap-1 {
  gap: 1rem !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

/* Fix Hover Visibility for White Text Buttons */
.btn.text-white:hover {
  color: #000000 !important;
}

/* ============================================
   PAGE-SPECIFIC RESPONSIVE OVERRIDES
   ============================================ */

/* About Page - Philosophy Section */
@media (max-width: 1024px) {

  /* Override inline grid styles on about page */
  section#mission .container>div[style*="grid-template-columns"],
  .about-content[style*="grid-template-columns"],
  .career-content {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    text-align: center;
  }

  section#mission .container>div h2 {
    font-size: 2rem !important;
  }
}

@media (max-width: 768px) {

  /* Override any inline grid styles on contact.html hero */
  .hero .container[style*="grid-template-columns"] {
    display: block !important;
  }

  .hero .container>div {
    width: 100%;
    margin-bottom: 2rem;
  }

  /* About page specific fixes */
  section#mission .container>div h2 {
    font-size: 1.75rem !important;
    line-height: 1.3 !important;
  }

  section#mission .container>div p {
    font-size: 1rem !important;
    line-height: 1.7 !important;
  }

  /* Mission/Vision cards */
  .features-grid[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }

  .grid-2[style*="gap: 4rem"] {
    gap: 2rem !important;
  }
}

/* Form Responsive Styles */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }

  .form-group {
    margin-bottom: 1rem;
  }

  .form-input,
  .form-textarea,
  .form-select,
  select.form-input {
    font-size: 16px !important;
    /* Prevent zoom on iOS */
    padding: 0.875rem 1rem;
  }

  .form-label {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  .application-form {
    padding: 1.5rem !important;
  }

  /* Quick Connect card */
  .career-card {
    padding: 1.5rem !important;
  }

  .career-card h3 {
    font-size: 1.25rem !important;
  }
}

@media (max-width: 576px) {

  .form-input,
  .form-textarea {
    padding: 0.75rem 0.875rem;
  }

  .form-label {
    font-size: 0.85rem;
  }
}

/* Course Pages Responsive */
@media (max-width: 768px) {

  /* Course hero sections */
  .course-hero-content {
    text-align: center;
    padding: 0 1rem;
  }

  .course-hero-content h1 {
    font-size: 1.75rem !important;
  }

  /* Course curriculum */
  .curriculum-grid,
  .course-modules {
    grid-template-columns: 1fr !important;
  }

  /* Benefits grid */
  .benefits-grid {
    grid-template-columns: 1fr !important;
  }

  /* Course sidebar */
  .course-sidebar {
    position: static !important;
    margin-top: 2rem;
  }

  /* Price cards */
  .price-card {
    padding: 1.5rem !important;
  }

  .price-amount {
    font-size: 2rem !important;
  }
}

/* Pet Program & Career Guidance Pages */
@media (max-width: 768px) {
  .timeline-item {
    padding-left: 0 !important;
    padding-bottom: 2rem;
  }

  .timeline-item::before {
    left: 0 !important;
  }

  .benefit-card,
  .guidance-card {
    padding: 1.25rem !important;
  }
}

/* Login/Signup Pages Responsive */
@media (max-width: 768px) {
  .auth-container {
    padding: 1.5rem !important;
    margin: 1rem;
    border-radius: 1rem !important;
  }

  .auth-form h2 {
    font-size: 1.5rem !important;
  }

  .auth-grid {
    grid-template-columns: 1fr !important;
  }

  .auth-visual {
    display: none !important;
  }
}

/* Admin Dashboard Responsive */
@media (max-width: 1024px) {
  .dashboard-sidebar {
    position: fixed;
    left: -280px;
    top: 0;
    height: 100vh;
    z-index: 1000;
    transition: left var(--transition-normal);
  }

  .dashboard-sidebar.active {
    left: 0;
  }

  .dashboard-main {
    margin-left: 0 !important;
    width: 100%;
  }

  .dashboard-header {
    padding: 1rem;
  }

  .dashboard-cards {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 576px) {
  .dashboard-cards {
    grid-template-columns: 1fr !important;
  }

  .dashboard-table {
    font-size: 0.85rem;
  }

  .dashboard-table th,
  .dashboard-table td {
    padding: 0.5rem;
  }
}

/* Careers Page Responsive */
@media (max-width: 768px) {
  .job-card {
    padding: 1.25rem !important;
  }

  .job-card h3 {
    font-size: 1.1rem;
  }

  .job-meta {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .job-tags span {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
  }
}

/* GlobalTalk Page Responsive */
@media (max-width: 768px) {
  .gt-hero-content h1 {
    font-size: 2rem !important;
  }

  .language-cards {
    grid-template-columns: 1fr !important;
  }

  .language-card {
    padding: 1.5rem !important;
  }
}

/* Iframe/Map Responsive */
@media (max-width: 768px) {
  iframe {
    height: 250px !important;
  }
}