/* ===========================
    About_us.css
    Editorial Luxury Theme
    Deep Navy × Warm Gold
    =========================== */

  :root {
    --navy:     #0c1628;
    --navy-mid: #162040;
    --navy-lit: #1e2d52;
    --gold:     #c9a227;
    --gold-lit: #f0c040;
    --gold-pale:#fef9ee;
    --cream:    #faf8f4;
    --text:     #1a1f2e;
    --muted:    #6b7280;
    --white:    #ffffff;
    --transition: 0.35s ease;
  }
/* ===========================
    About_us.css
    Editorial Luxury Theme
    Deep Navy × Warm Gold
    =========================== */

  :root {
    --navy:     #0c1628;
    --navy-mid: #162040;
    --navy-lit: #1e2d52;
    --gold:     #c9a227;
    --gold-lit: #f0c040;
    --gold-pale:#fef9ee;
    --cream:    #faf8f4;
    --text:     #1a1f2e;
    --muted:    #6b7280;
    --white:    #ffffff;
    --transition: 0.35s ease;
  }

  /* ===========================
    HERO SECTION
    =========================== */
  .about-hero {
    min-height: 100vh;
    background: var(--navy);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 60px 80px;
  }

  /* Geometric background shapes */
  .about-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
  }

  .hero-geo {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
  }

  .geo-1 {
    width: 700px; height: 700px;
    background: var(--gold);
    top: -200px; right: -200px;
    animation: geoFloat 10s ease-in-out infinite alternate;
  }

  .geo-2 {
    width: 400px; height: 400px;
    background: #3b6cf4;
    bottom: -100px; left: 10%;
    animation: geoFloat 14s ease-in-out infinite alternate-reverse;
  }

  .geo-3 {
    width: 200px; height: 200px;
    border: 2px solid var(--gold);
    top: 40%; left: 45%;
    background: transparent;
    opacity: 0.08;
    animation: geoFloat 8s ease-in-out infinite;
  }

  @keyframes geoFloat {
    from { transform: translate(0, 0) rotate(0deg); }
    to   { transform: translate(30px, 20px) rotate(15deg); }
  }

  .about-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
  }

  /* Text side */
  .eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px;
  }

  .about-hero-text h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(38px, 5vw, 68px);
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 24px;
  }

  .about-hero-text h1 em {
    font-style: italic;
    color: var(--gold-lit);
  }

  .about-hero-text p {
    font-size: 16px;
    color: rgba(255,255,255,0.65);
    line-height: 1.9;
    max-width: 480px;
    margin-bottom: 36px;
  }

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

  .btn-about-primary {
    padding: 14px 32px;
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    font-size: 14px;
    border-radius: 50px;
    transition: var(--transition);
    letter-spacing: 0.3px;
  }
  .btn-about-primary:hover {
    background: var(--gold-lit);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(201,162,39,0.4);
  }

  .btn-about-ghost {
    padding: 14px 32px;
    background: transparent;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    font-size: 14px;
    border-radius: 50px;
    border: 1.5px solid rgba(255,255,255,0.25);
    transition: var(--transition);
  }
  .btn-about-ghost:hover {
    border-color: white;
    color: white;
    transform: translateY(-3px);
  }

  /* Credential stack visual */
  .credential-stack {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-width: 480px;
    margin: 0 auto;
  }

  .cred-card {
    position: absolute;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    padding: 18px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    width: 200px;
    animation: credFloat 0.7s ease both;
  }

  .cred-card[data-delay="0"] { animation-delay: 0.1s; }
  .cred-card[data-delay="1"] { animation-delay: 0.25s; }
  .cred-card[data-delay="2"] { animation-delay: 0.4s; }
  .cred-card[data-delay="3"] { animation-delay: 0.55s; }

  @keyframes credFloat {
    from { opacity:0; transform: translateY(20px); }
    to   { opacity:1; transform: translateY(0); }
  }

  .cred-card.top-left    { top: 2%;  left: 0; }
  .cred-card.top-right   { top: 2%;  right: 0; }
  .cred-card.bottom-left { bottom: 2%; left: 0; }
  .cred-card.bottom-right{ bottom: 2%; right: 0; }

  .cred-icon {
    font-size: 26px;
    flex-shrink: 0;
  }

  .cred-card strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: white;
    margin-bottom: 3px;
  }

  .cred-card small {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
  }

  .cred-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    box-shadow: 0 0 0 8px rgba(201,162,39,0.15), 0 0 0 16px rgba(201,162,39,0.07);
    z-index: 2;
  }

  .cred-center img {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.4);
  }

  .cred-center span {
    font-size: 11px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 1px;
  }

  /* ===========================
    STATS STRIP
    =========================== */
  .about-stats {
    background: var(--gold);
    padding: 36px 60px;
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
  }

  .about-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 60px;
    border-right: 1px solid rgba(12,22,40,0.2);
    text-align: center;
  }
  .about-stat:last-child { border-right: none; }

  .as-num {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
  }
  .as-plus {
    font-size: 28px;
    font-weight: 900;
    color: var(--navy);
    opacity: 0.7;
    margin-left: 2px;
    vertical-align: super;
  }
  .as-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(12,22,40,0.65);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 6px;
  }

  /* ===========================
    STORY SECTION
    =========================== */
  .story-section {
    background: var(--cream);
    padding: 100px 60px;
  }

  .story-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 60px;
    align-items: start;
  }

  .section-side-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    padding-top: 4px;
  }

  .story-line {
    width: 1px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    height: 120px;
    margin: 12px auto 0;
  }

  .story-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 24px;
  }

  .story-content h2 em {
    font-style: italic;
    color: var(--gold);
  }

  .story-lead {
    font-size: 18px;
    font-weight: 500;
    color: var(--navy);
    line-height: 1.8;
    margin-bottom: 20px;
    font-family: 'Cormorant Garamond', serif;
  }

  .story-content p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 16px;
  }

  .story-content strong {
    color: var(--navy);
  }

  .story-quote {
    margin-top: 36px;
    padding: 28px 32px;
    background: white;
    border-left: 4px solid var(--gold);
    border-radius: 0 16px 16px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  }

  .story-quote blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-style: italic;
    color: var(--navy);
    line-height: 1.7;
    margin-bottom: 12px;
  }

  .story-quote cite {
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.5px;
  }

  /* ===========================
    DIVISIONS
    =========================== */
  .divisions-section {
    background: var(--navy);
    padding: 100px 60px;
  }

  .divisions-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .division-heading {
    text-align: center;
    margin-bottom: 60px;
  }

  .eyebrow-center {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
  }

  .division-heading h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 700;
    color: white;
    line-height: 1.2;
  }

  .division-heading h2 em {
    font-style: italic;
    color: var(--gold-lit);
  }

  .divisions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .division-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 40px 36px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
  }

  .division-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    border-radius: 24px 24px 0 0;
  }

  .division-card.manpower::before { background: var(--gold); }
  .division-card.travel::before   { background: #3b6cf4; }

  .division-card:hover {
    background: rgba(255,255,255,0.07);
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(0,0,0,0.3);
  }

  .div-icon-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
  }

  .div-icon { font-size: 36px; }

  .div-badge {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: 20px;
    background: rgba(201,162,39,0.15);
    color: var(--gold-lit);
    border: 1px solid rgba(201,162,39,0.25);
  }

  .div-badge.iata {
    background: rgba(59,108,244,0.15);
    color: #7ca4ff;
    border-color: rgba(59,108,244,0.25);
  }

  .division-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
  }

  .div-tagline {
    font-size: 13px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
  }

  .travel .div-tagline { color: #7ca4ff; }

  .division-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
    margin-bottom: 20px;
  }

  .div-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
  }

  .div-features li {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    padding-left: 4px;
  }

  .div-btn {
    display: inline-block;
    padding: 12px 26px;
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    font-size: 13px;
    border-radius: 50px;
    transition: var(--transition);
  }
  .div-btn:hover {
    background: var(--gold-lit);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201,162,39,0.3);
  }

  .div-btn.travel-btn {
    background: #3b6cf4;
    color: white;
  }
  .div-btn.travel-btn:hover {
    background: #2f5ce8;
    box-shadow: 0 8px 20px rgba(59,108,244,0.35);
  }

  /* ===========================
    LEADERSHIP
    =========================== */
  .leadership-section {
    background: var(--cream);
    padding: 100px 60px;
  }

  .leadership-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 80px;
    align-items: center;
  }

  .leader-photo-frame {
    position: relative;
    width: 380px;
    height: 460px;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
  }

  .leader-photo-bg {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-lit));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 10px var(--gold-pale), 0 0 0 18px rgba(201,162,39,0.2);
    margin: auto;
  }

  .leader-initials {
    font-family: 'Playfair Display', serif;
    font-size: 68px;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 3px;
  }

  .leader-name-plate {
    text-align: center;
    padding: 16px 24px;
    background: var(--navy);
    border-radius: 14px;
    width: 100%;
  }

  .leader-name-plate strong {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
  }

  .leader-name-plate span {
    font-size: 15px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }

  .leader-credentials {
    margin-top: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .lc-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    background: white;
    padding: 10px 16px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  }

  .lc-item span { font-size: 18px; }

  /* Leadership text */
  .leadership-text .section-side-tag {
    writing-mode: horizontal-tb;
    transform: none;
    display: block;
    margin-bottom: 16px;
  }

  .leadership-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 24px;
  }

  .leadership-text h2 em {
    font-style: italic;
    color: var(--gold);
  }

  .leader-lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--navy);
    line-height: 1.8;
    margin-bottom: 18px;
  }

  .leadership-text p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 16px;
  }

  .leader-quote {
    margin-top: 30px;
    padding: 24px 28px;
    background: linear-gradient(135deg, var(--navy), var(--navy-lit));
    border-radius: 18px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }

  .lq-mark {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    color: var(--gold);
    line-height: 0.6;
    flex-shrink: 0;
    opacity: 0.6;
  }

  .leader-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-style: italic;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin: 0;
  }

  /* ===========================
    CREDENTIALS BANNER
    =========================== */
  .creds-banner {
    background: var(--navy-mid);
    padding: 90px 60px;
  }

  .creds-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .eyebrow-center.light { color: rgba(201,162,39,0.7); }

  .creds-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 56px;
  }

  .creds-banner h2 em { font-style:italic; color: var(--gold-lit); }

  .creds-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: left;
  }

  .cred-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 28px 24px;
    transition: var(--transition);
  }

  .cred-item:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-5px);
    border-color: rgba(201,162,39,0.3);
  }

  .cred-logo {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--gold);
    background: rgba(201,162,39,0.1);
    border: 1px solid rgba(201,162,39,0.2);
    display: inline-block;
    padding: 8px 16px;
    border-radius: 10px;
    margin-bottom: 16px;
    letter-spacing: 2px;
  }
  .cred-logo.iata { color: #7ca4ff; background: rgba(59,108,244,0.1); border-color: rgba(59,108,244,0.2); }
  .cred-logo.atab { color: #6ee7b7; background: rgba(13,159,110,0.1); border-color: rgba(13,159,110,0.2); }
  .cred-logo.govt { color: #fca5a5; background: rgba(220,38,38,0.1); border-color: rgba(220,38,38,0.15); }

  .cred-item h4 {
    font-size: 15px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
  }

  .cred-item p {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
  }

  /* ===========================
    TIMELINE
    =========================== */
  .timeline-section {
    background: var(--cream);
    padding: 100px 60px;
  }

  .timeline-inner {
    max-width: 1000px;
    margin: 0 auto;
  }

  .timeline-header {
    text-align: center;
    margin-bottom: 70px;
  }

  .timeline-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
  }

  .timeline-header h2 em { font-style:italic; color:var(--gold); }

  .timeline {
    position: relative;
    padding: 0;
  }

  /* Center spine */
  .timeline::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), rgba(201,162,39,0.1));
    transform: translateX(-50%);
  }

  .tl-item {
    position: relative;
    width: 45%;
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .tl-item.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .tl-item.left  { margin-left: 0; margin-right: auto; padding-right: 40px; }
  .tl-item.right { margin-left: auto; margin-right: 0; padding-left: 40px; }

  .tl-dot {
    position: absolute;
    width: 16px; height: 16px;
    background: var(--gold);
    border-radius: 50%;
    top: 20px;
    box-shadow: 0 0 0 4px rgba(201,162,39,0.2);
    z-index: 2;
  }

  .tl-item.left  .tl-dot { right: -8px; }
  .tl-item.right .tl-dot { left: -8px; }

  .tl-card {
    background: white;
    border-radius: 16px;
    padding: 24px 26px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: var(--transition);
  }

  .tl-card:hover {
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    transform: translateY(-3px);
  }

  .tl-year {
    display: inline-block;
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    background: var(--gold-pale);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
    letter-spacing: 1px;
  }

  .tl-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
  }

  .tl-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
  }

  /* ===========================
    RESPONSIVE
    =========================== */

  @media (max-width: 1100px) {
    .about-hero-inner { grid-template-columns: 1fr; gap: 50px; }
    .about-hero { min-height: auto; padding: 120px 40px 70px; }
    .credential-stack { max-width: 380px; }
    .leadership-inner { grid-template-columns: 1fr; gap: 40px; }
    .leadership-visual { display: flex; flex-direction: row; gap: 30px; align-items: flex-start; flex-wrap: wrap; }
    .leader-photo-frame { flex: 0 0 auto; }
    .leader-credentials { flex: 1; min-width: 220px; }
    .creds-grid { grid-template-columns: 1fr 1fr; }
    .divisions-grid { grid-template-columns: 1fr; }
    .story-inner { grid-template-columns: 80px 1fr; }
  }

  @media (max-width: 768px) {
    .about-hero { padding: 100px 20px 60px; }
    .story-section, .leadership-section, .timeline-section, .creds-banner, .divisions-section { padding: 60px 20px; }
    .about-stats { padding: 20px; gap: 0; }
    .about-stat { padding: 14px 20px; border-right: none; border-bottom: 1px solid rgba(12,22,40,0.15); width: 50%; }
    .about-stat:nth-child(odd) { border-right: 1px solid rgba(12,22,40,0.15); }
    .about-stat:last-child, .about-stat:nth-last-child(2):nth-child(odd) { border-bottom: none; }
    .story-inner { grid-template-columns: 1fr; }
    .section-side-tag { writing-mode: horizontal-tb; transform: none; }
    .story-line { display: none; }
    .creds-grid { grid-template-columns: 1fr; }
    .timeline::before { left: 24px; }
    .tl-item { width: 100%; padding-left: 56px; padding-right: 0; }
    .tl-item.right { margin-left: 0; padding-left: 56px; }
    .tl-item.left .tl-dot { right: auto; left: 16px; }
    .tl-item.right .tl-dot { left: 16px; }
    .cred-card { width: 150px; padding: 12px 14px; }
    .cred-card strong { font-size: 11px; }
  }

  @media (max-width: 480px) {
    .leadership-visual { flex-direction: column; }
    .cred-card.top-right, .cred-card.bottom-right { display: none; }
    .credential-stack { aspect-ratio: auto; height: 320px; }

/* ===========================
   CERTIFICATIONS SECTION (New Design)
   =========================== */
.cert-section {
  padding: 80px 20px;
  background: #f5f7fa;
}

.cert-container h2 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: #0d1117;
  line-height: 1.2;
  margin-bottom: 16px;
}

