/* index.css - Premium Light Theme (White Background) Redesign with Class Synchronization */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- CUSTOM PROPERTIES --- */
:root {
  --font-title: 'Outfit', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;

  --color-bg-deep: #ffffff;
  --color-bg-dark: #f8fafc;
  --color-bg-card: rgba(255, 255, 255, 0.75);
  
  --color-orange: #f05f26;
  --color-orange-rgb: 240, 95, 38;
  --color-blue: #0c0c3c;
  --color-blue-light: #2563eb;
  --color-blue-light-rgb: 37, 99, 235;

  --color-text-white: #0c0c3c;
  --color-text-muted: #334155;
  --color-text-dim: #94a3b8;
  
  --border-glass: rgba(12, 12, 60, 0.08);
  --border-orange: rgba(240, 95, 38, 0.35);
  --border-blue: rgba(37, 99, 235, 0.35);
  
  --shadow-glow-orange: 0 10px 30px rgba(240, 95, 38, 0.12);
  --shadow-glow-blue: 0 10px 30px rgba(37, 99, 235, 0.08);
  --shadow-card: 0 20px 50px rgba(12, 12, 60, 0.05), 0 4px 12px rgba(0, 0, 0, 0.02);

  --cursor-size: 8px;
  --cursor-ring-size: 40px;
  
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- RESET & BASE --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--color-bg-deep);
  color: var(--color-text-white);
  font-family: var(--font-body);
  font-size: 16px;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  min-height: 100vh;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* SLEEK SCROLLBAR */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-dark);
}
::-webkit-scrollbar-thumb {
  background: rgba(240, 95, 38, 0.3);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-orange);
}

/* --- SUBTLE FILM GRAIN NOISE EFFECT --- */
.noise-overlay {
  position: fixed;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  width: 200%;
  height: 200%;
  background: transparent url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.85" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E') repeat;
  opacity: 0.028;
  pointer-events: none;
  z-index: 999;
  animation: grain 8s steps(10) infinite;
}

@keyframes grain {
  0%, 100% { transform:translate(0, 0); }
  10% { transform:translate(-5%, -10%); }
  20% { transform:translate(-15%, 5%); }
  30% { transform:translate(7%, -25%); }
  40% { transform:translate(-5%, 25%); }
  50% { transform:translate(-15%, 10%); }
  65% { transform:translate(15%, -10%); }
  75% { transform:translate(-15%, 25%); }
  85% { transform:translate(15%, -15%); }
  95% { transform:translate(5%, 10%); }
}

/* --- GLOW EFFECTS --- */
#glow-effects {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.radial-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.18;
  mix-blend-mode: multiply;
}
.glow-1 {
  top: -10%;
  right: -5%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(var(--color-orange-rgb), 0.28) 0%, transparent 70%);
}
.glow-2 {
  bottom: -10%;
  left: -10%;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(var(--color-blue-light-rgb), 0.25) 0%, transparent 70%);
}

/* --- CUSTOM CURSOR --- */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--cursor-size);
  height: var(--cursor-size);
  background-color: var(--color-orange);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: width 0.35s cubic-bezier(0.19, 1, 0.22, 1), height 0.35s cubic-bezier(0.19, 1, 0.22, 1), background-color 0.3s ease;
}

.custom-cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--cursor-ring-size);
  height: var(--cursor-ring-size);
  border: 1px solid rgba(12, 12, 60, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9998;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1), height 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, background-color 0.3s ease;
}

body.hovering-link .custom-cursor {
  width: 12px;
  height: 12px;
  background-color: var(--color-blue-light);
}
body.hovering-link .custom-cursor-ring {
  width: 60px;
  height: 60px;
  border-color: rgba(var(--color-blue-light-rgb), 0.35);
  background-color: rgba(var(--color-blue-light-rgb), 0.03);
}

body.hovering-button .custom-cursor {
  width: 0;
  height: 0;
}
body.hovering-button .custom-cursor-ring {
  width: 75px;
  height: 75px;
  border-color: var(--color-orange);
  background-color: rgba(var(--color-orange-rgb), 0.05);
}

/* --- CANVAS BACKGROUND --- */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
}

/* --- PRELOADER --- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at center, #ffffff 0%, #f8fafc 100%);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

#preloader.fade-out {
  opacity: 0;
  transform: scale(1.08);
  filter: blur(15px);
  pointer-events: none;
}

.preload-logo-wrap {
  width: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}

.preload-logo-container {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preload-logo-glow-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2.5px dashed rgba(240, 95, 38, 0.18);
  border-top-color: var(--color-orange);
  border-bottom-color: var(--color-blue-light);
  animation: spinRing 4s linear infinite;
  box-shadow: 
    0 0 30px rgba(240, 95, 38, 0.08), 
    inset 0 0 30px rgba(37, 99, 235, 0.05);
}

.preload-logo-img {
  max-width: 110px;
  height: auto;
  object-fit: contain;
  z-index: 2;
  animation: floatLogo 3s ease-in-out infinite;
  filter: drop-shadow(0 15px 30px rgba(12, 12, 60, 0.12));
}

@keyframes spinRing {
  0% { transform: rotate(0deg) scale(0.96); }
  50% { transform: rotate(180deg) scale(1.04); }
  100% { transform: rotate(360deg) scale(0.96); }
}

@keyframes floatLogo {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.03); }
}

.preload-percentage {
  font-family: var(--font-title);
  font-size: 5rem;
  font-weight: 800;
  color: var(--color-text-white);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -3px;
  text-shadow: 0 5px 15px rgba(12, 12, 60, 0.04);
}

.preload-bar-bg {
  width: 250px;
  height: 3px;
  background: rgba(12, 12, 60, 0.06);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.03);
}

.preload-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--color-blue-light), var(--color-orange));
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(240, 95, 38, 0.6), 0 0 20px rgba(37, 99, 235, 0.4);
  transition: width 0.08s ease-out;
}

.preload-subtitle {
  margin-top: 22px;
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  opacity: 0.85;
}

/* --- TYPOGRAPHY & HYBRID STYLING --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.highlight {
  color: var(--color-orange);
  text-shadow: 0 0 20px rgba(var(--color-orange-rgb), 0.1);
}

.highlight-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  text-transform: lowercase;
  color: var(--color-orange);
  letter-spacing: -0.5px;
}

p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}

@media(max-width: 768px) {
  .container {
    padding: 0 30px;
  }
}

/* --- BUTTONS --- */
.btn-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  color: white;
  background: linear-gradient(135deg, var(--color-orange), #ff743b);
  box-shadow: 0 10px 25px rgba(var(--color-orange-rgb), 0.2);
  z-index: 1;
}

