/*
 * ═══════════════════════════════════════════════════════════════════
 *  SRUSTI ACADEMY — SHARED DESIGN SYSTEM
 *  srusti-design-system.css
 *
 *  Load this file ONCE in view_header2 (or the relevant shared header)
 *  before any page-specific stylesheet.
 *
 *  TABLE OF CONTENTS
 *  ─────────────────
 *  1.  Design Tokens (CSS Custom Properties)
 *  2.  Reset & Base
 *  3.  Layout — Container, Section Padding
 *  4.  Typography — Fonts, Eyebrow, Title Block, Helpers
 *  5.  Dividers & Decorators
 *  6.  Buttons
 *  7.  Badges & Pills
 *  8.  Cards — Base, Gold-Top, Blue-Bottom, Horizontal
 *  9.  Icon Circles & Icon Boxes
 *  10. Grids — Generic, 2-col, 3-col, 4-col, 5-col, Auto-fill
 *  11. Hero — Layout, Text, CTAs, Canvas
 *  12. Float Mini Labels (hero decoration)
 *  13. Stats Strip
 *  14. Section Backgrounds (utility bg classes)
 *  15. Closing CTA Section
 *  16. Scroll Reveal Animation
 *  17. Breadcrumb
 *  18. Modal — Base Overlay & Box
 *  19. Form Controls — Search Input, Filter Chips
 *  20. Journey Timeline
 *  21. Responsive Breakpoints
 * ═══════════════════════════════════════════════════════════════════
 */


/* ═══════════════════════════════════════════════════════════════════
   1. DESIGN TOKENS
   ═══════════════════════════════════════════════════════════════════ */
:root {
    /* Brand colours */
    --navy:        #111a44;
    --blue:        #374799;
    --blue-mid:    #4a5bbf;
    --gold:        #dca200;
    --gold-light:  #f4c542;
    --gold-pale:   #fff8e6;

    /* Neutrals */
    --off-white:   #f6f7fb;
    --white:       #ffffff;
    --charcoal:    #1e2535;
    --body-gray:   #3a3f52;
    --muted:       #dfe4ff;
    --border:      #e5e8f5;

    /* Shadows */
    --shadow-sm:   0 2px 12px rgba(55, 71, 153, 0.06);
    --shadow-md:   0 4px 24px rgba(55, 71, 153, 0.10);
    --shadow-lg:   0 12px 40px rgba(55, 71, 153, 0.14);
    --shadow-xl:   0 24px 64px rgba(17, 26, 68, 0.18);

    /* Radii */
    --radius-sm:   10px;
    --radius-md:   16px;
    --radius-lg:   20px;
    --radius-xl:   24px;
    --radius-pill: 50px;

    /* Transitions */
    --transition:  0.25s ease;
}


/* ═══════════════════════════════════════════════════════════════════
   2. RESET & BASE
   ═══════════════════════════════════════════════════════════════════ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--charcoal);
    background: var(--white);
    line-height: 1.65;
    font-size: 16px;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}


/* ═══════════════════════════════════════════════════════════════════
   3. LAYOUT
   ═══════════════════════════════════════════════════════════════════ */

/* Standard content container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Narrow container variant for focused text blocks */
.container-narrow {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Standard vertical section padding */
.section-pad {
    padding: 88px 0;
    scroll-margin-top: 130px;
}

#committees-nav{
scroll-margin-top: 130px;    
}

/* Compact section (e.g. stats strip, filter bar context) */
.section-pad-sm {
    padding: 48px 0;
}


/* ═══════════════════════════════════════════════════════════════════
   4. TYPOGRAPHY
   ═══════════════════════════════════════════════════════════════════ */

/* Font-family helpers */
.font-anton   { font-family: "Anton", sans-serif; }
.font-antonio { font-family: "Antonio", sans-serif; }
.font-poppins { font-family: "Poppins", sans-serif; }
.font-kalam   { font-family: "Kalam", cursive; }

/* Eyebrow label above section titles */
.section-eyebrow {
    font-family: "Antonio", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
}