.cert-container h2 .bn-sub {
  display: block;
  font-size: 0.62em;
  color: #6b7280;
  font-style: italic;
  font-weight: 400;
  margin-top: 6px;
}

.cert-container {
  max-width: 1100px;
  margin: auto;
}

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

.cert-badge-main {
  display: inline-block;
  padding: 14px 30px;
  border: 2px solid #1f2937;
  border-radius: 8px;
  margin-bottom: 16px;
}

.cert-badge-num {
  display: block;
  font-size: 34px;
  font-weight: 700;
  color: #111827;
}

.cert-badge-label {
  font-size: 13px;
  color: #555;
}

.cert-header p {
  max-width: 600px;
  margin: auto;
  color: #666;
  line-height: 1.6;
  font-size: 15px;
}

.cert-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.cert-card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 32px 26px;
  text-align: center;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.cert-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.cert-card.featured {
  transform: scale(1.05);
  border-color: #cbd5e1;
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.cert-logo-wrap {
  height: 60px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-logo-wrap img {
  max-height: 50px;
  max-width: 100%;
  object-fit: contain;
}

.cert-divider {
  width: 40px;
  height: 2px;
  background: #e5e7eb;
  margin: 14px auto;
}

.cert-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #111;
}

.cert-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 18px;
}

.cert-tag {
  font-size: 11px;
  padding: 5px 14px;
  border: 1px solid #ddd;
  border-radius: 20px;
  color: #555;
}

