/* RESET & BASE */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; line-height: 1.6; color: #333; overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* COLORS & GRADIENTS */
:root {
  --primary: #1e40af;
  --primary-dark: #1e3a8a;
  --secondary: #0891b2;
  --accent: #059669;
  --dark: #0f172a;
  --light: #f8fafc;
  --gradient-main: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  --gradient-hero: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #0891b2 100%);
  --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  --glow: 0 0 30px rgba(30, 64, 175, 0.2);
  --shadow-soft: 0 10px 40px rgba(0,0,0,0.08);
  --shadow-strong: 0 20px 60px rgba(0,0,0,0.15);
}

.gradient-text { 
  background: var(--gradient-main); 
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; 
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite alternate;
}

.gradient-text-white {
  background: linear-gradient(135deg, #ffe000 0%, #ffe000 50%, #ffe000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}

@keyframes gradientShift {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(30deg); }
}

.bg-light {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
}

.bg-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* DARK SECTION BACKGROUND */
.bg-dark-section {
  background: var(--dark);
  color: white;
  position: relative;
}

.bg-dark-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* UNIQUE PAGE HEROES */
.about-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  position: relative;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.15) 0%, transparent 50%),
    linear-gradient(45deg, rgba(255,255,255,0.03) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,255,255,0.03) 25%, transparent 25%);
  background-size: 100% 100%, 100% 100%, 60px 60px, 60px 60px;
  animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

.programs-hero {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #4facfe 100%);
}

.careers-hero {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #0891b2 100%);
}

.contact-hero {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 50%, #667eea 100%);
}

/* BUTTONS */
.btn { 
  display: inline-flex; 
  align-items: center; 
  gap: 8px; 
  padding: 14px 28px; 
  border-radius: 12px; 
  font-weight: 600; 
  font-size: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
  border: none; 
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.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 0.5s;
}

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

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

.btn-primary:hover { 
  transform: translateY(-3px) scale(1.02); 
  box-shadow: var(--shadow-strong), var(--glow);
}

.btn-outline { 
  border: 2px solid white; 
  color: white;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.btn-outline:hover { 
  background: white; 
  color: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-white { 
  background: rgba(255,255,255,0.95); 
  color: var(--primary);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
}

.btn-white:hover { 
  background: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-full { width: 100%; justify-content: center; }

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
}

.header-top { 
  background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%); 
  color: white; 
  padding: 10px 0; 
  font-size: 14px;
  position: relative;
}

.header-top::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-main);
}

.header-top .container { display: flex; justify-content: space-between; }

.navbar { 
  background: rgba(255,255,255,0.98); 
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08); 
  position: relative;
  border-bottom: 1px solid rgba(99, 102, 241, 0.1);
  transition: all 0.3s ease;
}

.nav-inner { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  padding: 18px 0;
}

.logo { 
  display: flex; 
  align-items: center; 
  gap: 16px;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.02);
}

.logo-img-wrapper {
  background: white;
  padding: 8px 12px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.logo img { 
  height: 65px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.logo-text { display: flex; flex-direction: column; }

.logo-main { 
  font-size: 18px; 
  font-weight: 800; 
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.logo-sub { 
  font-size: 12px; 
  color: #64748b;
  font-weight: 500;
  margin-top: 2px;
}

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

.nav-links li {
  position: relative;
}

.has-dropdown {
  position: relative;
}

.nav-links a { 
  font-weight: 600; 
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a i.fa-chevron-down {
  font-size: 11px;
  transition: transform 0.3s ease;
}

.has-dropdown:hover > a i.fa-chevron-down {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 280px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  padding: 16px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid #e5e7eb;
  margin-top: 12px;
}

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

.dropdown-menu li {
  list-style: none;
  margin: 0;
}

.dropdown-header {
  padding: 12px 24px 8px 24px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #94a3b8;
  pointer-events: none;
}

.dropdown-menu a {
  display: block;
  padding: 14px 24px 14px 36px !important;
  color: #0f172a;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
  line-height: 1.5;
}

.dropdown-menu a:hover {
  background: #f1f5f9;
  color: #1e40af;
  border-left-color: #1e40af;
  padding-left: 40px !important;
}

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

.dropdown-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 12px 20px;
}

.nav-links a { 
  font-weight: 600; 
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-main);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

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

.nav-cta { 
  background: var(--gradient-main) !important; 
  color: white !important; 
  padding: 10px 20px !important; 
  border-radius: 25px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3) !important;
}

.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4) !important;
}

