/* ===== VCTC Pune — Premium Styles ===== */

/* --- Fonts: Inter + Playfair Display for premium headings --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&display=swap');

/* --- Base & Variables --- */
:root {
  --color-scheme: light;
  --navy: #ffffff;
  --navy-light: #f8fafc;
  --navy-mid: #f1f5f9;
  --charcoal: #e2e8f0;
  --teal: #0ea5e9;
  --teal-dark: #0284c7;
  --teal-light: #38bdf8;
  --cyan: #22d3ee;
  --gold: #c4952e;
  --gold-light: #d4a853;
  --gold-dark: #a67c1a;
  --accent-glow: rgba(14, 165, 233, 0.06);
  --gold-glow: rgba(196, 149, 46, 0.06);
  --text-primary: #1e293b;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --border-color: rgba(0, 0, 0, 0.06);
  --border-glow: rgba(14, 165, 233, 0.1);
  --card-bg: #ffffff;
  --card-border: rgba(0, 0, 0, 0.06);
  --gradient-start: #ffffff;
  --gradient-end: #f8fafc;
  --glass: rgba(255, 255, 255, 0.8);
  --glass-border: rgba(0, 0, 0, 0.06);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-glow: 0 0 60px rgba(14, 165, 233, 0.04);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-elevated: 0 12px 40px rgba(0, 0, 0, 0.08);
  --transition-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--navy);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- Grain Texture Overlay --- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.012;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* --- Scroll Progress Bar --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--cyan));
  z-index: 10001;
  transition: width 0.1s linear;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.15;
  font-weight: 700;
  color: var(--text-primary);
}

.heading-serif {
  font-family: 'Playfair Display', Georgia, serif;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1rem;
  padding: 0.4rem 1.25rem;
  background: rgba(196, 149, 46, 0.08);
  border-radius: 100px;
  border: 1px solid rgba(196, 149, 46, 0.12);
}

.section-label::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.6); }
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #1e293b 0%, #334155 50%, var(--teal-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 3.5rem;
  line-height: 1.8;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 6rem 0;
}

/* ============================
   NAVBAR — Premium Glassmorphism
   ============================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.7rem 0;
  transition: all 0.4s var(--transition-smooth);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0.7rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, #1e293b 40%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.4s ease;
}

/* Homepage navbar: always white background, dark text */
.navbar-dark .nav-logo-text {
  background: linear-gradient(135deg, #1e293b 40%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-dark.scrolled .nav-logo-text {
  background: linear-gradient(135deg, #1e293b 40%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s var(--transition-smooth);
  filter: drop-shadow(0 2px 12px rgba(212, 168, 83, 0.25));
}

.navbar.scrolled .nav-logo-img {
  height: 65px;
}

.navbar.scrolled .nav-logo-text {
  font-size: 0.9rem;
  background: linear-gradient(135deg, #1e293b 40%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 12px rgba(212, 168, 83, 0.2));
  margin-bottom: 0.5rem;
}

.footer-logo-link {
  flex-direction: column;
  align-items: flex-start !important;
}

.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #d4a853;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--transition-smooth);
  position: relative;
}

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

/* Homepage navbar: always dark links */
.navbar-dark .nav-links a {
  color: var(--text-secondary);
}

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

.navbar-dark.scrolled .nav-links a {
  color: var(--text-secondary);
}

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

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold)) !important;
  color: #050a14 !important;
  padding: 0.55rem 1.5rem !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  transition: all 0.3s var(--transition-smooth) !important;
  box-shadow: 0 2px 12px rgba(212, 168, 83, 0.2);
}

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

.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(212, 168, 83, 0.35) !important;
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
}

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

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.navbar-dark .mobile-toggle span {
  background: var(--text-primary);
}

.navbar-dark.scrolled .mobile-toggle span {
  background: var(--text-primary);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================
   MEGA DROPDOWN MENU — Premium
   ============================ */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-dd-arrow {
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-top: 1px;
}

.nav-dropdown:hover .nav-dd-arrow {
  transform: rotate(180deg);
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 820px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 9999;
  padding-top: 14px;
}

.nav-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-inner {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.05);
  overflow: hidden;
  backdrop-filter: blur(20px);
  position: relative;
}

.mega-menu-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--teal));
}

/* Hoverable bridge — prevent gap between trigger and dropdown */
.mega-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 24px;
}

.mega-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--card-border);
}

.mega-menu-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
}

.mega-menu-viewall {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  transition: gap 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

.mega-menu-viewall:hover {
  gap: 0.5rem;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 0.5rem 0;
}

.mega-menu-col {
  padding: 0.8rem 1.5rem;
  border-right: 1px solid var(--card-border);
}

.mega-menu-col:nth-child(3n) {
  border-right: none;
}

.mega-menu-col:nth-child(n+4) {
  border-top: 1px solid var(--card-border);
}

.mega-menu-cat {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 0.6rem;
  padding-bottom: 0.4rem;
}

.mega-menu-col a {
  display: flex;
  align-items: center;
  padding: 0.4rem 0.6rem;
  margin: 0.1rem -0.6rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary) !important;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
}

.mega-menu-col a::before {
  content: '';
  display: none;
}

.mega-menu-col a::after {
  display: none !important;
}

.mega-menu-col a:hover {
  background: rgba(14, 165, 233, 0.06);
  color: var(--teal) !important;
  padding-left: 0.9rem;
}

/* Dark mode mega menu */
[data-theme="dark"] .mega-menu-inner {
  background: #0f172a;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .mega-menu-header {
  border-color: rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .mega-menu-col {
  border-color: rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .mega-menu-col a:hover {
  background: rgba(14, 165, 233, 0.08);
}

/* Transparent navbar (hero pages) mega menu adjustment */
.navbar-dark .mega-menu-inner {
  background: #0f172a;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.navbar-dark .mega-menu-header {
  border-color: rgba(255, 255, 255, 0.08);
}

.navbar-dark .mega-menu-col {
  border-color: rgba(255, 255, 255, 0.08);
}

.navbar-dark .mega-menu-col a {
  color: rgba(255, 255, 255, 0.85) !important;
}

.navbar-dark .mega-menu-col a:hover {
  background: rgba(14, 165, 233, 0.1);
  color: var(--teal) !important;
}

.navbar-dark .mega-menu-title {
  color: #ffffff;
}

/* When scrolled, revert to light theme card bg */
.navbar-dark.scrolled .mega-menu-inner {
  background: var(--card-bg);
  border-color: var(--card-border);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.navbar-dark.scrolled .mega-menu-header {
  border-color: var(--card-border);
}

.navbar-dark.scrolled .mega-menu-col {
  border-color: var(--card-border);
}

.navbar-dark.scrolled .mega-menu-col a {
  color: var(--text-primary) !important;
}

.navbar-dark.scrolled .mega-menu-title {
  color: var(--text-primary);
}

/* Dark mode + scrolled */
[data-theme="dark"] .navbar-dark.scrolled .mega-menu-inner {
  background: #0f172a;
  border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .navbar-dark.scrolled .mega-menu-col a {
  color: rgba(255, 255, 255, 0.85) !important;
}

[data-theme="dark"] .navbar-dark.scrolled .mega-menu-title {
  color: #ffffff;
}

/* ---- Mega dropdown responsive ---- */
@media (max-width: 1024px) {
  .mega-menu {
    position: fixed;
    top: 70px;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: 90vw;
    max-width: 820px;
  }

  .nav-dropdown:hover .mega-menu {
    transform: translateX(-50%) translateY(0);
  }
}

@media (max-width: 768px) {
  .mega-menu {
    display: none !important;
  }

  .nav-dd-arrow {
    display: none;
  }

  .nav-dropdown-trigger {
    display: block;
  }
}

/* ============================
   BUTTONS — Premium
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--transition-smooth);
  font-family: inherit;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}

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

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

.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #050a14;
  box-shadow: 0 4px 20px rgba(212, 168, 83, 0.2);
  font-weight: 700;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212, 168, 83, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(212, 168, 83, 0.25);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.55rem 1.35rem;
  font-size: 0.82rem;
}

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

/* ============================
   CARDS — Premium Glass
   ============================ */
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.4s var(--transition-smooth);
  backdrop-filter: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.04), transparent);
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(196, 149, 46, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1), 0 0 60px rgba(14, 165, 233, 0.03);
}

/* ============================
   HERO — Premium
   ============================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
}

/* Video Background */
.hero-video-section {
  background: transparent;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.4) saturate(0.65) contrast(1.1);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg,
      rgba(5, 10, 20, 0.92) 0%,
      rgba(5, 10, 20, 0.78) 25%,
      rgba(5, 10, 20, 0.55) 50%,
      rgba(5, 10, 20, 0.45) 75%,
      rgba(5, 10, 20, 0.7) 100%
    );
  pointer-events: none;
}

.hero-video-section .hero-grid-bg {
  z-index: 2;
}

.hero-video-section .container {
  position: relative;
  z-index: 3;
}

/* Hero Dark Section Overrides — keep text white on video */
.hero,
.hero h1,
.hero h2,
.hero h3,
.hero h4,
.hero h5,
.hero h6 {
  color: #f1f5f9;
}

.hero p {
  color: #94a3b8;
}

.hero .section-label {
  color: #d4a853;
  background: rgba(212, 168, 83, 0.1);
  border-color: rgba(212, 168, 83, 0.2);
}

.hero .hero-badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
}

.hero .hero-stat h3 {
  color: #d4a853;
}

.hero .hero-stat p {
  color: #64748b;
}