.btn-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ff743b, var(--color-orange));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.btn-gradient:hover {
  box-shadow: 0 15px 35px rgba(var(--color-orange-rgb), 0.35);
  transform: translateY(-3px);
}

.btn-gradient:hover::before {
  opacity: 1;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 35px;
  border-radius: 50px;
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  cursor: pointer;
  background: rgba(12, 12, 60, 0.02);
  border: 1px solid var(--border-glass);
  color: var(--color-text-white);
  transition: var(--transition-smooth);
}

.btn-outline:hover {
  background: rgba(12, 12, 60, 0.05);
  border-color: rgba(12, 12, 60, 0.18);
  transform: translateY(-3px);
}

/* --- HEADER & NAVIGATION --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: var(--transition-smooth);
}

header.scrolled {
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
}

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

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  height: 38px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

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

.logo-title {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1;
}
.logo-title span.orange {
  color: var(--color-orange);
}
.logo-title span.blue {
  color: var(--color-text-white);
}

.logo-subtitle {
  font-family: var(--font-title);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-text-dim);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
}

nav a {
  text-decoration: none;
  color: var(--color-text-muted);
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition-fast);
  position: relative;
  padding: 6px 0;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--color-orange);
  transition: var(--transition-fast);
  transform: translateX(-50%);
}

nav a:hover {
  color: var(--color-orange);
}

nav a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
  padding: 0;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-text-white);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* Hamburger to X transition */
.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media(max-width: 991px) {
  .mobile-menu-btn {
    display: flex;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    border-left: 1px solid var(--border-glass);
    box-shadow: -10px 0 40px rgba(12, 12, 60, 0.05);
    padding: 120px 40px 40px 40px;
    transition: var(--transition-smooth);
    z-index: 99;
  }
  
  nav.active {
    right: 0;
  }
  
  nav ul {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }
  
  nav a {
    font-size: 1.3rem;
  }
}

/* --- HERO SECTION --- */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 150px;
  padding-bottom: 100px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

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

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(var(--color-orange-rgb), 0.28);
  color: var(--color-orange);
  font-family: var(--font-title);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  z-index: 10;
  margin-bottom: 25px;
  box-shadow: 
    0 8px 24px rgba(var(--color-orange-rgb), 0.06), 
    inset 0 1.5px 1px rgba(255, 255, 255, 1);
  transition: var(--transition-fast);
}

.hero-badge:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 12px 30px rgba(var(--color-orange-rgb), 0.1), 
    inset 0 1.5px 1px rgba(255, 255, 255, 1);
  border-color: rgba(var(--color-orange-rgb), 0.45);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-orange);
  display: inline-block;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(var(--color-orange-rgb), 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(var(--color-orange-rgb), 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(var(--color-orange-rgb), 0); }
}

.hero-title {
  font-size: 5.4rem;
  line-height: 0.95;
  margin-bottom: 30px;
  font-weight: 800;
}

.hero-title span {
  display: block;
}

@media(max-width: 1200px) {
  .hero-title {
    font-size: 4.2rem;
  }
}
@media(max-width: 576px) {
  .hero-title {
    font-size: 3.2rem;
  }
}

.hero-desc {
  font-size: 1.25rem;
  margin-bottom: 45px;
  max-width: 580px;
  color: var(--color-text-muted);
}

.hero-actions {
  display: flex;
  gap: 24px;
}

@media(max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    gap: 15px;
  }
}

