/* ============================================================
   KSHIPRA ACADEMY — SKILL-BASED WORKSHOPS LANDING PAGE
   UNIFIED WITH KSHIPRA MAIN WEBSITE DESIGN SYSTEM
   ============================================================ */

/* ---- Design Variables: Kshipra Main Site Theme ---- */
:root {
  /* Kshipra Brand Primary Palette */
  --clr-primary: #B22234;           /* Crimson Red */
  --clr-primary-dark: #8B1A28;
  --clr-primary-light: #D43D4F;
  --clr-accent: #E8732A;            /* Orange */
  --clr-accent-glow: #F5923D;
  --clr-gold: #D4A017;
  --clr-gold-soft: #F5C542;
  --clr-success: #10b981;
  --clr-danger: #ef4444;

  /* Kshipra Brand Palette aliases (shared components) */
  --clr-kshipra-primary: #B22234;
  --clr-kshipra-accent: #E8732A;

  /* Dark Theme Neutrals (kshipra.in main site) */
  --clr-dark: #0F0F14;
  --clr-dark-card: #17171E;
  --clr-dark-surface: #1E1E28;
  --clr-dark-border: rgba(255, 255, 255, 0.07);
  --clr-text: #F0EEF0;
  --clr-text-muted: #9A96A4;
  --clr-white: #ffffff;

  /* Gradients */
  --grad-hero: linear-gradient(135deg, #0F0F14 0%, #17101A 50%, #1A0F0F 100%);
  --grad-primary: linear-gradient(135deg, var(--clr-primary), var(--clr-accent));
  --grad-accent: linear-gradient(135deg, var(--clr-accent), var(--clr-primary));
  --grad-gold: linear-gradient(135deg, var(--clr-gold), var(--clr-accent));
  --grad-kshipra: linear-gradient(to right, var(--clr-kshipra-primary), var(--clr-kshipra-accent));

  /* Typography */
  --ff-heading: 'Outfit', sans-serif;
  --ff-body: 'Inter', sans-serif;

  /* Layout */
  --container-max: 1200px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Light Mode Overrides (keeps dark as default, matching kshipra.in) */
html.light-mode {
  --clr-dark: #fafaf9;
  --clr-dark-card: #ffffff;
  --clr-dark-surface: #f5f5f4;
  --clr-dark-border: rgba(0, 0, 0, 0.08);
  --clr-text: #1c1917;
  --clr-text-muted: #6b7280;
  --grad-hero: linear-gradient(135deg, #fff5f5 0%, #ffffff 50%, #fff8f0 100%);
}


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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

section[id], header[id] {
  scroll-margin-top: 80px;
}

body {
  font-family: var(--ff-body);
  background-color: var(--clr-dark);
  color: var(--clr-text);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background-color var(--transition), color var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

/* ---- UI Elements & Utilities ---- */
.glass-card {
  background: var(--clr-dark-card);
  border: 1px solid var(--clr-dark-border);
  border-radius: var(--radius-md);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.glass-card:hover {
  border-color: rgba(232, 115, 42, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

html.light-mode .glass-card {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

html.light-mode .glass-card:hover {
  box-shadow: 0 16px 40px rgba(178, 34, 52, 0.1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-family: var(--ff-heading);
  font-size: 0.95rem;
  font-weight: 700;
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--grad-primary);
  color: #ffffff;
  box-shadow: 0 8px 30px rgba(178, 34, 52, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(178, 34, 52, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--clr-text);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

html.light-mode .btn-outline {
  color: #1c1917;
  border-color: rgba(178, 34, 52, 0.4);
}

html.light-mode .btn-outline:hover {
  background: rgba(178, 34, 52, 0.05);
}

.btn-interactive {
  position: relative;
  overflow: hidden;
}

.btn-interactive::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
  z-index: 1;
}

.btn-interactive:hover::after {
  height: 200%;
}

.btn-text, .btn i {
  position: relative;
  z-index: 2;
}

/* ---- Section Headers ---- */
section {
  position: relative;
  padding: clamp(3rem, 6vw, 6rem) 0;
  z-index: 2;
}

.section-header {
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
  max-width: 700px;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-label {
  font-family: var(--ff-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--clr-accent);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}

.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--clr-accent);
  border-radius: 2px;
}

.section-title {
  color: var(--clr-text);
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title .highlight {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  color: var(--clr-text-muted);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.8;
}

/* ============================================================
   SHARED KSHIPRA COMPONENTS (Navbar, Footer, Contact)
   DO NOT ALTER OR MIX COURSE PALETTE IN THESE.
   ============================================================ */

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 15, 20, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--clr-dark-border);
  transition: padding 0.4s ease, background 0.4s ease, border 0.4s ease;
}

html.light-mode .navbar {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.navbar.scrolled {
  background: rgba(15, 15, 20, 0.97);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 0;
  transition: padding 0.4s ease;
}

.navbar.scrolled .nav-inner {
  padding: 0.8rem 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.nav-logo img {
  height: 50px;
  width: auto;
  transition: height 0.4s ease;
}

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

.nav-logo-text {
  font-family: var(--ff-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-top: 4px;
}

html.light-mode .nav-logo-text {
  color: #121215;
}

.nav-logo-text span {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--clr-kshipra-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 3px;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.nav-links li {
  display: flex;
  align-items: center;
}

.nav-links a {
  font-family: var(--ff-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: #9A96A4;
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
}

html.light-mode .nav-links a {
  color: #64636A;
}

.nav-links a:not(.nav-cta-inner):hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

html.light-mode .nav-links a:not(.nav-cta-inner):hover {
  color: #121215;
  background: rgba(0, 0, 0, 0.05);
}

.nav-cta-inner {
  margin-left: 0.4rem;
  padding: 0.7rem 1.6rem !important;
  background: var(--grad-kshipra) !important;
  color: #ffffff !important;
  border-radius: 50px !important;
  font-size: 0.85rem !important;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(178, 34, 52, 0.35);
  border: none;
}

.nav-cta-inner:hover {
  transform: translateY(-2px);
  filter: brightness(1.15);
}

.dropdown { position: relative; }
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #17171E;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  min-width: 220px;
  padding: 0.5rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

html.light-mode .dropdown-content {
  background: #ffffff;
  border-color: rgba(0,0,0,0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.dropdown-content a {
  display: block;
  padding: 0.65rem 1.2rem !important;
  font-size: 0.82rem !important;
  text-align: left;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.theme-toggle-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(128,128,128,0.1);
  border: 1px solid rgba(128,128,128,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9A96A4;
  transition: var(--transition-fast);
}

html.light-mode .theme-toggle-btn {
  color: #64636A;
}

.theme-toggle-btn:hover {
  transform: scale(1.05);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
  color: #ffffff;
}

html.light-mode .hamburger {
  color: #121215;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* NAVBAR MOBILE MENU ACTIVE */
@media (max-width: 991px) {
  .hamburger {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0F0F14;
    flex-direction: column;
    padding: 2.5rem 1.5rem;
    gap: 1.5rem;
    display: none;
    z-index: 999;
  }
  html.light-mode .nav-links {
    background: #ffffff;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links li {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .nav-links a {
    display: block;
    font-size: 1.1rem;
    padding: 0.8rem;
  }
  .nav-cta-inner {
    margin-left: 0;
    width: auto;
  }
  .dropdown-content {
    position: static;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0;
    text-align: center;
  }
  .dropdown-content a {
    text-align: center !important;
  }
}

/* CONTACT & FOOTER */
.contact-section, .footer {
  background: #0F0F14;
  color: #F0EEF0;
  position: relative;
  z-index: 5;
}

html.light-mode .contact-section {
  background: #F5F5FA;
  color: #18181D;
}
html.light-mode .footer {
  background: #F5F5FA;
  color: #18181D;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 45px;
  height: 45px;
  background: rgba(178, 34, 52, 0.1);
  color: var(--clr-kshipra-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-map-wrap {
  flex-grow: 1;
  min-height: 250px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 1rem;
}

html.light-mode .contact-section .section-title {
  color: #121215;
}

.contact-section .section-label {
  color: var(--clr-kshipra-accent);
}
.contact-section .section-label::before {
  background: var(--clr-kshipra-accent);
}
.contact-section .section-title .highlight {
  background: var(--grad-kshipra);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer {
  padding: 4rem 0 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
html.light-mode .footer { border-top-color: rgba(0,0,0,0.05); }

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

.footer-brand p {
  font-size: 0.88rem;
  color: #9A96A4;
  line-height: 1.6;
  margin-top: 1.2rem;
  max-width: 320px;
}

html.light-mode .footer-brand p {
  color: #64636A;
}

.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}
html.light-mode .social-btn { background: rgba(0,0,0,0.05); }

.footer-col h5 {
  margin-bottom: 1.5rem;
  font-family: var(--ff-heading);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  display: block;
  color: #9A96A4;
  font-size: 0.88rem;
}
html.light-mode .footer-links a { color: #64636A; }

.footer-links a:hover {
  color: var(--clr-kshipra-accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1.5rem;
  font-size: 0.85rem;
}
html.light-mode .footer-bottom { border-top-color: rgba(0,0,0,0.05); }

/* ============================================================
   AMBIENT PAGE GRAPHICS
   ============================================================ */
.page-ambient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vw;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.08;
  animation: orbFloat 25s infinite alternate ease-in-out;
}

html:not(.light-mode) .ambient-orb {
  opacity: 0.06;
}

.orb-1 {
  width: 45vw;
  height: 45vw;
  max-width: 600px;
  background: var(--clr-primary);
  top: -5%;
  left: -5%;
  animation-delay: 0s;
  opacity: 0.05;
}

.orb-2 {
  width: 40vw;
  height: 40vw;
  max-width: 500px;
  background: var(--clr-accent);
  bottom: 5%;
  right: -5%;
  animation-delay: -5s;
  opacity: 0.04;
}

.orb-3 {
  width: 30vw;
  height: 30vw;
  max-width: 400px;
  background: var(--clr-gold);
  top: 35%;
  left: 45%;
  transform: translateX(-50%);
  animation-delay: -10s;
  opacity: 0.03;
}

.ambient-noise {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  mix-blend-mode: overlay;
}

html.light-mode .ambient-noise {
  opacity: 0.015;
}

@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(3%, 5%) scale(1.05); }
  100% { transform: translate(-3%, -3%) scale(0.95); }
}

/* ============================================================
   HERO SECTION: Skill-Based Workshops
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 80px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--grad-hero);
}

/* Crimson accent line on left */
.hero::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--grad-primary);
  opacity: 0.5;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: center;
}


/* ── Badge ── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.2rem;
  background: rgba(178, 34, 52, 0.08);
  border: 1px solid rgba(178, 34, 52, 0.2);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-accent);
  margin-bottom: 1.5rem;
  font-family: var(--ff-heading);
  letter-spacing: 0.02em;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--clr-accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--clr-accent);
  animation: blink 2s infinite;
}

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

/* ── Title ── */
.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.3rem;
  color: var(--clr-text);
  font-family: var(--ff-heading);
  letter-spacing: -0.02em;
}

.hero-title .highlight {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Description ── */
.hero-desc {
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  color: var(--clr-text-muted);
  margin-bottom: 1.8rem;
  max-width: 520px;
  line-height: 1.75;
}

/* ── Format Pills ── */
.hero-formats {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.format-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.38rem 0.9rem;
  background: rgba(232, 115, 42, 0.08);
  border: 1px solid rgba(232, 115, 42, 0.2);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--clr-accent);
  font-family: var(--ff-heading);
  letter-spacing: 0.02em;
  transition: var(--transition);
}

.format-pill:hover {
  background: rgba(232, 115, 42, 0.14);
  border-color: rgba(232, 115, 42, 0.4);
  transform: translateY(-1px);
}

/* ── CTAs ── */
.hero-ctas {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
}

/* ── RIGHT VISUAL PANEL ── */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  min-width: 0;
}

/* Batch Card */
.hero-card {
  padding: 1.8rem;
  position: relative;
}

.hc-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.live-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--clr-success);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: var(--ff-heading);
}

.live-dot {
  width: 6px;
  height: 6px;
  background: var(--clr-success);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--clr-success);
  animation: blink 1.5s infinite;
}

.hc-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(178, 34, 52, 0.1);
  color: var(--clr-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.hc-title {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-text-muted);
  margin-bottom: 0.4rem;
  font-family: var(--ff-heading);
}

.hc-course {
  font-family: var(--ff-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--clr-text);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.hc-meta {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.4rem;
  font-size: 0.85rem;
  color: var(--clr-text-muted);
}

.hc-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hc-meta i {
  color: var(--clr-accent);
  font-size: 0.8rem;
}

.hc-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--clr-primary);
  border-top: 1px solid var(--clr-dark-border);
  padding-top: 1rem;
  width: 100%;
  transition: var(--transition);
}

.hc-cta:hover {
  color: var(--clr-accent);
  gap: 0.8rem;
}

html.light-mode .hc-cta {
  color: var(--clr-primary);
}

/* Stats Row */
.hero-stats-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--clr-dark-card);
  border: 1px solid var(--clr-dark-border);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.8rem;
}

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

.hs-num {
  font-family: var(--ff-heading);
  font-size: 2rem;
  font-weight: 900;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.hs-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--ff-heading);
}

.hero-stat-div {
  width: 1px;
  height: 36px;
  background: var(--clr-dark-border);
}

/* Skills Ticker */
.skills-ticker-wrap {
  overflow: hidden;
  background: var(--clr-dark-card);
  border: 1px solid var(--clr-dark-border);
  border-radius: var(--radius-md);
  padding: 0.85rem 0;
  position: relative;
}

.skills-ticker-wrap::before,
.skills-ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
}

.skills-ticker-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--clr-dark-card), transparent);
}

.skills-ticker-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--clr-dark-card), transparent);
}