.hero .hero-stats {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.hero .btn-secondary {
  color: #f1f5f9;
  border-color: rgba(255, 255, 255, 0.2);
}

.hero .btn-secondary:hover {
  color: #d4a853;
  border-color: #d4a853;
  background: rgba(212, 168, 83, 0.1);
}

.hero-stat-text {
  color: #94a3b8;
}

/* CTA Dark Section Overrides */
.cta-section,
.cta-section h2,
.cta-section h3 {
  color: #f1f5f9;
}

.cta-section p {
  color: #94a3b8;
}

.cta-section .btn-secondary {
  color: #f1f5f9;
  border-color: rgba(255, 255, 255, 0.2);
}

.cta-section .btn-secondary:hover {
  color: #d4a853;
  border-color: #d4a853;
  background: rgba(212, 168, 83, 0.1);
}

/* Hero Logo Showcase */
.hero-logo-showcase {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2.5rem;
}

.hero-logo-img {
  width: 280px;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 4px 24px rgba(212, 168, 83, 0.25));
  animation: logo-float 6s ease-in-out infinite;
}

.hero-logo-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.12) 0%, rgba(14, 165, 233, 0.04) 50%, transparent 70%);
  z-index: 1;
  animation: glow-pulse 4s ease-in-out infinite;
}

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

@keyframes glow-pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 1; }
}

/* Mobile logo (hidden on desktop, shown when hero-visual is hidden) */
.hero-logo-mobile {
  display: none;
  position: relative;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

.hero-logo-mobile .hero-logo-img {
  width: 170px;
}

.hero-logo-mobile .hero-logo-glow {
  width: 180px;
  height: 180px;
}

/* Hero Institute Full Name */
.hero-institute-name {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem 2.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 168, 83, 0.15);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: fadeInUp 1s ease-out;
  max-width: fit-content;
}

.hero-name-logo {
  width: 100px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(212, 168, 83, 0.3));
  flex-shrink: 0;
}

.hero-name-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, #ffffff 20%, var(--gold) 60%, #f5deb3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.hero-name-text span {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.85;
  display: block;
  margin-top: 0.25rem;
}

@media (max-width: 768px) {
  .hero-institute-name {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.2rem 1.5rem;
    text-align: center;
    align-items: center;
  }
  .hero-name-logo {
    width: 70px;
  }
  .hero-name-text h2 {
    font-size: 1.5rem;
  }
  .hero-name-text span {
    font-size: 1rem;
  }
  .nav-logo-text {
    display: none;
  }
}

/* Animated gradient orbs */
.hero::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -8%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.07) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  animation: float-orb 15s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -8%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.04) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  animation: float-orb 18s ease-in-out infinite reverse;
}

@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

/* Grid lines background */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-color) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.3;
  mask-image: radial-gradient(ellipse 60% 60% at center, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at center, black 0%, transparent 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1.4rem;
  background: transparent;
  border: none;
  border-radius: 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(212, 168, 83, 0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(212, 168, 83, 0); }
}

@keyframes shimmer {
  0%, 100% { box-shadow: 0 0 0 rgba(212, 168, 83, 0); }
  50% { box-shadow: 0 0 30px rgba(212, 168, 83, 0.08); }
}

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 1.75rem;
  letter-spacing: -0.03em;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--teal-light));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease-in-out infinite;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.hero p {
  font-size: 1.15rem;
  color: #94a3b8;
  margin-bottom: 2.5rem;
  max-width: 540px;
  line-height: 1.85;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-color);
}

.hero-stat h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.hero-stat p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* Hero Stat Cards — Reference Design */
.hero-stat-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-end;
}

.hero-stat-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  min-width: 320px;
  opacity: 0;
  transform: translateX(30px);
  animation: statCardReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.hero-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.hero-stat-card:hover {
  border-color: rgba(212, 168, 83, 0.2);
  transform: translateX(-6px);
  background: rgba(255, 255, 255, 0.06);
}

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

.hero-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  white-space: nowrap;
}

.hero-stat-number span {
  font-size: 1.8rem;
  color: var(--gold-light);
}

.hero-stat-text {
  font-size: 0.82rem;
  color: #94a3b8;
  line-height: 1.5;
  font-weight: 500;
}

/* --- Grid wrapper for hero --- */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

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

.hero-visual-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.hero-visual-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 83, 0.2), transparent);
}

.hero-visual-card::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-visual-card .code-line {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.hero-visual-card .code-line:hover {
  color: var(--text-primary);
  transform: translateX(4px);
}

.hero-visual-card .code-line .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px currentColor;
}

.hero-visual-card .code-line .dot.teal { background: var(--teal); color: var(--teal); }
.hero-visual-card .code-line .dot.cyan { background: var(--cyan); color: var(--cyan); }
.hero-visual-card .code-line .dot.purple { background: #a78bfa; color: #a78bfa; }
.hero-visual-card .code-line .dot.green { background: #34d399; color: #34d399; }
.hero-visual-card .code-line .dot.gold { background: var(--gold); color: var(--gold); }

/* --- Trusted Logos Marquee --- */
/* ============================
   COMPANY LOGOS — Premium 3-Row
   ============================ */
.companies-section {
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 50%, #f8fafc 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.companies-glow-orb {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.08;
  pointer-events: none;
}

.companies-glow-left {
  top: -100px;
  left: -100px;
  background: var(--gold);
}

.companies-glow-right {
  bottom: -100px;
  right: -100px;
  background: var(--teal);
}

.companies-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.companies-label-line {
  display: inline-block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Marquee Row Container */
.logo-marquee-row {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.25rem;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.logo-marquee-row:last-child {
  margin-bottom: 0;
}

/* Track — the infinite scroller */
.logo-marquee-track {
  display: flex;
  width: max-content;
  animation: logoScrollLeft 90s linear infinite;
}

.logo-marquee-track.reverse {
  animation: logoScrollRight 100s linear infinite;
}

.logo-marquee-track.slow {
  animation: logoScrollLeft 110s linear infinite;
}

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

/* A set of logos (duplicated for seamless loop) */
.logo-marquee-set {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 0.75rem;
  flex-shrink: 0;
}

/* Individual Logo Card */
.company-logo-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.75rem;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: all 0.4s var(--transition-smooth);
  cursor: default;
  min-width: 190px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.company-logo-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.06) 0%, transparent 50%, rgba(14, 165, 233, 0.04) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.company-logo-card:hover {
  border-color: rgba(196, 149, 46, 0.25);
  background: #ffffff;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 
    0 8px 30px rgba(0, 0, 0, 0.08),
    0 0 20px rgba(196, 149, 46, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.company-logo-card:hover::before {
  opacity: 1;
}

.company-logo-card img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  padding: 6px;
  opacity: 0.9;
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.company-logo-card:hover img {
  opacity: 1;
  transform: scale(1.12);
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.18);
}

.company-logo-card span {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.45);
  white-space: nowrap;
  letter-spacing: 0.02em;
  transition: color 0.4s ease;
}

.company-logo-card:hover span {
  color: rgba(0, 0, 0, 0.75);
}

/* Keyframes */
@keyframes logoScrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes logoScrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Scroll-triggered reveal */
.companies-section .companies-label,
.companies-section .logo-marquee-row {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.companies-section.companies-visible .companies-label {
  opacity: 1;
  transform: translateY(0);
}

.companies-section.companies-visible .logo-marquee-row:nth-of-type(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}

.companies-section.companies-visible .logo-marquee-row:nth-of-type(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}

.companies-section.companies-visible .logo-marquee-row:nth-of-type(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.55s;
}

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

.why-card {
  text-align: center;
  padding: 2.5rem 1.75rem;
  position: relative;
}

.why-card .icon-wrap {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-glow), rgba(212, 168, 83, 0.05));
  border: 1px solid var(--card-border);
  border-radius: 18px;
  margin: 0 auto 1.5rem;
  color: var(--teal);
  transition: all 0.4s var(--transition-smooth);
}

.why-card:hover .icon-wrap {
  transform: scale(1.1) rotate(-3deg);
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 8px 25px rgba(212, 168, 83, 0.1);
}

.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================
   COURSE CARDS — Premium
   ============================ */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.75rem;
}

.course-card {
  position: relative;
  overflow: hidden;
}

.course-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--cyan));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.course-card:hover::after {
  opacity: 1;
}

.course-card .card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-glow), rgba(212, 168, 83, 0.05));
  border: 1px solid var(--card-border);
  border-radius: 14px;
  color: var(--teal);
  margin-bottom: 1.5rem;
  transition: all 0.35s ease;
}

.course-card:hover .card-icon {
  color: var(--gold);
  border-color: rgba(212, 168, 83, 0.2);
}

.course-card .card-category {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  background: var(--gold-glow);
  border: 1px solid rgba(212, 168, 83, 0.12);
  padding: 0.2rem 0.7rem;
  border-radius: 4px;
  margin-bottom: 0.85rem;
}

.course-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.course-card .card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.course-card .card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.course-card .card-meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.course-card .card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.course-card .card-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
}

.course-card .card-rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  color: var(--gold);
}

/* ============================
   TRAINING PROCESS — Premium
   ============================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 1px;
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--teal));
  opacity: 0.25;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step .step-num {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 50%;
  font-size: 1.15rem;
  font-weight: 800;
  color: #050a14;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 20px rgba(212, 168, 83, 0.25);
  position: relative;
}

.process-step .step-num::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(212, 168, 83, 0.15);
}

.process-step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================
   STATS COUNTER — Premium
   ============================ */
.stats-section {
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(212, 168, 83, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

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

.stat-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.4rem;
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* ============================
   TESTIMONIALS — Premium
   ============================ */
.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s var(--transition-smooth);
}

.testimonial-card {
  min-width: 100%;
  padding: 0 1rem;
}

.testimonial-card .card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem;
}

.testimonial-card .stars {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.testimonial-card blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 1.75rem;
  font-style: italic;
  position: relative;
}