/* Anton display headings */
.section-title-anton {
    font-family: "Anton", sans-serif;
    line-height: 1;
    letter-spacing: 0.5px;
}

/* Standard section title block (eyebrow + title + subtitle + divider) */
.sec-title-block {
    text-align: center;
    margin-bottom: 56px;
}

/* Italic accent phrase (Kalam handwriting style) */
.text-accent-kalam {
    font-family: "Kalam", cursive;
    font-size: 22px;
    color: var(--gold);
    font-weight: 700;
}

/* Colour utility classes for headings / text */
.title-white  { color: var(--white); }
.title-blue   { color: var(--blue); }
.title-navy   { color: var(--navy); }
.title-gold   { color: var(--gold); }
.subtitle-navy { color: var(--navy); }
.text-muted   { color: var(--body-gray); }
.text-light   { color: rgba(230, 235, 255, 0.85); }


/* ═══════════════════════════════════════════════════════════════════
   5. DIVIDERS & DECORATORS
   ═══════════════════════════════════════════════════════════════════ */

/* Gold accent bar — centered under section titles */
.gold-divider {
    width: 56px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin: 16px auto 0;
}

/* Smaller inline variant used inside cards / modal blocks */
.gold-divider-sm {
    width: 36px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    margin-bottom: 10px;
}

/* Dot-grid overlay (applied via pseudo-element on dark sections) */
.dot-grid-overlay {
    position: relative;
}
.dot-grid-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 0;
}


/* ═══════════════════════════════════════════════════════════════════
   6. BUTTONS
   ═══════════════════════════════════════════════════════════════════ */

/* Shared base — all buttons inherit this */
.btn-base {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

/* Gold — primary CTA on dark backgrounds */
.btn-gold {
    composes: btn-base;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 13px 28px;
    background: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all var(--transition);
}
.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(220, 162, 0, 0.35);
}

/* Blue solid — secondary action on light backgrounds */
.btn-blue-solid {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 13px;
    padding: 11px 24px;
    background: var(--blue);
    color: var(--white);
    border: none;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all var(--transition);
}
.btn-blue-solid:hover {
    background: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(55, 71, 153, 0.30);
}

/* Outline white — used on dark / hero backgrounds */
.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 13px 28px;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all var(--transition);
}
.btn-outline-white:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

/* CTA section outline — lighter border for gradient backgrounds */
.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 13px;
    padding: 12px 24px;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all var(--transition);
}
.btn-cta-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Outline navy — used on light backgrounds */
.btn-outline-navy {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 13px;
    padding: 10px 22px;
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all var(--transition);
}
.btn-outline-navy:hover {
    background: var(--navy);
    color: var(--white);
}

/* Size modifiers */
.btn-sm  { font-size: 12px !important; padding: 9px 20px !important; }
.btn-lg  { font-size: 15px !important; padding: 15px 34px !important; }


/* ═══════════════════════════════════════════════════════════════════
   7. BADGES & PILLS
   ═══════════════════════════════════════════════════════════════════ */

/* Small label pill — e.g. "MBA Programme" in hero */
.label-pill {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    font-family: "Poppins", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: var(--radius-pill);
}

/* Numbered/labelled badge — e.g. M1, PO 1, PEO 1 */
.badge {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    font-family: "Antonio", sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 5px 16px;
    border-radius: var(--radius-pill);
    letter-spacing: 1px;
    white-space: nowrap;
    width: fit-content;
}

/* Category/tag badge — darker variant */
.badge-blue {
    display: inline-block;
    background: var(--blue);
    color: var(--white);
    font-family: "Antonio", sans-serif;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: var(--radius-pill);
    letter-spacing: 1px;
}

/* Tag chip — used in tag rows (areas of interest, categories) */
.tag-chip {
    background: var(--off-white);
    color: var(--navy);
    font-family: "Poppins", sans-serif;
    font-size: 11.5px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border);
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}


/* ═══════════════════════════════════════════════════════════════════
   8. CARDS
   ═══════════════════════════════════════════════════════════════════ */

