/* ═══════════════════════════════════════════════
   ARJUN RIJAL PORTFOLIO
   Pure HTML5 + CSS3 + Vanilla JS — Zero Frameworks
   Cyber-Industrial Chic / Futuristic Dark Theme
   ═══════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  --neon: hsl(185 100% 50%);
  --neon-rgb: 0, 255, 255;
  --violet: hsl(258 90% 66%);
  --violet-rgb: 124, 58, 237;

  --bg: hsl(222 47% 6%);
  --bg-2: hsl(222 47% 9%);
  --fg: hsl(210 40% 98%);
  --muted: hsl(215 20% 65%);
  --border: hsl(222 47% 20%);

  --glass-bg: hsl(222 47% 12% / 0.6);
  --glass-bg2: hsl(222 47% 8% / 0.4);
  --shadow-glass: 0 8px 32px hsl(222 47% 4% / 0.4);
  --shadow-neon: 0 0 30px rgba(var(--neon-rgb), 0.4);
  --shadow-violet: 0 0 30px rgba(var(--violet-rgb), 0.35);

  --gradient-bg: linear-gradient(135deg, hsl(222 47% 6%) 0%, hsl(258 50% 15%) 50%, hsl(222 47% 6%) 100%);
  --gradient-neon: linear-gradient(135deg, var(--neon) 0%, var(--violet) 100%);
  --gradient-text: linear-gradient(90deg, var(--neon) 0%, var(--violet) 100%);

  --radius: 18px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--gradient-bg);
  background-attachment: fixed;
  color: var(--fg);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

/* ── Utilities ── */
.container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.center { text-align: center; }
.max-w-700 { max-width: 700px; margin-left: auto; margin-right: auto; }

.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.muted { color: var(--muted); }
.accent { color: var(--neon); }
.accent2 { color: var(--violet); }

.glass {
  border: 1px solid hsl(222 47% 20% / 0.3);
  background: linear-gradient(135deg, var(--glass-bg) 0%, var(--glass-bg2) 100%);
  box-shadow: var(--shadow-glass);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
}

/* ── Fade-in Animation ── */
.fade-in {
  animation: fadeUp 0.6s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════
   HEADER / NAV
   ══════════════════════════════════════ */
.site-header { position: sticky; top: 0; z-index: 50; padding: 14px 0; }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; border-radius: calc(var(--radius) + 8px);
}
.brand { font-weight: 900; letter-spacing: 0.06em; font-size: 1.15rem; color: var(--neon); }

.nav__links { display: none; gap: 28px; }
.nav__links a {
  opacity: 0.85; position: relative; padding: 8px 0;
  font-weight: 500; font-size: 0.95rem;
  transition: opacity 0.2s, color 0.2s;
}
.nav__links a:hover { opacity: 1; }
.nav__links a[aria-current="page"] { color: var(--neon); opacity: 1; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  height: 2px; width: 0; background: var(--neon);
  transition: width 0.25s ease;
}
.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after { width: 100%; }