@media (max-width: 768px) {
  .cert-cards {
    grid-template-columns: 1fr;
  }
  .cert-card.featured {
    transform: none;
  }
}
  /* ===========================
    HERO SECTION
    =========================== */
  .about-hero {
    min-height: 100vh;
    background: var(--navy);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 60px 80px;
  }

  /* Geometric background shapes */
  .about-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
  }

  .hero-geo {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
  }

  .geo-1 {
    width: 700px; height: 700px;
    background: var(--gold);
    top: -200px; right: -200px;
    animation: geoFloat 10s ease-in-out infinite alternate;
  }

  .geo-2 {
    width: 400px; height: 400px;
    background: #3b6cf4;
    bottom: -100px; left: 10%;
    animation: geoFloat 14s ease-in-out infinite alternate-reverse;
  }

  .geo-3 {
    width: 200px; height: 200px;
    border: 2px solid var(--gold);
    top: 40%; left: 45%;
    background: transparent;
    opacity: 0.08;
    animation: geoFloat 8s ease-in-out infinite;
  }

  @keyframes geoFloat {
    from { transform: translate(0, 0) rotate(0deg); }
    to   { transform: translate(30px, 20px) rotate(15deg); }
  }

  .about-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
  }

  /* Text side */
  .eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px;
  }

  .about-hero-text h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(38px, 5vw, 68px);
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 24px;
  }

  .about-hero-text h1 em {
    font-style: italic;
    color: var(--gold-lit);
  }

  .about-hero-text p {
    font-size: 16px;
    color: rgba(255,255,255,0.65);
    line-height: 1.9;
    max-width: 480px;
    margin-bottom: 36px;
  }

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

  .btn-about-primary {
    padding: 14px 32px;
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    font-size: 14px;
    border-radius: 50px;
    transition: var(--transition);
    letter-spacing: 0.3px;
  }
  .btn-about-primary:hover {
    background: var(--gold-lit);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(201,162,39,0.4);
  }

  .btn-about-ghost {
    padding: 14px 32px;
    background: transparent;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    font-size: 14px;
    border-radius: 50px;
    border: 1.5px solid rgba(255,255,255,0.25);
    transition: var(--transition);
  }
  .btn-about-ghost:hover {
    border-color: white;
    color: white;
    transform: translateY(-3px);
  }

  /* Credential stack visual */
  .credential-stack {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-width: 480px;
    margin: 0 auto;
  }

  .cred-card {
    position: absolute;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    padding: 18px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    width: 200px;
    animation: credFloat 0.7s ease both;
  }

  .cred-card[data-delay="0"] { animation-delay: 0.1s; }
  .cred-card[data-delay="1"] { animation-delay: 0.25s; }
  .cred-card[data-delay="2"] { animation-delay: 0.4s; }
  .cred-card[data-delay="3"] { animation-delay: 0.55s; }

  @keyframes credFloat {
    from { opacity:0; transform: translateY(20px); }
    to   { opacity:1; transform: translateY(0); }
  }

  .cred-card.top-left    { top: 2%;  left: 0; }
  .cred-card.top-right   { top: 2%;  right: 0; }
  .cred-card.bottom-left { bottom: 2%; left: 0; }
  .cred-card.bottom-right{ bottom: 2%; right: 0; }

  .cred-icon {
    font-size: 26px;
    flex-shrink: 0;
  }

  .cred-card strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: white;
    margin-bottom: 3px;
  }

  .cred-card small {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
  }

  .cred-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    box-shadow: 0 0 0 8px rgba(201,162,39,0.15), 0 0 0 16px rgba(201,162,39,0.07);
    z-index: 2;
  }

  .cred-center img {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.4);
  }

  .cred-center span {
    font-size: 11px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 1px;
  }

  /* ===========================
    STATS STRIP
    =========================== */
  .about-stats {
    background: var(--gold);
    padding: 36px 60px;
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
  }

  .about-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 60px;
    border-right: 1px solid rgba(12,22,40,0.2);
    text-align: center;
  }
  .about-stat:last-child { border-right: none; }

  .as-num {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
  }
  .as-plus {
    font-size: 28px;
    font-weight: 900;
    color: var(--navy);
    opacity: 0.7;
    margin-left: 2px;
    vertical-align: super;
  }
  .as-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(12,22,40,0.65);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 6px;
  }

  /* ===========================
    STORY SECTION
    =========================== */
  .story-section {
    background: var(--cream);
    padding: 100px 60px;
  }

  .story-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 60px;
    align-items: start;
  }

  .section-side-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    padding-top: 4px;
  }

  .story-line {
    width: 1px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    height: 120px;
    margin: 12px auto 0;
  }

  .story-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 24px;
  }

  .story-content h2 em {
    font-style: italic;
    color: var(--gold);
  }

  .story-lead {
    font-size: 18px;
    font-weight: 500;
    color: var(--navy);
    line-height: 1.8;
    margin-bottom: 20px;
    font-family: 'Cormorant Garamond', serif;
  }

  .story-content p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 16px;
  }

  .story-content strong {
    color: var(--navy);
  }

  .story-quote {
    margin-top: 36px;
    padding: 28px 32px;
    background: white;
    border-left: 4px solid var(--gold);
    border-radius: 0 16px 16px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  }

  .story-quote blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-style: italic;
    color: var(--navy);
    line-height: 1.7;
    margin-bottom: 12px;
  }

  .story-quote cite {
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.5px;
  }

  /* ===========================
    DIVISIONS
    =========================== */
  .divisions-section {
    background: var(--navy);
    padding: 100px 60px;
  }

  .divisions-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .division-heading {
    text-align: center;
    margin-bottom: 60px;
  }

  .eyebrow-center {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
  }

  .division-heading h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 700;
    color: white;
    line-height: 1.2;
  }

  .division-heading h2 em {
    font-style: italic;
    color: var(--gold-lit);
  }

  .divisions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .division-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 40px 36px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
  }

  .division-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    border-radius: 24px 24px 0 0;
  }

  .division-card.manpower::before { background: var(--gold); }
  .division-card.travel::before   { background: #3b6cf4; }

  .division-card:hover {
    background: rgba(255,255,255,0.07);
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(0,0,0,0.3);
  }

  .div-icon-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
  }

  .div-icon { font-size: 36px; }

  .div-badge {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: 20px;
    background: rgba(201,162,39,0.15);
    color: var(--gold-lit);
    border: 1px solid rgba(201,162,39,0.25);
  }

  .div-badge.iata {
    background: rgba(59,108,244,0.15);
    color: #7ca4ff;
    border-color: rgba(59,108,244,0.25);
  }

  .division-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
  }

  .div-tagline {
    font-size: 13px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
  }

  .travel .div-tagline { color: #7ca4ff; }

  .division-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
    margin-bottom: 20px;
  }

  .div-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
  }

  .div-features li {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    padding-left: 4px;
  }

  .div-btn {
    display: inline-block;
    padding: 12px 26px;
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    font-size: 13px;
    border-radius: 50px;
    transition: var(--transition);
  }
  .div-btn:hover {
    background: var(--gold-lit);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201,162,39,0.3);
  }

  .div-btn.travel-btn {
    background: #3b6cf4;
    color: white;
  }
  .div-btn.travel-btn:hover {
    background: #2f5ce8;
    box-shadow: 0 8px 20px rgba(59,108,244,0.35);
  }

  /* ===========================
    LEADERSHIP
    =========================== */
  .leadership-section {
    background: var(--cream);
    padding: 100px 60px;
  }

  .leadership-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 80px;
    align-items: center;
  }

  .leader-photo-frame {
    position: relative;
    width: 380px;
    height: 460px;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
  }

  .leader-photo-bg {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-lit));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 10px var(--gold-pale), 0 0 0 18px rgba(201,162,39,0.2);
    margin: auto;
  }

  .leader-initials {
    font-family: 'Playfair Display', serif;
    font-size: 68px;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 3px;
  }

  .leader-name-plate {
    text-align: center;
    padding: 16px 24px;
    background: var(--navy);
    border-radius: 14px;
    width: 100%;
  }

  .leader-name-plate strong {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
  }

  .leader-name-plate span {
    font-size: 15px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }

  .leader-credentials {
    margin-top: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .lc-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    background: white;
    padding: 10px 16px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  }

  .lc-item span { font-size: 18px; }

  /* Leadership text */
  .leadership-text .section-side-tag {
    writing-mode: horizontal-tb;
    transform: none;
    display: block;
    margin-bottom: 16px;
  }

  .leadership-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 24px;
  }

  .leadership-text h2 em {
    font-style: italic;
    color: var(--gold);
  }

  .leader-lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--navy);
    line-height: 1.8;
    margin-bottom: 18px;
  }

  .leadership-text p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 16px;
  }

  .leader-quote {
    margin-top: 30px;
    padding: 24px 28px;
    background: linear-gradient(135deg, var(--navy), var(--navy-lit));
    border-radius: 18px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }

  .lq-mark {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    color: var(--gold);
    line-height: 0.6;
    flex-shrink: 0;
    opacity: 0.6;
  }

  .leader-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-style: italic;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin: 0;
  }

  /* ===========================
    CREDENTIALS BANNER
    =========================== */
  .creds-banner {
    background: var(--navy-mid);
    padding: 90px 60px;
  }

  .creds-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .eyebrow-center.light { color: rgba(201,162,39,0.7); }

  .creds-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 56px;
  }

  .creds-banner h2 em { font-style:italic; color: var(--gold-lit); }

  .creds-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: left;
  }

  .cred-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 28px 24px;
    transition: var(--transition);
  }

  .cred-item:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-5px);
    border-color: rgba(201,162,39,0.3);
  }

  .cred-logo {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--gold);
    background: rgba(201,162,39,0.1);
    border: 1px solid rgba(201,162,39,0.2);
    display: inline-block;
    padding: 8px 16px;
    border-radius: 10px;
    margin-bottom: 16px;
    letter-spacing: 2px;
  }
  .cred-logo.iata { color: #7ca4ff; background: rgba(59,108,244,0.1); border-color: rgba(59,108,244,0.2); }
  .cred-logo.atab { color: #6ee7b7; background: rgba(13,159,110,0.1); border-color: rgba(13,159,110,0.2); }
  .cred-logo.govt { color: #fca5a5; background: rgba(220,38,38,0.1); border-color: rgba(220,38,38,0.15); }

  .cred-item h4 {
    font-size: 15px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
  }

  .cred-item p {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
  }

  /* ===========================
    TIMELINE
    =========================== */
  .timeline-section {
    background: var(--cream);
    padding: 100px 60px;
  }

  .timeline-inner {
    max-width: 1000px;
    margin: 0 auto;
  }

  .timeline-header {
    text-align: center;
    margin-bottom: 70px;
  }

  .timeline-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
  }

  .timeline-header h2 em { font-style:italic; color:var(--gold); }

  .timeline {
    position: relative;
    padding: 0;
  }

  /* Center spine */
  .timeline::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), rgba(201,162,39,0.1));
    transform: translateX(-50%);
  }

  .tl-item {
    position: relative;
    width: 45%;
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .tl-item.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .tl-item.left  { margin-left: 0; margin-right: auto; padding-right: 40px; }
  .tl-item.right { margin-left: auto; margin-right: 0; padding-left: 40px; }

  .tl-dot {
    position: absolute;
    width: 16px; height: 16px;
    background: var(--gold);
    border-radius: 50%;
    top: 20px;
    box-shadow: 0 0 0 4px rgba(201,162,39,0.2);
    z-index: 2;
  }

  .tl-item.left  .tl-dot { right: -8px; }
  .tl-item.right .tl-dot { left: -8px; }

  .tl-card {
    background: white;
    border-radius: 16px;
    padding: 24px 26px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: var(--transition);
  }

  .tl-card:hover {
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    transform: translateY(-3px);
  }

  .tl-year {
    display: inline-block;
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    background: var(--gold-pale);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
    letter-spacing: 1px;
  }

  .tl-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
  }

  .tl-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
  }

  /* ===========================
    RESPONSIVE
    =========================== */

  @media (max-width: 1100px) {
    .about-hero-inner { grid-template-columns: 1fr; gap: 50px; }
    .about-hero { min-height: auto; padding: 120px 40px 70px; }
    .credential-stack { max-width: 380px; }
    .leadership-inner { grid-template-columns: 1fr; gap: 40px; }
    .leadership-visual { display: flex; flex-direction: row; gap: 30px; align-items: flex-start; flex-wrap: wrap; }
    .leader-photo-frame { flex: 0 0 auto; }
    .leader-credentials { flex: 1; min-width: 220px; }
    .creds-grid { grid-template-columns: 1fr 1fr; }
    .divisions-grid { grid-template-columns: 1fr; }
    .story-inner { grid-template-columns: 80px 1fr; }
  }

  @media (max-width: 768px) {
    .about-hero { padding: 100px 20px 60px; }
    .story-section, .leadership-section, .timeline-section, .creds-banner, .divisions-section { padding: 60px 20px; }
    .about-stats { padding: 20px; gap: 0; }
    .about-stat { padding: 14px 20px; border-right: none; border-bottom: 1px solid rgba(12,22,40,0.15); width: 50%; }
    .about-stat:nth-child(odd) { border-right: 1px solid rgba(12,22,40,0.15); }
    .about-stat:last-child, .about-stat:nth-last-child(2):nth-child(odd) { border-bottom: none; }
    .story-inner { grid-template-columns: 1fr; }
    .section-side-tag { writing-mode: horizontal-tb; transform: none; }
    .story-line { display: none; }
    .creds-grid { grid-template-columns: 1fr; }
    .timeline::before { left: 24px; }
    .tl-item { width: 100%; padding-left: 56px; padding-right: 0; }
    .tl-item.right { margin-left: 0; padding-left: 56px; }
    .tl-item.left .tl-dot { right: auto; left: 16px; }
    .tl-item.right .tl-dot { left: 16px; }
    .cred-card { width: 150px; padding: 12px 14px; }
    .cred-card strong { font-size: 11px; }
  }

  @media (max-width: 480px) {
    .leadership-visual { flex-direction: column; }
    .cred-card.top-right, .cred-card.bottom-right { display: none; }
    .credential-stack { aspect-ratio: auto; height: 320px; }
  }
}
/* ===========================
   FOUNDER FEATURE SECTION
   =========================== */
