/* ============================================
   Career Tripod - Premium CSS
   Premium Animations + Glassmorphism + Modern UI
   ============================================ */

:root {
  --primary: #1E5AA8;
  --primary-dark: #174A89;
  --primary-light: #3a7bd4;
  --secondary: #0FA958;
  --secondary-dark: #0B8A49;
  --secondary-light: #34c97a;
  --accent: #5A2D91;
  --accent-light: #7b4ab5;
  --white: #ffffff;
  --off-white: #f8f9fb;
  --light-gray: #E5E7EB;
  --gray: #6B7280;
  --dark-gray: #4B5563;
  --dark: #1F2937;
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.18);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  --gradient-primary: linear-gradient(135deg, #1E5AA8 0%, #0FA958 100%);
  --gradient-hero: linear-gradient(135deg, rgba(30,90,168,0.92) 0%, rgba(15,169,88,0.88) 100%);
  --gradient-animated: linear-gradient(-45deg, #1E5AA8, #0FA958, #5A2D91, #1E5AA8);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.10);
  --shadow-lg: 0 16px 50px rgba(0,0,0,0.15);
  --shadow-glow: 0 0 40px rgba(30,90,168,0.25);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 50%;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --transition-smooth: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --container-width: 1200px;
  --nav-height: 80px;
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-primary); color: var(--dark); background: var(--white); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; transition: var(--transition); }
input, textarea, select { font-family: inherit; outline: none; border: none; }

/* --- Scroll Progress Bar --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--gradient-animated);
  background-size: 300% 300%;
  animation: gradientShift 3s ease infinite;
  z-index: 10000;
  transition: width 0.1s linear;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* --- Loading Screen --- */
.loading-screen {
  position: fixed;
  inset: 0;
  background: #0a1628;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader { text-align: center; position: relative; }

.loader::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15,169,88,0.2) 0%, transparent 70%);
  animation: loaderGlow 2s ease-in-out infinite;
  pointer-events: none;
}

.loader::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 2px solid rgba(15,169,88,0.15);
  animation: loaderRing 3s linear infinite;
  pointer-events: none;
}

.loader-video {
  width: 180px;
  height: 180px;
  object-fit: contain;
  border-radius: 50%;
  filter: saturate(1.4) brightness(1.15) contrast(1.1);
  box-shadow:
    0 0 30px rgba(15,169,88,0.3),
    0 0 60px rgba(30,90,168,0.2),
    0 0 100px rgba(15,169,88,0.1);
  animation: loaderPulse 2.5s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

@keyframes loaderGlow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.8; }
}

@keyframes loaderRing {
  0% { transform: translate(-50%, -50%) rotate(0deg); border-color: rgba(15,169,88,0.15); }
  50% { transform: translate(-50%, -50%) rotate(180deg); border-color: rgba(30,90,168,0.25); }
  100% { transform: translate(-50%, -50%) rotate(360deg); border-color: rgba(15,169,88,0.15); }
}

@keyframes loaderPulse {
  0%, 100% {
    box-shadow: 0 0 30px rgba(15,169,88,0.3), 0 0 60px rgba(30,90,168,0.2), 0 0 100px rgba(15,169,88,0.1);
    filter: saturate(1.4) brightness(1.15) contrast(1.1);
  }
  50% {
    box-shadow: 0 0 40px rgba(15,169,88,0.5), 0 0 80px rgba(30,90,168,0.3), 0 0 120px rgba(15,169,88,0.15);
    filter: saturate(1.6) brightness(1.25) contrast(1.15);
  }
}

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

/* --- Section --- */
.section { padding: 100px 0; position: relative; }
.section-alt { background: var(--off-white); }

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

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(15,169,88,0.10), rgba(15,169,88,0.04));
  color: var(--secondary-dark);
  padding: 8px 22px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid rgba(15,169,88,0.2);
}

.section-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-header h2 .gradient-text {
  background: linear-gradient(135deg, #1E5AA8, #0FA958);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  color: var(--gray);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before { width: 300px; height: 300px; }

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(30,90,168,0.35);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(30,90,168,0.45);
}

.btn-gold {
  background: var(--secondary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(15,169,88,0.35);
}

.btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(15,169,88,0.45);
  background: var(--secondary-dark);
}

.btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(15,169,88,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-3px);
  border-color: var(--white);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}