/* 3D Centerpiece Card */
.hero-visual {
  position: relative;
  perspective: 1200px;
  width: 100%;
  height: 520px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media(max-width: 991px) {
  .hero-visual {
    height: 420px;
  }
}

.tilt-card {
  width: 100%;
  max-width: 580px; /* increased to fit orbits and slideshow */
  height: 620px; /* adjusted to contain elements comfortably */
  background: var(--color-bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 28px;
  backdrop-filter: blur(25px);
  position: relative;
  overflow: hidden;
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-card);
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
}

.tilt-card-bg {
  position: absolute;
  top: -30%;
  right: -30%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(var(--color-orange-rgb), 0.15) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.tilt-card-eco-bg-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.65;
  mix-blend-mode: multiply;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transform: translateZ(15px);
}

.eco-bg-img {
  width: 110%;
  height: 110%;
  object-fit: cover;
  transform: scale(0.95);
  transition: var(--transition-smooth);
}

.tilt-card:hover .eco-bg-img {
  transform: scale(1.0);
}

/* --- INTERACTIVE TALENT ECOSYSTEM --- */
.eco-system-wrap {
  position: relative;
  width: 100%;
  height: 390px; /* increased to prevent outer orbit overflow */
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateZ(50px);
  z-index: 2;
  margin-top: 10px;
}

.eco-orbit {
  position: absolute;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.orbit-inner {
  width: 270px; /* scaled up to clear slideshow */
  height: 270px;
  border: 1px dashed rgba(12, 12, 60, 0.12);
  animation: spinOrbit 30s linear infinite;
}

.orbit-outer {
  width: 390px; /* scaled up to clear slideshow */
  height: 390px;
  border: 1px dashed rgba(12, 12, 60, 0.08);
  animation: spinOrbitAnti 45s linear infinite;
}

/* Pause animations on hover */
.eco-system-wrap.paused .eco-orbit,
.eco-system-wrap.paused .eco-node {
  animation-play-state: paused !important;
}

.eco-center-slideshow {
  position: absolute;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: #ffffff;
  border: 4px solid rgba(255, 255, 255, 0.9);
  box-shadow: 
    0 15px 40px rgba(12, 12, 60, 0.15),
    0 4px 10px rgba(0, 0, 0, 0.05),
    inset 0 2px 5px rgba(0, 0, 0, 0.06);
  z-index: 10;
  overflow: hidden;
  transform: translateZ(30px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.eco-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
  pointer-events: none;
  z-index: 1;
}

.eco-slide.active {
  opacity: 1;
  transform: scale(1.0);
  z-index: 2;
}

.eco-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide-badge {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%) translateZ(10px);
  background: rgba(12, 12, 60, 0.78);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-family: var(--font-title);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 12px;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: var(--transition-fast);
}

.slideshow-glow-ring {
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: linear-gradient(135deg, var(--color-orange), var(--color-blue-light)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 11;
  animation: rotateGlowRing 10s linear infinite;
  box-shadow: 0 0 20px rgba(var(--color-orange-rgb), 0.2);
  transform: translateZ(35px);
}

@keyframes rotateGlowRing {
  0% { transform: translateZ(35px) rotate(0deg); }
  100% { transform: translateZ(35px) rotate(360deg); }
}

/* Ecosystem Nodes */
.eco-node {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(12, 12, 60, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(12, 12, 60, 0.04);
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: auto;
  user-select: none;
}

.eco-node svg {
  flex-shrink: 0;
}

.eco-node span {
  font-family: var(--font-title);
}

/* Inner Orbit Nodes */
.orbit-inner .eco-node {
  padding: 8px 14px;
  border-radius: 20px;
  gap: 8px;
  color: var(--color-blue);
  animation: counterSpin 30s linear infinite;
  z-index: 5;
}

.orbit-inner .eco-node span {
  font-size: 0.75rem;
  font-weight: 700;
}

/* Inner Nodes positioning (120deg offsets) */
.node-candidates {
  left: 50%;
  top: 0%;
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 
    0 6px 20px rgba(37, 99, 235, 0.08),
    inset 0 1px 1px white;
}
.node-candidates svg {
  color: var(--color-blue-light);
}

.node-colleges {
  left: 15%;
  top: 80%;
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 
    0 6px 20px rgba(16, 185, 129, 0.08),
    inset 0 1px 1px white;
}
.node-colleges svg {
  color: #10b981;
}

.node-companies {
  left: 85%;
  top: 80%;
  border-color: rgba(240, 95, 38, 0.3);
  box-shadow: 
    0 6px 20px rgba(var(--color-orange-rgb), 0.08),
    inset 0 1px 1px white;
}
.node-companies svg {
  color: var(--color-orange);
}

/* Outer Orbit Nodes */
.orbit-outer .eco-node {
  padding: 6px 12px;
  border-radius: 20px;
  gap: 6px;
  color: var(--color-text-muted);
  animation: counterSpinAnti 45s linear infinite;
  z-index: 4;
}

.orbit-outer .eco-node span {
  font-size: 0.65rem;
  font-weight: 600;
}

/* Outer Nodes positioning (90deg offsets) */
.node-assessments {
  left: 50%;
  top: 0%;
}
.node-training {
  left: 100%;
  top: 50%;
}
.node-placements {
  left: 50%;
  top: 100%;
}
.node-hiring {
  left: 0%;
  top: 50%;
}

/* Node Hover styles */
.eco-node:hover {
  transform: translate(-50%, -50%) translateZ(85px) scale(1.12) !important;
  border-color: var(--color-orange) !important;
  color: var(--color-orange) !important;
  box-shadow: 0 10px 25px rgba(var(--color-orange-rgb), 0.15) !important;
  background: #ffffff !important;
  z-index: 20;
}

.eco-node:hover svg {
  color: var(--color-orange) !important;
}

/* Ecosystem Tooltip Panel */
.eco-tooltip-panel {
  transform: translateZ(75px);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 15px 22px;
  width: 100%;
  min-height: 80px;
  box-shadow: 0 4px 15px rgba(12, 12, 60, 0.02);
  z-index: 3;
  margin-top: 10px;
  margin-bottom: 5px;
}

.eco-tooltip-inner h4 {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-orange);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.eco-tooltip-inner p {
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--color-text-muted);
}

/* Rotation keyframes */
@keyframes spinOrbit {
  0% { transform: translateZ(45px) rotate(0deg); }
  100% { transform: translateZ(45px) rotate(360deg); }
}

@keyframes spinOrbitAnti {
  0% { transform: translateZ(45px) rotate(360deg); }
  100% { transform: translateZ(45px) rotate(0deg); }
}

@keyframes counterSpin {
  0% { transform: translate(-50%, -50%) translateZ(65px) rotate(360deg); }
  100% { transform: translate(-50%, -50%) translateZ(65px) rotate(0deg); }
}

@keyframes counterSpinAnti {
  0% { transform: translate(-50%, -50%) translateZ(65px) rotate(0deg); }
  100% { transform: translate(-50%, -50%) translateZ(65px) rotate(360deg); }
}

.tilt-card-layer-2 {
  transform: translateZ(80px);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-glass);
  margin: 0 -35px -35px -35px; /* extend footer to touch card boundaries */
  padding: 25px 35px;
  border-bottom-left-radius: 27px;
  border-bottom-right-radius: 27px;
  z-index: 10;
}

.tilt-card-layer-2 h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
  line-height: 1.2;
  color: var(--color-blue);
}

.tilt-card-layer-2 p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 80px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--color-text-dim);
  font-family: var(--font-title);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 10;
}