.testimonial-card blockquote::before {
  content: '\201C';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.15;
  font-family: 'Playfair Display', serif;
}

.testimonial-card .author {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 1rem;
}

.testimonial-card .author-role {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
}

.testimonial-card .author-course {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.slider-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.slider-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow);
  transform: scale(1.08);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
  opacity: 0.4;
}

.slider-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 4px;
  opacity: 1;
}

/* ============================
   CTA SECTION — Premium
   ============================ */
.cta-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.04) 0%, transparent 65%);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 83, 0.15), transparent);
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1.25rem;
}

.cta-content p {
  color: #94a3b8;
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================
   FOOTER — Premium
   ============================ */
.footer {
  background: #0f172a;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 5rem 0 2.5rem;
  position: relative;
  color: #cbd5e1;
}

.footer h1, .footer h2, .footer h3, .footer h5, .footer h6 {
  color: #f1f5f9;
}

.footer p, .footer-brand p {
  color: #94a3b8;
}

.footer-social a {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 83, 0.12), transparent);
}

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

.footer-brand p {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-top: 1.25rem;
  line-height: 1.8;
  max-width: 300px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.3s var(--transition-smooth);
  font-size: 0.9rem;
}

.footer-social a:hover {
  color: #d4a853;
  border-color: rgba(212, 168, 83, 0.2);
  background: rgba(212, 168, 83, 0.1);
  transform: translateY(-3px);
}

.footer h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  color: #d4a853;
  font-weight: 500;
}

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

.footer-links li {
  margin-bottom: 0.7rem;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.footer-links a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
  margin-right: 0;
}

.footer-links a:hover {
  color: #f1f5f9;
}

.footer-links a:hover::before {
  width: 12px;
  margin-right: 8px;
}

.footer-bottom {
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #64748b;
}

.footer-bottom .premium-tag {
  color: var(--gold);
  font-weight: 500;
}

/* ============================
   PAGE HEADER (inner pages)
   ============================ */
.page-header {
  padding: 9rem 0 3.5rem;
  text-align: center;
  background: linear-gradient(180deg, #f1f5f9 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 450px;
  background: radial-gradient(ellipse, rgba(212, 168, 83, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 83, 0.12), transparent);
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.breadcrumb a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--gold-light);
}

/* ============================
   FILTER TABS
   ============================ */
.filter-tabs {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.filter-tab {
  padding: 0.55rem 1.35rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  background: var(--glass);
  border: 1px solid var(--card-border);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s var(--transition-smooth);
  font-family: inherit;
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--gold-glow);
  border-color: rgba(212, 168, 83, 0.3);
  color: var(--gold);
}

/* ============================
   ACCORDION
   ============================ */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.accordion-item {
  background: var(--glass);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.accordion-item.active {
  border-color: rgba(212, 168, 83, 0.15);
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.75rem;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: color 0.3s ease;
}

.accordion-header:hover {
  color: var(--gold);
}

.accordion-header .icon {
  font-size: 1.2rem;
  transition: transform 0.3s var(--transition-smooth);
  color: var(--text-muted);
  flex-shrink: 0;
}

.accordion-item.active .accordion-header .icon {
  transform: rotate(45deg);
  color: var(--gold);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--transition-smooth);
}

.accordion-body-inner {
  padding: 0 1.75rem 1.5rem;
}

.accordion-body-inner ul {
  list-style: none;
}

.accordion-body-inner li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.accordion-body-inner li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.9rem;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* ============================
   BATCH TABLE
   ============================ */
.batch-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.batch-table thead {
  background: #f1f5f9;
}

.batch-table th {
  padding: 1.15rem 1.5rem;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  border-bottom: 1px solid rgba(212, 168, 83, 0.1);
}

.batch-table td {
  padding: 1.15rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary);
}

.batch-table tr {
  transition: background 0.3s ease;
}

.batch-table tr:hover td {
  background: rgba(212, 168, 83, 0.02);
}

.batch-table .status-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.status-open {
  background: rgba(52, 211, 153, 0.08);
  color: #34d399;
  border: 1px solid rgba(52, 211, 153, 0.15);
}

.status-filling {
  background: rgba(212, 168, 83, 0.08);
  color: var(--gold);
  border: 1px solid rgba(212, 168, 83, 0.15);
}

.status-almost-full {
  background: rgba(248, 113, 113, 0.08);
  color: #f87171;
  border: 1px solid rgba(248, 113, 113, 0.15);
}

/* ============================
   FORM STYLES
   ============================ */
.form-group {
  margin-bottom: 1.35rem;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1.25rem;
  background: #f8fafc;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.9rem;
  font-family: inherit;
  transition: all 0.3s var(--transition-smooth);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 168, 83, 0.08);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

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

.form-error {
  font-size: 0.78rem;
  color: #f87171;
  margin-top: 0.4rem;
  display: none;
}

.form-group.error .form-input,
.form-group.error .form-select,
.form-group.error .form-textarea {
  border-color: #f87171;
}

.form-group.error .form-error {
  display: block;
}

/* ============================
   TOOLS & PROJECTS
   ============================ */
.tools-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.tool-tag {
  padding: 0.5rem 1.15rem;
  background: var(--glass);
  border: 1px solid var(--card-border);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.tool-tag:hover {
  border-color: rgba(212, 168, 83, 0.2);
  color: var(--gold);
  background: var(--gold-glow);
}

.project-card {
  background: var(--glass);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: all 0.35s ease;
}

.project-card:hover {
  border-color: rgba(212, 168, 83, 0.15);
  transform: translateY(-3px);
}

.project-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  color: var(--gold);
}

.project-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================
   REFER & EARN
   ============================ */
.refer-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 4rem;
}

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

.refer-step .step-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-glow), var(--accent-glow));
  border: 1px solid rgba(212, 168, 83, 0.12);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: var(--gold);
  position: relative;
}

.refer-step .step-icon::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(212, 168, 83, 0.08);
}

/* ============================
   CAREER CARDS
   ============================ */
.career-card {
  margin-bottom: 1.75rem;
}

.career-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.career-meta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.career-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  padding: 0.3rem 0.85rem;
  background: var(--gold-glow);
  border-radius: 100px;
  color: var(--gold);
  border: 1px solid rgba(212, 168, 83, 0.1);
  font-weight: 500;
}

/* ============================
   ABOUT PAGE
   ============================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: start;
}

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

.timeline {
  position: relative;
  padding-left: 2.5rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--teal), transparent);
}

.timeline-item {
  position: relative;
  padding-bottom: 2.25rem;
  padding-left: 1.75rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  margin-left: -5px;
  box-shadow: 0 0 15px rgba(212, 168, 83, 0.3);
}

.timeline-item h4 {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.timeline-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.timeline-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================
   TESTIMONIALS PAGE GRID
   ============================ */
.testimonials-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.75rem;
}

.testimonial-page-card .card {
  height: 100%;
}

/* ============================
   ANIMATIONS
   ============================ */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--transition-smooth), transform 0.7s var(--transition-smooth);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

.count-up {
  display: inline-block;
}

/* Scale-in animation */
.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s var(--transition-smooth), transform 0.6s var(--transition-smooth);
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Glow divider */
.glow-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 83, 0.2), var(--teal), rgba(212, 168, 83, 0.2), transparent);
  border: none;
  margin: 0;
}