.btn-whatsapp:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(37,211,102,0.45);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.navbar.transparent { background: transparent; }

.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

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

.nav-brand { display: flex; align-items: center; gap: 14px; min-width: 200px; }

.nav-brand-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(30,90,168,0.25);
  transition: var(--transition-bounce);
  background: var(--white);
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.15);
}

.nav-brand-icon img {
  width: 85%;
  height: 85%;
  object-fit: contain;
  display: block;
}

.nav-brand:hover .nav-brand-icon { transform: scale(1.08); box-shadow: 0 6px 25px rgba(30,90,168,0.35); }

.nav-brand-text h1 { font-size: 1.25rem; font-weight: 700; line-height: 1.2; }
.nav-brand-text span { font-size: 0.68rem; color: var(--secondary); font-weight: 600; letter-spacing: 2px; text-transform: uppercase; }
.navbar.transparent .nav-brand-text h1 { color: var(--white); }
.navbar.scrolled .nav-brand-icon {
  box-shadow: 0 4px 20px rgba(30,90,168,0.2);
  border: 2px solid rgba(30,90,168,0.1);
}

.navbar.scrolled .nav-brand-text h1 { color: var(--dark); }

.nav-links { display: flex; align-items: center; gap: 2px; }

.nav-links a {
  padding: 10px 18px;
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 8px;
  position: relative;
}

.navbar.transparent .nav-links a { color: rgba(255,255,255,0.85); }
.navbar.transparent .nav-links a:hover,
.navbar.transparent .nav-links a.active { color: var(--secondary); background: rgba(255,255,255,0.1); }
.navbar.scrolled .nav-links a { color: var(--dark-gray); }
.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active { color: var(--primary); background: rgba(30,90,168,0.06); }

.nav-links .nav-cta {
  margin-left: 12px;
}

.nav-cta .btn { padding: 10px 24px; font-size: 0.85rem; }

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

.nav-toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 4px;
  transition: var(--transition);
}

.navbar.scrolled .nav-toggle span { background: var(--dark); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: translateX(10px); }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ============================================
   HERO V2 - Modern Two-Column Design
   ============================================ */
.hero-v2 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 60px;
}

.hero-v2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, #0a1628, transparent);
  z-index: 1;
  pointer-events: none;
}

/* Animated gradient background */
.hero-v2-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a1628 0%, #0d2847 25%, #0a1628 50%, #0b3a1f 75%, #0a1628 100%);
  background-size: 400% 400%;
  animation: heroBgShift 12s ease infinite;
  z-index: 0;
}

.hero-v2-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(15,169,88,0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(30,90,168,0.08) 0%, transparent 50%);
  animation: bgPulse 8s ease-in-out infinite alternate;
}

@keyframes bgPulse {
  0% { opacity: 0.5; }
  100% { opacity: 1; }
}

@keyframes heroBgShift {
  0% { background-position: 0% 50%; }
  25% { background-position: 100% 0%; }
  50% { background-position: 100% 100%; }
  75% { background-position: 0% 100%; }
  100% { background-position: 0% 50%; }
}

.hero-v2-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 20% 50%, rgba(30,90,168,0.25) 0%, transparent 70%),
    radial-gradient(ellipse 600px 500px at 80% 30%, rgba(15,169,88,0.2) 0%, transparent 70%),
    radial-gradient(ellipse 400px 400px at 60% 80%, rgba(90,45,145,0.15) 0%, transparent 70%);
}

/* Grid overlay */
.hero-v2-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Floating Particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
}

.particle-1 {
  width: 6px; height: 6px;
  background: var(--secondary);
  top: 15%; left: 10%;
  animation: particleFloat1 8s ease-in-out infinite;
  box-shadow: 0 0 12px var(--secondary);
}

.particle-2 {
  width: 4px; height: 4px;
  background: var(--primary-light);
  top: 25%; left: 45%;
  animation: particleFloat2 10s ease-in-out infinite;
  box-shadow: 0 0 10px var(--primary-light);
}

