/* ==========================================================================
   JPH LEARNING SKILLS LLP — Master 3D & Premium Stylesheet
   Modern 3D Glassmorphism, Animated Mesh Gradients & Perspective Depth
   ========================================================================== */

:root {
  /* Core neutrals */
  --color-bg: #FAFCFF;
  --color-bg-soft: #F2F5FB;
  --color-bg-tint: #E8EEF8;
  --color-border: #E1E7F2;
  --color-border-light: rgba(255, 255, 255, 0.7);
  --color-text: #0F172A;
  --color-text-muted: #475569;

  /* Brand navy (primary) */
  --color-navy: #0B2447;
  --color-navy-light: #14396B;
  --color-navy-tint: #EBF1FA;

  /* Pillar accent colors (Vibrant 3D Palette) */
  --color-education: #10B981;        /* 3D Emerald Green — Education */
  --color-education-tint: #ECFDF5;
  --color-education-glow: rgba(16, 185, 129, 0.35);

  --color-skilling: #2563EB;         /* 3D Electric Blue — Industry Skilling */
  --color-skilling-tint: #EFF6FF;
  --color-skilling-glow: rgba(37, 99, 235, 0.35);

  --color-employability: #8B5CF6;    /* 3D Royal Purple — Employability Programs */
  --color-employability-tint: #F5F3FF;
  --color-employability-glow: rgba(139, 92, 246, 0.35);

  --color-recruitment: #F59E0B;      /* 3D Amber Orange — Recruitment & Partnerships */
  --color-recruitment-tint: #FFFBEB;
  --color-recruitment-glow: rgba(245, 158, 11, 0.35);

  /* Feedback & Accents */
  --color-success: #10B981;
  --color-white: #FFFFFF;

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* 3D Shadows & Layering */
  --shadow-sm: 0 4px 14px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 12px 32px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 50px rgba(15, 23, 42, 0.12);
  --shadow-3d: 0 20px 40px -15px rgba(11, 36, 71, 0.18), inset 0 1px 1px rgba(255, 255, 255, 0.8);
  --shadow-glow: 0 0 35px rgba(37, 99, 235, 0.2);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Layout */
  --container-max: 1280px;
  --header-height: 84px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
}

/* ==========================================================================
   Base & Reset
   ========================================================================== */

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

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

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 992px) {
  .container {
    padding: 0 48px;
  }
}

/* ==========================================================================
   3D Animated Mesh Background Ambient Layer
   ========================================================================== */

.ambient-mesh-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.mesh-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: floatMesh 16s ease-in-out infinite alternate;
}

.mesh-orb-1 {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -100px;
  background: radial-gradient(circle, var(--color-skilling-glow) 0%, rgba(255,255,255,0) 70%);
}

.mesh-orb-2 {
  width: 450px;
  height: 450px;
  top: 30%;
  left: -150px;
  background: radial-gradient(circle, var(--color-education-glow) 0%, rgba(255,255,255,0) 70%);
  animation-delay: -5s;
}

.mesh-orb-3 {
  width: 550px;
  height: 550px;
  top: 60%;
  right: -150px;
  background: radial-gradient(circle, var(--color-employability-glow) 0%, rgba(255,255,255,0) 70%);
  animation-delay: -10s;
}

@keyframes floatMesh {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.08); }
  100% { transform: translate(-30px, 40px) scale(0.95); }
}

/* ==========================================================================
   Typography System & Gradient Text
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text);
  line-height: 1.18;
  font-weight: 700;
}

.h1-hero {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--color-navy);
}

.gradient-text {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-skilling) 50%, var(--color-education) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.h2-section {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--color-navy);
}

.h3-card {
  font-size: 20px;
  font-weight: 700;
}

.body-large {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.body-regular {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.eyebrow-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-skilling);
  background: var(--color-skilling-tint);
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 14px;
  border: 1px solid rgba(37, 99, 235, 0.15);
}

@media (min-width: 768px) {
  .h1-hero { font-size: 46px; }
  .h2-section { font-size: 34px; }
  .h3-card { font-size: 22px; }
  .body-large { font-size: 18px; }
  .body-regular { font-size: 16px; }
}

@media (min-width: 992px) {
  .h1-hero { font-size: 58px; }
  .h2-section { font-size: 40px; }
}

/* ==========================================================================
   Buttons & 3D Interactive CTAs
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  color: var(--color-white);
  box-shadow: 0 10px 25px -5px rgba(11, 36, 71, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

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

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 32px -5px rgba(11, 36, 71, 0.45), inset 0 1px 1px rgba(255, 255, 255, 0.4);
}

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

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-navy);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm), inset 0 1px 1px rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: var(--color-white);
  border-color: var(--color-skilling);
  color: var(--color-skilling);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn i {
  font-size: 18px;
  transition: transform var(--transition-fast);
}

.btn:hover i {
  transform: translateX(4px);
}

/* ==========================================================================
   Section Layout Standards
   ========================================================================== */