/* ============================
   RESPONSIVE — PREMIUM
   ============================ */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-visual {
    display: block;
  }

  .hero-stat-cards {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
  }

  .hero-stat-card {
    min-width: 240px;
    flex: 1 1 240px;
  }

  /* Show mobile logo when hero-visual is hidden */
  .hero-logo-mobile {
    display: flex;
  }

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

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

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

  .process-grid::before {
    display: none;
  }

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

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

  .refer-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

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

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 5.5rem 1.75rem 2rem;
    gap: 0.15rem;
    transition: right 0.4s var(--transition-smooth);
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    overflow-y: auto;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.1);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    width: 100%;
    padding: 0.7rem 1rem;
  }

  .nav-links a.active::after {
    display: none;
  }

  .mobile-toggle {
    display: flex;
    z-index: 1001;
  }

  .mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 999;
  }

  .mobile-overlay.active {
    display: block;
  }

  .hero {
    min-height: auto;
    padding: 7.5rem 0 3.5rem;
  }

  .hero-stats {
    gap: 1.75rem;
    flex-wrap: wrap;
  }

  .hero-stat h3 {
    font-size: 1.5rem;
  }

  .hero-stat-cards {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-stat-card {
    min-width: unset;
    padding: 1rem 1.5rem;
    gap: 1rem;
  }

  .hero-stat-number {
    font-size: 1.8rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .courses-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .batch-table-wrap {
    overflow-x: auto;
  }

  .section-padding {
    padding: 4rem 0;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-page-grid {
    grid-template-columns: 1fr;
  }

  .companies-section {
    padding: 3rem 0 2.5rem;
  }

  .companies-label {
    font-size: 0.6rem;
    margin-bottom: 2rem;
  }

  .companies-label-line {
    width: 30px;
  }

  .company-logo-card {
    min-width: 150px;
    padding: 0.7rem 1rem;
  }

  .company-logo-card img {
    width: 40px;
    height: 40px;
  }

  .company-logo-card span {
    font-size: 0.75rem;
  }

  .logo-marquee-row {
    margin-bottom: 0.85rem;
  }
}

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

  .hero-stats {
    gap: 1.25rem;
  }

  .hero-stat {
    flex: 1 1 40%;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .stat-item h3 {
    font-size: 2.25rem;
  }

  .hero h1 {
    font-size: 2.25rem;
  }
}

/* ============================
   UTILITIES
   ============================ */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-teal { color: var(--teal); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.gap-2 { gap: 1rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }

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

/* ============================
   MAP SECTION
   ============================ */
.map-section {
  position: relative;
}

.map-header {
  padding: 3rem 0 2rem;
  background: #f1f5f9;
  text-align: center;
}

.map-container {
  position: relative;
  width: 100%;
  line-height: 0;
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: 0;
  filter: grayscale(0.3) contrast(1.05);
  transition: filter 0.4s ease;
}

.map-container iframe:hover {
  filter: grayscale(0) contrast(1);
}

@media (max-width: 768px) {
  .map-container iframe {
    height: 300px;
  }
}

/* ============================
   FLOATING ACTION BUTTONS
   ============================ */
.floating-buttons {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.float-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.float-btn::after {
  content: attr(title);
  position: absolute;
  right: 62px;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateX(8px);
}

.float-btn:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.float-whatsapp {
  background: #25D366;
}

.float-call {
  background: #0ea5e9;
}

.float-refer {
  background: var(--gold);
  color: #0f172a;
}

.float-courses {
  background: rgba(30, 41, 59, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.float-courses:hover {
  background: rgba(30, 41, 59, 0.95);
}

/* Enquire Now Floating Tab (left side) */
.float-enquire {
  position: fixed;
  left: 0;
  top: 45%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  text-decoration: none;
  padding: 14px 10px 14px 14px;
  border-radius: 0 12px 12px 0;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 1000;
  box-shadow: 4px 4px 20px rgba(37, 99, 235, 0.3);
  transition: all 0.3s ease;
  writing-mode: horizontal-tb;
}

.float-enquire span {
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.float-enquire:hover {
  padding-left: 18px;
  box-shadow: 6px 4px 25px rgba(37, 99, 235, 0.5);
}

.float-enquire svg {
  animation: enquire-pulse 1.5s ease-in-out infinite;
}

@keyframes enquire-pulse {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(3px); }
}

/* Mobile adjustments for floaters */
@media (max-width: 768px) {
  .floating-buttons {
    right: 12px;
    gap: 10px;
  }

  .float-btn {
    width: 44px;
    height: 44px;
  }

  .float-btn svg {
    width: 18px;
    height: 18px;
  }

  .float-btn::after {
    display: none;
  }

  .float-enquire {
    padding: 10px 8px 10px 10px;
  }

  .float-enquire span {
    font-size: 0.7rem;
  }
}

/* ============================
   PRELOADER — Disabled
   ============================ */
.preloader {
  display: none !important;
}



/* ============================
   BACK TO TOP — Premium
   ============================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #050a14;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(212, 168, 83, 0.3);
}

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

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(212, 168, 83, 0.5);
}

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

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

/* Progress ring around back-to-top */
.back-to-top-ring {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: rgba(255,255,255,0.4);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 20px;
    left: 20px;
    width: 42px;
    height: 42px;
  }
}

/* ============================
   DARK MODE — Premium
   ============================ */
.dark-mode-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 2px;
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.dark-mode-toggle .toggle-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(212, 168, 83, 0.3);
}

.dark-mode-toggle .toggle-thumb svg {
  width: 11px;
  height: 11px;
  color: #0f172a;
}

.dark-mode-toggle .toggle-thumb .icon-moon { display: none; }
.dark-mode-toggle .toggle-thumb .icon-sun { display: block; }

/* Homepage navbar dark mode toggle — light style on dark hero */
.navbar-dark .dark-mode-toggle {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.navbar-dark.scrolled .dark-mode-toggle {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.1);
}

/* Dark mode active state */
[data-theme="dark"] {
  --navy: #0f172a;
  --navy-light: #1e293b;
  --navy-mid: #334155;
  --charcoal: #475569;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(14, 165, 233, 0.15);
  --card-bg: #1e293b;
  --card-border: rgba(255, 255, 255, 0.08);
  --gradient-start: #0f172a;
  --gradient-end: #1e293b;
  --glass: rgba(15, 23, 42, 0.85);
  --glass-border: rgba(255, 255, 255, 0.08);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-elevated: 0 12px 40px rgba(0, 0, 0, 0.4);
  --accent-glow: rgba(14, 165, 233, 0.1);
  --gold-glow: rgba(196, 149, 46, 0.1);
}

[data-theme="dark"] body {
  background-color: #0f172a;
  color: #f1f5f9;
}

[data-theme="dark"] .dark-mode-toggle {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

[data-theme="dark"] .dark-mode-toggle .toggle-thumb {
  transform: translateX(20px);
}

[data-theme="dark"] .dark-mode-toggle .toggle-thumb .icon-moon { display: block; }
[data-theme="dark"] .dark-mode-toggle .toggle-thumb .icon-sun { display: none; }

[data-theme="dark"] .navbar.scrolled {
  background: rgba(15, 23, 42, 0.95);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .navbar.scrolled .nav-links a {
  color: #94a3b8;
}

[data-theme="dark"] .navbar.scrolled .nav-links a:hover,
[data-theme="dark"] .navbar.scrolled .nav-links a.active {
  color: #f1f5f9;
}

[data-theme="dark"] .navbar.scrolled .nav-logo-text {
  background: linear-gradient(135deg, #f1f5f9 40%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-theme="dark"] .navbar.scrolled .mobile-toggle span {
  background: #f1f5f9;
}

[data-theme="dark"] .page-header {
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
}

[data-theme="dark"] .page-header .section-title {
  background: linear-gradient(135deg, #f1f5f9 0%, #94a3b8 50%, var(--teal-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-theme="dark"] .section-title {
  background: linear-gradient(135deg, #f1f5f9 0%, #cbd5e1 50%, var(--teal-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-theme="dark"] .stats-section {
  background: linear-gradient(135deg, #1e293b, #0f172a);
}

[data-theme="dark"] .companies-section {
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

[data-theme="dark"] .company-logo-card {
  background: #1e293b;
  border-color: rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .company-logo-card:hover {
  background: #334155;
}

[data-theme="dark"] .company-logo-card span {
  color: rgba(255, 255, 255, 0.45);
}

[data-theme="dark"] .company-logo-card:hover span {
  color: rgba(255, 255, 255, 0.85);
}

[data-theme="dark"] .form-input,
[data-theme="dark"] .form-select,
[data-theme="dark"] .form-textarea {
  background: #0f172a;
  border-color: rgba(255, 255, 255, 0.1);
  color: #f1f5f9;
}

[data-theme="dark"] .batch-table thead {
  background: #1e293b;
}

[data-theme="dark"] .batch-table td {
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .filter-tab {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  color: #94a3b8;
}

[data-theme="dark"] .map-header {
  background: #1e293b;
}

[data-theme="dark"] .map-container iframe {
  filter: invert(0.9) hue-rotate(180deg) grayscale(0.3);
}

[data-theme="dark"] .nav-links {
  background: #0f172a !important;
}

@media (min-width: 769px) {
  [data-theme="dark"] .nav-links {
    background: transparent !important;
  }
}

/* ============================
   COOKIE CONSENT — Premium
   ============================ */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  padding: 1.25rem 2rem;
  background: rgba(15, 23, 42, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(212, 168, 83, 0.12);
  transform: translateY(100%);
  transition: transform 0.5s var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-consent.visible {
  transform: translateY(0);
}

.cookie-consent p {
  color: #cbd5e1;
  font-size: 0.85rem;
  max-width: 600px;
  line-height: 1.6;
}

.cookie-consent p a {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-consent-buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-consent .btn-accept {
  padding: 0.55rem 1.5rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #050a14;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.cookie-consent .btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 168, 83, 0.3);
}

.cookie-consent .btn-decline {
  padding: 0.55rem 1.5rem;
  background: transparent;
  color: #94a3b8;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.cookie-consent .btn-decline:hover {
  color: #f1f5f9;
  border-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .cookie-consent {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding: 1.25rem;
  }

  .cookie-consent-buttons {
    width: 100%;
    justify-content: center;
  }
}

/* ============================
   SOCIAL SVG ICONS — FOOTER
   ============================ */
.footer-social a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: all 0.3s ease;
}

/* ============================
   PAGE TRANSITION OVERLAY — Disabled
   ============================ */
.page-transition {
  display: none !important;
}

/* ============================
   TYPING CURSOR — Hero
   ============================ */
.typing-cursor {
  display: inline-block;
  width: 3px;
  height: 1em;
  background: var(--gold);
  margin-left: 4px;
  animation: cursor-blink 1s step-end infinite;
  vertical-align: text-bottom;
}

@keyframes cursor-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ============================
   ENHANCED CARD HOVER EFFECTS
   ============================ */
.card {
  transition: all 0.45s var(--transition-smooth);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(212, 168, 83, 0.08);
}

.why-card {
  transition: all 0.45s var(--transition-smooth);
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.why-card:hover::after {
  transform: scaleX(1);
}

/* ============================
   SMOOTH SECTION WAVE DIVIDERS
   ============================ */
.wave-divider {
  position: relative;
  line-height: 0;
  overflow: hidden;
  margin-top: -1px;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

.wave-divider-top {
  margin-bottom: -1px;
}

.wave-divider svg path {
  fill: var(--navy-light);
}

/* ============================
   TESTIMONIAL AVATAR — Premium
   ============================ */
.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  position: relative;
}

.testimonial-avatar::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid rgba(212, 168, 83, 0.2);
}

/* ============================
   NAVBAR ACTION GROUP
   ============================ */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (max-width: 768px) {
  .nav-actions {
    gap: 0.5rem;
  }
  
  .dark-mode-toggle {
    width: 38px;
    height: 22px;
  }
  
  .dark-mode-toggle .toggle-thumb {
    width: 16px;
    height: 16px;
  }
  
  [data-theme="dark"] .dark-mode-toggle .toggle-thumb {
    transform: translateX(16px);
  }
}

/* ============================
   ENHANCED FOCUS STATES
   ============================ */
.btn:focus-visible,
.nav-links a:focus-visible,
.float-btn:focus-visible,
.slider-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ============================
   SMOOTH LINK TRANSITIONS
   ============================ */
a {
  transition: color 0.3s ease;
}

/* ============================
   IMPROVED SELECTION COLOR
   ============================ */
::selection {
  background: rgba(212, 168, 83, 0.2);
  color: var(--text-primary);
}

::-moz-selection {
  background: rgba(212, 168, 83, 0.2);
  color: var(--text-primary);
}

/* ============================
   WHY JOIN VELOCITY — PREMIUM SECTION
   ============================ */
.why-join-velocity {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy) 100%);
}

/* Animated Background Elements */
.why-join-bg-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.why-join-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  animation: wjvOrbFloat 12s ease-in-out infinite;
}

.why-join-orb-1 {
  width: 500px;
  height: 500px;
  background: var(--teal);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.why-join-orb-2 {
  width: 400px;
  height: 400px;
  background: var(--gold);
  bottom: -80px;
  left: -80px;
  animation-delay: -6s;
}

.why-join-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-color) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.3;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

@keyframes wjvOrbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -20px) scale(1.05); }
  50% { transform: translate(-20px, 30px) scale(0.95); }
  75% { transform: translate(20px, 20px) scale(1.02); }
}

/* Row-Based Layout */
.wjv-row {
  display: grid;
  gap: 24px;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.wjv-row:first-of-type {
  margin-top: 3.5rem;
}

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

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

.wjv-row-spotlight {
  grid-template-columns: 1fr;
}

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

/* Card Base */
.wjv-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: all 0.5s var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.wjv-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, transparent 30%, var(--teal-light) 50%, transparent 70%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 2;
}

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

.wjv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(14, 165, 233, 0.1), 0 8px 24px rgba(0, 0, 0, 0.06);
}

/* Card Image */
.wjv-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.wjv-card-spotlight .wjv-card-img-wrap {
  aspect-ratio: 21 / 7;
}

.wjv-card-tri .wjv-card-img-wrap {
  aspect-ratio: 4 / 3;
}

.wjv-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--transition-smooth), filter 0.5s ease;
}

.wjv-card:hover .wjv-card-img-wrap img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

.wjv-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.5) 100%);
  pointer-events: none;
}

/* Card Content */
.wjv-card-content {
  padding: 1.75rem 2rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.wjv-card-compact {
  padding: 2rem;
  justify-content: center;
}

.wjv-card-compact-inner {
  padding: 2rem;
  justify-content: center;
}

/* Spotlight Card — Alumni Mentorship */
.wjv-spotlight-inner {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
}

.wjv-spotlight-text {
  flex: 1;
  min-width: 0;
}

.wjv-spotlight-stats {
  display: flex;
  gap: 2rem;
  flex-shrink: 0;
  padding-top: 0.5rem;
}

.wjv-spotlight-stat {
  text-align: center;
  padding: 1.2rem 1.5rem;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.06), rgba(196, 149, 46, 0.04));
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  min-width: 110px;
}

.wjv-spotlight-stat-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  background: linear-gradient(135deg, var(--teal), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}

.wjv-spotlight-stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.wjv-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 1rem;
  box-shadow: 0 4px 16px rgba(14, 165, 233, 0.25);
  transition: transform 0.4s var(--transition-bounce);
  flex-shrink: 0;
}