/* Hamburger */
.hamburger {
  width: 46px; height: 42px; border: 0; border-radius: 14px;
  background: linear-gradient(135deg, hsl(222 47% 12% / 0.8), hsl(222 47% 8% / 0.6));
  border: 1px solid hsl(222 47% 20% / 0.35);
  display: flex; flex-direction: column; gap: 6px;
  align-items: center; justify-content: center;
  position: relative; z-index: 70;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.hamburger span {
  width: 22px; height: 2px; background: hsl(210 40% 98% / 0.85);
  border-radius: 999px; transition: transform 0.35s ease, opacity 0.2s ease;
  display: block; flex-shrink: 0;
}
.hamburger.is-active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 60;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu[hidden] {
  display: none;
}
.mobile-menu__backdrop {
  position: absolute; inset: 0;
  background: hsl(222 47% 6% / 0.85); backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.mobile-menu__panel {
  position: absolute; left: 16px; right: 16px; top: 84px;
  border-radius: calc(var(--radius) + 6px); padding: 14px;
  transform: translateY(-10px);
  transition: transform 0.3s ease;
}
.mobile-menu.is-open .mobile-menu__panel {
  transform: translateY(0);
}
.mobile-menu__panel a {
  display: block; padding: 16px 18px; border-radius: 14px;
  font-weight: 600; font-size: 1.1rem;
  transition: background 0.2s, color 0.2s;
  color: var(--fg);
}
.mobile-menu__panel a:hover,
.mobile-menu__panel a:active {
  background: rgba(var(--neon-rgb), 0.15);
  color: var(--neon);
}
.mobile-menu__panel a[aria-current="page"] {
  color: var(--neon);
  background: rgba(var(--neon-rgb), 0.1);
}

/* Dropdown Styles */
.dropdown {
  position: relative;
}
.dropdown-toggle {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  padding: 8px 0;
  font-weight: 500;
  font-size: 0.95rem;
  opacity: 0.85;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
}
.dropdown-toggle:hover {
  opacity: 1;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--glass-bg);
  border: 1px solid hsl(222 47% 20% / 0.3);
  border-radius: var(--radius);
  box-shadow: var(--shadow-glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 100;
}
.dropdown:hover .dropdown-menu,
.dropdown-toggle[aria-expanded="true"] + .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 12px 16px;
  color: var(--fg);
  opacity: 0.8;
  transition: all 0.2s;
  border-radius: calc(var(--radius) - 4px);
}
.dropdown-menu a:hover {
  background: rgba(var(--neon-rgb), 0.1);
  color: var(--neon);
  opacity: 1;
}

/* Mobile Dropdown */
.mobile-dropdown {
  margin: 8px 0;
}
.mobile-dropdown-toggle {
  width: 100%;
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  padding: 16px 18px;
  text-align: left;
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 14px;
  transition: background 0.2s;
}
.mobile-dropdown-toggle:hover {
  background: rgba(var(--neon-rgb), 0.15);
  color: var(--neon);
}
.mobile-dropdown-menu {
  margin-left: 20px;
  border-left: 2px solid rgba(var(--neon-rgb), 0.3);
  padding-left: 16px;
  margin-top: 8px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.mobile-dropdown-toggle[aria-expanded="true"] + .mobile-dropdown-menu {
  max-height: 200px;
}
.mobile-dropdown-menu a {
  display: block;
  padding: 10px 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}
.mobile-dropdown-menu a:hover {
  color: var(--neon);
}

/* ══════════════════════════════════════
   TYPOGRAPHY
   ══════════════════════════════════════ */
.h1 { font-size: clamp(1.8rem, 4.8vw, 4.2rem); line-height: 1.1; margin: 14px 0 12px; font-weight: 900; }
.h2 { font-size: clamp(1.5rem, 3vw, 2.6rem); margin: 10px 0 0; font-weight: 800; }
.h3 { font-size: 1.2rem; font-weight: 750; }
.lead { font-size: clamp(0.95rem, 2vw, 1.05rem); line-height: 1.7; color: hsl(215 20% 75%); }

.pill {
  display: inline-block; padding: 8px 16px; border-radius: 999px;
  font-weight: 600; font-size: 0.85rem; color: var(--neon);
}

/* ══════════════════════════════════════
   SECTIONS & LAYOUT
   ══════════════════════════════════════ */
.site-main { padding-top: 6px; min-height: 60vh; }
.section { padding: 48px 0; position: relative; }
.section__head { margin-bottom: 28px; }
.section__subhead { display: flex; align-items: center; justify-content: space-between; margin: 22px 0 18px; }

/* Hero */
.hero { padding: 30px 0 20px; position: relative; overflow: hidden; }
.hero__grid {
  display: flex; flex-direction: column-reverse;
  gap: 24px; align-items: center;
}
.hero__copy { max-width: 560px; text-align: center; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; justify-content: center; }
.hero__media { display: flex; justify-content: center; align-items: center; position: relative; padding: 10px 0 0; }

/* Profile Ring */
.profile-ring { position: relative; width: min(260px, 65vw); aspect-ratio: 1; border-radius: 999px; padding: 8px; }
.profile-ring::before {
  content: ""; position: absolute; inset: -8px; border-radius: 999px;
  background: conic-gradient(from 0deg, var(--neon), var(--violet), var(--neon));
  animation: spin 9s linear infinite; opacity: 0.65;
}
.profile-ring img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 999px;
  border: 4px solid var(--bg); position: relative; z-index: 1;
}
.badge {
  position: absolute; bottom: 0; right: -10px; border-radius: 999px;
  padding: 6px 12px; font-weight: 650; font-size: 0.8rem;
  display: inline-flex; gap: 6px; align-items: center;
  z-index: 2;
}
.dot {
  width: 10px; height: 10px; border-radius: 999px;
  background: hsl(135 60% 50%); box-shadow: 0 0 12px hsl(135 60% 50% / 0.5);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }

/* Glows */
.hero__glow {
  position: absolute; border-radius: 999px; filter: blur(60px);
  opacity: 0.2; animation: glow 4s ease-in-out infinite alternate;
  pointer-events: none;
}
.hero__glow--a { width: 350px; height: 350px; left: -150px; top: 80px; background: rgba(var(--neon-rgb), 0.55); }
.hero__glow--b { width: 300px; height: 300px; right: -150px; bottom: 40px; background: rgba(var(--violet-rgb), 0.55); }
.hero__glow--c { width: 350px; height: 350px; right: -150px; top: 80px; background: rgba(var(--neon-rgb), 0.35); }
.hero__glow--d { width: 300px; height: 300px; left: -150px; bottom: 40px; background: rgba(var(--violet-rgb), 0.35); }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes glow { from { transform: scale(1); opacity: 0.18; } to { transform: scale(1.08); opacity: 0.3; } }

/* ══════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 22px; border-radius: 16px; font-weight: 750;
  letter-spacing: 0.01em; border: 1px solid transparent;
  cursor: pointer; transition: transform 0.2s, box-shadow 0.2s;
  font-size: 0.95rem; text-align: center;
}
.btn--wide { width: 100%; padding: 16px 24px; }
.btn--glow {
  background: var(--gradient-neon); color: var(--bg);
  box-shadow: var(--shadow-neon);
  border: 1px solid rgba(var(--neon-rgb), 0.24);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.btn--glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(var(--neon-rgb), 0.55), 0 0 80px rgba(var(--violet-rgb), 0.35);
}
.btn--glass {
  border-color: hsl(222 47% 20% / 0.35);
  background: linear-gradient(135deg, hsl(222 47% 12% / 0.6), hsl(222 47% 8% / 0.45));
  backdrop-filter: blur(12px);
}
.btn--glass:hover { border-color: rgba(var(--neon-rgb), 0.35); }

.link { background: transparent; border: 0; padding: 10px 0; color: var(--muted); cursor: pointer; transition: color 0.2s; }
.link:hover { color: var(--fg); }
.link-inline { text-decoration: underline; text-underline-offset: 4px; }

/* ══════════════════════════════════════
   CARDS & GRIDS
   ══════════════════════════════════════ */
.grid { display: grid; gap: 16px; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.card {
  border-radius: calc(var(--radius) + 6px); padding: 20px;
  border: 1px solid hsl(222 47% 20% / 0.3);
  background: linear-gradient(135deg, var(--glass-bg), var(--glass-bg2));
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { box-shadow: var(--shadow-glass), var(--shadow-neon); transform: translateY(-2px); }

.icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 16px; margin: 0 auto 10px; font-size: 1.4rem; }
.stat { text-align: center; }
.stat__num { font-size: 2.4rem; font-weight: 900; }
.stat__title { font-weight: 850; }
.stack { display: grid; gap: 16px; }

/* ══════════════════════════════════════
   TECH STACK
   ══════════════════════════════════════ */
.tech-category { margin-bottom: 24px; }
.tech-label { font-size: 1rem; font-weight: 700; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.tech-line { width: 32px; height: 2px; border-radius: 999px; display: inline-block; }
.accent-bg { background: var(--neon); }
.accent2-bg { background: var(--violet); }

.tech-grid { display: grid; gap: 10px; }
.tech-grid--6 { grid-template-columns: repeat(3, 1fr); }
.tech-grid--8 { grid-template-columns: repeat(4, 1fr); }

.tech-card {
  padding: 12px 6px; border-radius: calc(var(--radius)); text-align: center;
  border: 1px solid hsl(222 47% 20% / 0.3);
  background: linear-gradient(135deg, var(--glass-bg), var(--glass-bg2));
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.tech-card:hover { transform: translateY(-4px) scale(1.03); box-shadow: var(--shadow-neon); }
.tech-card span { font-size: 0.72rem; font-weight: 600; color: hsl(210 40% 85%); }

.tech-icon {
  width: 42px; height: 42px; border-radius: 10px;
  display: grid; place-items: center;
  font-weight: 800; font-size: 0.85rem; color: white;
  box-shadow: 0 4px 16px hsl(0 0% 0% / 0.3);
}

/* ══════════════════════════════════════
   OVERVIEW
   ══════════════════════════════════════ */
.two-col { display: grid; gap: 24px; align-items: center; }
.portrait { position: relative; display: grid; place-items: center; }
.portrait__frame { position: relative; padding: 10px; border-radius: calc(var(--radius) + 10px); }
.portrait__frame img {
  width: min(300px, 80vw); height: min(400px, 100vw);
  object-fit: cover; border-radius: calc(var(--radius) + 6px); display: block;
}
.portrait__shade {
  position: absolute; inset: 10px; border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(to top, hsl(222 47% 6% / 0.25), transparent 60%);
}
.portrait__tag {
  position: absolute; right: -6px; bottom: -6px;
  padding: 10px 16px; border-radius: 16px; font-weight: 800; color: var(--neon);
}

.quote { font-size: clamp(1.1rem, 2.6vw, 2.2rem); line-height: 1.35; margin: 10px 0; font-weight: 500; }

/* Team Cards */
.team { display: grid; gap: 14px; grid-template-columns: 90px 1fr; align-items: start; }
.team__img { width: 90px; height: 90px; border-radius: 16px; padding: 5px; overflow: hidden; }
.team__img img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }
.tag { color: var(--neon); font-weight: 800; font-size: 0.9rem; margin: 2px 0 8px; }
.mini { padding: 10px; border-radius: 14px; margin-top: 10px; font-size: 0.85rem; }
.mini__label { font-size: 0.78rem; font-weight: 800; color: var(--violet); margin-bottom: 4px; }

/* ══════════════════════════════════════
   PROJECTS
   ══════════════════════════════════════ */
.toggle { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin: 10px 0 24px; }
.toggle__btn {
  padding: 12px 20px; border-radius: 16px;
  border: 1px solid hsl(222 47% 20% / 0.35);
  background: linear-gradient(135deg, hsl(222 47% 12% / 0.55), hsl(222 47% 8% / 0.45));
  font-weight: 750; font-size: 0.95rem;
  transition: all 0.25s;
}
.toggle__btn[aria-pressed="true"] {
  background: var(--gradient-neon); color: var(--bg);
  box-shadow: var(--shadow-neon); border-color: transparent;
}
.toggle__btn:hover:not([aria-pressed="true"]) { border-color: rgba(var(--neon-rgb), 0.35); }

  .story-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 40px;
  }

  .story-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 28px;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  }

  .story-card:hover {
    transform: translateY(-4px);
    border-color: rgba(247, 168, 27, 0.25);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.2);
  }

  .story-card__icon {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(247, 168, 27, 0.18), rgba(14, 74, 167, 0.25));
    font-size: 2rem;
  }

  .story-card h2 {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 800;
  }

  .story-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
  }

  border-radius: calc(var(--radius) + 6px); display: block;
}
.split__media--link { display: block; }
.split__hint {
  display: inline-block; margin-top: 8px; font-size: 0.82rem;
  color: hsl(210 40% 98% / 0.8); padding: 6px 12px; border-radius: 10px;
  background: hsl(222 47% 6% / 0.65); border: 1px solid hsl(222 47% 20% / 0.35);
}