.particle-3 {
  width: 8px; height: 8px;
  background: var(--accent);
  top: 60%; left: 20%;
  animation: particleFloat3 12s ease-in-out infinite;
  box-shadow: 0 0 15px var(--accent);
}

.particle-4 {
  width: 5px; height: 5px;
  background: var(--secondary-light);
  top: 40%; left: 75%;
  animation: particleFloat1 9s ease-in-out infinite 1s;
  box-shadow: 0 0 10px var(--secondary-light);
}

.particle-5 {
  width: 3px; height: 3px;
  background: var(--white);
  top: 70%; left: 60%;
  animation: particleFloat2 7s ease-in-out infinite 0.5s;
  box-shadow: 0 0 8px rgba(255,255,255,0.5);
}

.particle-6 {
  width: 5px; height: 5px;
  background: var(--primary-light);
  top: 80%; left: 35%;
  animation: particleFloat3 11s ease-in-out infinite 2s;
  box-shadow: 0 0 10px var(--primary-light);
}

.particle-7 {
  width: 4px; height: 4px;
  background: var(--secondary);
  top: 10%; left: 80%;
  animation: particleFloat1 13s ease-in-out infinite 0.8s;
  box-shadow: 0 0 8px var(--secondary);
}

.particle-8 {
  width: 6px; height: 6px;
  background: var(--accent-light);
  top: 50%; left: 90%;
  animation: particleFloat2 10s ease-in-out infinite 1.5s;
  box-shadow: 0 0 12px var(--accent-light);
}

@keyframes particleFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  25% { transform: translate(30px, -40px) scale(1.3); opacity: 0.8; }
  50% { transform: translate(-20px, -60px) scale(0.8); opacity: 0.4; }
  75% { transform: translate(40px, -20px) scale(1.1); opacity: 0.7; }
}

@keyframes particleFloat2 {
  0%, 100% { transform: translate(0, 0); opacity: 0.4; }
  33% { transform: translate(-40px, 30px); opacity: 0.8; }
  66% { transform: translate(20px, -50px); opacity: 0.5; }
}

@keyframes particleFloat3 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.5; }
  50% { transform: translate(30px, -40px) rotate(180deg); opacity: 0.9; }
}

/* Hero Inner Layout */
.hero-v2-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ---- LEFT CONTENT ---- */
.hero-v2-left {
  color: var(--white);
  animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-v2-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(15,169,88,0.15), rgba(30,90,168,0.15));
  border: 1px solid rgba(15,169,88,0.3);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: fadeInDown 1s ease 0.3s backwards;
  box-shadow: 0 0 20px rgba(15,169,88,0.1);
}

.hero-v2-badge-dot {
  width: 9px;
  height: 9px;
  background: var(--secondary);
  border-radius: 50%;
  animation: dotPulse 2s ease infinite;
  box-shadow: 0 0 10px var(--secondary), 0 0 20px rgba(15,169,88,0.3);
}

.hero-v2-title {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 28px;
  animation: fadeInUp 1s ease 0.5s backwards;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-v2-gradient-text {
  background: linear-gradient(135deg, #0FA958, #7cffb2, #0FA958);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 200% center; }
}

.hero-v2-gradient-text::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  border-radius: 4px;
  transform: scaleX(0);
  transform-origin: left;
  animation: lineGrow 0.8s ease 1.8s forwards;
}

.hero-v2-desc {
  font-size: 1.15rem;
  line-height: 1.8;
  opacity: 0.85;
  margin-bottom: 36px;
  max-width: 520px;
  animation: fadeInUp 1s ease 0.7s backwards;
  color: rgba(255,255,255,0.9);
}

.hero-v2-desc strong {
  color: var(--secondary-light);
  font-weight: 700;
}

/* Buttons */
.hero-v2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease 0.9s backwards;
}

.btn-v2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
}

.btn-v2::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-v2:hover::before { width: 300px; height: 300px; }