section {
  padding: 90px 0;
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  section {
    padding: 120px 0;
  }
}

.section-bg-soft {
  background-color: var(--color-bg-soft);
}

.section-bg-tint {
  background-color: var(--color-bg-tint);
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 64px auto;
}

.section-header p {
  margin-top: 14px;
}

/* ==========================================================================
   1. Header / Sticky Glass Navbar (Full Width)
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(225, 231, 242, 0.6);
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  height: 72px;
  background-color: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  border-bottom-color: var(--color-border);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  max-width: 100%;
  padding: 0 24px;
}

@media (min-width: 992px) {
  .nav-container { padding: 0 48px; }
}

@media (min-width: 1400px) {
  .nav-container { padding: 0 64px; }
}

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

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  color: var(--color-white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 6px 16px rgba(11, 36, 71, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.3);
  transition: transform var(--transition-fast);
}

.brand-logo:hover .logo-icon {
  transform: rotate(-4deg) scale(1.05);
}

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

.brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  color: var(--color-navy);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.brand-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--color-skilling);
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--color-text);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-skilling), var(--color-education));
  transition: width var(--transition-fast);
  border-radius: 3px;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-navy);
}

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

.nav-cta {
  display: none;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1010;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background-color: var(--color-navy);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.hamburger.active span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

@media (min-width: 992px) {
  .nav-menu { display: flex; }
  .nav-cta { display: block; }
  .hamburger { display: none; }
}

/* Mobile Nav Drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 380px;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 1005;
  box-shadow: var(--shadow-lg);
  padding: 110px 36px 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right var(--transition-smooth);
}

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

.mobile-nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(11, 36, 71, 0.45);
  backdrop-filter: blur(6px);
  z-index: 1002;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.mobile-nav-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu-link {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-navy);
}

/* ==========================================================================
   2. Hero Section (#home) — 3D Stacked Image & Glass Cards
   ========================================================================== */

.hero-section {
  padding-top: calc(var(--header-height) + 50px);
  padding-bottom: 90px;
  position: relative;
  overflow: hidden;
}

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

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 64px;
  }
}

.hero-content p {
  margin: 24px 0 36px 0;
  max-width: 620px;
}

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

.hero-media {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 40px -10px rgba(11, 36, 71, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  background-color: var(--color-bg-tint);
}

.hero-media:hover .hero-image-wrapper {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -15px rgba(11, 36, 71, 0.22);
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Floating 3D Glass Badge 1 (Top Left) */
.hero-glass-badge-1 {
  position: absolute;
  top: -20px;
  left: -24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 18px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-3d);
  border: 1px solid rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 10;
  animation: floatGlass 5s ease-in-out infinite;
}

/* Floating 3D Glass Badge 2 (Bottom Right) */
.hero-glass-badge-2 {
  position: absolute;
  bottom: -24px;
  right: -20px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 16px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-3d);
  border: 1px solid rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 10;
  animation: floatGlass 6s ease-in-out infinite reverse;
}

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

.badge-icon-3d {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-skilling-tint) 0%, rgba(37, 99, 235, 0.15) 100%);
  color: var(--color-skilling);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.8);
}

.badge-icon-green {
  background: linear-gradient(135deg, var(--color-education-tint) 0%, rgba(16, 185, 129, 0.15) 100%);
  color: var(--color-education);
}

.badge-text-group h4 {
  font-size: 15px;
  color: var(--color-navy);
  margin-bottom: 2px;
}

.badge-text-group p {
  font-size: 12px;
  color: var(--color-text-muted);
  margin: 0;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-success);
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseGreen 2s infinite;
  margin-right: 6px;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* ==========================================================================
   3. Our Purpose (#about) — Executive 2-Column Story Grid
   ========================================================================== */

.about-purpose-section {
  background: radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 90% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
              var(--color-bg-soft);
  padding: 100px 0;
  position: relative;
}

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

@media (min-width: 992px) {
  .purpose-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
  }
}