.wjv-card:hover .wjv-card-icon {
  transform: scale(1.1) rotate(-3deg);
}

.wjv-icon-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: 0 4px 16px rgba(196, 149, 46, 0.25);
}

.wjv-icon-teal {
  background: linear-gradient(135deg, var(--teal-light), var(--teal));
  box-shadow: 0 4px 16px rgba(56, 189, 248, 0.25);
}

.wjv-icon-cyan {
  background: linear-gradient(135deg, var(--cyan), #06b6d4);
  box-shadow: 0 4px 16px rgba(34, 211, 238, 0.25);
}

.wjv-card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
  background: var(--accent-glow);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 0.6rem;
  width: fit-content;
}

.wjv-card-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.wjv-card-compact h3,
.wjv-card-tri .wjv-card-content h3 {
  font-size: 1.15rem;
}

.wjv-card-content p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
  flex: 1;
}

/* Features List inside cards */
.wjv-features-list {
  list-style: none;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.wjv-features-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.wjv-features-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image:
    linear-gradient(135deg, var(--teal), var(--teal-dark)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 2px 8px rgba(14, 165, 233, 0.3);
}

/* CTA Strip */
.wjv-cta-strip {
  margin-top: 3rem;
  padding: 2.5rem 3rem;
  background: linear-gradient(135deg, var(--card-bg) 0%, var(--navy-light) 100%);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.wjv-cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.03) 0%, rgba(196, 149, 46, 0.03) 100%);
  pointer-events: none;
}

.wjv-cta-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.wjv-cta-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.wjv-cta-btn {
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

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

.wjv-cta-btn:hover::after {
  width: 300px;
  height: 300px;
}

/* ---- Responsive: Why Join Velocity ---- */
@media (max-width: 1024px) {
  .wjv-row-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .wjv-row-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .wjv-row-3 .wjv-card:last-child {
    grid-column: 1 / -1;
  }
  .wjv-row-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .wjv-spotlight-inner {
    flex-direction: column;
    gap: 1.5rem;
  }
  .wjv-spotlight-stats {
    width: 100%;
    justify-content: stretch;
  }
  .wjv-spotlight-stat {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .wjv-row-2,
  .wjv-row-3,
  .wjv-row-4 {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .wjv-row-3 .wjv-card:last-child {
    grid-column: auto;
  }
  .wjv-row {
    margin-top: 1.25rem;
  }
  .wjv-row:first-of-type {
    margin-top: 2.5rem;
  }
  .wjv-card-content {
    padding: 1.3rem 1.5rem 1.5rem;
  }
  .wjv-card-compact-inner {
    padding: 1.5rem;
  }
  .wjv-card-content h3 {
    font-size: 1.2rem;
  }
  .wjv-card-compact h3,
  .wjv-card-tri .wjv-card-content h3 {
    font-size: 1.05rem;
  }
  .wjv-cta-strip {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }
  .wjv-spotlight-stats {
    flex-direction: column;
    gap: 0.75rem;
  }
  .wjv-spotlight-stat {
    min-width: auto;
  }
  .wjv-card-spotlight .wjv-card-img-wrap {
    aspect-ratio: 16 / 9;
  }
  .wjv-card-tri .wjv-card-img-wrap {
    aspect-ratio: 16 / 9;
  }
}

/* ---- Dark mode overrides ---- */
[data-theme="dark"] .why-join-velocity {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy) 100%);
}

[data-theme="dark"] .wjv-card {
  background: var(--card-bg);
  border-color: var(--card-border);
}

[data-theme="dark"] .wjv-card:hover {
  box-shadow: 0 20px 60px rgba(14, 165, 233, 0.08), 0 8px 24px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .wjv-card-content h3,
[data-theme="dark"] .wjv-cta-content h3 {
  color: var(--text-primary);
}

[data-theme="dark"] .wjv-card-content p,
[data-theme="dark"] .wjv-cta-content p,
[data-theme="dark"] .wjv-features-list li {
  color: var(--text-secondary);
}

[data-theme="dark"] .wjv-cta-strip {
  background: linear-gradient(135deg, var(--card-bg) 0%, var(--navy-light) 100%);
  border-color: var(--card-border);
}

/* ============================
   POLICY PAGES
   ============================ */
.policy-container {
  max-width: 860px;
  margin: 0 auto;
}

.policy-last-updated {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 2rem;
  padding: 0.5rem 1.25rem;
  margin-bottom: 2rem;
}
.policy-last-updated svg {
  color: var(--teal);
  flex-shrink: 0;
}

/* Highlight Boxes */
.policy-highlight {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.08) 0%, rgba(196, 149, 46, 0.06) 100%);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-left: 4px solid var(--teal);
  border-radius: 12px;
  padding: 1.75rem 2rem;
  margin-bottom: 2.5rem;
}
.policy-highlight h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 0.75rem;
}
.policy-highlight p {
  color: var(--text-primary);
  line-height: 1.7;
  margin: 0;
}
.policy-highlight-warning {
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.08) 0%, rgba(234, 88, 12, 0.06) 100%);
  border-color: rgba(234, 179, 8, 0.25);
  border-left-color: #eab308;
}
.policy-highlight-warning h3 {
  color: #eab308;
}

/* Sections */
.policy-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--card-border);
}
.policy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.policy-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.policy-section-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--teal), #0284c7);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 12px;
  flex-shrink: 0;
}
.policy-section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}
.policy-section-body {
  padding-left: 3.5rem;
}
.policy-section-body p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.policy-section-body p:last-child {
  margin-bottom: 0;
}

/* Policy Lists */
.policy-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
.policy-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.policy-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
}
.policy-list li strong {
  color: var(--text-primary);
}

/* Policy Card Grid */
.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.25rem 0;
}
.policy-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  transition: var(--transition-smooth);
}
.policy-card:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.1);
}
.policy-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}
.policy-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 !important;
}
.policy-card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.12), rgba(14, 165, 233, 0.04));
  border-radius: 10px;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

/* Contact Grid */
.policy-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}
.policy-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 1.15rem 1.25rem;
  transition: var(--transition-smooth);
}
.policy-contact-card:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
}
.policy-contact-card svg {
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}
.policy-contact-card strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}
.policy-contact-card a,
.policy-contact-card span {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-decoration: none;
  line-height: 1.5;
}
.policy-contact-card a:hover {
  color: var(--teal);
}