.btn-v2-primary {
  background: linear-gradient(135deg, var(--secondary), #0bc965);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(15,169,88,0.35), 0 0 0 0 rgba(15,169,88,0);
  border: none;
}

.btn-v2-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(15,169,88,0.5), 0 0 0 4px rgba(15,169,88,0.15);
}

.btn-v2-outline {
  background: rgba(255,255,255,0.05);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.btn-v2-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 24px rgba(255,255,255,0.1);
}

.btn-v2-whatsapp {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}

.btn-v2-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
}

/* Trust Indicators */
.hero-v2-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  animation: fadeInUp 1s ease 1.1s backwards;
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  max-width: fit-content;
}

.hero-v2-trust-avatars {
  display: flex;
}

.hero-v2-trust-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--white);
  border: 2.5px solid #0d1f3c;
  margin-left: -10px;
  position: relative;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-v2-trust-avatar:first-child { margin-left: 0; }

.hero-v2-trust-more {
  background: rgba(255,255,255,0.15) !important;
  font-size: 0.7rem;
  font-weight: 700;
  backdrop-filter: blur(4px);
}

.hero-v2-trust-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

.hero-v2-trust-text strong { color: var(--white); font-weight: 700; }

.hero-v2-trust-stars {
  color: #fbbf24;
  font-size: 0.82rem;
  margin-top: 2px;
}

.hero-v2-trust-stars span {
  color: rgba(255,255,255,0.5);
  margin-left: 4px;
}

/* ---- RIGHT VISUAL ---- */
.hero-v2-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 1s ease 0.6s backwards;
}

.hero-v2-visual {
  position: relative;
  width: 440px;
  height: 440px;
}

/* Center circular image */
.hero-v2-center-visual {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 250px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(15,169,88,0.5);
  box-shadow: 0 0 50px rgba(15,169,88,0.25), 0 0 100px rgba(15,169,88,0.1), inset 0 0 30px rgba(15,169,88,0.1);
  z-index: 2;
  animation: heroVisualPulse 4s ease-in-out infinite;
}

.hero-v2-center-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-v2-center-visual:hover img {
  transform: scale(1.08);
}

@keyframes heroVisualPulse {
  0%, 100% { box-shadow: 0 0 50px rgba(15,169,88,0.25), 0 0 100px rgba(15,169,88,0.1), inset 0 0 30px rgba(15,169,88,0.1); }
  50% { box-shadow: 0 0 60px rgba(15,169,88,0.35), 0 0 120px rgba(15,169,88,0.15), inset 0 0 40px rgba(15,169,88,0.15); }
}

/* Glowing ring */
.hero-v2-glow-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 2px solid rgba(15,169,88,0.12);
  z-index: 1;
  animation: ringRotate 20s linear infinite;
}

.hero-v2-glow-ring::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--secondary);
}

.hero-v2-glow-ring::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 25%;
  width: 6px;
  height: 6px;
  background: var(--primary-light);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary-light);
}

@keyframes ringRotate { to { transform: translate(-50%, -50%) rotate(360deg); } }

/* Floating cards */
.hero-v2-card {
  position: absolute;
  z-index: 3;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-v2-card:hover {
  transform: translateY(-8px) !important;
}

/* Main info card */
.hero-v2-card-main {
  top: 10%;
  left: 0;
  right: auto;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  min-width: 260px;
  animation: cardFloat1 6s ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

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

.hero-v2-card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--secondary), #0bc965);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(15,169,88,0.3);
}

.hero-v2-card-info {
  display: flex;
  flex-direction: column;
}

.hero-v2-card-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.hero-v2-card-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
}

.hero-v2-card-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-left: auto;
}

.hero-v2-card-badge-green {
  background: rgba(15,169,88,0.2);
  color: #34c97a;
  border: 1px solid rgba(15,169,88,0.3);
}

/* Stat floating cards */
.hero-v2-card-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  transition: all 0.4s ease;
}

.hero-v2-card-stat:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.25);
}

.hero-v2-card-stat-icon {
  font-size: 1.5rem;
}

.hero-v2-card-stat-num {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  display: block;
  line-height: 1.2;
}