.purpose-lead-text {
  color: var(--color-text-muted);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.purpose-pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 576px) {
  .purpose-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.purpose-pill-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.purpose-pill-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.purpose-pill-card .pill-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.purpose-pill-card.pill-edu .pill-icon { background-color: var(--color-education-tint); color: var(--color-education); }
.purpose-pill-card.pill-skill .pill-icon { background-color: var(--color-skilling-tint); color: var(--color-skilling); }
.purpose-pill-card.pill-emp .pill-icon { background-color: var(--color-employability-tint); color: var(--color-employability); }
.purpose-pill-card.pill-rec .pill-icon { background-color: var(--color-recruitment-tint); color: var(--color-recruitment); }

.purpose-pill-card .pill-info h5 {
  font-size: 14px;
  color: var(--color-navy);
  margin-bottom: 2px;
  font-family: var(--font-heading);
  font-weight: 700;
}

.purpose-pill-card .pill-info p {
  font-size: 12px;
  color: var(--color-text-muted);
  margin: 0;
}

/* Executive Card */
.purpose-statement-card {
  background-color: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .purpose-statement-card {
    padding: 52px 44px;
  }
}

.purpose-card-gradient-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--color-education) 0%, var(--color-skilling) 33%, var(--color-employability) 66%, var(--color-recruitment) 100%);
}

.purpose-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}

.purpose-quote-badge {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 6px 16px rgba(11, 36, 71, 0.2);
}

.purpose-badge-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-skilling);
  background-color: var(--color-skilling-tint);
  padding: 6px 14px;
  border-radius: 20px;
  text-transform: uppercase;
}

.purpose-quote-text {
  font-family: var(--font-heading);
  font-size: 19px;
  line-height: 1.6;
  color: var(--color-navy);
  margin-bottom: 22px;
  font-weight: 600;
}

@media (min-width: 768px) {
  .purpose-quote-text {
    font-size: 21px;
  }
}

.purpose-quote-text strong {
  color: var(--color-skilling);
}

.purpose-quote-text em {
  font-style: normal;
  background: linear-gradient(180deg, rgba(255,255,255,0) 60%, var(--color-skilling-tint) 60%);
  padding: 0 4px;
}

.purpose-card-subtext {
  font-size: 15px;
  line-height: 1.68;
  color: var(--color-text-muted);
  margin-bottom: 28px;
}

.purpose-card-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--color-border);
}

.purpose-footer-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-navy);
}

.purpose-footer-item i {
  color: var(--color-success);
  font-size: 16px;
}

/* ==========================================================================
   4. Integrated Employability Ecosystem (#ecosystem) — 3D Pipeline Flow
   ========================================================================== */

.pipeline-wrapper {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 20px 0;
}

.pipeline-track {
  position: absolute;
  top: 40px;
  bottom: 40px;
  left: 28px;
  width: 4px;
  background: linear-gradient(to bottom, var(--color-education), var(--color-skilling), var(--color-employability), var(--color-recruitment));
  border-radius: 4px;
  z-index: 1;
  box-shadow: 0 0 15px rgba(37, 99, 235, 0.3);
}

@media (min-width: 768px) {
  .pipeline-track {
    left: 50%;
    transform: translateX(-50%);
  }
}

.pipeline-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 44px;
  z-index: 2;
}

.pipeline-step:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .pipeline-step {
    width: 50%;
    margin-bottom: 54px;
  }

  .pipeline-step:nth-child(odd) {
    align-self: flex-start;
    padding-right: 56px;
    flex-direction: row-reverse;
    text-align: right;
  }

  .pipeline-step:nth-child(even) {
    margin-left: auto;
    padding-left: 56px;
  }

  .pipeline-step:nth-child(odd) .pipeline-sphere {
    position: absolute;
    right: -28px;
    top: 0;
  }

  .pipeline-step:nth-child(even) .pipeline-sphere {
    position: absolute;
    left: -28px;
    top: 0;
  }
}