.scroll-line {
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, var(--color-text-dim), transparent);
}

/* --- STATISTICS SECTION --- */
#stats {
  padding: 80px 0;
  background: var(--color-bg-dark);
  border-top: 1px solid rgba(12, 12, 60, 0.05);
  border-bottom: 1px solid rgba(12, 12, 60, 0.05);
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  text-align: center;
}

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

.stat-item {
  position: relative;
}

.stat-number {
  font-family: var(--font-title);
  font-size: 4.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-text-white) 40%, var(--color-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -2px;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-text-muted);
}

/* --- AUDIENCE PATH SECTION --- */
#audience-path {
  padding: 100px 0 60px 0;
  position: relative;
  z-index: 2;
}

.section-head {
  margin-bottom: 60px;
}

.audience-tabs {
  display: flex;
  gap: 30px;
  margin-top: 0;
  margin-bottom: 60px;
  border-bottom: 1px solid rgba(12, 12, 60, 0.06);
  padding-bottom: 20px;
}

.audience-section-head {
  margin-top: 80px;
  margin-bottom: 0 !important;
}

.aud-tab {
  background: none;
  border: none;
  color: var(--color-text-dim);
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
  padding: 10px 0;
  position: relative;
  transition: var(--transition-fast);
}

.aud-tab::after {
  content: '';
  position: absolute;
  bottom: -21px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--color-orange);
  transition: var(--transition-fast);
}

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

.aud-tab.active::after {
  width: 100%;
}

.audience-panels {
  position: relative;
  min-height: 450px;
}

.aud-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.aud-panel.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  position: relative;
}

@media(max-width: 991px) {
  .aud-panel {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.aud-panel-content h3 {
  font-size: 2.8rem;
  margin-bottom: 25px;
}

.aud-panel-content p {
  font-size: 1.15rem;
  margin-bottom: 40px;
}

.feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 50px;
}

@media(max-width: 480px) {
  .feature-list {
    grid-template-columns: 1fr;
  }
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1rem;
  color: var(--color-text-white);
}

.feature-item svg {
  color: var(--color-orange);
  flex-shrink: 0;
}

.aud-panel-visual {
  overflow: visible;
  box-shadow: 0 20px 45px rgba(12, 12, 60, 0.08);
  position: relative;
  height: 420px;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: morphShape 12s ease-in-out infinite alternate;
  border: 2px solid rgba(12, 12, 60, 0.08);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.morph-image {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
  position: relative;
  transform: translateZ(10px);
}

.aud-panel:nth-child(2) .aud-panel-visual {
  animation-delay: 3s;
}

.aud-panel-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.0s cubic-bezier(0.16, 1, 0.3, 1);
}

.aud-panel-visual:hover img {
  transform: translateZ(20px) scale(1.08);
}

.aud-visual-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 10px 18px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 25px rgba(12, 12, 60, 0.12);
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-blue);
  transform: translateZ(45px); /* floats 45px in front of image */
  pointer-events: none;
  z-index: 5;
  transition: var(--transition-fast);
}

.badge-top-right {
  top: 40px;
  right: -10px;
  border-left: 3px solid var(--color-orange);
}

.badge-bottom-left {
  bottom: 40px;
  left: -10px;
  border-left: 3px solid var(--color-blue-light);
}

@keyframes morphShape {
  0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  50% { border-radius: 35% 60% 65% 40% / 50% 60% 35% 55%; }
  100% { border-radius: 50% 50% 30% 70% / 40% 40% 60% 60%; }
}

/* --- COURSES SECTION --- */
#courses {
  padding: 60px 0;
  position: relative;
  z-index: 2;
}

.section-head {
  margin-bottom: 60px;
}

.section-tag {
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-orange);
  margin-bottom: 20px;
  display: inline-block;
  position: relative;
}

.section-tag::before {
  content: '[';
  margin-right: 4px;
  color: var(--color-text-dim);
}
.section-tag::after {
  content: ']';
  margin-left: 4px;
  color: var(--color-text-dim);
}

.section-title {
  font-size: 3.5rem;
  margin-bottom: 25px;
  line-height: 1.05;
  font-weight: 800;
  color: var(--color-text-white);
}

.section-desc {
  max-width: 650px;
  margin-bottom: 0;
  font-size: 1.15rem;
  color: var(--color-text-muted);
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

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

.course-card {
  background: var(--color-bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 28px;
  padding: 45px 35px;
  backdrop-filter: blur(20px);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-card);
  min-height: 520px;
  transform-style: preserve-3d;
}

.course-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), transparent);
  pointer-events: none;
}

.course-card-glow {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(var(--color-orange-rgb), 0.12) 0%, transparent 70%);
  filter: blur(25px);
  pointer-events: none;
  transition: var(--transition-smooth);
}

.course-card:hover {
  border-color: var(--border-orange);
  box-shadow: var(--shadow-glow-orange), var(--shadow-card);
  background: #ffffff;
}

.course-card:hover .course-card-glow {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(var(--color-orange-rgb), 0.22) 0%, transparent 70%);
}

.course-icon-wrap {
  width: 65px;
  height: 65px;
  background: rgba(var(--color-orange-rgb), 0.05);
  border: 1px solid rgba(var(--color-orange-rgb), 0.18);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 35px;
  color: var(--color-orange);
}

.course-card.blue-accent .course-icon-wrap {
  background: rgba(var(--color-blue-light-rgb), 0.05);
  border: 1px solid rgba(var(--color-blue-light-rgb), 0.18);
  color: var(--color-blue-light);
}

.course-card.blue-accent:hover {
  border-color: var(--border-blue);
  box-shadow: var(--shadow-glow-blue), var(--shadow-card);
  background: #ffffff;
}