.hero-v2-card-stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.hero-v2-card-stat-1 {
  bottom: 25%;
  right: 0;
  animation: cardFloat2 7s ease-in-out infinite 0.5s;
}

.hero-v2-card-stat-2 {
  bottom: 5%;
  left: 10%;
  animation: cardFloat3 8s ease-in-out infinite 1s;
}



@keyframes cardFloat2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}

@keyframes cardFloat3 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(-2deg); }
}

/* ---- BOTTOM STATS BAR ---- */
.hero-v2-stats-bar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(7, auto);
  gap: 0;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 28px 48px;
  margin-top: 60px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  animation: fadeInUp 1s ease 1.3s backwards;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}

.hero-v2-stat-item {
  text-align: center;
  padding: 0 32px;
}

.hero-v2-stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--secondary-light);
  display: block;
  line-height: 1;
}

.hero-v2-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
  display: block;
  letter-spacing: 0.5px;
}

.hero-v2-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: 0;
}

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

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-glow);
  border-color: transparent;
}

.service-card:hover * { color: var(--white); position: relative; z-index: 1; }

.service-icon {
  width: 76px;
  height: 76px;
  background: linear-gradient(135deg, rgba(30,90,168,0.08), rgba(30,90,168,0.03));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  transition: var(--transition-bounce);
}

.service-card:hover .service-icon {
  background: rgba(255,255,255,0.2);
  transform: scale(1.15) rotate(-5deg);
}

.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.service-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; }

.service-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}

.service-card:hover .service-link {
  opacity: 1;
  transform: translateY(0);
  color: var(--white);
}

/* ============================================
   ABOUT SECTION (on Home page)
   ============================================ */
.about-section {
  position: relative;
  overflow: hidden;
}

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

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

.about-image-wrapper img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  transition: var(--transition-smooth);
}

.about-image-wrapper:hover img { transform: scale(1.05); }

.about-image-wrapper .experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(15,169,88,0.4);
  animation: floatSlow 4s ease-in-out infinite;
}

.experience-badge .num { font-size: 2rem; font-weight: 800; color: var(--dark); line-height: 1; }
.experience-badge .txt { font-size: 0.7rem; font-weight: 600; color: var(--dark); text-transform: uppercase; letter-spacing: 1px; }

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

.about-text .about-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary-dark);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.about-text h2 {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--dark);
}

.about-text h2 .gradient-text {
  background: linear-gradient(135deg, #1E5AA8, #0FA958);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-text p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.about-feature:hover {
  background: rgba(15,169,88,0.06);
  transform: translateX(4px);
}

.about-feature .icon {
  width: 36px;
  height: 36px;
  background: var(--secondary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}

.about-feature span { font-size: 0.88rem; font-weight: 600; color: var(--dark-gray); }

/* ============================================
   COUNTRIES
   ============================================ */
.countries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.country-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--white);
  transition: var(--transition-smooth);
  position: relative;
}

.country-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: var(--gradient-primary);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: var(--transition);
  z-index: 1;
  pointer-events: none;
}

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

.country-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }

.country-card-img {
  position: relative;
  height: 190px;
  overflow: hidden;
}

.country-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.country-card:hover .country-card-img img { transform: scale(1.12); }

.country-card-img .country-flag {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: var(--shadow-sm);
}

.country-card-body { padding: 20px; }
.country-card-body h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; color: var(--dark); }

.country-info { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }

.country-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--gray);
}

.country-info-item span:first-child { color: var(--primary); font-weight: 600; min-width: 80px; }

/* ============================================
   ADMISSION PROCESS (Timeline)
   ============================================ */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary), var(--primary));
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 16px 50px;
}

.timeline-item:nth-child(odd) { left: 0; text-align: right; }
.timeline-item:nth-child(even) { left: 50%; text-align: left; }

.timeline-dot {
  position: absolute;
  top: 24px;
  width: 52px;
  height: 52px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  z-index: 1;
  box-shadow: 0 0 0 5px var(--white), 0 0 0 7px var(--primary), 0 4px 15px rgba(30,90,168,0.3);
  transition: var(--transition-bounce);
}