/* ── Base card (plain bordered) ── */
.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ── Gold-top card (feature / focus / achievement cards) ── */
.card-gold-top {
    background: var(--white);
    border-top: 5px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
.card-gold-top:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

/* ── Blue-bottom card (PEO-style) ── */
.card-blue-bottom {
    background: #eef2ff;
    border-radius: var(--radius-lg);
    padding: 32px;
    border-bottom: 6px solid var(--blue);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform var(--transition), box-shadow var(--transition);
}
.card-blue-bottom:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(55, 71, 153, 0.16);
}

/* ── Animated gold-bar-on-hover card (used for PO / growth cards) ── */
.card-bar-reveal {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: all var(--transition);
}
.card-bar-reveal::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}
.card-bar-reveal:hover {
    border-color: var(--blue);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.card-bar-reveal:hover::after {
    transform: scaleX(1);
}

/* ── Horizontal card (downloads, mission-row items) ── */
.card-horizontal {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: var(--shadow-sm);
    border-top: 5px solid var(--gold);
    transition: transform var(--transition), box-shadow var(--transition);
}
.card-horizontal:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ── Sliding horizontal card (mission-list style) ── */
.card-slide {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 22px 28px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform var(--transition), box-shadow var(--transition);
}
.card-slide:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

/* Card title & text helpers */
.card-title {
    font-family: "Antonio", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 8px;
}
.card-text {
    font-size: 14px;
    color: var(--body-gray);
    line-height: 1.65;
}


/* ═══════════════════════════════════════════════════════════════════
   9. ICON CIRCLES & ICON BOXES
   ═══════════════════════════════════════════════════════════════════ */

/* Gold circular icon — used on feature/focus cards */
.icon-circle-gold {
    width: 54px;
    height: 54px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.icon-circle-gold svg { width: 26px; height: 26px; }

/* Smaller icon circle variant */
.icon-circle-gold-sm {
    width: 42px;
    height: 42px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.icon-circle-gold-sm svg { width: 20px; height: 20px; }

/* Off-white circular icon — used on PO cards */
.icon-circle-light {
    width: 38px;
    height: 38px;
    background: var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.icon-circle-light svg { width: 20px; height: 20px; }

/* Navy-to-blue gradient icon circle — used for PSO / spotlight icons */
.icon-circle-navy {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    flex-shrink: 0;
}
.icon-circle-navy svg { width: 34px; height: 34px; }

/* Rounded square icon box (growth card style) */
.icon-box {
    width: 42px;
    height: 42px;
    background: var(--off-white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.icon-box svg { width: 22px; height: 22px; }

/* White rounded square icon box (PEO card style) */
.icon-box-white {
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(55, 71, 153, 0.1);
}
.icon-box-white svg { width: 24px; height: 24px; }


/* ═══════════════════════════════════════════════════════════════════
   10. GRIDS
   ═══════════════════════════════════════════════════════════════════ */

/* Generic grid — add col-modifier class or inline style for columns */
.grid { display: grid; gap: 20px; }

/* Fixed column presets */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }

/* Responsive auto-fill grid (minimum 260px per column) */
.grid-auto {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

/* Full-width spanning item (for .grid-2 last-odd-item centering) */
.col-full { grid-column: 1 / -1; }

/* Gap variants */
.gap-sm { gap: 12px; }
.gap-md { gap: 20px; }
.gap-lg { gap: 28px; }


/* ═══════════════════════════════════════════════════════════════════
   11. HERO
   ═══════════════════════════════════════════════════════════════════ */

.hero {
    background: linear-gradient(135deg, #0c1235 0%, #1a2a6c 45%, #374799 100%);
    min-height: 92vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
    gap: 60px;
}

/* Dot-grid texture overlay */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 1;
}

/* Canvas particle layer */
#hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-left {
    position: relative;
    z-index: 2;
}

.hero-right {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-label {
    margin-bottom: 20px;
}

/* Main display heading */
.hero-h1 {
    font-family: "Anton", sans-serif;
    font-size: clamp(44px, 5.5vw, 66px);
    color: var(--white);
    line-height: 1;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

/* Gold tagline beneath the heading */
.hero-tagline {
    font-family: "Antonio", sans-serif;
    font-size: clamp(20px, 2.5vw, 32px);
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* Body text paragraph(s) */
.hero-intro {
    font-size: 15.5px;
    color: rgba(230, 235, 255, 0.85);
    line-height: 1.75;
    margin-bottom: 16px;
}

/* Kalam handwriting accent phrase */
.hero-accent {
    font-family: "Kalam", cursive;
    font-size: 20px;
    color: var(--gold);
    font-weight: 700;
}

/* CTA button row */
.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}


/* ═══════════════════════════════════════════════════════════════════
   12. FLOAT MINI LABELS (hero right decoration)
   ═══════════════════════════════════════════════════════════════════ */

.float-mini {
    position: absolute;
    background: rgba(17, 26, 68, 0.88);
    border: 1px solid rgba(220, 162, 0, 0.35);
    border-radius: var(--radius-pill);
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "Poppins", sans-serif;
    font-size: 11.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
    backdrop-filter: blur(4px);
    animation: floatMini 6s ease-in-out infinite;
}

@keyframes floatMini {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

@media (prefers-reduced-motion: reduce) {
    .float-mini { animation: none; }
}

.float-mini svg {
    width: 14px;
    height: 14px;
    stroke: var(--gold);
    flex-shrink: 0;
}

/* Positional classes — override per page if different graphic layout is needed */
.fm-1 { top: 2%;     left: 0%;    animation-delay: 0s;   }
.fm-2 { top: 18%;    right: -4%;  animation-delay: .8s;  }
.fm-3 { bottom: 28%; left: -6%;   animation-delay: 1.6s; }
.fm-4 { bottom: 6%;  right: 0%;   animation-delay: 2.4s; }
.fm-5 { top: 46%;    left: 32%;   animation-delay: 1.2s; }


/* ═══════════════════════════════════════════════════════════════════
   13. STATS STRIP
   ═══════════════════════════════════════════════════════════════════ */

.section-stats {
    background: var(--navy);
    padding: 48px 0;
}

.stats-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 160px;
    text-align: center;
    padding: 20px 24px;
    position: relative;
}

/* Vertical separator between items */
.stat-item + .stat-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.stat-num {
    font-family: "Anton", sans-serif;
    font-size: clamp(34px, 4vw, 52px);
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-family: "Antonio", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}


/* ═══════════════════════════════════════════════════════════════════
   14. SECTION BACKGROUND UTILITIES
   ═══════════════════════════════════════════════════════════════════ */

.bg-white     { background: var(--white); }
.bg-off-white { background: var(--off-white); }
.bg-navy      { background: var(--navy); }
.bg-gold-pale { background: var(--gold-pale); }

/* Gradient backgrounds */
.bg-hero-gradient {
    background: linear-gradient(135deg, #0c1235 0%, #1a2a6c 45%, #374799 100%);
}
.bg-cta-gradient {
    background: linear-gradient(135deg, #1a2a6c 0%, #374799 50%, #0c1235 100%);
}
.bg-gold-gradient {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
}


/* ═══════════════════════════════════════════════════════════════════
   15. CLOSING CTA SECTION
   ═══════════════════════════════════════════════════════════════════ */

.section-cta {
    background: linear-gradient(135deg, #1a2a6c 0%, #374799 50%, #0c1235 100%);
    padding: 88px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Decorative gold circles */
.section-cta::before {
    content: "";
    position: absolute;
    right: -60px;
    top: -80px;
    width: 380px;
    height: 380px;
    background: var(--gold);
    opacity: 0.05;
    border-radius: 50%;
    pointer-events: none;
}
.section-cta::after {
    content: "";
    position: absolute;
    left: -80px;
    bottom: -60px;
    width: 300px;
    height: 300px;
    background: var(--gold);
    opacity: 0.04;
    border-radius: 50%;
    pointer-events: none;
}

.cta-heading {
    font-family: "Anton", sans-serif;
    font-size: clamp(32px, 4.5vw, 52px);
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta-text {
    font-size: 15.5px;
    color: rgba(230, 235, 255, 0.85);
    max-width: 760px;
    margin: 0 auto 36px;
    line-height: 1.75;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}


/* ═══════════════════════════════════════════════════════════════════
   16. SCROLL REVEAL ANIMATION
   ═══════════════════════════════════════════════════════════════════ */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}


/* ═══════════════════════════════════════════════════════════════════
   17. BREADCRUMB
   ═══════════════════════════════════════════════════════════════════ */

.breadcrumb {
    background: var(--navy);
    padding: 12px 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb .sep {
    color: rgba(255, 255, 255, 0.25);
}

.breadcrumb .current {
    color: var(--gold);
}


/* ═══════════════════════════════════════════════════════════════════
   18. MODAL — BASE OVERLAY & BOX
   ═══════════════════════════════════════════════════════════════════ */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(17, 26, 68, 0.65);
    z-index: 1000;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 50px 20px;
    overflow-y: auto;
}

.modal-overlay.open {
    display: flex;
}

.modal-box {
    background: var(--white);
    border-radius: var(--radius-xl);
    max-width: 820px;
    width: 100%;
    position: relative;
    box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.4);
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    z-index: 2;
    transition: background var(--transition);
}

.modal-close:hover {
    background: var(--border);
}

.modal-close svg {
    width: 18px;
    height: 18px;
    stroke: var(--navy);
}

/* Dark gradient modal header */
.modal-header {
    background: linear-gradient(135deg, #0c1235 0%, #1a2a6c 55%, #374799 100%);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    padding: 44px 40px 32px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 28px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Dot-grid texture inside modal header */
.modal-header::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.modal-photo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--muted), #b9c2ea);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Anton", sans-serif;
    font-size: 30px;
    color: var(--blue);
    flex-shrink: 0;
    border: 3px solid rgba(220, 162, 0, 0.5);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.modal-name {
    font-family: "Anton", sans-serif;
    font-size: 24px;
    color: var(--white);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.modal-designation-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    font-family: "Antonio", sans-serif;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: var(--radius-pill);
    letter-spacing: 1px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.modal-meta-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: rgba(220, 225, 255, 0.75);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.modal-meta-row svg {
    width: 14px;
    height: 14px;
    stroke: var(--gold);
    flex-shrink: 0;
}

.modal-action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
    z-index: 1;
}

/* Modal button variants */
.mb-btn {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 12px;
    padding: 9px 18px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.mb-btn-gold    { background: var(--gold);      color: var(--navy);  border: none; }
.mb-btn-gold:hover { background: var(--gold-light); }
.mb-btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255, 255, 255, 0.35); }
.mb-btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* Modal body */
.modal-body {
    padding: 32px 40px 40px;
}

.modal-block {
    margin-bottom: 28px;
}

.modal-block h4 {
    font-family: "Antonio", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 10px;
}

.modal-block p {
    font-size: 14px;
    color: var(--body-gray);
    line-height: 1.7;
}


/* ═══════════════════════════════════════════════════════════════════
   19. FORM CONTROLS — SEARCH INPUT & FILTER CHIPS
   ═══════════════════════════════════════════════════════════════════ */

.filter-bar {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
}

.search-wrap {
    position: relative;
    flex: 1;
    min-width: 260px;
}

.search-wrap svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 17px;
    height: 17px;
    stroke: var(--body-gray);
    pointer-events: none;
}

.search-wrap input {
    width: 100%;
    padding: 12px 14px 12px 42px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-pill);
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: var(--navy);
    outline: none;
    transition: border-color 0.2s;
    background: var(--white);
}

.search-wrap input:focus {
    border-color: var(--blue);
}

.chip-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-chip {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    border: 1.5px solid var(--blue);
    background: var(--white);
    color: var(--blue);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

.filter-chip:hover {
    background: var(--gold-pale);
    border-color: var(--gold);
    color: var(--navy);
}

.filter-chip.active {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}

.result-count {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    color: var(--body-gray);
    margin: 20px 0;
}

.result-count span {
    color: var(--navy);
    font-weight: 700;
}


/* ═══════════════════════════════════════════════════════════════════
   20. JOURNEY TIMELINE (horizontal step-by-step flow)
   ═══════════════════════════════════════════════════════════════════ */

.journey-wrap {
    position: relative;
    padding-top: 16px;
}

.journey-line-track {
    position: absolute;
    top: 44px;
    left: 44px;
    right: 44px;
    height: 2px;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.journey-line-fill {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.journey-line-fill.drawn {
    transform: scaleX(1);
}

.journey-timeline {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.journey-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 6px;
}

.journey-icon-wrap {
    width: 88px;
    height: 88px;
    background: rgba(55, 71, 153, 0.35);
    border: 1.5px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.journey-icon-wrap svg {
    width: 36px;
    height: 36px;
}
.journey-icon-wrap img {
    width: 30px;
    height: 30px;
    filter: brightness(0) saturate(100%) invert(65%) sepia(20%) saturate(6583%) hue-rotate(14deg) brightness(102%) contrast(102%);
}

.journey-step:hover .journey-icon-wrap {
    background: rgba(220, 162, 0, 0.14);
    border-color: rgba(220, 162, 0, 0.5);
}

.journey-num-dot {
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: var(--navy);
    font-family: "Antonio", sans-serif;
    font-weight: 700;
    font-size: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -22px auto 20px;
    box-shadow: 0 4px 16px rgba(220, 162, 0, 0.35);
    position: relative;
    z-index: 2;
}

.journey-heading {
    font-family: "Antonio", sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 6px;
}

.journey-text {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.6;
}


/* ═══════════════════════════════════════════════════════════════════
   21. RESPONSIVE BREAKPOINTS
   ═══════════════════════════════════════════════════════════════════ */

/* ── Tablet landscape / small desktop ── */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 64px 32px;
        min-height: auto;
    }
    .hero-right {
        display: none;
    }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-5 { grid-template-columns: repeat(3, 1fr); }
    .grid-3 { grid-template-columns: 1fr 1fr; }
    .stats-row { flex-wrap: wrap; }
    .journey-line-track { display: none; }
    .journey-timeline { flex-direction: column; gap: 24px; }
    .journey-step {
        flex-direction: row;
        text-align: left;
        gap: 16px;
        align-items: flex-start;
    }
    .journey-icon-wrap { width: 56px; height: 56px; flex-shrink: 0; }
    .journey-icon-wrap svg { width: 24px; height: 24px; }
    .journey-num-dot { margin: 0; flex-shrink: 0; }
}

/* ── Tablet portrait ── */
@media (max-width: 768px) {
    .container,
    .container-narrow {
        padding: 0 20px;
    }
    .section-pad  { padding: 60px 0; }
    .section-pad-sm { padding: 36px 0; }
    .sec-title-block { margin-bottom: 36px; }
    .breadcrumb   { padding: 12px 20px; }
    .filter-bar   { flex-direction: column; align-items: stretch; }
    .search-wrap  { min-width: 0; }
    .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-5 { grid-template-columns: 1fr 1fr; }
    .modal-header {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .modal-body  { padding: 24px 22px 32px; }
    .modal-action-row { justify-content: center; }
    .modal-meta-row   { justify-content: center; }
    .stats-row   { flex-direction: column; }
    .stat-item + .stat-item::before { display: none; }
}

/* ── Mobile ── */
@media (max-width: 560px) {
    .grid-2 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr 1fr; }
    .hero-ctas { flex-direction: column; }
    .cta-buttons button,
    .cta-buttons a { width: 100%; }
}

/* ── Small mobile ── */
@media (max-width: 420px) {
    .grid-4 { grid-template-columns: 1fr; }
    .grid-5 { grid-template-columns: 1fr; }
}