.nav-cta::after {
  display: none !important;
}

.hamburger { 
  display: none; 
  flex-direction: column; 
  gap: 5px; 
  background: none; 
  border: none; 
  cursor: pointer; 
  padding: 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.hamburger:hover {
  background: rgba(99, 102, 241, 0.1);
}

.hamburger span { 
  width: 28px; 
  height: 3px; 
  background: var(--dark); 
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
  border-radius: 2px;
}

/* HERO */
.hero { 
  position: relative; 
  min-height: 100vh; 
  display: flex; 
  align-items: center; 
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #0891b2 100%);
  color: white; 
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(8, 145, 178, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(30, 64, 175, 0.2) 0%, transparent 50%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { opacity: 0.5; transform: scale(1); }
  100% { opacity: 0.8; transform: scale(1.1); }
}

.hero-bg-anim { 
  position: absolute; 
  top: 0; 
  left: 0; 
  right: 0; 
  bottom: 0;
  background-image: 
    linear-gradient(45deg, rgba(255,255,255,0.03) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,255,255,0.03) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.03) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.03) 75%);
  background-size: 60px 60px;
  background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
  animation: heroPattern 20s linear infinite;
}

@keyframes heroPattern {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

.hero-content { 
  position: relative; 
  z-index: 3; 
  max-width: 650px;
  animation: heroSlideIn 1s ease-out;
}

@keyframes heroSlideIn {
  0% { opacity: 0; transform: translateY(50px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-badge { 
  display: inline-flex; 
  align-items: center; 
  gap: 10px; 
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 12px 20px; 
  border-radius: 30px; 
  font-size: 14px; 
  font-weight: 600;
  margin-bottom: 30px;
  border: 1px solid rgba(255,255,255,0.2);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.hero h1 { 
  font-size: 3.2rem; 
  font-weight: 800; 
  line-height: 1.2; 
  margin-bottom: 24px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-sub { 
  font-size: 1.1rem; 
  margin-bottom: 36px; 
  opacity: 0.95;
  line-height: 1.7;
  text-shadow: 0 1px 5px rgba(0,0,0,0.1);
  max-width: 580px;
}

.hero-actions { 
  display: flex; 
  gap: 20px; 
  margin-bottom: 60px;
  animation: actionsSlideIn 1s ease-out 0.3s both;
}

@keyframes actionsSlideIn {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-stats { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: 20px;
  animation: statsSlideIn 1s ease-out 0.6s both;
}

@keyframes statsSlideIn {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

.stat { 
  text-align: center;
  padding: 16px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}

.stat:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.15);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.stat-num { 
  display: block; 
  font-size: 2rem; 
  font-weight: 800;
  margin-bottom: 4px;
  background: linear-gradient(135deg, #fff 0%, #f0f9ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label { 
  font-size: 13px; 
  opacity: 0.9;
  font-weight: 500;
}

.hero-visual { 
  position: absolute; 
  right: 8%; 
  top: 50%; 
  transform: translateY(-50%);
  animation: visualFloat 6s ease-in-out infinite;
}

@keyframes visualFloat {
  0%, 100% { transform: translateY(-50%) rotate(0deg); }
  50% { transform: translateY(-60%) rotate(5deg); }
}

.ai-orb { 
  position: relative; 
  width: 250px; 
  height: 250px;
}

.orb-ring { 
  position: absolute; 
  border: 2px solid rgba(255,255,255,0.4); 
  border-radius: 50%; 
  animation: orbSpin 15s linear infinite;
}

.r1 { 
  width: 100%; 
  height: 100%; 
  animation-duration: 10s;
  border-color: rgba(255,255,255,0.6);
  box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

.r2 { 
  width: 80%; 
  height: 80%; 
  top: 10%; 
  left: 10%; 
  animation-duration: 15s; 
  animation-direction: reverse;
  border-color: rgba(102, 126, 234, 0.8);
  box-shadow: 0 0 30px rgba(102, 126, 234, 0.4);
}

.r3 { 
  width: 60%; 
  height: 60%; 
  top: 20%; 
  left: 20%; 
  animation-duration: 20s;
  border-color: rgba(236, 72, 153, 0.8);
  box-shadow: 0 0 25px rgba(236, 72, 153, 0.4);
}

.orb-core { 
  position: absolute; 
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%); 
  width: 80px; 
  height: 80px; 
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.1) 100%);
  backdrop-filter: blur(10px);
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 32px;
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 0 40px rgba(255,255,255,0.2);
  animation: coreGlow 3s ease-in-out infinite alternate;
}

@keyframes coreGlow {
  0% { box-shadow: 0 0 40px rgba(255,255,255,0.2); }
  100% { box-shadow: 0 0 60px rgba(102, 126, 234, 0.4), 0 0 80px rgba(236, 72, 153, 0.3); }
}

@keyframes orbSpin { 
  from { transform: rotate(0deg); } 
  to { transform: rotate(360deg); } 
}

/* SECTIONS */
.section { 
  padding: 80px 0;
  position: relative;
}

.section-tag { 
  display: inline-block; 
  background: var(--gradient-main);
  color: white; 
  padding: 6px 16px; 
  border-radius: 20px; 
  font-size: 12px; 
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 2px 10px rgba(30, 64, 175, 0.2);
}

.section-title { 
  font-size: 2.5rem; 
  font-weight: 800; 
  margin-bottom: 16px;
  line-height: 1.2;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--gradient-main);
  border-radius: 2px;
}

.section-sub { 
  font-size: 1.05rem; 
  color: #64748b;
  margin-bottom: 48px;
  line-height: 1.6;
  max-width: 650px;
}

.page-hero { 
  background: var(--gradient-hero);
  color: white; 
  padding: 150px 0 100px; 
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
  animation: pageHeroGlow 6s ease-in-out infinite alternate;
}

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

.page-hero h1 { 
  font-size: 3.5rem; 
  margin-bottom: 20px;
  font-weight: 900;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
  position: relative;
  z-index: 2;
  line-height: 1.3;
}

.page-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

/* ABOUT */
.about-grid { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 80px; 
  align-items: center;
}

.about-text {
  animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
  0% { opacity: 0; transform: translateX(-50px); }
  100% { opacity: 1; transform: translateX(0); }
}

.check-list { 
  margin: 30px 0;
}

.check-list li { 
  display: flex; 
  align-items: center; 
  gap: 15px; 
  margin-bottom: 15px;
  padding: 12px 0;
  transition: all 0.3s ease;
}

.check-list li:hover {
  transform: translateX(10px);
}

.check-list i { 
  color: var(--primary);
  font-size: 18px;
  width: 20px;
}

.about-cards { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 30px;
  animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
  0% { opacity: 0; transform: translateX(50px); }
  100% { opacity: 1; transform: translateX(0); }
}

.mini-card { 
  background: white;
  padding: 30px; 
  border-radius: 20px; 
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(99, 102, 241, 0.1);
  position: relative;
  overflow: hidden;
}

.mini-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
  transition: left 0.6s;
}

.mini-card:hover::before {
  left: 100%;
}

.mini-card:hover { 
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-strong);
  border-color: var(--primary);
}

.mini-card i { 
  font-size: 2.5rem; 
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  display: block;
}

.mini-card h4 { 
  margin-bottom: 12px;
  font-weight: 700;
  color: var(--dark);
}

.mini-card p {
  color: #64748b;
  line-height: 1.6;
}

/* PROGRAMS */
.programs-grid { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 40px; 
  margin-bottom: 60px;
  align-items: stretch;
}

.program-card { 
  background: white;
  padding: 32px; 
  border-radius: 16px; 
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid #e5e7eb;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Program cards on dark backgrounds */
.bg-dark-section .program-card,
.programs-preview .program-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(30, 64, 175, 0.15);
  border-color: #3b82f6;
}

.bg-dark-section .program-card:hover,
.programs-preview .program-card:hover {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
}

.program-icon { 
  width: 60px; 
  height: 60px; 
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  border-radius: 12px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 24px; 
  color: white; 
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(30, 64, 175, 0.2);
  transition: all 0.3s ease;
}

.program-card:hover .program-icon {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.3);
}

.program-badge { 
  display: inline-block; 
  background: #0891b2;
  color: white; 
  padding: 5px 14px; 
  border-radius: 16px; 
  font-size: 11px; 
  font-weight: 600;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.program-card h3 { 
  margin-bottom: 14px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.bg-dark-section .program-card h3,
.programs-preview .program-card h3 {
  color: white;
}

.program-card p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 16px;
  font-size: 14px;
}

.bg-dark-section .program-card p,
.programs-preview .program-card p {
  color: rgba(255,255,255,0.8);
}

.program-card ul { 
  margin: 16px 0;
}

.program-card li { 
  margin-bottom: 8px; 
  padding-left: 20px;
  position: relative;
  font-size: 13px;
  color: #475569;
  line-height: 1.5;
}

.bg-dark-section .program-card li,
.programs-preview .program-card li {
  color: rgba(255,255,255,0.75);
}

.program-card li::before {
  content: '•';
  position: absolute;
  left: 6px;
  color: #0891b2;
  font-weight: bold;
  font-size: 16px;
}

.verticals-row { 
  display: flex; 
  justify-content: center; 
  gap: 20px; 
  flex-wrap: wrap;
}

.vertical-chip { 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 12px 20px; 
  border-radius: 25px; 
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 14px;
}

.vertical-chip:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.15);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

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

.why-card { 
  text-align: center; 
  padding: 32px 24px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
  position: relative;
  overflow: hidden;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(30, 64, 175, 0.12);
  border-color: #3b82f6;
}

.why-icon { 
  width: 70px; 
  height: 70px; 
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 28px; 
  color: white; 
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.2);
  transition: all 0.3s ease;
}

.why-card:hover .why-icon {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(30, 64, 175, 0.25);
}

.why-card h4 { 
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  color: #0f172a;
  line-height: 1.3;
}

.why-card p {
  color: #64748b;
  line-height: 1.6;
  font-size: 13px;
}

/* PROGRAMS PAGE */
/* PROGRAMS PAGE - OVERVIEW */
.program-overview { 
  display: flex; 
  gap: 32px; 
  align-items: flex-start; 
  background: white;
  padding: 40px; 
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(99, 102, 241, 0.1);
}

.po-icon { 
  width: 80px; 
  height: 80px; 
  background: var(--gradient-main);
  border-radius: 16px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 32px; 
  color: white; 
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.program-overview h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--dark);
}