.timeline-item:hover .timeline-dot { transform: scale(1.2); }

.timeline-item:nth-child(odd) .timeline-dot { right: -26px; }
.timeline-item:nth-child(even) .timeline-dot { left: -26px; }

.timeline-content {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition-smooth);
}

.timeline-content:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: rgba(30,90,168,0.1);
}

.timeline-content h3 { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.timeline-content p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}

.why-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.why-card:hover::after { transform: scaleX(1); }

.why-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, rgba(30,90,168,0.1), rgba(30,90,168,0.03));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.8rem;
  transition: var(--transition-bounce);
}

.why-card:hover .why-icon {
  background: var(--secondary);
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 6px 20px rgba(15,169,88,0.3);
}

.why-card:hover .why-icon span { filter: brightness(10); }

.why-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.why-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-wrapper { position: relative; overflow: hidden; padding-bottom: 20px; }

.testimonials-slider { display: flex; transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1); }

.testimonial-card { min-width: 100%; padding: 0 60px; }

.testimonial-inner {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.04);
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  transition: var(--transition-smooth);
}

.testimonial-inner:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.testimonial-inner::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  left: 28px;
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.08;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  margin: 0 auto 18px;
  overflow: hidden;
  border: 3px solid var(--primary);
  box-shadow: 0 4px 15px rgba(30,90,168,0.2);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
}

.testimonial-stars { color: var(--secondary); font-size: 1.1rem; margin-bottom: 18px; letter-spacing: 2px; }

.testimonial-text {
  font-size: 1.02rem;
  color: var(--dark-gray);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-name { font-size: 1.1rem; font-weight: 700; color: var(--dark); }
.testimonial-college { font-size: 0.85rem; color: var(--primary); font-weight: 600; margin-top: 4px; }

.testimonials-controls { display: flex; justify-content: center; gap: 14px; margin-top: 36px; }

.testimonials-controls button {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background: var(--gradient-primary);
  color: var(--white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(30,90,168,0.3);
}

.testimonials-controls button:hover { transform: scale(1.12); box-shadow: 0 6px 20px rgba(30,90,168,0.4); }

.testimonials-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }

.testimonials-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--light-gray);
  cursor: pointer;
  transition: var(--transition);
}

.testimonials-dots .dot.active { background: var(--primary); width: 32px; border-radius: 5px; }

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active { border-color: rgba(30,90,168,0.2); box-shadow: var(--shadow-md); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  transition: var(--transition);
  user-select: none;
}

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

.faq-icon {
  width: 34px;
  height: 34px;
  background: rgba(30,90,168,0.08);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  transition: var(--transition-bounce);
  flex-shrink: 0;
}

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

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 24px 20px; font-size: 0.92rem; color: var(--gray); line-height: 1.7; }
.faq-item.active .faq-answer { max-height: 500px; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--gradient-animated);
  background-size: 300% 300%;
  animation: gradientShift 6s ease infinite;
  padding: 100px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -120px;
  width: 350px;
  height: 350px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  animation: floatShape1 10s ease-in-out infinite;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 350px;
  height: 350px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  animation: floatShape2 8s ease-in-out infinite;
}

.cta-content { position: relative; z-index: 1; }
.cta-content h2 { font-size: 2.4rem; font-weight: 800; margin-bottom: 16px; }
.cta-content p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: #0a0f1a; color: rgba(255,255,255,0.7); padding: 60px 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 2.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand h2 { font-size: 1.4rem; color: var(--white); margin-bottom: 12px; }
.footer-brand h2 span { color: var(--secondary); }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }

.footer-col h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 20px; padding-bottom: 10px; position: relative; }
.footer-col h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 3px; background: var(--secondary); border-radius: 2px; }

.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 8px; }
.footer-col ul li a:hover { color: var(--secondary); transform: translateX(4px); }

.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: 0.88rem; }
.footer-contact-item span:first-child { color: var(--secondary); font-size: 1rem; margin-top: 2px; }

/* Footer Offices */
.footer-offices { max-height: none; }

.footer-office {
  margin-bottom: 14px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  transition: var(--transition);
}

.footer-office:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
}