/* Disclaimer */
.policy-disclaimer {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-top: 2rem;
}
.policy-disclaimer p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* Policy Responsive */
@media (max-width: 768px) {
  .policy-grid {
    grid-template-columns: 1fr;
  }
  .policy-contact-grid {
    grid-template-columns: 1fr;
  }
  .policy-section-body {
    padding-left: 0;
  }
  .policy-highlight {
    padding: 1.25rem 1.5rem;
  }
  .policy-section-header h2 {
    font-size: 1.15rem;
  }
}

/* Policy Dark Mode */
[data-theme="dark"] .policy-highlight {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.06) 0%, rgba(196, 149, 46, 0.04) 100%);
  border-color: rgba(14, 165, 233, 0.15);
}
[data-theme="dark"] .policy-highlight-warning {
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.06) 0%, rgba(234, 88, 12, 0.04) 100%);
  border-color: rgba(234, 179, 8, 0.15);
}
[data-theme="dark"] .policy-section-body p,
[data-theme="dark"] .policy-list li,
[data-theme="dark"] .policy-card p,
[data-theme="dark"] .policy-disclaimer p {
  color: var(--text-secondary);
}

/* ==============================================
   PREMIUM COURSE DETAIL PAGE (CDP) v2
   ============================================== */

/* ---- HERO SECTION ---- */
.cdp-hero {
  position: relative;
  padding: 8rem 0 5rem;
  overflow: hidden;
  background: linear-gradient(135deg, #020617 0%, #0a1628 35%, #0d1f3c 60%, #0b1a30 100%);
  min-height: 600px;
}

.cdp-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cdp-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
}

.cdp-hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.5), transparent 70%);
  top: -200px;
  right: -150px;
  animation: cdp-orb-float 14s ease-in-out infinite;
}

.cdp-hero-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(196, 149, 46, 0.35), transparent 70%);
  bottom: -180px;
  left: -120px;
  animation: cdp-orb-float 18s ease-in-out infinite reverse;
}

.cdp-hero-orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: cdp-orb-float 20s ease-in-out infinite;
}

@keyframes cdp-orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(40px, -30px) scale(1.08); }
  50% { transform: translate(-15px, 25px) scale(0.95); }
  75% { transform: translate(25px, 10px) scale(1.03); }
}

.cdp-hero-mesh {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(14, 165, 233, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(196, 149, 46, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 40%);
}

.cdp-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14, 165, 233, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 20%, transparent 100%);
}

.cdp-hero-particles {
  position: absolute;
  inset: 0;
}

.cdp-hero-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3.5rem;
  align-items: start;
  position: relative;
  z-index: 2;
}

.cdp-hero-text .breadcrumb {
  margin-bottom: 1.5rem;
}

.cdp-hero-text .breadcrumb a,
.cdp-hero-text .breadcrumb span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
}
.cdp-hero-text .breadcrumb a:hover {
  color: var(--teal);
}

.cdp-hero-label-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}

.cdp-category-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  background: rgba(14, 165, 233, 0.15);
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(14, 165, 233, 0.25);
}

.cdp-badge-live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.cdp-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: cdp-pulse 2s ease-in-out infinite;
}

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

.cdp-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.12;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}

.cdp-hero-title-gradient {
  background: linear-gradient(135deg, var(--teal), #38bdf8, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cdp-gradient-text {
  background: linear-gradient(135deg, var(--teal), #38bdf8, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cdp-hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin-bottom: 1.8rem;
  max-width: 560px;
}

.cdp-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.cdp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.cdp-badge:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(14, 165, 233, 0.3);
  transform: translateY(-1px);
}

.cdp-badge svg {
  flex-shrink: 0;
  stroke: var(--teal);
}

.cdp-hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.cdp-btn-glow {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(14, 165, 233, 0.3), 0 0 60px rgba(14, 165, 233, 0.1);
}

.cdp-btn-glow:hover {
  box-shadow: 0 0 30px rgba(14, 165, 233, 0.5), 0 0 80px rgba(14, 165, 233, 0.2);
  transform: translateY(-2px);
}

/* Trust items below CTA */
.cdp-hero-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cdp-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

.cdp-trust-item svg {
  flex-shrink: 0;
}

/* ---- INFO CARD (right side) — PREMIUM ---- */
.cdp-info-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  backdrop-filter: blur(24px);
  overflow: visible;
  position: relative;
  transition: all 0.4s ease;
}

.cdp-info-card-sticky {
  position: sticky;
  top: 100px;
}

.cdp-info-card:hover {
  border-color: rgba(14, 165, 233, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(14, 165, 233, 0.05);
}

.cdp-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), #8b5cf6, var(--gold));
  border-radius: 24px 24px 0 0;
}

.cdp-info-card-ribbon {
  position: absolute;
  top: 16px;
  right: -8px;
  padding: 0.3rem 1rem 0.3rem 0.8rem;
  background: linear-gradient(135deg, var(--gold), #d4a233);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 4px 0 0 4px;
  box-shadow: 0 4px 12px rgba(196, 149, 46, 0.4);
  z-index: 2;
}

.cdp-info-card-ribbon::after {
  content: '';
  position: absolute;
  top: 100%;
  right: 0;
  border: 4px solid transparent;
  border-top-color: #a07825;
  border-right-color: #a07825;
}

.cdp-info-card-header {
  padding: 2rem 1.8rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cdp-info-card-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.8rem;
}

.cdp-info-card-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.8rem;
}

.cdp-price-strike {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: line-through;
  font-weight: 400;
}

.cdp-price-main {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.cdp-info-card-emi {
  display: block;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.5rem;
}

.cdp-info-card-save {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.7rem;
  font-size: 0.82rem;
  color: #22c55e;
  font-weight: 600;
}

.cdp-save-badge {
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  background: rgba(34, 197, 94, 0.15);
  font-size: 0.7rem;
  font-weight: 700;
}

.cdp-info-card-body {
  padding: 1.5rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cdp-info-card-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.2s ease;
  padding: 0.3rem 0;
  border-radius: 8px;
}

.cdp-info-card-row:hover {
  background: rgba(255, 255, 255, 0.03);
  padding-left: 0.5rem;
}

.cdp-row-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(14, 165, 233, 0.08);
  flex-shrink: 0;
}

.cdp-info-card-row svg {
  flex-shrink: 0;
}

.cdp-info-card-row div:not(.cdp-row-icon) {
  display: flex;
  flex-direction: column;
}

.cdp-info-card-row strong {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cdp-info-card-row span {
  font-size: 0.92rem;
  color: #ffffff;
  font-weight: 600;
}

.cdp-info-card-btn {
  display: block;
  margin: 0.5rem 1.8rem 0;
  padding: 1rem;
  text-align: center;
  background: linear-gradient(135deg, var(--teal), #0284c7);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.3);
}

.cdp-info-card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(14, 165, 233, 0.45);
}

.cdp-btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: cdp-shine 3s infinite;
}

@keyframes cdp-shine {
  0% { left: -100%; }
  40% { left: 100%; }
  100% { left: 100%; }
}

.cdp-info-card-links {
  display: flex;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem 0;
}

.cdp-info-card-wa {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem;
  text-align: center;
  color: #25d366;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  border: 1px solid rgba(37, 211, 102, 0.2);
  background: rgba(37, 211, 102, 0.05);
  transition: all 0.2s;
}

.cdp-info-card-wa:hover {
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.3);
}

.cdp-info-card-call {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem;
  text-align: center;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  border: 1px solid rgba(14, 165, 233, 0.2);
  background: rgba(14, 165, 233, 0.05);
  transition: all 0.2s;
}

.cdp-info-card-call:hover {
  background: rgba(14, 165, 233, 0.1);
  border-color: rgba(14, 165, 233, 0.3);
}

.cdp-info-card-seats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem 1.5rem;
  font-size: 0.82rem;
  color: #ef4444;
  font-weight: 600;
  text-align: center;
}

.cdp-seats-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
  animation: cdp-pulse 1.5s ease-in-out infinite;
}

/* ---- METRICS STRIP ---- */
.cdp-metrics-section {
  padding: 2.5rem 0;
  background: var(--card-bg);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  position: relative;
}

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

.cdp-metric {
  text-align: center;
  padding: 1.5rem 0.5rem;
  border-radius: 18px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.cdp-metric::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.03), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cdp-metric:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(14, 165, 233, 0.1);
  border-color: rgba(14, 165, 233, 0.25);
}

.cdp-metric:hover::before {
  opacity: 1;
}

.cdp-metric-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(14, 165, 233, 0.05));
  color: var(--teal);
  position: relative;
  z-index: 1;
}