.course-card.blue-accent .course-card-glow {
  background: radial-gradient(circle, rgba(var(--color-blue-light-rgb), 0.12) 0%, transparent 70%);
}

.course-card.blue-accent:hover .course-card-glow {
  background: radial-gradient(circle, rgba(var(--color-blue-light-rgb), 0.22) 0%, transparent 70%);
}

.course-title {
  font-size: 1.8rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.course-desc {
  font-size: 1rem;
  margin-bottom: 30px;
}

.course-syllabus {
  list-style: none;
  margin-bottom: 35px;
}

.course-syllabus li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--color-text-white);
  margin-bottom: 10px;
}

.course-syllabus li svg {
  color: #10b981;
  flex-shrink: 0;
}

.course-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(12, 12, 60, 0.05);
  padding-top: 25px;
  margin-top: auto;
}

.course-duration {
  font-size: 0.85rem;
  font-family: var(--font-title);
  color: var(--color-text-dim);
  font-weight: 600;
  letter-spacing: 2px;
}

.course-link {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-orange);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.course-card.blue-accent .course-link {
  color: var(--color-blue-light);
}

.course-link:hover {
  gap: 12px;
}

/* --- COURSE VISUAL HEADERS --- */
.course-visual-header {
  position: relative;
  height: 200px;
  margin: -45px -35px 25px -35px;
  border-top-left-radius: 27px;
  border-top-right-radius: 27px;
  overflow: hidden;
  transform: translateZ(20px);
}

.course-visual-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.course-card:hover .course-visual-header img {
  transform: scale(1.08);
}

.course-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(12, 12, 60, 0.15), rgba(12, 12, 60, 0.45));
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 15px;
}

.course-status-badge {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 6px 12px;
  border-radius: 12px;
  font-family: var(--font-title);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition-fast);
}

.course-card.blue-accent .course-status-badge {
  border-left: 2.5px solid var(--color-blue-light);
}

.course-card:not(.blue-accent) .course-status-badge {
  border-left: 2.5px solid var(--color-orange);
}

/* --- PLACEMENTS SECTION --- */
#placements {
  padding: 60px 0;
  position: relative;
  z-index: 2;
}

.marquee-wrap {
  width: 100%;
  overflow: hidden;
  margin-bottom: 120px;
  position: relative;
}

.marquee-wrap::before,
.marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  width: 200px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--color-bg-deep), transparent);
}

.marquee-wrap::after {
  right: 0;
  background: linear-gradient(270deg, var(--color-bg-deep), transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scrollMarquee 35s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  gap: 100px;
  padding-right: 100px;
  align-items: center;
}

.marquee-logo {
  height: 60px;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.marquee-logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.85;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease, opacity 0.4s ease;
  display: block;
}

/* Individual branding hover actual colors and premium neon glows */
.logo-techm:hover img { transform: scale(1.15) translateY(-2px); opacity: 1; filter: drop-shadow(0 0 10px rgba(227, 27, 35, 0.45)); }
.logo-capgemini:hover img { transform: scale(1.15) translateY(-2px); opacity: 1; filter: drop-shadow(0 0 10px rgba(0, 176, 255, 0.45)); }
.logo-tcs:hover img { transform: scale(1.15) translateY(-2px); opacity: 1; filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.45)); }
.logo-cognizant:hover img { transform: scale(1.15) translateY(-2px); opacity: 1; filter: drop-shadow(0 0 10px rgba(0, 181, 226, 0.45)); }
.logo-wipro:hover img { transform: scale(1.15) translateY(-2px); opacity: 1; filter: drop-shadow(0 0 10px rgba(171, 71, 188, 0.45)); }
.logo-ltim:hover img { transform: scale(1.15) translateY(-2px); opacity: 1; filter: drop-shadow(0 0 10px rgba(240, 95, 38, 0.45)); }
.logo-infosys:hover img { transform: scale(1.15) translateY(-2px); opacity: 1; filter: drop-shadow(0 0 10px rgba(0, 124, 195, 0.45)); }
.logo-atos:hover img { transform: scale(1.15) translateY(-2px); opacity: 1; filter: drop-shadow(0 0 10px rgba(0, 102, 161, 0.45)); }
.logo-yash:hover img { transform: scale(1.15) translateY(-2px); opacity: 1; filter: drop-shadow(0 0 10px rgba(0, 86, 145, 0.45)); }


/* Seamless loop animation */
@keyframes scrollMarquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* Testimonials Carousel */
.testimonials-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: center;
}

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

.testimonials-intro {
  background: var(--color-bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 28px;
  padding: 50px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
}

.testimonials-intro h3 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.testimonials-intro p {
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.carousel-arrows {
  display: flex;
  gap: 15px;
}

.carousel-arrow {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(12, 12, 60, 0.02);
  border: 1px solid var(--border-glass);
  color: var(--color-text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.carousel-arrow:hover {
  background: var(--color-orange);
  border-color: var(--color-orange);
  box-shadow: 0 5px 20px rgba(var(--color-orange-rgb), 0.25);
  color: white;
  transform: scale(1.06);
}

.testimonials-carousel {
  position: relative;
  overflow: hidden;
  height: 320px;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  transform: translateX(50px) scale(0.96);
  filter: blur(8px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 1;
}

.testimonial-slide.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: blur(0);
  pointer-events: auto;
  z-index: 2;
}

.testimonial-slide.exit {
  opacity: 0;
  transform: translateX(-50px) scale(0.96);
  filter: blur(8px);
  z-index: 0;
}

/* Staggered slide reveals for quote and author details */
.testimonial-slide p {
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
}

.testimonial-slide.active p {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.12s;
}

.testimonial-slide .testimonial-author {
  transform: translateY(15px);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
}

.testimonial-slide.active .testimonial-author {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.25s;
}

.testimonials-carousel p {
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--color-text-white);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 20px;
  border-top: 1px solid rgba(12, 12, 60, 0.05);
  padding-top: 25px;
}

.test-avatar {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--color-orange), var(--color-blue-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.25rem;
  color: white;
}

.testimonial-author h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.testimonial-author span {
  font-size: 0.85rem;
  color: var(--color-orange);
  font-weight: 600;
  letter-spacing: 1px;
  display: block;
}

/* --- ABOUT US SECTION --- */
#about {
  padding: 140px 0;
  position: relative;
  z-index: 2;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

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

.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 3px;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-orange), var(--color-blue-light), transparent);
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 6px;
  left: -42px;
  width: 8px;
  height: 8px;
  background-color: var(--color-bg-deep);
  border: 2px solid var(--color-orange);
  border-radius: 50%;
  z-index: 2;
  transition: var(--transition-fast);
}