.footer-office-head {
  border: 1px solid rgba(15,169,88,0.3);
  background: rgba(15,169,88,0.06);
}

.footer-office-head:hover {
  border-color: rgba(15,169,88,0.5);
  background: rgba(15,169,88,0.1);
}

.footer-office-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--secondary);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 0 10px 0 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-office-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-office p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  margin: 0;
}

.footer-bottom { padding: 20px 0; text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: var(--secondary); }

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(30,90,168,0.35), 0 0 0 0 rgba(30,90,168,0);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(30,90,168,0.45), 0 0 0 6px rgba(30,90,168,0.12);
}

.back-to-top-btn:active {
  transform: translateY(-2px) scale(0.95);
}

.back-to-top-btn svg {
  transition: transform 0.3s ease;
}

.back-to-top-btn:hover svg {
  transform: translateY(-2px);
}

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

.reveal-left { opacity: 0; transform: translateX(-50px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.revealed { opacity: 1; transform: translateX(0); }

.reveal-right { opacity: 0; transform: translateX(50px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.revealed { opacity: 1; transform: translateX(0); }

.reveal-scale { opacity: 0; transform: scale(0.9); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-scale.revealed { opacity: 1; transform: scale(1); }

/* Staggered delays for children */
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.1s; }
.stagger > *:nth-child(3) { transition-delay: 0.2s; }
.stagger > *:nth-child(4) { transition-delay: 0.3s; }
.stagger > *:nth-child(5) { transition-delay: 0.4s; }
.stagger > *:nth-child(6) { transition-delay: 0.5s; }
.stagger > *:nth-child(7) { transition-delay: 0.6s; }
.stagger > *:nth-child(8) { transition-delay: 0.7s; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
  min-height: 80vh;
  padding: 140px 0 80px;
}

.about-hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  color: var(--white);
}

.about-hero .hero-v2-badge {
  animation: fadeInDown 1s ease 0.3s backwards;
}

.about-hero .hero-v2-title {
  animation: fadeInUp 1s ease 0.5s backwards;
}

.about-hero .hero-v2-desc {
  animation: fadeInUp 1s ease 0.7s backwards;
}

.about-hero .hero-v2-actions {
  animation: fadeInUp 1s ease 0.9s backwards;
}

/* About Page Content */
.about-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-page-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-page-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  border: 2px solid rgba(15,169,88,0.15);
  pointer-events: none;
}

.about-page-img img { width: 100%; height: 420px; object-fit: cover; }

.about-page-text h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.about-page-text h2 .gradient-text {
  background: linear-gradient(135deg, #1E5AA8, #0FA958);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-page-text p { color: var(--gray); line-height: 1.8; margin-bottom: 16px; font-size: 1rem; }

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.value-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}

.value-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.value-card:hover::after { transform: scaleX(1); }

.value-icon {
  width: 76px;
  height: 76px;
  background: linear-gradient(135deg, rgba(30,90,168,0.1), rgba(30,90,168,0.03));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  transition: var(--transition-bounce);
}

.value-card:hover .value-icon {
  background: var(--gradient-primary);
  transform: scale(1.12) rotate(-5deg);
  box-shadow: 0 8px 24px rgba(15,169,88,0.3);
}

.value-card:hover .value-icon span { filter: brightness(10); }

.value-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.value-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.7; }

/* ============================================
   TOP DEEMED UNIVERSITIES - PREMIUM DARK
   ============================================ */
.deemed-section {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  background: #0a1628;
}

.deemed-section-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a1628 0%, #0d2847 25%, #0a1628 50%, #0b3a1f 75%, #0a1628 100%);
  background-size: 400% 400%;
  animation: heroBgShift 12s ease infinite;
  z-index: 0;
}

.deemed-section-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 20% 50%, rgba(30,90,168,0.2) 0%, transparent 70%),
    radial-gradient(ellipse 600px 500px at 80% 30%, rgba(15,169,88,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 400px 400px at 60% 80%, rgba(90,45,145,0.12) 0%, transparent 70%);
}

.deemed-section-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.d-particle {
  position: absolute;
  border-radius: 50%;
}