.skills-ticker {
  display: flex;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
  animation: tickerScroll 20s linear infinite;
  font-family: var(--ff-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-text-muted);
}

.skills-ticker span {
  transition: color 0.2s;
}

.ticker-dot {
  color: var(--clr-accent) !important;
  font-size: 1.1rem;
  line-height: 1;
}


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

/* Status indicator (used in other sections) */
.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-success);
}
.status-indicator.live {
  box-shadow: 0 0 8px var(--clr-success);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%   { transform: scale(1); opacity: 1; }
  50%  { transform: scale(1.3); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}


/* ============================================================
   WHY HANDS-ON LEARNING
   ============================================================ */
.comparison-storyboard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
}

.compare-panel {
  padding: clamp(2rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
}

.compare-panel.passive-card {
  opacity: 0.85;
}

.compare-panel.active-card {
  border-color: var(--clr-primary);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.08);
}

html:not(.light-mode) .compare-panel.active-card {
  box-shadow: 0 10px 35px rgba(124, 58, 237, 0.2);
}

.panel-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  background: var(--clr-dark-surface);
  border-radius: 4px;
  margin-bottom: 1.5rem;
  color: var(--clr-text-muted);
}

.panel-tag.active-tag {
  background: rgba(124, 58, 237, 0.1);
  color: var(--clr-primary);
  border: 1px solid rgba(124, 58, 237, 0.2);
}