/* 3D Metallic Step Sphere */
.pipeline-sphere {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  color: var(--color-white);
  box-shadow: inset -3px -3px 8px rgba(0, 0, 0, 0.25), inset 3px 3px 8px rgba(255, 255, 255, 0.5), 0 10px 20px rgba(15, 23, 42, 0.15);
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.pipeline-step:hover .pipeline-sphere {
  transform: scale(1.12);
}

.sphere-edu { background: linear-gradient(135deg, #10B981 0%, #047857 100%); }
.sphere-skill { background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%); }
.sphere-emp { background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%); }
.sphere-rec { background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%); }

.pipeline-card {
  background: var(--color-white);
  padding: 26px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  flex-grow: 1;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.pipeline-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.3);
}

.pipeline-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 6px;
}

.pipeline-desc {
  font-size: 15px;
  color: var(--color-text-muted);
}

/* ==========================================================================
   5. Our Four Pillars (#pillars) — 3D Showcase Cards
   ========================================================================== */

.pillar-stack {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.pillar-card-3d {
  background-color: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.pillar-card-3d:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 992px) {
  .pillar-card-3d {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.pillar-glow-border {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 8px;
  z-index: 5;
}

.pillar-content {
  padding: 38px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .pillar-content {
    padding: 50px 44px;
  }
}

.pillar-header {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 22px;
}

.pillar-3d-num {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

@media (min-width: 768px) {
  .pillar-3d-num { font-size: 60px; }
}

.pillar-title-group h3 {
  font-size: 24px;
  margin-bottom: 4px;
}

.pillar-subtitle {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-muted);
  font-style: italic;
}

.pillar-description {
  font-size: 16px;
  color: var(--color-text-muted);
  margin-bottom: 28px;
}

.pillar-offerings-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-navy);
  margin-bottom: 14px;
}

.pillar-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.pillar-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--color-text);
}

.pillar-checklist li i {
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 18px;
}

.pillar-outcome-pill {
  padding: 18px 22px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.8);
}

.pillar-outcome-pill i {
  font-size: 22px;
  flex-shrink: 0;
}

.pillar-media {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background-color: var(--color-bg-tint);
}

.pillar-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.pillar-card-3d:hover .pillar-media img {
  transform: scale(1.06);
}

/* Pillar Accent Variations */
.pillar-edu .pillar-glow-border { background-color: var(--color-education); }
.pillar-edu .pillar-3d-num { color: var(--color-education); }
.pillar-edu .pillar-outcome-pill { background-color: var(--color-education-tint); color: var(--color-education); }
.pillar-edu .pillar-checklist li i { color: var(--color-education); }

.pillar-skill .pillar-glow-border { background-color: var(--color-skilling); }
.pillar-skill .pillar-3d-num { color: var(--color-skilling); }
.pillar-skill .pillar-outcome-pill { background-color: var(--color-skilling-tint); color: var(--color-skilling); }
.pillar-skill .pillar-checklist li i { color: var(--color-skilling); }

.pillar-emp .pillar-glow-border { background-color: var(--color-employability); }
.pillar-emp .pillar-3d-num { color: var(--color-employability); }
.pillar-emp .pillar-outcome-pill { background-color: var(--color-employability-tint); color: var(--color-employability); }
.pillar-emp .pillar-checklist li i { color: var(--color-employability); }

.pillar-rec .pillar-glow-border { background-color: var(--color-recruitment); }
.pillar-rec .pillar-3d-num { color: var(--color-recruitment); }
.pillar-rec .pillar-outcome-pill { background-color: var(--color-recruitment-tint); color: var(--color-recruitment); }
.pillar-rec .pillar-checklist li i { color: var(--color-recruitment); }

/* ==========================================================================
   6. Why This Ecosystem Works (#why-us) — 3D Split Comparison Dashboard
   ========================================================================== */

.comparison-dashboard {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1040px;
  margin: 0 auto 70px auto;
}

@media (min-width: 768px) {
  .comparison-dashboard {
    grid-template-columns: 1fr 1fr;
  }
}

.comp-col-traditional {
  background-color: var(--color-white);
  padding: 36px 30px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.comp-col-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 24px;
}

.comp-col-header h3 {
  font-size: 20px;
  color: var(--color-navy);
}

.comp-col-jph {
  background-color: var(--color-white);
  padding: 36px 30px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(16, 185, 129, 0.15);
  border: 2px solid var(--color-education);
  position: relative;
  overflow: hidden;
}

.comp-badge-winner {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  background-color: var(--color-education);
  color: var(--color-white);
  padding: 5px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}