.program-overview p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #64748b;
  margin-bottom: 20px;
}

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

.kf-item { 
  display: flex; 
  align-items: center; 
  gap: 12px;
  padding: 8px 0;
}

.kf-item i { 
  color: var(--primary);
  font-size: 18px;
}

/* PROGRAMS PAGE - SPEC CARDS */
.spec-grid { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 48px;
  align-items: stretch;
}

.spec-card { 
  background: white;
  padding: 40px; 
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(99, 102, 241, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Spec cards on dark backgrounds */
.bg-dark-section .spec-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
}

.spec-num { 
  position: absolute; 
  top: -20px; 
  right: 32px; 
  width: 40px; 
  height: 40px; 
  background: var(--secondary); 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-weight: 700; 
  color: white;
  z-index: 10;
}

.spec-icon { 
  width: 60px; 
  height: 60px; 
  background: var(--gradient-main);
  border-radius: 12px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 24px; 
  color: white; 
  margin-bottom: 24px;
}

.spec-card h4 { 
  margin: 24px 0 16px;
  font-weight: 700;
}

.spec-card ul { 
  margin-bottom: 24px;
}

.spec-card li { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  margin-bottom: 12px;
}

.spec-careers {
  margin-top: auto;
}

.role-tags { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 8px;
}

.role-tags span { 
  background: var(--primary); 
  color: white; 
  padding: 6px 12px; 
  border-radius: 16px; 
  font-size: 12px;
}

/* VERTICALS GRID */
.verticals-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 32px;
  align-items: stretch;
}