.cdp-metric-value {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.cdp-metric-label {
  font-size: 0.76rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.3rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

/* ---- ABOUT / OVERVIEW ---- */
.cdp-about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.cdp-section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.cdp-about-desc {
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.cdp-check-list {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cdp-check-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: var(--text-primary);
  padding: 0.7rem 1rem;
  border-radius: 12px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cdp-check-list li:hover {
  border-color: rgba(14, 165, 233, 0.25);
  background: rgba(14, 165, 233, 0.04);
  transform: translateX(6px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.cdp-check-list li svg {
  flex-shrink: 0;
}

.cdp-candidate-cards {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1rem;
}

.cdp-candidate-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 1.3rem;
  border-radius: 16px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cdp-candidate-card:hover {
  transform: translateY(-3px);
  border-color: rgba(14, 165, 233, 0.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.cdp-candidate-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(14, 165, 233, 0.05));
  flex-shrink: 0;
  color: var(--teal);
}

.cdp-candidate-card div:last-child {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.cdp-candidate-card strong {
  font-size: 0.95rem;
  color: var(--text-primary);
}

.cdp-candidate-card span {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ---- CURRICULUM — PREMIUM ---- */
.cdp-curriculum-wrapper {
  margin-top: 1.5rem;
}

.cdp-curriculum-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 860px;
  margin: 1.5rem auto 0;
  flex-wrap: wrap;
  gap: 1rem;
}

.cdp-expand-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.15);
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.cdp-expand-all-btn:hover {
  background: rgba(14, 165, 233, 0.12);
  border-color: rgba(14, 165, 233, 0.3);
}

.cdp-curriculum-progress {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.cdp-progress-text {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.cdp-progress-bar {
  width: 120px;
  height: 6px;
  border-radius: 10px;
  background: rgba(14, 165, 233, 0.1);
  overflow: hidden;
}

.cdp-progress-fill {
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  animation: cdp-progress-slide 2s ease-out;
}

@keyframes cdp-progress-slide {
  from { width: 0; }
}

.cdp-module-info {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex: 1;
}

.cdp-module-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--teal), #0284c7);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(14, 165, 233, 0.25);
}

.cdp-module-duration {
  margin-left: auto;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  background: rgba(14, 165, 233, 0.08);
  color: var(--teal);
  white-space: nowrap;
}

.cdp-premium-accordion .accordion-item {
  border-radius: 14px;
  margin-bottom: 0.8rem;
  border: 1px solid var(--card-border);
  overflow: hidden;
  transition: all 0.3s ease;
}

.cdp-premium-accordion .accordion-item:hover {
  border-color: rgba(14, 165, 233, 0.15);
}

.cdp-premium-accordion .accordion-item.active {
  border-color: rgba(14, 165, 233, 0.2);
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.06);
}

.cdp-premium-accordion .accordion-body-inner ul li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

.cdp-premium-accordion .accordion-body-inner ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

.cdp-curriculum-footer {
  margin-top: 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.cdp-curriculum-note {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ---- TOOLS & TECHNOLOGIES ---- */
.cdp-tools-container {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cdp-tools-category {
  padding: 1.8rem;
  border-radius: 18px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  transition: all 0.3s ease;
}

.cdp-tools-category:hover {
  border-color: rgba(14, 165, 233, 0.15);
}

.cdp-tools-category-title {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 1.2rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cdp-tools-category-title::before {
  content: '';
  width: 3px;
  height: 16px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--teal), transparent);
}

.cdp-tools-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.cdp-tool-card {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.1rem;
  border-radius: 12px;
  background: rgba(14, 165, 233, 0.03);
  border: 1px solid var(--card-border);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-primary);
  cursor: default;
}

.cdp-tool-card:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: rgba(14, 165, 233, 0.3);
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.08);
  background: rgba(14, 165, 233, 0.06);
}

.cdp-tool-card img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.cdp-tool-card:hover img {
  transform: scale(1.15);
}

/* ---- PROJECTS SECTION ---- */
.cdp-projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.cdp-project-card {
  padding: 2rem;
  border-radius: 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cdp-project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.cdp-project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.1);
  border-color: rgba(14, 165, 233, 0.2);
}

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

.cdp-project-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.cdp-project-badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  background: rgba(14, 165, 233, 0.1);
  color: var(--teal);
}

.cdp-project-level {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  background: rgba(196, 149, 46, 0.1);
  color: var(--gold);
}

.cdp-project-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.cdp-project-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

.cdp-project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.cdp-project-tags span {
  font-size: 0.7rem;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  background: rgba(14, 165, 233, 0.06);
  border: 1px solid var(--card-border);
  color: var(--text-secondary);
  font-weight: 500;
  transition: all 0.2s;
}

.cdp-project-tags span:hover {
  color: var(--teal);
  border-color: rgba(14, 165, 233, 0.2);
}

/* ---- LEARNING JOURNEY ---- */
.cdp-journey-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.cdp-journey-step {
  flex: 0 0 210px;
  text-align: center;
  padding: 2rem 1.2rem;
  border-radius: 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.cdp-journey-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(14, 165, 233, 0.25);
}

.cdp-journey-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), #0284c7);
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.cdp-journey-step h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.cdp-journey-step p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.cdp-journey-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 2.5rem;
  flex-shrink: 0;
  width: 60px;
  color: var(--teal);
}

/* ---- CAREER OUTCOMES ---- */
.cdp-career-content {
  margin-top: 2rem;
}

.cdp-salary-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2.5rem;
  padding: 2.5rem;
  border-radius: 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}

.cdp-salary-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}

.cdp-salary-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.cdp-salary-range {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  width: 100%;
}

.cdp-salary-min,
.cdp-salary-max {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
}

.cdp-salary-bar {
  flex: 1;
  height: 10px;
  border-radius: 10px;
  background: rgba(14, 165, 233, 0.1);
  position: relative;
  overflow: hidden;
}

.cdp-salary-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--teal), #8b5cf6, var(--gold));
  animation: cdp-salary-grow 2s ease-out forwards;
}

@keyframes cdp-salary-grow {
  from { width: 0; }
  to { width: 100%; }
}

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

.cdp-role-card {
  text-align: center;
  padding: 1.8rem 1rem;
  border-radius: 18px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.cdp-role-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.cdp-role-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(14, 165, 233, 0.2);
}

.cdp-role-card:hover::after {
  transform: scaleX(1);
}

.cdp-role-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(14, 165, 233, 0.05));
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.cdp-role-card strong {
  font-size: 0.9rem;
  color: var(--text-primary);
}

.cdp-role-card span {
  font-size: 0.78rem;
  color: var(--teal);
  font-weight: 600;
}

/* ---- ALUMNI COMPANIES ---- */
.cdp-companies-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
}

.cdp-company-tag {
  padding: 0.65rem 1.5rem;
  border-radius: 50px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cdp-company-tag:hover {
  border-color: rgba(14, 165, 233, 0.3);
  color: var(--teal);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.08);
}

/* ---- INSTRUCTOR SECTION ---- */
.cdp-instructor-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  margin-top: 2.5rem;
  padding: 2.5rem 3rem;
  border-radius: 24px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  position: relative;
  overflow: hidden;
}

.cdp-instructor-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), #8b5cf6, var(--gold));
}

.cdp-instructor-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cdp-instructor-avatar {
  position: relative;
  flex-shrink: 0;
}

.cdp-instructor-initials {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), #0284c7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.cdp-instructor-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: linear-gradient(135deg, var(--teal), var(--gold)) border-box;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  animation: cdp-ring-spin 8s linear infinite;
}

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

.cdp-instructor-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.cdp-instructor-role {
  font-size: 0.9rem;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.cdp-instructor-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cdp-instr-badge {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.15);
  color: var(--teal);
}

.cdp-instructor-right {
  flex-shrink: 0;
}

.cdp-instructor-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.cdp-instr-stat {
  text-align: center;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  background: rgba(14, 165, 233, 0.04);
  border: 1px solid var(--card-border);
}

.cdp-instr-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
}

.cdp-instr-stat-label {
  font-size: 0.72rem;
  color: var(--text-secondary);
  margin-top: 0.2rem;
  font-weight: 500;
}

/* ---- STUDENT TESTIMONIALS ---- */
.cdp-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.cdp-testimonial-card {
  padding: 2rem;
  border-radius: 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.cdp-testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 5rem;
  font-family: 'Playfair Display', serif;
  color: rgba(14, 165, 233, 0.06);
  line-height: 1;
}

.cdp-testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.08);
  border-color: rgba(14, 165, 233, 0.2);
}

.cdp-testimonial-stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.cdp-testimonial-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.cdp-testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.cdp-testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), #0284c7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.cdp-testimonial-author strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text-primary);
}

.cdp-testimonial-author span {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.cdp-testimonial-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  background: rgba(14, 165, 233, 0.08);
  color: var(--teal);
}

/* ---- FINAL CTA — PREMIUM ---- */
.cdp-final-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #020617, #0a1628, #0d1f3c);
  text-align: center;
  color: #fff;
}

.cdp-final-cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cdp-final-cta-orb.cdp-final-cta-orb-1 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.5), transparent 70%);
  top: -200px;
  left: -100px;
  animation: cdp-orb-float 16s ease-in-out infinite;
}

.cdp-final-cta-orb.cdp-final-cta-orb-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
  background: radial-gradient(circle, rgba(196, 149, 46, 0.5), transparent 70%);
  bottom: -150px;
  right: -80px;
  animation: cdp-orb-float 20s ease-in-out infinite reverse;
}

.cdp-final-cta-content {
  position: relative;
  z-index: 2;
}

.cdp-final-cta-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  background: rgba(196, 149, 46, 0.15);
  border: 1px solid rgba(196, 149, 46, 0.25);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.cdp-final-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cdp-final-cta p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}

.cdp-final-cta-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.cdp-price-now {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
}