.d-p1 { width: 5px; height: 5px; background: #0FA958; top: 15%; left: 8%; animation: particleFloat1 9s ease-in-out infinite; box-shadow: 0 0 12px #0FA958; }
.d-p2 { width: 4px; height: 4px; background: #3a7bd4; top: 25%; left: 45%; animation: particleFloat2 11s ease-in-out infinite; box-shadow: 0 0 10px #3a7bd4; }
.d-p3 { width: 6px; height: 6px; background: #5A2D91; top: 60%; left: 20%; animation: particleFloat3 13s ease-in-out infinite; box-shadow: 0 0 15px #5A2D91; }
.d-p4 { width: 4px; height: 4px; background: #34c97a; top: 40%; left: 75%; animation: particleFloat1 10s ease-in-out infinite 1s; box-shadow: 0 0 10px #34c97a; }
.d-p5 { width: 3px; height: 3px; background: #fff; top: 70%; left: 60%; animation: particleFloat2 8s ease-in-out infinite 0.5s; box-shadow: 0 0 8px rgba(255,255,255,0.5); }

.deemed-section-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Header */
.deemed-header {
  text-align: center;
  margin-bottom: 52px;
  position: relative;
  z-index: 2;
}

.deemed-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(15,169,88,0.15), rgba(30,90,168,0.15));
  border: 1px solid rgba(15,169,88,0.3);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(15,169,88,0.1);
}

.deemed-badge-dot {
  width: 9px;
  height: 9px;
  background: #0FA958;
  border-radius: 50%;
  animation: dotPulse 2s ease infinite;
  box-shadow: 0 0 10px #0FA958, 0 0 20px rgba(15,169,88,0.3);
}

.deemed-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.deemed-gradient-text {
  background: linear-gradient(135deg, #0FA958, #7cffb2, #0FA958);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite;
}

.deemed-subtitle {
  color: rgba(255,255,255,0.55);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto;
}

/* Stage */
.deemed-stage {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 20px;
}

.deemed-viewport {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.deemed-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}

.deemed-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 8px;
}

/* Cards */
.deemed-cell {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.d-glow {
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: linear-gradient(135deg, rgba(15,169,88,0.4), rgba(30,90,168,0.4), rgba(90,45,145,0.4));
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
  filter: blur(8px);
}

.deemed-cell:hover .d-glow { opacity: 1; }

.d-card {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.deemed-cell:hover .d-card {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(15,169,88,0.4);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.d-card-top {
  position: relative;
  width: 100%;
  height: 170px;
  overflow: hidden;
}

.d-card-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.deemed-cell:hover .d-card-top img {
  transform: scale(1.1);
}

.d-card-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(15,169,88,0.08) 50%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.deemed-cell:hover .d-card-shine { opacity: 1; }

.d-rank {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  background: linear-gradient(135deg, #0FA958, #0bc965);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(15,169,88,0.4);
  letter-spacing: 1px;
}

.d-card-bot {
  padding: 16px 16px 18px;
}

.d-card-bot h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.d-card-bot p {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}

.d-card-desc {
  font-size: 0.72rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.55);
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}

.deemed-cell:hover .d-card-desc {
  color: rgba(255,255,255,0.7);
}

/* Arrows */
.deemed-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  z-index: 3;
}

.deemed-arrow:hover {
  background: linear-gradient(135deg, #0FA958, #0bc965);
  border-color: transparent;
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(15,169,88,0.4);
}

/* Footer - Progress + Counter */
.deemed-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
  position: relative;
  z-index: 2;
}

.deemed-progress {
  width: 200px;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
}

.deemed-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #0FA958, #3a7bd4);
  border-radius: 4px;
  width: 12.5%;
  transition: width 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.deemed-counter {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 2px;
}

.deemed-counter span {
  color: var(--white);
}

/* ============================================
   KEYFRAMES
   ============================================ */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }

/* ============================================
   FORM VALIDATION STYLES
   ============================================ */
input.error, select.error, textarea.error {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

input:focus, select:focus, textarea:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(30, 90, 168, 0.1);
}

#whatsappSubmit:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
}