html:not(.light-mode) .panel-tag.active-tag {
  color: var(--clr-primary-light);
  border-color: rgba(167, 139, 250, 0.2);
}

.panel-body h3 {
  font-family: var(--ff-heading);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.panel-text {
  color: var(--clr-text-muted);
  margin-bottom: 2rem;
}

.compare-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.compare-list li i {
  margin-top: 4px;
  font-size: 1.1rem;
}

.text-red { color: var(--clr-danger); }
.text-green { color: var(--clr-success); }

/* ============================================================
   WORKSHOP OVERVIEW
   ============================================================ */
.bento-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.explorer-card {
  padding: 2.2rem;
  cursor: pointer;
}

.explorer-card.active {
  border-color: var(--clr-accent);
  box-shadow: 0 8px 30px rgba(232, 115, 42, 0.15);
  transform: translateY(-4px);
}

.bb-header {
  margin-bottom: 1.5rem;
}

.bb-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--clr-dark-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--clr-text-muted);
  margin-bottom: 1.2rem;
  transition: var(--transition);
}

.explorer-card.active .bb-icon {
  background: rgba(232, 115, 42, 0.12);
  color: var(--clr-accent);
}

.bb-header h3 {
  font-family: var(--ff-heading);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
}

.bb-time {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--clr-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.explorer-card p {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.bb-extra {
  border-top: 1px solid var(--clr-dark-border);
  padding-top: 1.2rem;
  opacity: 0.5;
  transition: var(--transition);
}

.explorer-card.active .bb-extra {
  opacity: 1;
}

.bb-extra h5 {
  font-family: var(--ff-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--clr-text);
  margin-bottom: 0.8rem;
  letter-spacing: 0.05em;
}

.bb-extra ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.bb-extra li {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  position: relative;
  padding-left: 12px;
}

.bb-extra li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--clr-accent);
}