.review { padding: 12px; border-radius: 14px; margin-top: 10px; }
.review__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.stars { color: hsl(48 96% 58%); letter-spacing: 2px; font-size: 1rem; }

.browser {
  border-radius: calc(var(--radius) + 6px); overflow: hidden;
  border: 1px solid hsl(222 47% 20% / 0.35); background: hsl(222 47% 10% / 0.45);
}
.browser__bar {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 12px; border-bottom: 1px solid hsl(222 47% 20% / 0.35);
}
.browser__url { margin-left: auto; font-size: 0.8rem; color: var(--muted); }
.dot--r { background: hsl(0 85% 60%); width: 10px; height: 10px; border-radius: 999px; }
.dot--y { background: hsl(48 96% 55%); width: 10px; height: 10px; border-radius: 999px; }
.dot--g { background: hsl(135 60% 45%); width: 10px; height: 10px; border-radius: 999px; }

/* ══════════════════════════════════════
   CONTACT
   ══════════════════════════════════════ */
.contact { display: grid; grid-template-columns: 48px 1fr; align-items: center; gap: 12px; }
.contact .icon { margin: 0; width: 48px; height: 48px; }
.map { min-height: 350px; padding: 0; overflow: hidden; }
.map iframe { border: 0; width: 100%; height: 100%; min-height: 350px; filter: invert(90%) hue-rotate(180deg); }
.contact-grid { display: grid; gap: 24px; align-items: start; }
.contact-grid > .stack:first-child { max-width: 420px; }
.contact-grid .card { max-width: 100%; }
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: minmax(280px, 420px) minmax(360px, 1.1fr); }
}