.comp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.comp-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  font-weight: 600;
}

.comp-item-trad { color: var(--color-text-muted); }
.comp-item-jph { color: var(--color-navy); }

.comp-icon-cross {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #FEE2E2;
  color: #EF4444;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.comp-icon-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--color-education-tint);
  color: var(--color-education);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

/* Persona Grid */
.persona-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .persona-grid { grid-template-columns: repeat(3, 1fr); }
}

.persona-card-3d {
  background-color: var(--color-white);
  padding: 36px 28px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.persona-card-3d:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.persona-sphere {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 26px;
  box-shadow: var(--shadow-sm);
}

.persona-card-3d:nth-child(1) .persona-sphere { background-color: var(--color-skilling-tint); color: var(--color-skilling); }
.persona-card-3d:nth-child(2) .persona-sphere { background-color: var(--color-education-tint); color: var(--color-education); }
.persona-card-3d:nth-child(3) .persona-sphere { background-color: var(--color-recruitment-tint); color: var(--color-recruitment); }

.persona-card-3d h3 {
  font-size: 21px;
  color: var(--color-navy);
  margin-bottom: 18px;
}

.persona-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.persona-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--color-text-muted);
}

.persona-checklist li i {
  color: var(--color-success);
  margin-top: 3px;
  flex-shrink: 0;
}

/* ==========================================================================
   7. Our Impact Model (#impact) — 3D Outcome Grid
   ========================================================================== */

.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (min-width: 768px) {
  .impact-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 992px) {
  .impact-grid { grid-template-columns: repeat(4, 1fr); }
}

.impact-card-3d {
  background: var(--color-white);
  padding: 32px 24px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  text-align: center;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.impact-card-3d:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.impact-ring-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--color-navy-tint);
  color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px auto;
  font-size: 22px;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.8);
}

.impact-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-navy);
}

/* ==========================================================================
   8. Vision & Mission (#vision-mission) — Frosted Glass Band
   ========================================================================== */

.vision-section {
  background-color: var(--color-navy);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
  padding: 110px 0;
}

.vision-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.25) 0%, transparent 60%),
              radial-gradient(circle at 80% 50%, rgba(16, 185, 129, 0.25) 0%, transparent 60%);
  pointer-events: none;
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .vision-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 56px;
  }
}

.vision-card-glass {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.vision-card-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.vision-card-header i {
  font-size: 36px;
  color: var(--color-skilling);
}

.vision-card-glass h3 {
  color: var(--color-white);
  font-size: 26px;
}

.vision-card-glass p {
  color: #E2E8F0;
  font-size: 17px;
  line-height: 1.75;
}

/* ==========================================================================
   9. Photo Gallery Strip
   ========================================================================== */

.gallery-section {
  padding: 0;
  background-color: var(--color-navy);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

.gallery-item {
  height: 300px;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* ==========================================================================
   10. Contact & Footer (#contact)
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
  }
}

.contact-form-glass {
  background-color: var(--color-white);
  padding: 44px 36px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-navy);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background-color: var(--color-bg-soft);
  color: var(--color-text);
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-skilling);
  background-color: var(--color-white);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

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

.form-success-msg {
  display: none;
  background-color: var(--color-education-tint);
  color: var(--color-education);
  padding: 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  margin-top: 12px;
  text-align: center;
}

.contact-info-card {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background-color: var(--color-navy-tint);
  color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.contact-detail-text h4 {
  font-size: 17px;
  color: var(--color-navy);
  margin-bottom: 4px;
}

.contact-detail-text p, .contact-detail-text a {
  font-size: 15px;
  color: var(--color-text-muted);
}

.contact-detail-text a:hover {
  color: var(--color-skilling);
}

/* Site Footer */
.site-footer {
  background-color: var(--color-navy);
  color: var(--color-white);
  padding: 80px 0 36px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.footer-brand p {
  color: #94A3B8;
  font-size: 15px;
  margin-top: 18px;
  max-width: 380px;
}

.footer-col h4 {
  color: var(--color-white);
  font-size: 17px;
  margin-bottom: 22px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  color: #94A3B8;
  font-size: 15px;
}

.footer-links a:hover {
  color: var(--color-white);
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-icon:hover {
  background-color: var(--color-skilling);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  text-align: center;
  color: #64748B;
  font-size: 14px;
}

/* ==========================================================================
   Scroll Reveal Observer Utility
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }
