/* ─── VARIABLES ─── */
    :root {
      --orange:     #F07A1F;
      --orange-cta: #F97316;
      --purple:     #6B4C9A;
      --text:       #222222;
      --muted:      #666666;
      --white:      #FFFFFF;
      --grey:       #F5F5F7;
      --grey-2:     #EFEFEF;
      --border:     #E4E4E4;
      --shadow:     0 4px 20px rgba(0,0,0,0.06);
      --shadow-lg:  0 12px 40px rgba(0,0,0,0.11);
      --font-h:     'Poppins', system-ui, sans-serif;
      --font-b:     'Open Sans', system-ui, sans-serif;
      --max:        1140px;
      --r:          8px;
    }

    /* ─── RESET ─── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body { font-family: var(--font-b); background: var(--white); color: var(--text); line-height: 1.7; -webkit-font-smoothing: antialiased; }
    img  { max-width: 100%; display: block; }
    a    { text-decoration: none; color: inherit; }

    /* ─── LAYOUT ─── */
    .container  { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
    .section    { padding: 88px 0; }
    .bg-grey    { background: var(--grey); }
    .centered   { text-align: center; }

    /* ─── TYPOGRAPHY ─── */
    .section-tag {
      display: inline-block;
      font-family: var(--font-h);
      font-size: 0.67rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 12px;
    }

    .section-heading {
      font-family: var(--font-h);
      font-size: clamp(1.55rem, 2.8vw, 2.3rem);
      font-weight: 700;
      line-height: 1.22;
      color: var(--text);
      margin-bottom: 18px;
    }

    .section-subtext {
      font-size: 1rem;
      color: var(--muted);
      max-width: 580px;
      line-height: 1.8;
      margin-bottom: 48px;
    }

    /* ─── BUTTONS ─── */
    .btn {
      display: inline-block;
      font-family: var(--font-h);
      font-size: 0.87rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      padding: 13px 26px;
      border-radius: var(--r);
      border: 2px solid transparent;
      cursor: pointer;
      transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
      white-space: nowrap;
    }
    .btn:hover  { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.12); }
    .btn:active { transform: translateY(0); }

    .btn-primary { background: var(--orange-cta); color: var(--white); border-color: var(--orange-cta); }
    .btn-primary:hover { background: #e8650e; border-color: #e8650e; }

    .btn-outline-dark { background: transparent; color: var(--text); border-color: var(--text); }
    .btn-outline-dark:hover { background: var(--text); color: var(--white); }

    .btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
    .btn-outline-white:hover { background: var(--white); color: var(--orange); border-color: var(--white); }

    .btn-purple { background: var(--purple); color: var(--white); border-color: var(--purple); }
    .btn-purple:hover { background: #5c3d87; border-color: #5c3d87; }

    .btn-white { background: var(--white); color: var(--orange); border-color: var(--white); font-weight: 700; }
    .btn-white:hover { background: #f5f0f0; }

    /* ─── SCROLL REVEAL ─── */
    .reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .d1 { transition-delay: 0.10s; }
    .d2 { transition-delay: 0.20s; }
    .d3 { transition-delay: 0.30s; }
    .d4 { transition-delay: 0.40s; }

    /* ═══════════════════════════════════════
       NAV
    ═══════════════════════════════════════ */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      padding: 0 24px;
      background: transparent;
      transition: background 0.3s, box-shadow 0.3s;
    }
    nav.scrolled {
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(10px);
      box-shadow: 0 1px 0 var(--border);
    }

    .nav-inner {
      max-width: var(--max); margin: 0 auto;
      height: 68px;
      display: flex; align-items: center;
      justify-content: space-between; gap: 24px;
    }

 .nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  transition: color 0.3s;
}

/* ===== NAV LOGOS ===== */

.nav-logo{
  display:flex;
  align-items:center;
  gap:10px;
  flex-shrink:0;
}

/* HERO STATE */

.logo-light{
  display:block;
  height:48px;
  width:auto;
  max-width:220px;
  object-fit:contain;
}

/* SCROLLED STATE */

.logo-dark{
  display:none;
  height:48px;
  width:auto;
  max-width:220px;
  object-fit:contain;
}

/* MOBILE */

.logo-mobile{
  display:none;
  height:34px;
  width:auto;
  object-fit:contain;
}

/* SCROLLED NAVBAR */

nav.scrolled .logo-light{
  display:none;
}

nav.scrolled .logo-dark{
  display:block;
}

/* MOBILE VIEW */

@media screen and (max-width:768px){

  .logo-light,
  .logo-dark,
  .logo-desktop{
    display:none !important;
  }

  .logo-mobile{
    display:block !important;
  }

}

nav.scrolled .nav-logo-text{
  color:var(--text);
}


    .nav-links {
      display: flex; align-items: center;
      gap: 24px; list-style: none;
    }
    .nav-links a {
      font-family: var(--font-h);
      font-size: 0.8rem; font-weight: 500;
      color: rgba(255,255,255,0.88);
      transition: color 0.2s;
    }
    nav.scrolled .nav-links a { color: var(--muted); }
    .nav-links a:hover { color: var(--orange) !important; }

    .nav-links .nav-cta {
      background: var(--orange-cta);
      color: var(--white) !important;
      padding: 8px 16px;
      border-radius: var(--r);
      font-weight: 600 !important;
    }
    .nav-links .nav-cta:hover { background: #e8650e; }

    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; padding: 4px;
      background: none; border: none;
    }
    .hamburger span {
      display: block; width: 24px; height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: background 0.3s, transform 0.3s, opacity 0.3s;
    }
    nav.scrolled .hamburger span { background: var(--text); }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-menu {
      display: none; position: fixed;
      top: 68px; left: 0; right: 0;
      background: var(--white);
      border-bottom: 1px solid var(--border);
      padding: 20px 24px 28px;
      z-index: 99;
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }
    .mobile-menu.open { display: block; }
    .mobile-menu a {
      display: block;
      font-family: var(--font-h);
      font-size: 0.95rem; font-weight: 500;
      color: var(--text);
      padding: 12px 0;
      border-bottom: 1px solid var(--border);
      transition: color 0.15s;
    }
    .mobile-menu a:last-child { border-bottom: none; }
    .mobile-menu a:hover { color: var(--orange); }

    /* ═══════════════════════════════════════
       HERO
    ═══════════════════════════════════════ */
    .hero {
      min-height: 82vh;
      background: linear-gradient(145deg, #1C1C2E 0%, #2D1B4E 45%, #1A2A4A 100%);
      display: flex; align-items: center;
      padding: 100px 24px 60px;
      position: relative; overflow: hidden;
    }
    /* orange glow top-right */
    .hero::before {
      content: '';
      position: absolute; top: -8%; right: -6%;
      width: 520px; height: 520px;
      background: radial-gradient(circle, rgba(240,122,31,0.2) 0%, transparent 65%);
      pointer-events: none;
    }
    /* purple glow bottom-left */
    .hero::after {
      content: '';
      position: absolute; bottom: 5%; left: 25%;
      width: 380px; height: 380px;
      background: radial-gradient(circle, rgba(107,76,154,0.14) 0%, transparent 65%);
      pointer-events: none;
    }

    .hero-inner {
      max-width: var(--max); margin: 0 auto;
      width: 100%; position: relative; z-index: 1;
    }

    .hero-eyebrow {
      display: inline-flex; align-items: flex-start; gap: 10px;
      font-family: var(--font-h);
      font-size: 0.68rem; font-weight: 600;
      letter-spacing: 0.22em; text-transform: uppercase;
      color: var(--orange); margin-bottom: 22px;
    }
    .hero-eyebrow::before {
      content: ''; width: 28px; height: 2px;
      background: var(--orange); border-radius: 2px;
    }

    .hero h1 {
      font-family: var(--font-h);
      font-size: clamp(1.9rem, 3.8vw, 3rem);
      font-weight: 700; line-height: 1.14;
      color: var(--white);
      max-width: 700px; margin-bottom: 22px;
    }
    .hero h1 span { color: var(--orange); }

    .hero-subtext {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.68);
      max-width: 560px; line-height: 1.82;
      margin-bottom: 38px;
    }

    .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

    .hero-strip {
  margin-top: 26px;
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
    .hero-stat { display: flex; flex-direction: column; gap: 3px; }
    .hero-stat strong {
      font-family: var(--font-h);
      font-size: 1.7rem; font-weight: 700;
      color: var(--orange);
    }
    .hero-stat span {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.48);
      font-family: var(--font-h);
    }

    /* ═══════════════════════════════════════
       PROBLEM
    ═══════════════════════════════════════ */
    .problem-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 20px;
    }
    .problem-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 12px; padding: 28px;
      position: relative; overflow: hidden;
      transition: box-shadow 0.25s, transform 0.25s;
    }
    .problem-card::before {
      content: '';
      position: absolute; top: 0; left: 0;
      width: 100%; height: 4px;
      background: var(--orange);
    }
    .problem-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

    .p-icon {
      width: 44px; height: 44px;
      background: rgba(240,122,31,0.1);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 16px;
    }
    .p-icon svg { width: 22px; height: 22px; stroke: var(--orange); fill: none; stroke-width: 1.6; }

    .problem-card h3 {
      font-family: var(--font-h);
      font-size: 0.98rem; font-weight: 600;
      color: var(--text); margin-bottom: 8px;
    }
    .problem-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.72; }

    /* ═══════════════════════════════════════
       CAREER PATHWAYS
    ═══════════════════════════════════════ */
    .pathways-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px; margin-top: 48px;
    }

    .pathway-card {
      background: var(--white);
      border-radius: 16px; padding: 40px;
      border: 1px solid var(--border);
      position: relative; overflow: hidden;
      transition: box-shadow 0.25s, transform 0.25s;
      display: flex; flex-direction: column;
    }
    .pathway-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

    .pathway-card.c-orange { border-top: 4px solid var(--orange); }
    .pathway-card.c-purple { border-top: 4px solid var(--purple); }

    .pathway-badge {
      display: inline-block;
      font-family: var(--font-h);
      font-size: 0.63rem; font-weight: 600;
      letter-spacing: 0.14em; text-transform: uppercase;
      padding: 5px 12px; border-radius: 20px;
      margin-bottom: 20px; align-self: flex-start;
    }
    .badge-orange { background: rgba(240,122,31,0.1); color: var(--orange); }
    .badge-purple { background: rgba(107,76,154,0.1); color: var(--purple); }

    .pathway-card h3 {
      font-family: var(--font-h);
      font-size: 1.3rem; font-weight: 700;
      color: var(--text); margin-bottom: 12px;
    }
    .pathway-desc {
      font-size: 0.93rem; color: var(--muted);
      line-height: 1.78; margin-bottom: 20px;
    }

    .pathway-audience {
      font-family: var(--font-h);
      font-size: 0.73rem; font-weight: 600;
      text-transform: uppercase; letter-spacing: 0.1em;
      padding: 9px 14px; border-radius: 6px;
      margin-bottom: 22px; display: inline-block;
    }
    .aud-orange { background: rgba(240,122,31,0.06); color: var(--orange); }
    .aud-purple { background: rgba(107,76,154,0.06); color: var(--purple); }

    .pathway-list {
      list-style: none;
      display: flex; flex-direction: column; gap: 10px;
      margin-bottom: 32px; flex: 1;
    }
    .pathway-list li {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 0.9rem; color: var(--text);
    }
    .pathway-list li .check {
      width: 18px; height: 18px; flex-shrink: 0;
      margin-top: 1px;
    }
    .pathway-list li .check svg { width: 18px; height: 18px; }

    /* ═══════════════════════════════════════
       WORKSHOPS
    ═══════════════════════════════════════ */
    .workshops-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 20px; margin-top: 48px;
    }
    .workshop-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 12px; padding: 32px 28px;
      position: relative; overflow: hidden;
      transition: box-shadow 0.25s, transform 0.25s;
    }
    .workshop-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
    .workshop-card::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0;
      height: 3px; background: var(--orange);
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.3s;
    }
    .workshop-card:hover::after { transform: scaleX(1); }

    .ws-num {
      font-family: var(--font-h);
      font-size: 2.8rem; font-weight: 700;
      color: rgba(240,122,31,0.1); line-height: 1;
      position: absolute; top: 14px; right: 18px;
    }
    .ws-label {
      display: inline-block;
      font-family: var(--font-h);
      font-size: 0.63rem; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--orange);
      font-weight: 600; margin-bottom: 10px;
    }
    .workshop-card h3 {
      font-family: var(--font-h);
      font-size: 1.05rem; font-weight: 600;
      color: var(--text); margin-bottom: 10px;
    }
    .workshop-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.72; }

    /* ═══════════════════════════════════════
       PROCESS
    ═══════════════════════════════════════ */
    .process-row {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0; margin-top: 56px;
      position: relative;
    }
    .process-row::before {
      content: '';
      position: absolute; top: 28px;
      left: calc(10% + 16px); right: calc(10% + 16px);
      height: 2px;
      background: linear-gradient(90deg, var(--orange), rgba(240,122,31,0.15));
      z-index: 0;
    }

    .process-step {
      display: flex; flex-direction: column;
      align-items: center; text-align: center;
      padding: 0 8px; position: relative; z-index: 1;
    }

    .step-circle {
      width: 56px; height: 56px;
      background: var(--orange); color: var(--white);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-h);
      font-size: 1.1rem; font-weight: 700;
      margin: 0 auto 20px;
      box-shadow: 0 0 0 6px rgba(240,122,31,0.12);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .process-step:hover .step-circle {
      transform: scale(1.08);
      box-shadow: 0 0 0 12px rgba(240,122,31,0.1);
    }

    .step-title {
      font-family: var(--font-h);
      font-size: 0.98rem; font-weight: 600;
      color: var(--text); margin-bottom: 8px;
    }
    .step-body {
      font-size: 0.82rem; color: var(--muted); line-height: 1.65;
    }

    /* ═══════════════════════════════════════
       VIDEO
    ═══════════════════════════════════════ */
    .video-inner { text-align: center; }
    .video-inner .section-heading { max-width: 560px; margin: 0 auto 14px; }
    .video-inner .section-subtext  { margin: 0 auto 40px; text-align: center; }

    .video-wrapper {
      max-width: 820px; margin: 0 auto;
      border-radius: 16px; overflow: hidden;
      box-shadow: var(--shadow-lg);
    }
    .video-placeholder {
      aspect-ratio: 16/9;
      background: linear-gradient(135deg, #1C1C2E 0%, #1A2A4A 100%);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center; gap: 16px;
      cursor: pointer; position: relative; overflow: hidden;
    }
    .video-placeholder::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at center, rgba(240,122,31,0.15) 0%, transparent 65%);
    }
    .play-circle {
      width: 72px; height: 72px;
      background: var(--orange-cta); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      position: relative; z-index: 1;
      box-shadow: 0 0 0 14px rgba(249,115,22,0.15);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .video-placeholder:hover .play-circle {
      transform: scale(1.1);
      box-shadow: 0 0 0 22px rgba(249,115,22,0.1);
    }
    .play-circle svg { margin-left: 4px; }
    .video-label {
      color: rgba(255,255,255,0.45);
      font-family: var(--font-h);
      font-size: 0.76rem; letter-spacing: 0.1em;
      text-transform: uppercase; position: relative; z-index: 1;
    }

    /* ═══════════════════════════════════════
       OUTCOMES
    ═══════════════════════════════════════ */
    .outcomes-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 24px; margin-top: 48px;
    }
    .outcome-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 12px; padding: 32px 28px;
      position: relative; overflow: hidden;
      transition: box-shadow 0.25s, transform 0.25s;
    }
    .outcome-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
    .outcome-card::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0;
      height: 3px; background: var(--orange);
    }
    .o-icon {
      width: 48px; height: 48px;
      background: rgba(240,122,31,0.1);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 18px;
    }
    .o-icon svg { width: 24px; height: 24px; stroke: var(--orange); fill: none; stroke-width: 1.6; }

    .outcome-card h3 {
      font-family: var(--font-h);
      font-size: 1.02rem; font-weight: 600;
      color: var(--text); margin-bottom: 8px;
    }
    .outcome-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.72; }

    /* ═══════════════════════════════════════
       ABOUT
    ═══════════════════════════════════════ */
    .about-grid {
      display: grid;
      grid-template-columns: 320px 1fr;
      gap: 64px; align-items: start;
    }

    .about-photo-wrap { position: relative; }
    .about-photo-box {
      background: var(--grey);
      border-radius: 16px; aspect-ratio: 3/4;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden; border: 1px solid var(--border);
    }
    .photo-ph {
      display: flex; flex-direction: column;
      align-items: center; gap: 10px; opacity: 0.3;
    }
    .photo-ph svg { width: 52px; height: 52px; stroke: var(--text); fill: none; stroke-width: 1; }
    .photo-ph span { font-size: 0.78rem; color: var(--text); font-family: var(--font-h); letter-spacing: 0.06em; }

    .about-dot {
      position: absolute; bottom: -16px; right: -16px;
      width: 80px; height: 80px;
      background: var(--orange); border-radius: 50%; opacity: 0.12;
    }

    .about-name {
      font-family: var(--font-h);
      font-size: 1.8rem; font-weight: 700;
      color: var(--text); margin-bottom: 4px;
    }
    .about-role {
      font-family: var(--font-h);
      font-size: 0.73rem; font-weight: 600;
      text-transform: uppercase; letter-spacing: 0.12em;
      color: var(--orange); margin-bottom: 24px;
    }
    .about-text {
      font-size: 0.97rem; color: var(--muted); line-height: 1.87;
    }
    .about-text p + p { margin-top: 14px; }

    .about-quote {
      margin: 22px 0;
      padding: 16px 20px;
      border-left: 3px solid var(--orange);
      background: rgba(240,122,31,0.04);
      border-radius: 0 8px 8px 0;
    }
    .about-quote p {
      font-family: var(--font-h); font-style: italic;
      font-size: 1rem; color: var(--text); line-height: 1.65;
    }

    .about-team {
      margin-top: 24px; padding-top: 20px;
      border-top: 1px solid var(--border);
      font-size: 0.87rem; color: var(--muted); font-style: italic;
    }

    /* ═══════════════════════════════════════
       CTA SECTION
    ═══════════════════════════════════════ */
    .cta-section {
      background: var(--orange);
      padding: 88px 24px; text-align: center;
      position: relative; overflow: hidden;
    }
    .cta-section::before {
      content: '';
      position: absolute; top: -50%; left: 50%;
      transform: translateX(-50%);
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 58%);
      pointer-events: none;
    }
    .cta-inner { position: relative; z-index: 1; }

    .cta-heading {
      font-family: var(--font-h);
      font-size: clamp(1.55rem, 3vw, 2.3rem); font-weight: 700;
      color: var(--white); max-width: 600px;
      margin: 0 auto 16px; line-height: 1.25;
    }
    .cta-subtext {
      font-size: 1rem;
      color: rgba(255,255,255,0.82);
      max-width: 500px; margin: 0 auto 36px; line-height: 1.8;
    }

    .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }

    .cta-contact {
      display: flex; gap: 32px;
      justify-content: center; flex-wrap: wrap;
    }
    .cta-contact-item {
      display: flex; align-items: center; gap: 8px;
      font-size: 0.88rem; color: rgba(255,255,255,0.8);
    }
    .cta-contact-item a { color: var(--white); font-weight: 600; }
    .cta-contact-item a:hover { text-decoration: underline; }

    /* ═══════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════ */
    footer { background: #1A1A1A; padding: 56px 24px 24px; }
    .footer-inner { max-width: var(--max); margin: 0 auto; }

    .footer-top {
      display: grid;
      grid-template-columns: 280px 1fr 1fr 1fr;
      gap: 40px; padding-bottom: 40px;
      border-bottom: 1px solid rgba(255,255,255,0.07);
      margin-bottom: 28px;
    }

    .footer-brand-logo {
      display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
    }
    .footer-brand-logo img { height: 44px; width: auto; filter: brightness(0) invert(1); }
    .footer-brand-name {
      font-family: var(--font-h);
      font-size: 1.05rem; font-weight: 700; color: var(--white);
    }

    .footer-tagline {
      font-size: 0.82rem; color: rgba(255,255,255,0.72);
      margin-bottom: 20px; line-height: 1.65;
    }

    .footer-social { display: flex; gap: 10px; }
    .soc-icon {
      width: 36px; height: 36px;
      background: rgba(255,255,255,0.07);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.2s;
    }
    .soc-icon:hover { background: var(--orange); }
    .soc-icon svg { width: 15px; height: 15px; fill: rgba(255,255,255,0.9); }
    .soc-icon:hover svg { fill: var(--white); }

    .footer-col h4 {
      font-family: var(--font-h);
      font-size: 0.72rem; font-weight: 600;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: rgba(255,255,255,0.98); margin-bottom: 16px;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul li a {
      font-size: 0.84rem; color: rgba(255,255,255,0.72);
      transition: color 0.2s;
    }
    .footer-col ul li a:hover { color: var(--orange); }

    .footer-contact-line {
      font-size: 0.84rem; color: rgba(255,255,255,0.72);
      margin-bottom: 10px; line-height: 1.5;
    }
    .footer-contact-line a { color: rgba(255,255,255,0.72); transition: color 0.2s; }
    .footer-contact-line a:hover { color: var(--orange); }

    .footer-bottom {
      display: flex; justify-content: space-between;
      align-items: center; flex-wrap: wrap; gap: 12px;
    }
    .footer-copy { font-size: 0.77rem; color: rgba(255,255,255,0.52); }
    .footer-legal { display: flex; gap: 20px; list-style: none; }
    .footer-legal li a {
      font-size: 0.77rem; color: rgba(255,255,255,0.52); transition: color 0.2s;
    }
    .footer-legal li a:hover { color: var(--orange); }
    
    
    .about-hero{
  min-height:72vh;
}
    
   .about-wide-text{
  max-width:920px;
  margin-left:auto;
  margin-right:auto;
  line-height:1.9;
}
    
    
    /* ═══════════════════ FOUNDER SECTION ═══════════════════ */

.founder-section{
  padding-top:90px;
}

.founder-grid{
  display:grid;
  grid-template-columns:420px 1fr;
  gap:70px;
  align-items:center;
}

.founder-image{
  border-radius:28px;
  overflow:hidden;
  position:relative;
  background:#f3f3f3;
}

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

.founder-role{
  font-size:0.95rem;
  color:rgba(0,0,0,0.62);
  margin-top:-8px;
  margin-bottom:28px;
}

.founder-text p{
  margin-bottom:22px;
  line-height:1.9;
  color:rgba(0,0,0,0.76);
}

.founder-tags{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:34px;
}

.founder-tags span{
  padding:8px 14px;
  border-radius:999px;
  background:#f4f4f4;
  font-size:0.82rem;
}

.section-heading.left{
  text-align:left;
}

@media(max-width:980px){

  .founder-grid{
    grid-template-columns:1fr;
    gap:40px;
  }

}
    
    
    

    /* ═══════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════ */
    @media (max-width: 1024px) {
      .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    }

    @media (max-width: 900px) {
      .section { padding: 64px 0; }
      .pathways-grid { grid-template-columns: 1fr; gap: 24px; }
      .about-grid { grid-template-columns: 1fr; gap: 40px; }
      .about-photo-wrap { max-width: 300px; }
      .process-row { grid-template-columns: 1fr; max-width: 440px; margin: 48px auto 0; }
      .process-row::before { display: none; }
      .process-step { flex-direction: row; text-align: left; gap: 18px; align-items: flex-start; }
      .step-circle { margin: 0; flex-shrink: 0; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
    }

    @media (max-width: 640px) {
      .hero { padding: 100px 20px 60px; }
      .hero h1 { font-size: clamp(1.8rem, 6vw, 2.4rem); }
      .hero-ctas { flex-direction: column; }
      .hero-strip { gap: 28px; }
      .footer-top { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .cta-contact { flex-direction: column; gap: 12px; align-items: center; }
      .pathway-card { padding: 28px 22px; }
    }

    @media (max-width: 480px) {
      .cta-btns { flex-direction: column; align-items: center; }
    }
    
   /* ===== FINAL MOBILE LOGO FIX ===== */

@media screen and (max-width:768px){

  .logo-light,
  .logo-dark,
  .logo-desktop{
    display:none !important;
  }

  .logo-mobile{
    display:block !important;
    height:34px !important;
    width:auto !important;
    visibility:visible !important;
  }

} 
   