/* Social buttons */
.social { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
.social__btn {
  width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center;
  border: 1px solid hsl(222 47% 20% / 0.35);
  background: linear-gradient(135deg, hsl(222 47% 12% / 0.7), hsl(222 47% 8% / 0.5));
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  color: var(--fg);
}
.social__btn:hover {
  transform: translateY(-4px) scale(1.06);
  border-color: rgba(var(--neon-rgb), 0.35);
  box-shadow: 0 0 26px rgba(var(--neon-rgb), 0.28), 0 0 50px rgba(var(--violet-rgb), 0.18);
}

.contact-form {
  display: grid; gap: 16px;
}
.contact-field {
  display: grid; gap: 10px;
}
.contact-form label {
  font-size: 0.95rem; font-weight: 700; color: var(--fg);
}
.contact-form input,
.contact-form textarea {
  width: 100%; padding: 14px 16px; border-radius: 16px;
  border: 1px solid hsl(222 47% 20% / 0.35);
  background: hsl(222 47% 12% / 0.9);
  color: var(--fg); font: inherit;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: hsl(215 30% 70%);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 1px solid rgba(var(--neon-rgb), 0.45);
  border-color: rgba(var(--neon-rgb), 0.45);
  box-shadow: 0 0 0 4px rgba(var(--neon-rgb), 0.08);
}
.contact-form textarea { min-height: 140px; resize: vertical; }

/* ══════════════════════════════════════
   FOOTER — Cyber-Neon Enhanced
   ══════════════════════════════════════ */
.site-footer {
  padding: 52px 0 24px;
  border-top: 1px solid hsl(222 47% 20% / 0.3);
  background: linear-gradient(180deg, transparent 0%, hsl(222 47% 4% / 0.5) 100%);
}
.footer-grid { display: grid; gap: 28px; }

/* ── Brand Column — NEON HIGHLIGHT ── */
.footer-brand-col {
  padding: 20px;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid hsl(222 47% 20% / 0.35);
  background: transparent;
}
.footer-brand-col::before {
  display: none;
}
.footer-brand-role {
  font-size: 0.95rem; font-weight: 700; margin-top: 8px;
  color: hsl(0 0% 96%);
}
.footer-brand-desc {
  color: hsl(0 0% 90%); font-size: 0.88rem; margin-top: 12px; line-height: 1.7;
}
@keyframes neonPulse {
  from { text-shadow: 0 0 20px rgba(var(--neon-rgb), 0.6), 0 0 40px rgba(var(--neon-rgb), 0.3); }
  to { text-shadow: 0 0 30px rgba(var(--neon-rgb), 0.8), 0 0 60px rgba(var(--neon-rgb), 0.4), 0 0 100px rgba(var(--neon-rgb), 0.2); }
}
.footer-brand-role {
  font-size: 1rem; font-weight: 700; margin-top: 6px;
  color: #ffffff;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: initial;
}
.footer-brand-desc {
  color: hsl(215 20% 60%); font-size: 0.85rem; margin-top: 10px; line-height: 1.6;
}

.footer-title { font-size: 1.05rem; font-weight: 900; margin-bottom: 12px; color: hsl(0 0% 96%); }
.footer-brand-col .footer-title { color: var(--neon); }
.footer-brand-col .footer-brand-role { color: #ffffff; }
.footer-links, .footer-meta { display: grid; gap: 8px; }
.footer-links a, .footer-meta a, .footer-meta div { color: hsl(215 20% 72%); transition: color 0.2s; font-size: 0.9rem; }
.footer-links a:hover, .footer-meta a:hover { color: var(--neon); }
.footer-subgroup { display: grid; gap: 8px; }
.footer-sublinks {
  margin-left: 12px; padding-left: 12px;
  border-left: 1px solid hsl(222 47% 20% / 0.35);
  display: grid; gap: 6px;
}
.footer-sublinks a { font-size: 0.82rem; }

.footer-social-col { }
.footer-bottom {
  margin-top: 24px; padding-top: 16px;
  border-top: 1px solid hsl(222 47% 20% / 0.3);
  text-align: center; color: var(--muted); font-size: 0.9rem;
}

/* ══════════════════════════════════════
   SCROLL-TO-TOP
   ══════════════════════════════════════ */
.to-top {
  position: fixed; right: 16px; bottom: 78px; z-index: 40;
  width: 46px; height: 46px; border-radius: 14px;
  display: grid; place-items: center;
  font-size: 1.2rem; font-weight: 800;
  border: 1px solid hsl(222 47% 20% / 0.35);
  background: linear-gradient(135deg, hsl(222 47% 12% / 0.75), hsl(222 47% 8% / 0.55));
  cursor: pointer;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.to-top.is-visible { opacity: 1; pointer-events: auto; }
.to-top:hover { transform: translateY(-3px) scale(1.06); box-shadow: var(--shadow-neon); }

/* ══════════════════════════════════════
   HIRE ME FAB
   ══════════════════════════════════════ */
.hire-fab {
  position: fixed; left: 16px; bottom: 16px; z-index: 40;
  padding: 10px 18px; border-radius: 999px;
  background: var(--gradient-neon); color: var(--bg);
  font-weight: 800; font-size: 0.9rem;
  box-shadow: var(--shadow-neon);
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.hire-fab:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 50px rgba(var(--neon-rgb), 0.5), 0 0 80px rgba(var(--violet-rgb), 0.3);
}

/* ══════════════════════════════════════
   LIGHTBOX
   ══════════════════════════════════════ */
.lightbox { position: fixed; inset: 0; z-index: 100; }
.lightbox__backdrop {
  position: absolute; inset: 0;
  background: hsl(222 47% 6% / 0.82); backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.lightbox__panel {
  position: absolute; inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: min(900px, calc(100% - 2rem));
  padding: 10px; border-radius: calc(var(--radius) + 10px);
}
.lightbox__panel img {
  width: 100%; height: auto; display: block;
  border-radius: calc(var(--radius) + 6px); object-fit: contain;
}
.lightbox__close {
  position: absolute; top: 8px; right: 10px;
  width: 40px; height: 40px; border-radius: 12px;
  border: 1px solid hsl(222 47% 20% / 0.35);
  background: hsl(222 47% 6% / 0.55);
  font-size: 1.3rem; display: grid; place-items: center;
  cursor: pointer;
}
.lightbox__close:hover { border-color: rgba(var(--neon-rgb), 0.4); }

/* ══════════════════════════════════════
   LOADER
   ══════════════════════════════════════ */
.loader {
  position: fixed; inset: 0; z-index: 120;
  display: grid; place-items: center; background: var(--bg);
}
.loader.is-hidden { opacity: 0; pointer-events: none; transition: opacity 0.35s ease; }
.loader__inner {
  width: min(380px, calc(100% - 2rem)); padding: 24px;
  border-radius: calc(var(--radius) + 10px);
}
.loader__monogram {
  font-size: 2.4rem; font-weight: 950; letter-spacing: 0.12em;
  text-align: center; margin-bottom: 12px;
  white-space: nowrap;
  overflow-wrap: normal;
  background: var(--gradient-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.loader__bar {
  height: 8px; border-radius: 999px;
  background: hsl(222 47% 12%); overflow: hidden;
  border: 1px solid hsl(222 47% 20% / 0.35);
}
.loader__bar span {
  display: block; height: 100%; width: 40%;
  background: var(--gradient-neon);
  animation: load 1.1s ease-in-out infinite;
}
.loader__text {
  margin-top: 14px;
  font-size: 0.95rem;
  text-align: center;
  letter-spacing: 0.12em;
  color: hsl(210 35% 80%);
}
@keyframes load { 0% { transform: translateX(-110%); } 100% { transform: translateX(260%); } }

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */

/* Small phones */
@media (max-width: 380px) {
  .h1 { font-size: 1.6rem; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .tech-grid--6 { grid-template-columns: repeat(2, 1fr); }
  .tech-grid--8 { grid-template-columns: repeat(2, 1fr); }
  .profile-ring { width: 200px; }
  .team { grid-template-columns: 1fr; text-align: center; }
  .team__img { margin: 0 auto; }
}

/* Tablets */
@media (min-width: 600px) {
  .tech-grid--6 { grid-template-columns: repeat(6, 1fr); }
  .tech-grid--8 { grid-template-columns: repeat(4, 1fr); }
  .grid--2 { grid-template-columns: 1fr 1fr; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 64px 0; }
  .hero { padding: 40px 0 20px; }
  .profile-ring { width: 300px; }
  .team { grid-template-columns: 112px 1fr; }
  .team__img { width: 112px; height: 112px; }
}

/* Desktop */
@media (min-width: 900px) {
  .nav__links { display: flex; }
  .hamburger { display: none; }

  .hero__grid { flex-direction: row; }
  .hero__copy { text-align: left; }
  .hero__cta { justify-content: flex-start; }
  .hero { padding: 60px 0 30px; }
  .profile-ring { width: 340px; }

  .two-col { grid-template-columns: 5fr 7fr; }
  .split { grid-template-columns: 1fr 1fr; }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }

  .tech-grid--8 { grid-template-columns: repeat(8, 1fr); }
  .section { padding: 72px 0; }

  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; align-items: start; }
  .footer-social-col { text-align: right; }
  .footer-social-col .social { justify-content: flex-end; }
}

/* ══════════════════════════════════════
   WHATSAPP POPUP
   ══════════════════════════════════════ */
.whatsapp-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  animation: slideIn 0.5s ease-out;
}

.whatsapp-popup__content {
  padding: 20px;
  border-radius: calc(var(--radius) + 4px);
  max-width: 320px;
  box-shadow: var(--shadow-glass), var(--shadow-neon);
  border: 1px solid hsl(222 47% 20% / 0.3);
  position: relative;
}

.whatsapp-popup__close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--muted);
  cursor: pointer;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: color 0.2s, background 0.2s;
}

.whatsapp-popup__close:hover {
  color: var(--fg);
  background: rgba(var(--neon-rgb), 0.1);
}

.whatsapp-popup__icon {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 12px;
}

.whatsapp-popup__title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 8px;
  text-align: center;
  color: var(--neon);
}

.whatsapp-popup__text {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 16px;
  text-align: center;
  line-height: 1.5;
}

.whatsapp-popup__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  background: #25d366;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #25d366;
}