.vertical-card { 
  background: white;
  padding: 32px; 
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(99, 102, 241, 0.1);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

/* Vertical cards on dark backgrounds */
.bg-dark-section .vertical-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
}

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

.vc-icon { 
  width: 80px; 
  height: 80px; 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 32px; 
  color: white; 
  margin: 0 auto 24px;
}

.vc-icon.healthcare { 
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
}

.vc-icon.fintech { 
  background: linear-gradient(135deg, #feca57, #ff9ff3);
}

.vc-icon.agri { 
  background: linear-gradient(135deg, #48dbfb, #0abde3);
}

.vertical-card h3 {
  margin-bottom: 16px;
  font-weight: 700;
}

.vertical-card p {
  line-height: 1.6;
  color: #64748b;
}

.bg-dark-section .vertical-card p {
  color: rgba(255,255,255,0.9);
}

/* CAREERS PAGE */
.roles-grid { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 40px;
  align-items: start;
}

.roles-col {
  background: white;
  padding: 0;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.roles-header { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  font-size: 1.2rem; 
  font-weight: 700;
  padding: 24px 28px;
  margin: 0;
  color: white;
}

.roles-header.tech { 
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
}

.roles-header.strategic { 
  background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
}

.roles-list {
  padding: 0 28px 28px;
}

.roles-list li { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  padding: 16px 0; 
  border-bottom: 1px solid #f1f5f9;
  transition: all 0.2s ease;
  color: #475569;
  font-size: 15px;
}

.roles-list li:last-child {
  border-bottom: none;
}

.roles-list li:hover {
  padding-left: 8px;
  color: var(--primary);
}

.roles-list i { 
  color: var(--primary);
  font-size: 12px;
}

/* DOMAINS GRID */
.domains-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 24px;
  align-items: stretch;
}

.domain-card { 
  display: flex; 
  align-items: center; 
  gap: 16px; 
  background: white;
  padding: 24px; 
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  border: 1px solid #e5e7eb;
  transition: all 0.2s ease;
  height: 100%;
}

.domain-card:hover { 
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  border-color: var(--primary);
}

.domain-card i { 
  font-size: 26px; 
  color: var(--primary);
  flex-shrink: 0;
}

.domain-card span {
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
  font-size: 15px;
}

/* ABOUT PAGE SPECIFIC */
.about-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-main-content {
  padding-right: 20px;
}

.about-main-content h2 {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 35px;
  color: var(--dark);
  position: relative;
  display: inline-block;
}

.about-main-content h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--gradient-main);
  border-radius: 2px;
}