.founder-feature-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 100px 60px;
}

.founder-feature-inner {
  max-width: 1200px;
  margin: 0 auto;
}

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

.founder-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-top: 15px;
}

.founder-header h2 em {
  font-style: italic;
  color: var(--gold);
}

.founder-content {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 50px;
  align-items: start;
}

.founder-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  position: sticky;
  top: 100px;
}

.fc-image-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--gold-pale);
}

.fc-initials {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lit) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}

.fc-name-block h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.fc-name-block p {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.fc-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fc-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text);
  padding: 8px 12px;
  background: var(--cream);
  border-radius: 8px;
  transition: var(--transition);
}

.fc-badge:hover {
  background: var(--gold-pale);
  transform: translateX(5px);
}

.fc-badge span {
  font-size: 16px;
}

.founder-message {
  color: var(--gold-pale);
}

.founder-message p {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 20px;
  opacity: 0.95;
}

.founder-quote-box {
  margin-top: 30px;
  padding: 30px;
  background: rgba(255,255,255,0.05);
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
}

.founder-quote-box blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--gold);
  margin: 0;
  line-height: 1.6;
}

/* Responsive for founder section */
@media (max-width: 900px) {
  .founder-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .founder-card {
    position: static;
  }
}

@media (max-width: 480px) {
  .founder-feature-section {
    padding: 60px 20px;
  }
  
  .fc-image-wrap {
    flex-direction: column;
    text-align: center;
  }
  
  .fc-badges {
    gap: 8px;
  }
  
  .fc-badge {
    justify-content: center;
  }
}

/* ===========================
   TIMELINE STATS CARDS
   =========================== */
.timeline-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}

.ts-card {
  background: white;
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  transition: var(--transition);
  border-bottom: 3px solid var(--gold);
}

.ts-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.ts-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.ts-label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