.timeline-item:hover::before {
  background-color: var(--color-orange);
  box-shadow: 0 0 12px var(--color-orange);
}

.timeline-year {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-orange);
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.timeline-item h4 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.timeline-item p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* --- CONTACT & CAREER SECTION --- */
#contact {
  padding: 140px 0 180px 0;
  position: relative;
  z-index: 2;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.11fr;
  gap: 80px;
}

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

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

.contact-card {
  background: var(--color-bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 35px;
  display: flex;
  align-items: flex-start;
  gap: 25px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
}

.contact-card:hover {
  border-color: rgba(12, 12, 60, 0.15);
  transform: translateY(-3px);
}

.contact-icon {
  width: 55px;
  height: 55px;
  border-radius: 16px;
  background: rgba(var(--color-orange-rgb), 0.05);
  border: 1px solid rgba(var(--color-orange-rgb), 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-orange);
  flex-shrink: 0;
}

.contact-card:nth-child(2) .contact-icon {
  background: rgba(var(--color-blue-light-rgb), 0.05);
  border: 1px solid rgba(var(--color-blue-light-rgb), 0.18);
  color: var(--color-blue-light);
}

.contact-card:nth-child(3) .contact-icon {
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.18);
  color: #10b981;
}

.contact-card h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.contact-card p,
.contact-card a {
  font-size: 1rem;
  color: var(--color-text-muted);
  text-decoration: none;
}

.contact-card a:hover {
  color: var(--color-orange);
}

/* Glass Contact Form */
.contact-form-wrap {
  background: var(--color-bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 28px;
  padding: 55px;
  backdrop-filter: blur(25px);
  box-shadow: var(--shadow-card);
}

@media(max-width: 576px) {
  .contact-form-wrap {
    padding: 35px;
  }
}

.form-heading {
  font-size: 2.2rem;
  margin-bottom: 35px;
}

.form-group {
  margin-bottom: 30px;
  position: relative;
}

.form-group label {
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-text-muted);
  margin-bottom: 10px;
  display: block;
}

.form-input {
  width: 100%;
  background: rgba(12, 12, 60, 0.015);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  padding: 16px 22px;
  color: var(--color-text-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-input:focus {
  outline: none;
  background: rgba(12, 12, 60, 0.03);
  border-color: rgba(var(--color-orange-rgb), 0.6);
  box-shadow: 0 0 20px rgba(var(--color-orange-rgb), 0.08);
}

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

.form-status {
  margin-top: 20px;
  font-size: 0.95rem;
  display: none;
  line-height: 1.5;
}

.form-status.success {
  color: #10b981;
}

.form-status.error {
  color: #ef4444;
}

/* --- FOOTER (Deep Balancing Navy) --- */
footer {
  background: #060618;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  padding: 100px 0 50px 0;
  position: relative;
  z-index: 10;
  color: #f8fafc;
}

footer .logo-icon {
  height: 52px;
  border-radius: 8px;
}

footer .logo-title {
  font-size: 2.1rem;
}

footer .logo-title span.blue {
  color: #f8fafc;
}

footer .logo-subtitle {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
  letter-spacing: 4px;
}

footer p {
  color: #94a3b8;
}

footer a {
  color: #94a3b8;
  text-decoration: none;
  transition: var(--transition-fast);
}

footer a:hover {
  color: var(--color-orange);
}

.footer-brand p {
  margin-top: 25px;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr;
  gap: 50px;
  margin-bottom: 80px;
}

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

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

.footer-col h4 {
  font-size: 1.15rem;
  margin-bottom: 30px;
  position: relative;
  letter-spacing: 1px;
  color: #ffffff;
}

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

.footer-col li {
  margin-bottom: 15px;
}

.footer-subscribe p {
  font-size: 0.95rem;
  margin-bottom: 25px;
}

.subscribe-form {
  display: flex;
  gap: 12px;
}

.subscribe-form .form-input {
  border-radius: 40px;
  padding: 14px 22px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
}

.subscribe-form .form-input:focus {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(var(--color-orange-rgb), 0.5);
}

.btn-subscribe {
  padding: 14px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--color-orange), #ff743b);
  border: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-subscribe:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(var(--color-orange-rgb), 0.3);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media(max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }
}

.footer-copy {
  font-size: 0.85rem;
  color: #64748b;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-link:hover {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: white;
  transform: translateY(-3px);
}

/* --- SCROLL REVEAL & SPLIT TEXT ANIMATIONS --- */
.reveal, [data-reveal], [data-split] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.0s cubic-bezier(0.16, 1, 0.3, 1), transform 1.0s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed, [data-reveal].revealed, [data-split].revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.2s; }
.reveal-delay-2 { transition-delay: 0.4s; }
.reveal-delay-3 { transition-delay: 0.6s; }

[data-split].revealed .split-word,
[data-split].revealed .split-line-inner {
  transform: translateY(0) !important;
}