.about-main-content p {
  font-size: 1.15rem;
  line-height: 1.9;
  margin-bottom: 28px;
  color: #475569;
  text-align: justify;
}

.about-highlight-box {
  background: white;
  padding: 45px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  border: 2px solid rgba(99, 102, 241, 0.15);
  position: sticky;
  top: 120px;
  transition: all 0.4s ease;
}

.about-highlight-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(99, 102, 241, 0.2);
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  padding: 18px;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, rgba(236, 72, 153, 0.03) 100%);
}

.highlight-item:hover {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(236, 72, 153, 0.08) 100%);
  transform: translateX(5px);
}

.highlight-item:last-child {
  margin-bottom: 0;
}

.highlight-item i {
  width: 55px;
  height: 55px;
  background: var(--gradient-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
  transition: all 0.3s ease;
}

.highlight-item:hover i {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.highlight-item div {
  display: flex;
  flex-direction: column;
}

.highlight-item strong {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 6px;
}

.highlight-item span {
  color: #64748b;
  font-size: 15px;
  line-height: 1.5;
}

/* VISION MISSION CARDS */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}

.vm-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  padding: 50px;
  border-radius: 24px;
  border: 2px solid rgba(255,255,255,0.2);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.vm-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
}

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

.vm-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255,255,255,0.4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.vm-icon {
  width: 75px;
  height: 75px;
  background: var(--gradient-main);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: white;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
  transition: all 0.4s ease;
}

.vm-card:hover .vm-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.6);
}

.vm-card h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.vm-card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
}

.vm-card p {
  font-size: 1.15rem;
  line-height: 1.8;
  opacity: 0.95;
}

.vm-card ul {
  margin-top: 20px;
}

.vm-card li {
  margin-bottom: 16px;
  padding-left: 30px;
  position: relative;
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.95;
  transition: all 0.3s ease;
}

.vm-card li:hover {
  transform: translateX(5px);
  opacity: 1;
}

.vm-card li:before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: bold;
  font-size: 16px;
}