/* Bento Box 4: Audience Panel */
.bento-box.full-width {
  grid-column: span 3;
  padding: 2.5rem;
}

.audience-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.ap-text h3 {
  font-family: var(--ff-heading);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.ap-text p {
  color: var(--clr-text-muted);
}

.ap-profiles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.profile-item {
  display: flex;
  gap: 1rem;
}

.pi-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(232, 115, 42, 0.1);
  color: var(--clr-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.profile-item h4 {
  font-family: var(--ff-heading);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.profile-item p {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  line-height: 1.4;
}

/* ============================================================
   LEARNING BY DOING: Connected Stages
   ============================================================ */
.journey-spaces {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  height: 380px;
}

.space-panel {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.sp-num {
  font-family: var(--ff-heading);
  font-size: 3rem;
  font-weight: 900;
  opacity: 0.15;
  line-height: 1;
  position: absolute;
  top: 2rem;
  right: 2rem;
  transition: var(--transition);
}

.space-panel h3 {
  font-family: var(--ff-heading);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

.sp-short {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  transition: var(--transition);
}

.sp-detail {
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: var(--transition);
}

/* Active space expansion */
.space-panel.active {
  flex: 2.2;
  border-color: var(--clr-accent);
  box-shadow: 0 10px 30px rgba(232, 115, 42, 0.12);
  background: var(--clr-dark-card);
}

.space-panel.active .sp-num {
  opacity: 0.3;
  color: var(--clr-accent);
  transform: scale(1.1);
}

.space-panel.active h3 {
  color: var(--clr-accent);
  font-size: 1.5rem;
}

.space-panel.active .sp-short {
  margin-bottom: 1rem;
}

.space-panel.active .sp-detail {
  opacity: 1;
  height: auto;
  border-top: 1px solid var(--clr-dark-border);
  padding-top: 1rem;
}

.sp-detail h5 {
  font-family: var(--ff-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--clr-text);
  margin-bottom: 0.4rem;
  letter-spacing: 0.05em;
}

.sp-detail p {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
}

/* ============================================================
   SKILLS YOU'LL PRACTICE: Practice Studio
   ============================================================ */
.skills-studio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.skill-card {
  padding: 2rem;
  cursor: pointer;
  position: relative;
}

.sc-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--clr-accent);
  background: rgba(232, 115, 42, 0.1);
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.05em;
}

.sc-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--clr-dark-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--clr-text-muted);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.skill-card h3 {
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.sc-summary {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.sc-expanded-content {
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: var(--transition);
}

/* Active Skill Card Styles */
.skill-card.active {
  border-color: var(--clr-accent);
  box-shadow: 0 10px 30px rgba(232, 115, 42, 0.15);
}

.skill-card.active .sc-icon {
  background: var(--grad-primary);
  color: #ffffff;
}

.skill-card.active .sc-summary {
  margin-bottom: 1rem;
}

.skill-card.active .sc-expanded-content {
  opacity: 1;
  height: auto;
  border-top: 1px solid var(--clr-dark-border);
  padding-top: 1rem;
}

.sc-expanded-content h5 {
  font-family: var(--ff-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.sc-expanded-content p {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.sc-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  background: var(--clr-dark-surface);
  color: var(--clr-text);
  padding: 2px 8px;
  border-radius: 4px;
  margin-right: 6px;
  margin-bottom: 6px;
}

/* Sibling dimming helper class (managed via JS) */
.skills-studio-grid.dimmed .skill-card:not(.active) {
  opacity: 0.55;
}

/* ============================================================
   PROJECT EXPERIENCE: Sandbox Workspace
   ============================================================ */
.project-workspace-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.pw-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  border-bottom: 1px solid var(--clr-dark-border);
  padding-bottom: 1rem;
}

.pw-tab-btn {
  padding: 0.6rem 1.4rem;
  border-radius: 8px;
  font-family: var(--ff-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--clr-text-muted);
  transition: var(--transition-fast);
}

.pw-tab-btn:hover {
  background: var(--clr-dark-surface);
  color: var(--clr-text);
}

.pw-tab-btn.active {
  background: var(--grad-primary);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(178, 34, 52, 0.25);
}

.pw-content-box {
  padding: clamp(2rem, 5vw, 3.5rem);
}

.pw-detail {
  display: none;
}

.pw-detail.active {
  display: block;
}

.pw-detail-header {
  margin-bottom: 2rem;
}

.pw-detail-header .pw-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--clr-accent);
  letter-spacing: 0.05em;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.pw-detail-header h3 {
  font-family: var(--ff-heading);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 800;
  color: var(--clr-text);
}

.pw-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2rem;
}

.pw-col h5 {
  font-family: var(--ff-heading);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--clr-text);
}

.pw-col p {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
}

.pw-col.span-2 {
  grid-column: span 2;
  border-top: 1px solid var(--clr-dark-border);
  padding-top: 1.5rem;
}

/* ============================================================
   REAL-WORLD APPLICATION
   ============================================================ */
.app-editorial-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 2rem;
}

.app-card {
  padding: 2.2rem;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
}

.app-card:hover {
  transform: translateY(-8px);
  border-color: rgba(232, 115, 42, 0.4);
  box-shadow: 0 15px 35px rgba(178, 34, 52, 0.12);
  background: linear-gradient(145deg, var(--clr-dark-card), rgba(178, 34, 52, 0.05));
}

.app-card:hover .ac-num {
  color: var(--clr-accent);
  opacity: 0.8;
  transform: scale(1.1);
}

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

.ac-num {
  font-family: var(--ff-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--clr-primary);
  opacity: 0.3;
  transition: all 0.3s ease;
}

.ac-header h3 {
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  font-weight: 800;
}

.app-card p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

/* ============================================================
   WHY LEARN WITH KSHIPRA: Pillars Grid
   ============================================================ */
.pillars-container {
  display: flex;
  gap: 1.2rem;
  margin-top: 2rem;
}

.pillar-panel {
  flex: 1;
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-dark-border);
  background: var(--clr-dark-card);
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

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

.pillar-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--clr-dark-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--clr-text-muted);
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.pillar-header h3 {
  font-family: var(--ff-heading);
  font-size: 1.15rem;
  font-weight: 800;
}