/* --- EVENTS & OPPORTUNITIES SECTION --- */
#events {
  padding: 60px 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.events-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

@media(max-width: 768px) {
  .events-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 30px;
  }
}

.events-slider-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 10px 0 30px 0;
}

.events-slider-track {
  display: flex;
  gap: 30px;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  width: max-content;
}

.event-card {
  width: 380px;
  flex-shrink: 0;
  background: var(--color-bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transform-style: preserve-3d;
  height: 540px;
}

.event-card:hover {
  border-color: var(--border-orange);
  box-shadow: var(--shadow-glow-orange), var(--shadow-card);
}

.event-image-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  border-radius: 23px 23px 0 0;
}

.event-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.event-card:hover .event-image-wrap img {
  transform: scale(1.08);
}

.event-category-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(12, 12, 60, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  padding: 6px 14px;
  border-radius: 30px;
  font-family: var(--font-title);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.event-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}

.event-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

.event-location-tag {
  font-family: var(--font-title);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 30px;
  font-size: 0.7rem;
}

.tag-hybrid {
  background: rgba(240, 95, 38, 0.1);
  color: var(--color-orange);
  border: 1px solid rgba(240, 95, 38, 0.2);
}

.tag-online {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.tag-offline {
  background: rgba(100, 116, 139, 0.1);
  color: #64748b;
  border: 1px solid rgba(100, 116, 139, 0.2);
}

.event-date {
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.event-date svg {
  color: var(--color-text-dim);
}

.event-card-title {
  font-size: 1.25rem;
  color: var(--color-text-white);
  line-height: 1.3;
  font-weight: 700;
  margin: 0;
  height: 3.25em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.event-card-desc {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  margin: 0;
  height: 4.5em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.event-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-glass);
  padding-top: 16px;
  margin-top: auto;
}

.event-organizer {
  font-size: 0.82rem;
  color: var(--color-text-dim);
  font-weight: 500;
}

.event-spots-badge {
  font-size: 0.82rem;
  color: var(--color-orange);
  font-weight: 700;
}

.event-register-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(12, 12, 60, 0.03);
  border: 1px solid var(--border-glass);
  color: var(--color-text-white);
  padding: 12px;
  border-radius: 50px;
  text-decoration: none;
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-fast);
  margin-top: 10px;
}

.event-register-btn:hover {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: white;
}

.event-register-btn svg {
  transition: transform 0.3s ease;
}

.event-register-btn:hover svg {
  transform: translateX(4px);
}

@media(max-width: 576px) {
  .event-card {
    width: 300px;
    height: 520px;
  }
  .event-card-title {
    font-size: 1.15rem;
  }
}

/* =========================================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ========================================================= */

/* --- HIDE DESKTOP-ONLY ELEMENTS ON MOBILE --- */
@media(max-width: 991px) {
  /* Hide custom cursor on touch devices */
  .custom-cursor,
  .custom-cursor-ring {
    display: none !important;
  }
  /* Hide scroll indicator */
  .scroll-indicator {
    display: none;
  }
}

/* --- PRELOADER — MOBILE CENTERED & RESPONSIVE --- */
@media(max-width: 576px) {
  #preloader {
    padding: 30px 20px;
  }
  .preload-logo-container {
    width: 140px;
    height: 140px;
  }
  .preload-logo-img {
    max-width: 85px;
  }
  .preload-percentage {
    font-size: 3.8rem;
    letter-spacing: -2px;
  }
  .preload-bar-bg {
    width: 200px;
  }
  .preload-subtitle {
    font-size: 0.72rem;
    letter-spacing: 3px;
  }
}

/* --- HEADER / NAV — MOBILE --- */
@media(max-width: 991px) {
  header {
    padding: 18px 0;
  }
  header.scrolled {
    padding: 12px 0;
  }
  .header-actions .btn-gradient {
    display: none; /* Hide Apply Now button on tablet/mobile */
  }
  /* Ensure nav overlay doesn't show "Apply Now" duplicate */
  nav .btn-gradient {
    display: none;
  }
}

@media(max-width: 576px) {
  .logo-title {
    font-size: 1.35rem;
  }
  .logo-icon {
    height: 32px;
  }
  nav {
    width: 100%;
    padding: 100px 30px 40px 30px;
  }
}

/* --- HERO SECTION — MOBILE --- */
@media(max-width: 991px) {
  #hero {
    padding-top: 120px;
    padding-bottom: 60px;
  }
  .hero-visual {
    height: 360px;
  }
  /* Simplify tilt card on tablet */
  .tilt-card {
    max-width: 100%;
    height: auto;
    min-height: 400px;
  }
}

@media(max-width: 576px) {
  #hero {
    padding-top: 100px;
    padding-bottom: 50px;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-desc {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  .hero-badge {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    padding: 8px 16px;
  }
  .hero-visual {
    height: 320px;
  }
  .tilt-card {
    padding: 20px;
    min-height: 360px;
  }
  /* Disable heavy 3D orbit animations on small screens for performance */
  .eco-orbit {
    display: none;
  }
  .tilt-card-eco-bg-wrap {
    opacity: 0.4;
  }
  .eco-center-slideshow {
    width: 120px;
    height: 120px;
  }
  .tilt-card-layer-2 {
    margin: 0 -20px -20px -20px;
    padding: 18px 20px;
  }
  .tilt-card-layer-2 h3 {
    font-size: 1.2rem;
  }
  .eco-tooltip-panel {
    display: none;
  }
  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }
  .btn-gradient,
  .btn-outline {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 14px 24px;
  }
}

/* --- STATS — MOBILE --- */
@media(max-width: 576px) {
  #stats {
    padding: 50px 0;
  }
  .stat-number {
    font-size: 3.5rem;
  }
  .stats-grid {
    gap: 25px;
  }
}