.cdp-price-emi {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.cdp-final-cta .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.cdp-final-cta-trust {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cdp-final-cta-trust span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ---- CDP DARK MODE ---- */
[data-theme="dark"] .cdp-hero {
  background: linear-gradient(135deg, #000000 0%, #050a15 35%, #0a1020 60%, #070d18 100%);
}

[data-theme="dark"] .cdp-info-card {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .cdp-metrics-section {
  background: var(--card-bg);
}

[data-theme="dark"] .cdp-metric {
  background: var(--card-bg);
}

[data-theme="dark"] .cdp-tool-card {
  background: rgba(14, 165, 233, 0.02);
}

[data-theme="dark"] .cdp-project-card,
[data-theme="dark"] .cdp-journey-step,
[data-theme="dark"] .cdp-role-card,
[data-theme="dark"] .cdp-candidate-card,
[data-theme="dark"] .cdp-salary-highlight,
[data-theme="dark"] .cdp-tools-category,
[data-theme="dark"] .cdp-instructor-card,
[data-theme="dark"] .cdp-testimonial-card,
[data-theme="dark"] .cdp-instr-stat {
  background: var(--card-bg);
  border-color: var(--card-border);
}

[data-theme="dark"] .cdp-company-tag {
  background: var(--card-bg);
  border-color: var(--card-border);
}

[data-theme="dark"] .cdp-final-cta {
  background: linear-gradient(135deg, #000000, #050a15, #0a1020);
}

/* ---- CDP RESPONSIVE ---- */
@media (max-width: 1024px) {
  .cdp-hero-content {
    grid-template-columns: 1fr;
  }

  .cdp-info-card {
    max-width: 440px;
  }

  .cdp-info-card-sticky {
    position: relative;
    top: auto;
  }

  .cdp-hero-title {
    font-size: 2.8rem;
  }

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

  .cdp-about-grid {
    grid-template-columns: 1fr;
  }

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

  .cdp-journey-connector {
    display: none;
  }

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

  .cdp-journey-step {
    flex: unset;
  }

  .cdp-instructor-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
    gap: 2rem;
  }

  .cdp-instructor-left {
    flex-direction: column;
  }

  .cdp-instructor-badges {
    justify-content: center;
  }

  .cdp-testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .cdp-hero {
    padding: 6.5rem 0 3.5rem;
    min-height: auto;
  }

  .cdp-hero-title {
    font-size: 2.2rem;
  }

  .cdp-hero-subtitle {
    font-size: 0.95rem;
  }

  .cdp-hero-badges {
    gap: 0.5rem;
  }

  .cdp-badge {
    font-size: 0.75rem;
    padding: 0.35rem 0.7rem;
  }

  .cdp-hero-ctas {
    flex-direction: column;
  }

  .cdp-hero-ctas .btn {
    text-align: center;
    justify-content: center;
  }

  .cdp-hero-trust {
    flex-direction: column;
    gap: 0.5rem;
  }

  .cdp-info-card {
    max-width: 100%;
  }

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

  .cdp-metric:last-child {
    grid-column: span 2;
    max-width: 200px;
    margin: 0 auto;
  }

  .cdp-section-heading {
    font-size: 1.5rem;
  }

  .cdp-projects-grid {
    grid-template-columns: 1fr;
  }

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

  .cdp-journey-grid {
    grid-template-columns: 1fr;
  }

  .cdp-salary-range {
    gap: 0.6rem;
  }

  .cdp-salary-min,
  .cdp-salary-max {
    font-size: 1.1rem;
  }

  .cdp-testimonials-grid {
    grid-template-columns: 1fr;
  }

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

  .cdp-final-cta h2 {
    font-size: 2rem;
  }

  .cdp-final-cta-price {
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
  }

  .cdp-curriculum-controls {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .cdp-hero {
    padding: 5.5rem 0 2.5rem;
  }

  .cdp-hero-title {
    font-size: 1.8rem;
  }

  .cdp-price-main {
    font-size: 2.2rem;
  }

  .cdp-metric-value {
    font-size: 1.5rem;
  }

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

  .cdp-metric:last-child {
    grid-column: span 2;
  }

  .cdp-role-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }

  .cdp-candidate-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

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

  .cdp-final-cta h2 {
    font-size: 1.6rem;
  }

  .cdp-price-now {
    font-size: 2rem;
  }
}

/* ---- ALUMNI LOGO SCROLLER ---- */
.cdp-logo-scroller {
  width: 100%;
  overflow: hidden;
  padding: 1rem 0 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.cdp-logo-track {
  display: flex;
  width: max-content;
  animation: cdp-scroll 35s linear infinite;
}

.cdp-logo-slide {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  padding: 0 1.75rem;
}

.cdp-company-logo {
  font-family: 'Inter', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-primary);
  opacity: 0.35;
  white-space: nowrap;
  transition: all 0.4s ease;
  user-select: none;
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  border: 1px solid transparent;
}

.cdp-company-logo:hover {
  opacity: 1;
  color: var(--teal);
  border-color: rgba(14, 165, 233, 0.15);
  background: rgba(14, 165, 233, 0.04);
  transform: scale(1.08);
}

[data-theme="dark"] .cdp-company-logo {
  opacity: 0.3;
}

[data-theme="dark"] .cdp-company-logo:hover {
  opacity: 1;
  color: var(--teal);
  background: rgba(14, 165, 233, 0.08);
}

@keyframes cdp-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.cdp-logo-scroller:hover .cdp-logo-track {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .cdp-logo-slide {
    gap: 2rem;
  }
  .cdp-company-logo {
    font-size: 1.05rem;
    padding: 0.4rem 0.8rem;
  }
}

/* ===== STICKY CTA BAR ===== */
.cdp-sticky-cta {
  position: fixed;
  bottom: -80px;
  left: 0;
  right: 0;
  z-index: 9998;
  background: var(--card-bg);
  border-top: 1px solid var(--card-border);
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.08);
  transition: bottom 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.cdp-sticky-cta.visible {
  bottom: 0;
}

.cdp-sticky-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cdp-sticky-cta-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-width: 0;
}

.cdp-sticky-cta-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
  white-space: nowrap;
}

.cdp-sticky-cta-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  white-space: nowrap;
}

.cdp-sticky-cta-sep {
  color: var(--text-muted);
}

.cdp-sticky-cta-price s {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-right: 0.25rem;
}

.cdp-sticky-cta-price strong {
  color: var(--teal);
  font-size: 1.05rem;
  font-weight: 800;
}

.cdp-sticky-cta-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cdp-sticky-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.5rem;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.cdp-sticky-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
}

.cdp-sticky-cta-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1.5px solid var(--border-color);
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.cdp-sticky-cta-call:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(14, 165, 233, 0.06);
}

@media (max-width: 640px) {
  .cdp-sticky-cta-inner {
    padding: 0.65rem 1rem;
  }
  .cdp-sticky-cta-title {
    font-size: 0.82rem;
  }
  .cdp-sticky-cta-meta {
    display: none;
  }
  .cdp-sticky-cta-btn {
    padding: 0.55rem 1.2rem;
    font-size: 0.8rem;
  }
}

/* ===== BEFORE/AFTER CAREER TRANSFORMATION ===== */
.cdp-transform-section {
  background: var(--navy-light);
  overflow: hidden;
}

.cdp-transform-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  margin-top: 2.5rem;
}

.cdp-transform-card {
  flex: 1;
  max-width: 420px;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  border: 1px solid var(--card-border);
  position: relative;
  transition: all 0.4s ease;
}

.cdp-transform-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}

.cdp-transform-before {
  border-color: rgba(239, 68, 68, 0.15);
}

.cdp-transform-before:hover {
  border-color: rgba(239, 68, 68, 0.3);
}

.cdp-transform-after {
  border-color: rgba(34, 197, 94, 0.15);
  background: linear-gradient(135deg, var(--card-bg), rgba(34, 197, 94, 0.03));
}

.cdp-transform-after:hover {
  border-color: rgba(34, 197, 94, 0.3);
}

.cdp-transform-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}

.cdp-label-before {
  background: rgba(239, 68, 68, 0.08);
  color: #ef4444;
}

.cdp-label-after {
  background: rgba(34, 197, 94, 0.08);
  color: #22c55e;
}

.cdp-transform-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.cdp-avatar-before {
  background: rgba(239, 68, 68, 0.06);
  color: #ef4444;
  border: 2px dashed rgba(239, 68, 68, 0.2);
}

.cdp-avatar-after {
  background: rgba(34, 197, 94, 0.06);
  color: #22c55e;
  border: 2px solid rgba(34, 197, 94, 0.25);
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.1);
}

.cdp-transform-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cdp-transform-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.cdp-transform-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.cdp-item-negative span {
  color: var(--text-muted);
}

.cdp-item-positive span {
  color: var(--text-primary);
  font-weight: 500;
}

.cdp-transform-salary-tag {
  margin-top: 1.5rem;
  padding: 0.85rem 1.2rem;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(14, 165, 233, 0.08));
  border: 1px solid rgba(34, 197, 94, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cdp-transform-salary-tag span {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cdp-transform-salary-tag strong {
  font-size: 1.35rem;
  font-weight: 800;
  background: linear-gradient(135deg, #22c55e, var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Divider */
.cdp-transform-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0 1.5rem;
  flex-shrink: 0;
}

.cdp-transform-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.3);
  animation: cdp-arrow-pulse 2s ease-in-out infinite;
}

@keyframes cdp-arrow-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 20px rgba(14, 165, 233, 0.3); }
  50% { transform: scale(1.08); box-shadow: 0 6px 30px rgba(14, 165, 233, 0.4); }
}

.cdp-transform-vs {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

/* Dark mode */
[data-theme="dark"] .cdp-transform-before {
  background: rgba(239, 68, 68, 0.03);
}

[data-theme="dark"] .cdp-transform-after {
  background: rgba(34, 197, 94, 0.04);
}

[data-theme="dark"] .cdp-sticky-cta {
  background: rgba(30, 41, 59, 0.95);
  border-top-color: rgba(255, 255, 255, 0.08);
}

/* Transform responsive */
@media (max-width: 900px) {
  .cdp-transform-grid {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .cdp-transform-card {
    max-width: 100%;
    width: 100%;
  }
  .cdp-transform-divider {
    flex-direction: row;
    padding: 0.5rem 0;
  }
  .cdp-transform-arrow {
    width: 44px;
    height: 44px;
  }
  .cdp-transform-arrow svg {
    transform: rotate(90deg);
  }
}