/* Floating shapes for dark section */
.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 20s infinite ease-in-out;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #f093fb, #f5576c);
  top: 60%;
  right: 10%;
  animation-delay: 5s;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  bottom: 20%;
  left: 50%;
  animation-delay: 10s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(30px, -30px) rotate(90deg);
  }
  50% {
    transform: translate(-20px, 20px) rotate(180deg);
  }
  75% {
    transform: translate(40px, 10px) rotate(270deg);
  }
}

/* TECH TAGS */
.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.tech-tags span {
  background: var(--gradient-main);
  color: white;
  padding: 14px 24px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.tech-tags span::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}

.tech-tags span:hover::before {
  left: 100%;
}

.tech-tags span:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.tech-tags span i {
  font-size: 16px;
}

.tech-tag-animate {
  opacity: 0;
  animation: tagFadeIn 0.6s ease-out forwards;
}

@keyframes tagFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* CONTACT PAGE */
.contact-grid { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 64px;
  align-items: start;
}

.contact-info {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(99, 102, 241, 0.1);
}

.contact-info h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 30px;
  color: var(--dark);
}

.ci-item { 
  display: flex; 
  gap: 20px; 
  margin-bottom: 30px;
  padding: 16px 0;
  border-bottom: 1px solid #f1f5f9;
}

.ci-item:last-of-type {
  border-bottom: none;
}

.ci-item i { 
  width: 50px; 
  height: 50px; 
  background: var(--gradient-main);
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  color: white; 
  flex-shrink: 0;
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.ci-item div { 
  display: flex; 
  flex-direction: column;
}

.ci-item strong { 
  font-weight: 700; 
  margin-bottom: 6px;
  font-size: 1.1rem;
  color: var(--dark);
}

.ci-item span { 
  color: #64748b;
  line-height: 1.5;
}

.contact-logos { 
  display: flex; 
  gap: 20px; 
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #f1f5f9;
}

.contact-logos img { 
  height: 50px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
}

.contact-form-wrap {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(99, 102, 241, 0.1);
}

.contact-form { }

.form-row { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 20px;
}

.form-group { 
  margin-bottom: 24px;
}

.form-group label { 
  display: block; 
  margin-bottom: 10px; 
  font-weight: 600;
  color: var(--dark);
  font-size: 15px;
}

.form-group input, 
.form-group select, 
.form-group textarea { 
  width: 100%; 
  padding: 14px 16px; 
  border: 2px solid #e2e8f0; 
  border-radius: 10px; 
  font-family: inherit;
  font-size: 15px;
  transition: all 0.3s ease;
  background: #f8fafc;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus { 
  outline: none; 
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

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

.form-success { 
  background: linear-gradient(135deg, #10b981, #059669);
  color: white; 
  padding: 20px; 
  border-radius: 12px; 
  margin-bottom: 30px; 
  display: flex; 
  align-items: center; 
  gap: 15px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.form-success i {
  font-size: 24px;
}

/* CTA BANNER */
.cta-banner { 
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  color: white; 
  padding: 80px 0; 
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255,255,255,0.1) 0%, transparent 50%);
  animation: ctaGlow 4s ease-in-out infinite alternate;
}

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

.cta-banner h2 { 
  font-size: 2.5rem; 
  margin-bottom: 16px;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
  position: relative;
  z-index: 2;
  line-height: 1.2;
}

.cta-banner p { 
  font-size: 1.05rem; 
  margin-bottom: 32px; 
  opacity: 0.95;
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-banner .btn {
  position: relative;
  z-index: 2;
  font-size: 18px;
  padding: 16px 32px;
}

/* FOOTER */
.site-footer { 
  background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
  color: white;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.footer-main { 
  padding: 80px 0 40px;
  position: relative;
  z-index: 2;
}

.footer-grid { 
  display: grid; 
  grid-template-columns: 2fr 1fr 1fr 1fr; 
  gap: 60px;
}

.footer-brand p {
  color: #cbd5e1;
  line-height: 1.7;
  margin-top: 24px;
}

.footer-logos-container {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-logo { 
  height: 85px;
  width: auto;
  border-radius: 16px;
  transition: all 0.4s ease;
  filter: brightness(0.95) drop-shadow(0 4px 12px rgba(0,0,0,0.3));
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px;
}

.footer-logo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, transparent 100%);
  border-radius: 16px 16px 0 0;
  pointer-events: none;
}

.footer-logo:hover {
  transform: translateY(-8px) scale(1.08);
  filter: brightness(1.15) drop-shadow(0 10px 25px rgba(59, 130, 246, 0.5));
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.3), inset 0 2px 4px rgba(255,255,255,0.3);
}

.footer-accred { 
  margin-top: 30px;
}

.footer-accred img { 
  height: 45px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2));
}