/* --- AUDIENCE PATH — MOBILE --- */
@media(max-width: 768px) {
  #audience-path {
    padding: 70px 0 40px 0;
  }
  .audience-tabs {
    gap: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 16px;
    flex-wrap: nowrap;
    white-space: nowrap;
  }
  .audience-tabs::-webkit-scrollbar {
    display: none;
  }
  .aud-tab {
    font-size: 1.2rem;
    flex-shrink: 0;
  }
  .aud-panel-content h3 {
    font-size: 2rem;
  }
  .aud-panel-visual {
    height: 280px;
  }
  .section-title {
    font-size: 2.4rem;
  }
}

@media(max-width: 576px) {
  .aud-tab {
    font-size: 1rem;
    padding: 8px 0;
  }
  .aud-panel-content h3 {
    font-size: 1.7rem;
  }
  .feature-list {
    gap: 16px;
    margin-bottom: 30px;
  }
  .aud-panel-visual {
    height: 240px;
    border-radius: 50% 50% 40% 60% / 50% 40% 60% 50%;
  }
  /* Hide floating badges on mobile to prevent overflow */
  .aud-visual-badge {
    display: none;
  }
  .section-title {
    font-size: 2rem;
  }
  .section-tag {
    font-size: 0.75rem;
    letter-spacing: 3px;
  }
  .section-head {
    margin-bottom: 40px;
  }
}

/* --- COURSES — MOBILE --- */
@media(max-width: 768px) {
  #courses {
    padding: 50px 0;
  }
  .courses-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .course-card {
    min-height: auto;
    padding: 35px 25px;
  }
  .course-visual-header {
    margin: -35px -25px 20px -25px;
    height: 170px;
  }
  .course-title {
    font-size: 1.5rem;
  }
}

@media(max-width: 576px) {
  .course-card {
    padding: 28px 22px;
    border-radius: 20px;
  }
  .course-visual-header {
    margin: -28px -22px 18px -22px;
    height: 155px;
  }
}

/* --- PLACEMENTS / MARQUEE — MOBILE --- */
@media(max-width: 768px) {
  #placements {
    padding: 50px 0;
  }
  .marquee-wrap {
    margin-bottom: 70px;
  }
  .marquee-logo {
    height: 48px;
    width: 150px;
  }
  .marquee-content {
    gap: 60px;
    padding-right: 60px;
  }
}

@media(max-width: 576px) {
  .marquee-wrap {
    margin-bottom: 50px;
  }
  .marquee-wrap::before,
  .marquee-wrap::after {
    width: 80px;
  }
  .marquee-logo {
    height: 38px;
    width: 120px;
  }
}

/* --- TESTIMONIALS — MOBILE --- */
@media(max-width: 768px) {
  .testimonials-intro {
    padding: 35px 28px;
  }
  .testimonials-intro h3 {
    font-size: 1.8rem;
  }
  .testimonials-carousel {
    height: 280px;
  }
  .testimonials-carousel p {
    font-size: 1.1rem;
  }
}

@media(max-width: 576px) {
  .testimonials-intro {
    padding: 28px 22px;
  }
  .testimonials-carousel {
    height: 260px;
  }
  .testimonials-carousel p {
    font-size: 1rem;
  }
  .carousel-arrow {
    width: 44px;
    height: 44px;
  }
}

/* --- EVENTS — MOBILE --- */
@media(max-width: 768px) {
  #events {
    padding: 50px 0;
  }
  .events-slider-container {
    padding: 10px 0 20px 0;
  }
}

@media(max-width: 576px) {
  .event-card {
    width: 280px;
    height: 510px;
    border-radius: 20px;
  }
  .event-image-wrap {
    height: 175px;
  }
  .event-content {
    padding: 20px;
    gap: 12px;
  }
  .event-card-title {
    font-size: 1.05rem;
  }
  .event-card-desc {
    font-size: 0.85rem;
  }
  .events-slider-track {
    gap: 20px;
  }
}

/* --- ABOUT — MOBILE --- */
@media(max-width: 768px) {
  #about {
    padding: 80px 0;
  }
  .timeline {
    padding-left: 30px;
  }
}

@media(max-width: 576px) {
  #about {
    padding: 60px 0;
  }
  .timeline-item h4 {
    font-size: 1.2rem;
  }
}

/* --- CONTACT — MOBILE --- */
@media(max-width: 768px) {
  #contact {
    padding: 80px 0 100px 0;
  }
}

@media(max-width: 576px) {
  #contact {
    padding: 60px 0 80px 0;
  }
  .contact-card {
    padding: 25px 22px;
    gap: 18px;
    flex-direction: column;
  }
  .form-heading {
    font-size: 1.8rem;
  }
  .contact-form-wrap {
    padding: 30px 22px;
  }
}

/* --- FOOTER — MOBILE --- */
@media(max-width: 768px) {
  footer {
    padding: 70px 0 40px 0;
  }
}

@media(max-width: 576px) {
  footer {
    padding: 55px 0 35px 0;
  }
  .footer-grid {
    gap: 35px;
    margin-bottom: 50px;
  }
  .subscribe-form {
    flex-direction: column;
    gap: 14px;
  }
  .btn-subscribe {
    width: 100%;
    border-radius: 12px;
    height: 52px;
  }
  footer .logo-title {
    font-size: 1.7rem;
  }
}

/* --- GENERAL TOUCH IMPROVEMENTS --- */
@media(hover: none) and (pointer: coarse) {
  /* Disable hover-only animations that don't work on touch */
  .course-card:hover .course-visual-header img,
  .event-card:hover .event-image-wrap img,
  .aud-panel-visual:hover img {
    transform: none;
  }
  /* Make buttons more tappable */
  .btn-gradient,
  .btn-outline,
  .carousel-arrow,
  .event-register-btn {
    min-height: 48px;
  }
  /* Smooth scroll on iOS */
  html {
    -webkit-overflow-scrolling: touch;
  }
}