.pillar-body {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: var(--transition);
}

/* Active pillar styling */
.pillar-panel.active {
  flex: 1.6;
  border-color: var(--clr-primary);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.05);
}

html:not(.light-mode) .pillar-panel.active {
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.15);
}

.pillar-panel.active .pillar-icon {
  background: rgba(124, 58, 237, 0.1);
  color: var(--clr-primary);
}

.pillar-panel.active .pillar-body {
  opacity: 1;
  height: auto;
  border-top: 1px solid var(--clr-dark-border);
  padding-top: 1rem;
}

/* ============================================================
   FAQ SECTION: Premium Accordion
   ============================================================ */
.faq-accordion-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-accordion-item {
  border: 1px solid var(--clr-dark-border);
  background: var(--clr-dark-card);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.8rem;
  text-align: left;
  font-family: var(--ff-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-text);
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.faq-accordion-header:focus-visible {
  outline: 2px solid var(--clr-primary);
}

.accordion-icon {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-body-content {
  padding: 0 1.8rem 1.25rem 1.8rem;
  font-size: 0.92rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
  border-top: 1px solid transparent;
}

/* Expanded state indicators */
.faq-accordion-header[aria-expanded="true"] .accordion-icon {
  transform: rotate(180deg);
}

.faq-accordion-item:has(button[aria-expanded="true"]) {
  border-color: var(--clr-primary);
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.03);
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-wrapper {
  padding: clamp(2rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-content h2 {
  font-family: var(--ff-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.cta-content p {
  color: var(--clr-text-muted);
  margin-bottom: 2rem;
  max-width: 90%;
}

.cta-actions {
  display: flex;
  gap: 1.2rem;
}

.cta-visual-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-stack-item {
  padding: 1rem 1.4rem;
  background: var(--clr-dark-surface);
  border: 1px solid var(--clr-dark-border);
  border-radius: 10px;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.01);
  transition: var(--transition);
}

.cta-stack-item i {
  color: var(--clr-success);
  font-size: 1.1rem;
}

.cta-stack-item:hover {
  transform: translateX(4px);
  border-color: rgba(16, 185, 129, 0.3);
}

/* ============================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ============================================================ */

/* Laptop & Tablet styling */
@media (max-width: 1024px) {
  .hero-container {
    gap: 2rem;
  }
  .journey-spaces {
    height: auto;
    flex-direction: column;
  }
  .space-panel {
    justify-content: flex-start;
    padding-top: 5rem;
  }
  .sp-num {
    top: 1.5rem;
    left: 2rem;
    right: auto;
  }
  .space-panel.active {
    padding-bottom: 2rem;
  }
  .pillars-container {
    flex-direction: column;
  }
  .pillar-panel.active {
    padding-bottom: 2rem;
  }
}

@media (max-width: 991px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 40px;
  }
  .hero-badge {
    justify-content: center;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-ctas {
    justify-content: center;
  }
  .studio-workspace {
    max-width: 460px;
    margin-top: 2rem;
  }
  .comparison-storyboard {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .bento-overview-grid {
    grid-template-columns: 1fr;
  }
  .bento-box.full-width {
    grid-column: span 1;
  }
  .audience-panel {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .skills-studio-grid {
    grid-template-columns: 1fr;
  }
  .sc-expanded-content {
    max-height: 0;
  }
  .pw-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .pw-col.span-2 {
    grid-column: span 1;
  }
  .app-editorial-row {
    grid-template-columns: 1fr;
  }
  .cta-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .cta-content p {
    max-width: 100%;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 575px) {
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }
  .hero-ctas .btn {
    width: 100%;
  }
  .pw-tabs {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-actions {
    flex-direction: column;
    width: 100%;
  }
  .cta-actions .btn {
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }
}

/* ============================================================
   ACCESSIBILITY & REDUCED MOTION PREFERENCES
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    background-attachment: initial !important;
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
  }
  .ambient-orb {
    animation: none !important;
  }
  .status-indicator.live {
    animation: none !important;
  }
}

/* ============================================================
   SCROLL REVEAL ANIMATION SYSTEM
   Reliable CSS + IntersectionObserver based reveals.
   Matches kshipra.in main site's animation approach.
   ============================================================ */

/* Fade up (default) */
.ks-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.ks-reveal.ks-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Slide in from left */
.ks-reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.ks-reveal-left.ks-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Slide in from right */
.ks-reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.ks-reveal-right.ks-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale in */
.ks-reveal-scale {
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.ks-reveal-scale.ks-visible {
  opacity: 1;
  transform: scale(1);
}

/* Reduced motion: skip transitions */
@media (prefers-reduced-motion: reduce) {
  .ks-reveal,
  .ks-reveal-left,
  .ks-reveal-right,
  .ks-reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ============================================================
   CONTACT & FOOTER RESPONSIVENESS (MOBILE OPTIMIZATION)
   ============================================================ */
@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1.2rem;
  }
  .contact-section {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .footer {
    padding: 2.5rem 0 1.5rem 0;
  }
  .footer-social {
    justify-content: flex-start;
  }
  /* Better spacing for contact info on mobile */
  .contact-info {
    order: 2;
  }
  .contact-form {
    order: 1;
  }
  .kf-card {
    max-width: 100% !important;
    width: 100% !important;
  }
}

/* UNIFIED NAVBAR OVERRIDE (MATCHING GCA & CAREERPLUS) */
.navbar .nav-inner { padding: 0.8rem 0 !important; }
.navbar.scrolled .nav-inner { padding: 0.5rem 0 !important; }
@media (max-width: 991px) { .navbar .nav-inner, .navbar.scrolled .nav-inner, .nav-inner { padding: 0.4rem 0 !important; } .navbar .nav-logo img, .navbar.scrolled .nav-logo img { height: 38px !important; } .navbar .nav-logo-text { margin-top: 6px !important; font-size: 1rem !important; } }