.whatsapp-popup__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
  background: #20ba5a;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Timeline Styles */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline.premium-timeline {
  background: #0F172A;
  border-radius: 20px;
  padding: 60px 20px;
  margin: 40px auto;
}

.timeline__path {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #005DAA, #F7A81B);
  transform: translateX(-50%);
  z-index: 1;
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(0, 93, 170, 0.3);
}

.timeline__item {
  position: relative;
  margin-bottom: 80px;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.timeline__item--right {
  justify-content: flex-end;
}

.timeline__item--left {
  justify-content: flex-start;
}

.timeline__item.visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline__node {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.timeline__node-content {
  background: linear-gradient(135deg, #005DAA, #F7A81B);
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 0 25px rgba(0, 93, 170, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.timeline__node-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.timeline__card {
  width: calc(45% - 20px);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.timeline__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #005DAA, #F7A81B);
}

.timeline__card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 93, 170, 0.2);
  border-color: rgba(0, 93, 170, 0.3);
}

.timeline__role {
  font-size: 1.2rem;
  font-weight: 800;
  color: #F7A81B;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.timeline__club {
  font-size: 0.95rem;
  font-weight: 600;
  color: #005DAA;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.timeline__desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 20px;
}

.timeline__image {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.timeline__image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.timeline__image img:hover {
  transform: scale(1.08);
}

/* Animation for timeline path drawing */
.timeline__path {
  animation: drawPath 2s ease-out forwards;
}

@keyframes drawPath {
  0% {
    height: 0;
    opacity: 0;
  }
  100% {
    height: 100%;
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .timeline.premium-timeline {
    padding: 40px 15px;
  }

  .timeline__path {
    left: 30px;
  }

  .timeline__item {
    margin-bottom: 60px;
  }

  .timeline__item--right,
  .timeline__item--left {
    justify-content: flex-start !important;
  }

  .timeline__card {
    width: calc(100% - 80px);
    margin-left: 60px;
    padding: 20px;
  }

  .timeline__node {
    left: 30px;
  }

  .timeline__role {
    font-size: 1rem;
  }

  .timeline__club {
    font-size: 0.9rem;
  }
}

/* ══════════════════════════════════════
   JOURNEY SECTIONS & FLOWCHARTS
   ══════════════════════════════════════ */

/* Journey Section Styles */
.journey-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}

.journey-header {
  text-align: center;
  margin-bottom: 60px;
}

.journey-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--neon), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.journey-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.journey-summary {
  text-align: center;
  margin-top: 60px;
  padding: 40px 20px;
  background: linear-gradient(135deg, rgba(0, 93, 170, 0.05), rgba(247, 161, 27, 0.05));
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.journey-summary__text {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* Flowchart Container */
.flowchart-container {
  position: relative;
  margin: 40px 0;
}

.flowchart {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.flowchart.premium-flowchart {
  background: linear-gradient(135deg, #0F172A, #1E293B);
  border-radius: 24px;
  padding: 60px 40px;
  margin: 40px 0;
  border: 1px solid rgba(0, 93, 170, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Flow Nodes */
.flow-node {
  position: relative;
  width: 100%;
  max-width: 600px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.flow-node.visible {
  opacity: 1;
  transform: translateY(0);
}

.flow-node--top {
  margin-bottom: 10px;
}

.flow-node--middle {
  margin: 10px 0;
}

.flow-node--bottom {
  margin-top: 10px;
}

.flow-node--premium {
  background: linear-gradient(135deg, rgba(0, 93, 170, 0.1), rgba(247, 161, 27, 0.1));
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(0, 93, 170, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.flow-node--premium:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 93, 170, 0.2);
  border-color: rgba(247, 161, 27, 0.3);
}

.flow-node__badge {
  display: inline-block;
  background: linear-gradient(135deg, #005DAA, #F7A81B);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 93, 170, 0.3);
}

.flow-node__content {
  text-align: center;
}

.flow-node__year {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--neon);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.flow-node__title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 4px;
}

.flow-node__subtitle {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--violet);
  margin-bottom: 16px;
}

.flow-node__role {
  font-size: 1.4rem;
  font-weight: 800;
  color: #F7A81B;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.flow-node__club {
  font-size: 1rem;
  font-weight: 600;
  color: #005DAA;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.flow-node__desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

.flow-node__highlights {
  margin-top: 16px;
  display: grid;
  gap: 8px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--neon);
  font-weight: 600;
  padding: 6px 12px;
  background: rgba(0, 93, 170, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(0, 93, 170, 0.2);
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: rgba(0, 93, 170, 0.2);
  transform: translateX(4px);
}

.flow-connector {
  position: absolute;
  left: 50%;
  top: 100%;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--neon), var(--violet));
  transform: translateX(-50%);
  z-index: 1;
}

.flow-connector--premium {
  background: linear-gradient(to bottom, #005DAA, #F7A81B);
  height: 30px;
  box-shadow: 0 0 10px rgba(0, 93, 170, 0.5);
}

.pathway-svg {
  position: absolute;
  left: 50%;
  top: 0;
  width: 40px;
  height: 100%;
  transform: translateX(-50%);
  overflow: visible;
  z-index: 0;
}

.pathway-svg path {
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: drawPath 1.8s ease forwards;
}

@keyframes drawPath {
  to {
    stroke-dashoffset: 0;
  }
}

.pathway-chart .flowchart {
  position: relative;
  z-index: 1;
}

.flow-node__photo {
  width: 100%;
  max-width: 580px;
  margin: 0 auto 24px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
}

.flow-node__photo img {
  width: 100%;
  display: block;
  height: auto;
  object-fit: cover;
  min-height: 220px;
  background: rgba(255, 255, 255, 0.05);
}

.pathway-node .flow-node__content {
  text-align: left;
}

.zigzag-flowchart {
  position: relative;
  width: 100%;
  padding: 20px 0 20px 0;
}

.zigzag-flowchart::before {
  content: '';
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 50%;
  width: 6px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #60a5fa, #f7a81b);
  border-radius: 999px;
  box-shadow: 0 0 20px rgba(0, 93, 170, 0.35);
  z-index: 0;
}

.zigzag-node {
  position: relative;
  width: calc(50% - 48px);
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
  z-index: 1;
}

.zigzag-node--left {
  margin-right: auto;
  text-align: right;
}

.zigzag-node--right {
  margin-left: auto;
  text-align: left;
}

.zigzag-node:not(:first-child) {
  margin-top: 60px;
}

.zigzag-node::before {
  content: '';
  position: absolute;
  top: 34px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #60a5fa, #f7a81b);
  box-shadow: 0 0 20px rgba(247, 168, 27, 0.45);
}

.zigzag-node--left::before {
  right: -12px;
}

.zigzag-node--right::before {
  left: -12px;
}

.ry-node {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0e4aa7, #f7a81b);
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 12px 30px rgba(0, 93, 170, 0.28);
  text-transform: uppercase;
}

.zigzag-node .flow-node__content {
  text-align: left;
}

.zigzag-node--left .flow-node__content {
  text-align: right;
}

.flow-node.visible,
.zigzag-node.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design for Flowcharts */
@media (max-width: 768px) {
  .journey-title {
    font-size: 2rem;
  }

  .journey-subtitle {
    font-size: 1rem;
  }

  .flowchart.premium-flowchart {
    padding: 40px 20px;
  }

  .flow-node--premium {
    padding: 20px;
  }

  .flow-node__role {
    font-size: 1.2rem;
  }

  .flow-node__club {
    font-size: 0.9rem;
  }

  .flow-node__desc {
    font-size: 0.85rem;
  }

  /* Zigzag flowchart mobile styles */
  .zigzag-flowchart {
    padding: 20px 10px;
  }

  .zigzag-flowchart::before {
    width: 4px;
  }

  .zigzag-node {
    width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    text-align: left !important;
  }

  .zigzag-node--left,
  .zigzag-node--right {
    margin-left: auto;
    margin-right: auto;
  }

  .zigzag-node:not(:first-child) {
    margin-top: 40px;
  }

  .zigzag-node::before {
    display: none; /* Hide connecting dots on mobile */
  }

  .ry-node {
    margin-bottom: 15px;
    padding: 8px 14px;
    font-size: 0.9rem;
  }

  .zigzag-node .flow-node__content {
    text-align: left !important;
  }
}

/* ===== INTERACT CLUB JOURNEY STYLES ===== */

/* Hero Section */
.interact-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #0e4aa7 0%, #1e5bb8 50%, #f7a81b 100%);
  box-shadow: 0 25px 50px rgba(14, 74, 167, 0.3);
}

.interact-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.interact-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(1px);
}

.interact-hero__pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  background-image:
    radial-gradient(circle at 25% 25%, #f7a81b 2px, transparent 2px),
    radial-gradient(circle at 75% 75%, #0e4aa7 2px, transparent 2px);
  background-size: 50px 50px;
}

.interact-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 20px;
}

.interact-badge {
  display: inline-block;
  background: rgba(247, 168, 27, 0.2);
  border: 1px solid rgba(247, 168, 27, 0.3);
  color: #f7a81b;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.interact-hero__title {
  font-size: 3.5rem;
  font-weight: 800;
  margin: 0 0 16px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f7a81b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.interact-hero__subtitle {
  font-size: 1.3rem;
  font-weight: 400;
  margin: 0 0 40px 0;
  opacity: 0.9;
  line-height: 1.6;
}

.interact-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #f7a81b;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

/* Timeline Styles */
.timeline-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 20px;
  display: flex;
  justify-content: center;
}

.timeline {
  position: relative;
  max-width: 700px;
  width: 100%;
  padding: 20px 0;
}

.timeline__line {
  position: absolute;
  left: 25px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #0e4aa7, #f7a81b);
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(14, 74, 167, 0.3);
}

.timeline__item {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.timeline__item.visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline__dot {
  position: absolute;
  left: 17px;
  top: 25px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #0e4aa7;
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 4px rgba(14, 74, 167, 0.2);
  z-index: 1;
}

.timeline__dot--current {
  background: #f7a81b;
  box-shadow: 0 0 0 4px rgba(247, 168, 27, 0.2);
}

.timeline__card {
  margin-left: 60px;
  width: calc(100% - 60px);
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 25px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.timeline__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0e4aa7, #f7a81b);
}

.timeline__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  border-color: rgba(247, 168, 27, 0.2);
}

.timeline__card--current {
  border-color: rgba(247, 168, 27, 0.3);
  box-shadow: 0 20px 40px rgba(247, 168, 27, 0.1);
}

.timeline__card--current::before {
  background: linear-gradient(90deg, #f7a81b, #0e4aa7);
}

.timeline__year {
  color: #f7a81b;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: inline-block;
  background: rgba(247, 168, 27, 0.1);
  padding: 4px 12px;
  border-radius: 12px;
  border: 1px solid rgba(247, 168, 27, 0.2);
}

.timeline__role {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.timeline__org {
  color: #0e4aa7;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 16px;
  opacity: 0.9;
}

.timeline__desc {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.achievement-tag {
  background: rgba(14, 74, 167, 0.2);
  border: 1px solid rgba(14, 74, 167, 0.3);
  color: #60a5fa;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.achievement-tag:hover {
  background: rgba(14, 74, 167, 0.3);
  transform: translateY(-1px);
}

.timeline__dot {
  position: absolute;
  top: 30px;
  left: calc(50% - 8px);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #0e4aa7;
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 4px rgba(14, 74, 167, 0.2);
}

.timeline__dot--current {
  background: #f7a81b;
  box-shadow: 0 0 0 4px rgba(247, 168, 27, 0.2);
}

/* Impact Section */
.impact-section {
  margin-bottom: 80px;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.impact-card {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.impact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  border-color: rgba(247, 168, 27, 0.2);
}

.impact-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.impact-card h3 {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.impact-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Values Section */
.values-section {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 60px;
  background: linear-gradient(135deg, #ffffff 0%, #f7a81b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.values-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.value-item {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 30px 20px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  border-color: rgba(247, 168, 27, 0.2);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}

.value-item h4 {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.value-item p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Journey Summary */
.journey-summary {
  margin-top: 60px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.journey-summary__text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  line-height: 1.7;
  font-style: italic;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .interact-hero {
    height: 50vh;
    min-height: 350px;
    margin-bottom: 60px;
  }

  .interact-hero__title {
    font-size: 2.5rem;
  }

  .interact-hero__subtitle {
    font-size: 1.1rem;
  }

  .interact-stats {
    gap: 20px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .timeline-container {
    padding: 0 15px;
  }

  .timeline {
    max-width: none;
  }

  .timeline__item {
    margin-bottom: 40px;
  }

  .timeline__line {
    left: 20px;
  }

  .timeline__dot {
    left: 12px;
    top: 20px;
  }

  .timeline__card {
    margin-left: 40px;
    width: calc(100% - 40px);
    padding: 20px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25), 0 5px 15px rgba(247, 168, 27, 0.1);
  }



  .timeline__role {
    font-size: 1.2rem;
  }

  .timeline__org {
    font-size: 0.9rem;
  }

  .timeline__desc {
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .impact-grid,
  .values-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .impact-card,
  .value-item {
    padding: 25px 20px;
  }
}