.footer-links h4, 
.footer-programs h4, 
.footer-contact h4 { 
  margin-bottom: 24px; 
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 12px;
}

.footer-links h4::after,
.footer-programs h4::after,
.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gradient-main);
  border-radius: 2px;
}

.footer-links li, 
.footer-programs li { 
  margin-bottom: 14px;
}

.footer-links a, 
.footer-programs a { 
  color: #cbd5e1;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover, 
.footer-programs a:hover { 
  color: white;
  transform: translateX(5px);
}

.footer-contact p { 
  margin-bottom: 16px; 
  display: flex; 
  align-items: flex-start; 
  gap: 12px;
  color: #cbd5e1;
  line-height: 1.6;
}

.footer-contact i { 
  color: var(--secondary);
  margin-top: 3px;
  font-size: 16px;
}

.social-links { 
  display: flex; 
  gap: 12px; 
  margin-top: 30px;
}

.social-links a { 
  width: 45px; 
  height: 45px; 
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  color: white; 
  transition: all 0.3s ease;
  font-size: 18px;
}

.social-links a:hover { 
  background: var(--gradient-main);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
  border-color: transparent;
}

.footer-bottom { 
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 30px 0; 
  text-align: center; 
  color: #94a3b8;
  position: relative;
  z-index: 2;
}

.footer-bottom p {
  font-size: 14px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .hamburger { display: flex !important; z-index: 101; }
  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }
  .nav-links { position: fixed; top: 84px; left: 0; right: 0; background: white; flex-direction: column; padding: 24px; box-shadow: 0 4px 20px rgba(0,0,0,0.1); transform: translateY(-100%); opacity: 0; visibility: hidden; transition: all 0.3s; z-index: 100; }
  .nav-links.active { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-links li { margin-bottom: 16px; width: 100%; }
  .nav-links a { display: block; padding: 12px 0; border-bottom: 1px solid #eee; }
  .header-top .container { flex-direction: column; gap: 8px; text-align: center; }
  .hero { min-height: 70vh; text-align: center; }
  .hero h1 { font-size: 2.5rem; }
  .hero-actions { flex-direction: column; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-visual { display: none; }
  .section { padding: 60px 0; }
  .section-title { font-size: 2rem; }
  .page-hero h1 { font-size: 2.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-cards { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 24px; }
  .program-overview { flex-direction: column; }
  .key-features { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: 1fr; }
  .verticals-grid { grid-template-columns: 1fr; }
  .roles-grid { grid-template-columns: 1fr; }
  .domains-grid { grid-template-columns: 1fr; }
  .about-detail-grid { grid-template-columns: 1fr; }
  .about-highlight-box { position: relative; top: 0; }
  .vm-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .cta-banner h2 { font-size: 2rem; }
}

/* SCROLL ANIMATIONS */
.animate-fade-in {
  animation: fadeIn 1s ease-out;
}

.animate-slide-up {
  animation: slideUp 1s ease-out 0.2s both;
}

.animate-slide-up-delay {
  animation: slideUp 1s ease-out 0.4s both;
}

.reveal-text {
  opacity: 0;
  transform: translateY(30px);
  animation: revealText 0.8s ease-out forwards;
}

.reveal-fade {
  opacity: 0;
  animation: revealFade 0.8s ease-out forwards;
}

.reveal-fade:nth-of-type(2) {
  animation-delay: 0.2s;
}

.reveal-fade:nth-of-type(3) {
  animation-delay: 0.4s;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  animation: revealScale 0.8s ease-out 0.3s forwards;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  animation: revealLeft 0.8s ease-out forwards;
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  animation: revealRight 0.8s ease-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes revealFade {
  to {
    opacity: 1;
  }
}

@keyframes revealScale {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

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