/*!
Theme Name:        TannIvan_Theme
Theme URI:         https://ggsipu.dspsr.in/
Author:            Sanjeev Yadav
Author URI:        tel:+919821698166
Developer:         Sanjeev Yadav | +91-98216-98166 | sanjeevkumaryadav@dspsr.in
Description:       DSPSR iSolutions — NAAC A+ college website for Delhi School of Professional Studies and Research. GGSIPU-affiliated. BBA · BCA · B.Com · MBA · MCA. SEO-optimised, performance-first, responsive WordPress theme.
Version:           2.0.0
Requires at least: 6.3
Tested up to:      6.7
Requires PHP:      8.1
License:           GNU General Public License v2 or later
License URI:       https://www.gnu.org/licenses/gpl-2.0.html
Text Domain:       tannivan-theme
Tags:              education, college, naac, ggsipu, dspsr, delhi, bba, bca, mba, mca, modern, responsive, custom-menu, featured-images, custom-logo, full-width-template, accessibility-ready, rtl-language-support
*/

/* =========================================================
   1. DESIGN TOKENS
   ========================================================= */
:root {
    /* Brand */
    --primary:        #1A5200;
    --primary-hover:  #0a3d00;
    --secondary:      #001F3F;
    --gold:           #FFC107;
    --gold-dark:      #c9a84c;
    --gold-hover:     #e6ac00;

    /* Neutral */
    --light:          #f4f6f9;
    --white:          #ffffff;
    --text:           #1a1a2e;
    --text-muted:     #5a6474;
    --border:         #dde3ec;
    --overlay:        rgba(0, 31, 63, 0.72);

    /* Elevation */
    --shadow-xs:  0 1px 4px  rgba(0, 0, 0, 0.07);
    --shadow-sm:  0 2px 10px rgba(0, 0, 0, 0.10);
    --shadow-md:  0 6px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg:  0 12px 48px rgba(0, 0, 0, 0.16);

    /* Shape */
    --radius-xs:  4px;
    --radius-sm:  8px;
    --radius-md:  14px;
    --radius-lg:  22px;
    --radius-pill: 999px;

    /* Motion */
    --ease:       cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.28s var(--ease);

    /* Typography */
    --font-sans:  'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-mono:  'JetBrains Mono', 'Fira Code', monospace;

    /* Scale */
    --text-xs:   0.75rem;
    --text-sm:   0.875rem;
    --text-base: 1rem;
    --text-lg:   1.125rem;
    --text-xl:   1.25rem;
    --text-2xl:  1.5rem;
    --text-3xl:  1.875rem;
    --text-4xl:  2.25rem;
    --text-5xl:  3rem;
    --text-6xl:  3.75rem;

    /* Layout */
    --max-width:   1320px;
    --content-width: 800px;
    --sidebar-width: 320px;
    --header-height: 72px;
    --section-gap:   6rem;
    --gutter:        clamp(1rem, 4vw, 2rem);
}

/* =========================================================
   2. CSS RESET & BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    font-size: 16px;
    /* scroll-behavior intentionally omitted — GSAP ScrollToPlugin handles smooth
       scroll for anchor links; native smooth-scroll conflicts with GSAP (BUG-07) */
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-dark); }
a:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: var(--radius-xs); }

ul, ol { list-style: none; }

button, input, select, textarea {
    font: inherit;
    border: none;
    background: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.25;
    color: var(--secondary);
}

/* =========================================================
   3. tw- UTILITY REPLACEMENTS (Tailwind CDN removed — BUG-02 fix)
   All 38 unique tw- classes used across the theme, compiled here.
   ========================================================= */
.tw-block           { display: block; }
.tw-flex            { display: flex; }
.tw-grid            { display: grid; }
.tw-flex-shrink-0   { flex-shrink: 0; }
.tw-justify-center  { justify-content: center; }
.tw-col-span-1      { grid-column: span 1 / span 1; }
.tw-col-span-3      { grid-column: span 3 / span 3; }
.tw-grid-cols-1     { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.tw-grid-cols-4     { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.tw-gap-3           { gap: 0.75rem; }
.tw-gap-8           { gap: 2rem; }
.tw-h-14            { height: 3.5rem; }
.tw-w-14            { width: 3.5rem; }
.tw-w-full          { width: 100%; }
.tw-object-cover    { object-fit: cover; }
.tw-px-10           { padding-left: 2.5rem; padding-right: 2.5rem; }
.tw-mb-4            { margin-bottom: 1rem; }
.tw-mr-1            { margin-right: 0.25rem; }
.tw-mt-4            { margin-top: 1rem; }
.tw-mt-6            { margin-top: 1.5rem; }
.tw-mt-10           { margin-top: 2.5rem; }
.tw-mt-12           { margin-top: 3rem; }
.tw-font-medium     { font-weight: 500; }
.tw-font-semibold   { font-weight: 600; }
.tw-leading-snug    { line-height: 1.375; }
.tw-rounded-lg      { border-radius: 0.5rem; }
.tw-text-center     { text-align: center; }
.tw-text-sm         { font-size: 0.875rem; line-height: 1.25rem; }
.tw-text-xs         { font-size: 0.75rem; line-height: 1rem; }
.tw-text-white      { color: #ffffff; }
.tw-text-inherit    { color: inherit; }
.tw-text-primary    { color: #002D5B; }
.tw-text-secondary  { color: #001F3F; }
.tw-text-gold       { color: #FFC107; }
.tw-text-gray-300   { color: #d1d5db; }
.tw-text-gray-400   { color: #9ca3af; }
.tw-text-gray-500   { color: #6b7280; }
.tw-transition-colors {
    transition-property: color, background-color, border-color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.tw-space-y-4 > * + * { margin-top: 1rem; }

/* =========================================================
   4. UTILITY CLASSES
   ========================================================= */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.container--narrow { max-width: var(--content-width); }

.section {
    padding-block: var(--section-gap);
}

.section--alt { background: var(--light); }

.grid { display: grid; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }

.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: var(--text-sm);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.btn--primary {
    background: var(--gold);
    color: var(--secondary);
}
.btn--primary:hover {
    background: var(--gold-hover);
    color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--outline {
    border: 2px solid var(--white);
    color: var(--white);
}
.btn--outline:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn--ghost {
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn--ghost:hover {
    background: var(--primary);
    color: var(--white);
}

/* Badge */
.badge {
    display: inline-block;
    padding: 0.2em 0.75em;
    border-radius: var(--radius-pill);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--secondary);
}

/* Card */
.card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.card__body { padding: 1.75rem; }
.card__title {
    font-size: var(--text-xl);
    margin-bottom: 0.5rem;
    color: var(--secondary);
}
.card__meta {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.card__excerpt { color: var(--text-muted); margin-bottom: 1.25rem; }

/* Section Heading */
.section-heading {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-heading .eyebrow {
    display: inline-block;
    color: var(--gold-dark);
    font-weight: 700;
    font-size: var(--text-sm);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.section-heading h2 {
    font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
    color: var(--secondary);
    margin-bottom: 1rem;
}
.section-heading p {
    max-width: 600px;
    margin-inline: auto;
    color: var(--text-muted);
    font-size: var(--text-lg);
}

/* Gold divider */
.gold-bar {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 2px;
    margin-inline: auto;
    margin-top: 0.75rem;
}

/* =========================================================
   4. HEADER / NAVIGATION
   ========================================================= */

/* ── Design tokens (nav-specific) ───────────────────── */
:root {
    --nav-red:          #1A6B35;
    --nav-red-hover:    #145A2C;
    --nav-green:        #1A6B35;
    --nav-green-hover:  #145A2C;
    --accent-green:     #22A44F;
    --accent-green-lt:  #E8F5EC;
    --gold-rich:        #C8960C;
    --nav-bg:           #1A5200;   /* forest green — matches brand identity */
    --tnb-height:       38px;
    --nav-height:       58px;
    --logo-drop:        18px;      /* how far logo drops below nav */
    --header-height:    calc(var(--tnb-height) + var(--nav-height));
    --breaking-height:  0px;   /* BUG-21: 0 by default; .has-ticker body class sets it */
    --trending-height:  44px;
}

/* Activate ticker height only when notices exist (PHP adds .has-ticker to body) */
.has-ticker {
    --breaking-height: 64px;
}

/* ════════════════════════════════════════════════════════
   TOP NETWORK BAR
   ════════════════════════════════════════════════════════ */
.top-network-bar {
    height: var(--tnb-height);
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    z-index: 1001;
}

.tnb-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 1rem;
}

.tnb-links {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.tnb-link {
    font-size: 11px;
    font-weight: 700;
    color: #938e8e;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0 10px;
    white-space: nowrap;
    text-decoration: none;
    border-right: 1px solid #e5e7eb;
    line-height: var(--tnb-height);
    transition: color var(--transition);
}
.tnb-link:first-child { padding-left: 0; }
.tnb-link:hover       { color: var(--nav-bg); }
.tnb-link--active     { color: #111; }

.tnb-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.tnb-contact {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: #6b7280;
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--transition);
}
.tnb-contact:hover { color: var(--nav-bg); }

.tnb-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    color: #6b7280;
    text-decoration: none;
    font-size: 13px;
    border-radius: 50%;
    transition: all var(--transition);
}
.tnb-social:hover { color: #fff; background: var(--nav-bg); }

.tnb-admin-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--nav-red);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0 14px;
    height: var(--tnb-height);
    text-decoration: none;
    white-space: nowrap;
    transition: background var(--transition);
}
.tnb-admin-btn:hover { background: var(--nav-red-hover); color: #fff; }

.tnb-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px 3px 8px;
    background: #25D366;
    color: #fff;
    font-size: .72rem;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    white-space: nowrap;
    transition: background var(--transition);
}
.tnb-whatsapp i { font-size: .85rem; }
.tnb-whatsapp:hover { background: #128C53; color: #fff; }

/* ════════════════════════════════════════════════════════
   SITE HEADER  (sticky wrapper around main nav)
   ════════════════════════════════════════════════════════ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.25s ease;
}

/* Never hide the header — keep it locked at top always */
.site-header.header--hidden { transform: none; }

/* ── Main nav bar ───────────────────────────────────── */
.main-nav-wrap {
    background: var(--nav-bg);
    border-bottom: 3px solid #C8960C;
    height: var(--nav-height);
    transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled .main-nav-wrap {
    background: rgba(15, 46, 0, 0.97);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-lg);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 0;
    height: var(--nav-height);
}
/* ── Logo wrap ────────────────────────────────────────── */
.site-logo-wrap {
    position: relative;
    z-index: 2;
    align-self: center;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 1.25rem;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    background: #ffffff;
    padding: 5px 10px;
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 12px rgba(0,0,0,.2);
    height: 44px;
    transition: box-shadow var(--transition);
}
.site-logo:hover { box-shadow: 0 4px 16px rgba(0,0,0,.3); }

.site-logo__emblem {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--nav-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 13px;
    color: #fff;
    flex-shrink: 0;
    letter-spacing: -1px;
}

.site-logo__text { line-height: 1.15; }
.site-logo__name {
    display: block;
    font-family: var(--font-serif);
    font-weight: 800;
    font-size: 11px;
    color: var(--secondary);
    white-space: nowrap;
    max-width: 130px;
    line-height: 1.2;
    white-space: normal;
}
.site-logo__tagline { display: none; }

/* WordPress custom logo */
.site-logo-wrap .custom-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 5px 7px;
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 12px rgba(0,0,0,.25);
    height: 50px;
    transition: box-shadow var(--transition);
}
.site-logo-wrap .custom-logo-link:hover { box-shadow: 0 4px 18px rgba(0,0,0,.35); }
.site-logo-wrap .custom-logo {
    height: 42px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
}

/* ── Primary navigation (desktop) ────────────────────── */
.primary-navigation {
    flex: 1;
    overflow: visible;
    min-width: 0;
    position: relative;
}

.primary-navigation .primary-menu {
    display: flex;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    height: var(--nav-height);
    width: 100%;
}

/* Top-level nav links */
.primary-navigation .primary-menu > .menu-item > a {
    display: flex;
    align-items: center;
    height: var(--nav-height);
    padding: 0 7px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    white-space: nowrap;
    text-decoration: none;
    position: relative;
    transition: color var(--transition), background var(--transition);
}

.primary-navigation .primary-menu > .menu-item > a::after {
    content: '';
    position: absolute;
    bottom: -4px;            /* sits on the red border */
    left: 0;
    right: 0;
    height: 5px;
    background: #ff3720;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.22s var(--ease);
}

.primary-navigation .primary-menu > .menu-item > a:hover,
.primary-navigation .primary-menu > .current-menu-item > a,
.primary-navigation .primary-menu > .current_page_ancestor > a,
.primary-navigation .primary-menu > .current-menu-ancestor > a {
    color: #FFC107;
    background: rgba(255,255,255,0.06);
}

.primary-navigation .primary-menu > .menu-item > a:hover::after,
.primary-navigation .primary-menu > .current-menu-item > a::after,
.primary-navigation .primary-menu > .current_page_ancestor > a::after,
.primary-navigation .primary-menu > .current-menu-ancestor > a::after {
    transform: scaleX(1);
}

/* Dropdown chevron — Walker injects .dropdown-icon span; style it here */
.primary-navigation .dropdown-icon {
    display: inline-flex;
    align-items: center;
    margin-left: 4px;
    font-size: 9px;
    opacity: 0.7;
    transition: transform 0.22s var(--ease), opacity 0.22s;
}
.primary-navigation .menu-item-has-children:hover > a .dropdown-icon,
.primary-navigation .menu-item-has-children:focus-within > a .dropdown-icon {
    transform: rotate(180deg);
    opacity: 1;
}

/* ── Dropdown — all depth-0 dropdowns: 2-column mega ── */
.primary-navigation .menu-item-has-children {
    position: relative;
}

/* Base: hidden state shared by all sub-menus */
.primary-navigation .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #061d3d;
    border-top: 3px solid var(--gold);
    box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 4px 20px rgba(0,0,0,.3);
    list-style: none;
    margin: 0;
    padding: 0.6rem 0.4rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
    pointer-events: none;
    z-index: 9998;
    border-radius: 0 var(--radius-xs) var(--radius-sm) var(--radius-sm);
    /* The 4px red nav border-bottom provides visual separation — no gap needed */
}

/* Mega variant — 2-column, shrinks to content width */
.primary-navigation .sub-menu--mega {
    width: fit-content;
    min-width: 280px;
    max-width: 460px;
    display: grid;
    grid-template-columns: auto auto;
    gap: 0;
    padding: 0.6rem 0.25rem;
}

/* Show on hover / keyboard focus-within */
.primary-navigation .menu-item-has-children:hover > .sub-menu,
.primary-navigation .menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Hover bridge — transparent padding-bottom on the sub-menu fills any gap */

/* Bullet dot on each mega sub-menu item */
.primary-navigation .sub-menu--mega > li {
    position: relative;
}
.primary-navigation .sub-menu--mega > li::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,193,7,0.50);
    pointer-events: none;
    transition: background 0.18s ease, transform 0.18s ease;
    z-index: 1;
}
.primary-navigation .sub-menu--mega > li:hover::before {
    background: var(--gold);
    transform: translateY(-50%) scale(1.35);
}

/* Sub-menu link style */
.primary-navigation .sub-menu a {
    display: flex;
    align-items: center;
    padding: 0.6rem 0.875rem 0.6rem 2rem;
    color: rgba(255,255,255,0.82);
    font-size: 13.5px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.01em;
    border-radius: 4px;
    width: 100%;
    transition: color 0.18s ease, background 0.18s ease;
    white-space: nowrap;
}
.primary-navigation .sub-menu a:hover {
    color: var(--gold);
    background: rgba(255,255,255,0.07);
}

/* Right-edge: last 2 top-level items → anchor dropdown to the right */
.primary-navigation .primary-menu > li:nth-last-child(-n+2) > .sub-menu {
    left: auto;
    right: 0;
}

/* Nested sub-sub-menu — single column fly-out to the right */
.primary-navigation .sub-menu .sub-menu {
    display: block;
    width: 220px;
    top: 0;
    left: 100%;
    right: auto;
    border-top: none;
    border-left: 3px solid var(--gold);
    border-radius: var(--radius-xs) var(--radius-sm) var(--radius-sm) var(--radius-sm);
    padding: 0.5rem 0.25rem;
    transform: translateX(-6px) translateY(0);
    grid-template-columns: none;
}
.primary-navigation .sub-menu .sub-menu > li::before { left: 0.75rem; }
.primary-navigation .sub-menu .sub-menu a {
    padding: 0.5rem 0.75rem 0.5rem 1.75rem;
    font-size: 12.5px;
    white-space: normal;
}
.primary-navigation .sub-menu .menu-item-has-children:hover > .sub-menu,
.primary-navigation .sub-menu .menu-item-has-children:focus-within > .sub-menu {
    transform: translateX(0);
}

/* ── Header right icon strip ─────────────────────────── */
.header-actions {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
    margin-left: auto;
    padding-left: 8px;
    border-left: 1px solid rgba(255,255,255,0.14);
}

/* NAAC badge */
.hdr-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 3px 8px;
    border-radius: 4px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    line-height: 1.1;
    transition: background var(--transition);
    margin-right: 4px;
}
.hdr-badge:hover { background: rgba(255,255,255,0.15); }
.hdr-badge__label {
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}
.hdr-badge__grade {
    font-size: 13px;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: -0.02em;
}

/* Quick-action icon buttons (like Aaj Tak icon strip) */
.hdr-quick-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    min-width: 38px;
    height: var(--nav-height);
    padding: 0 6px;
    color: rgba(255,255,255,0.82);
    background: none;
    border: none;
    border-left: 1px solid rgba(255,255,255,0.08);
    cursor: pointer;
    font-size: 15px;
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
    position: relative;
    white-space: nowrap;
}
.hdr-quick-btn:hover {
    background: rgba(255,255,255,0.09);
    color: #fff;
}
.hdr-quick-label {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.6);
    line-height: 1;
}
.hdr-quick-btn:hover .hdr-quick-label { color: rgba(255,255,255,0.9); }

/* Notification count badge */
.hdr-notify-count {
    position: absolute;
    top: 10px;
    right: 6px;
    min-width: 16px;
    height: 16px;
    background: var(--nav-red);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    border: 1.5px solid var(--nav-bg);
}

/* Apply button accent */
.hdr-quick-btn--apply {
    background: rgba(255, 193, 7, 0.12);
    color: var(--gold);
}
.hdr-quick-btn--apply:hover {
    background: var(--gold);
    color: var(--secondary);
}
.hdr-quick-btn--apply:hover .hdr-quick-label { color: var(--secondary); }

/* Kept for backward compat */
.hdr-icon-btn { display: none; }
.hdr-apply-btn { display: none; }
.notify-dot { display: none; }

/* ── Hamburger (LEFT position, hidden on desktop) ───── */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: var(--radius-xs);
    border: none;
    background: rgba(255,255,255,0.08);
    flex-shrink: 0;
}
.nav-toggle:hover { background: rgba(255,255,255,0.15); }
.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.28s var(--ease);
    transform-origin: center;
}
/* active (open) state toggled by JS */
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ════════════════════════════════════════════════════════
   SEARCH BAR PANEL (slide-down)
   ════════════════════════════════════════════════════════ */
.search-bar-panel {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s var(--ease);
}
.search-bar-panel.is-active { max-height: 80px; }

.search-bar-form {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
}
.search-bar-icon { color: var(--text-muted); font-size: 15px; }
.search-bar-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    color: var(--text);
    background: transparent;
}
.search-bar-input::placeholder { color: var(--text-muted); }
.search-bar-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--text-muted);
    background: none;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    transition: all var(--transition);
}
.search-bar-close:hover { color: var(--nav-red); background: #f5f5f5; }

/* ════════════════════════════════════════════════════════
   BREAKING NEWS TICKER
   ════════════════════════════════════════════════════════ */
.breaking-news-bar {
    background: #f4f6f9;
    border: none;
    height: auto;
    overflow: visible;
    padding: 8px 0;
    box-shadow: none;
}

.breaking-inner {
    display: flex;
    align-items: center;
    height: 48px;
    gap: 0;
    overflow: hidden;
    background: #FFC107;
    border-radius: 999px;
    box-shadow: 0 4px 16px rgba(255,193,7,.45);
}

.breaking-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(0,0,0,.18);
    color: #1a1a2e;
    font-size: 13px;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0 22px 0 26px;
    height: 48px;
    white-space: nowrap;
    border-radius: 999px 0 0 999px;
    border-right: 2px solid rgba(0,0,0,.15);
    flex-shrink: 0;
    margin-right: 16px;
}

.breaking-track-wrap {
    flex: 1;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.breaking-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    will-change: transform;
    animation: marqueeScroll 32s linear infinite;
}
.breaking-track.is-paused { animation-play-state: paused; }
.breaking-track:hover     { animation-play-state: paused; }

.breaking-item {
    font-size: 14px;
    font-weight: 800;
    color: #1a1a2e;
    padding: 0 28px;
    border-right: 1px solid rgba(0,0,0,.15);
    white-space: nowrap;
}
.breaking-item:last-child { border-right: none; }
.breaking-item--link:hover { color: #1A5200; }

.breaking-pause {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(0,0,0,.12);
    border: 1.5px solid rgba(0,0,0,.28);
    border-radius: 50%;
    cursor: pointer;
    color: #1a1a2e;
    font-size: 12px;
    transition: all var(--transition);
    margin-left: 10px;
    margin-right: 8px;
}
.breaking-pause:hover         { background: rgba(0,0,0,.22); border-color: #1a1a2e; color: #1a1a2e; }
.breaking-pause[aria-pressed="true"] .fa-pause::before { content: '\f04b'; }

/* ════════════════════════════════════════════════════════
   HEADER BANNER IMAGE
   ════════════════════════════════════════════════════════ */
.college-banner-img {
    line-height: 0;
    text-align: center;
    background: #fff;
}

.college-banner-img img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

/* ════════════════════════════════════════════════════════
   TRENDING TOPICS BAR  (arrow navigation — no Swiper)
   ════════════════════════════════════════════════════════ */
.trending-bar {
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    padding: 0.45rem 0;
}

.trending-inner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.trending-label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--nav-red);
    white-space: nowrap;
    flex-shrink: 0;
    padding-right: 0.25rem;
}

/* Arrow buttons */
.trend-arrow {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1.5px solid #d1d5db;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #374151;
    font-size: 11px;
    transition: background 0.18s, border-color 0.18s, color 0.18s, box-shadow 0.18s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.trend-arrow:hover {
    background: var(--nav-bg);
    border-color: var(--nav-bg);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,45,91,0.25);
}

/* Scrollable pills strip */
.trend-scroll {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
    min-width: 0;
    padding: 0.1rem 0;
}

.trend-scroll::-webkit-scrollbar { display: none; }

.trending-pill {
    display: inline-flex;
    align-items: center;
    padding: 0 13px;
    height: 28px;
    border: 1px solid #d1d5db;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 600;
    color: #374151;
    white-space: nowrap;
    text-decoration: none;
    background: #fff;
    flex-shrink: 0;
    transition: all var(--transition);
}

.trending-pill:hover {
    border-color: var(--nav-bg);
    color: var(--nav-bg);
    background: rgba(26,82,0,0.05);
}

/* ════════════════════════════════════════════════════════
   MOBILE OFFCANVAS PANEL
   ════════════════════════════════════════════════════════ */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1099;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}
.mobile-nav-overlay.is-active {
    display: block;
    opacity: 1;
}

.mobile-nav-panel {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(340px, 88vw);
    background: #001530;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    overflow-y: auto;
    overscroll-behavior: contain;
}
.mobile-nav-panel.is-active { transform: translateX(0); }

.mobile-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    background: var(--nav-bg);
    position: sticky;
    top: 0;
    z-index: 1;
}

.mobile-nav-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
}
.mobile-nav-logo__emblem {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--nav-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
    color: #fff;
    flex-shrink: 0;
}
.mobile-nav-logo__name {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-serif);
}

.mobile-nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: background var(--transition);
}
.mobile-nav-close:hover { background: var(--nav-red); }

.mobile-nav-search {
    padding: 0.875rem 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav-search form {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-pill);
    padding: 0.5rem 1rem;
}
.mobile-nav-search form i { color: rgba(255,255,255,0.5); }
.mobile-nav-search input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-size: 14px;
}
.mobile-nav-search input::placeholder { color: rgba(255,255,255,0.4); }

/* Mobile menu items */
.mobile-nav-menu { flex: 1; padding: 0.5rem 0; }

.mobile-menu { list-style: none; padding: 0; margin: 0; }

.mobile-menu .menu-item > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1.5rem;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.88);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: all var(--transition);
}
.mobile-menu .menu-item > a:hover {
    color: #fff;
    background: rgba(255,255,255,0.07);
    padding-left: 1.875rem;
}
.mobile-menu .current-menu-item > a,
.mobile-menu .current_page_item > a {
    color: var(--gold);
    border-left: 3px solid var(--gold);
    padding-left: calc(1.5rem - 3px);
}

/* Mobile sub-menu (accordion) */
.mobile-menu .menu-item-has-children > a::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 10px;
    opacity: 0.6;
    transition: transform 0.22s var(--ease);
}
.mobile-menu .menu-item-has-children.is-open > a::after {
    transform: rotate(180deg);
}

.mobile-menu .sub-menu {
    display: none;
    list-style: none;
    padding: 0;
    background: rgba(0,0,0,0.2);
}
.mobile-menu .sub-menu.is-open { display: block; }
.mobile-menu .sub-menu .menu-item > a {
    padding-left: 2.25rem;
    font-size: 13px;
    font-weight: 500;
}

.mobile-nav-footer {
    padding: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.mobile-nav-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color var(--transition);
}
.mobile-nav-contact:hover { color: var(--gold); }

/* =========================================================
   5. HERO SECTION
   ========================================================= */
.hero {
    position: relative;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    background:
        linear-gradient(var(--overlay), var(--overlay)),
        url('assets/images/hero-bg.webp') center/cover no-repeat;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(transparent, var(--white));
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 780px;
    animation: heroFadeIn 0.9s var(--ease) both;
}

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

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 193, 7, 0.15);
    border: 1px solid rgba(255, 193, 7, 0.4);
    color: var(--gold);
    padding: 0.35rem 1rem;
    border-radius: var(--radius-pill);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero__title {
    font-size: clamp(var(--text-4xl), 6vw, var(--text-6xl));
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero__title span { color: var(--gold); }

.hero__subtitle {
    font-size: clamp(var(--text-lg), 2vw, var(--text-xl));
    color: rgba(255,255,255,0.82);
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.65;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* =========================================================
   6. STATS BAR
   ========================================================= */
.stats-bar {
    background: var(--primary);
    padding: 2rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat {
    padding: 1rem;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.stat:last-child { border-right: none; }
.stat__number {
    font-family: var(--font-serif);
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.25rem;
}
.stat__label {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* =========================================================
   7. BLOG / LOOP
   ========================================================= */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
}

.post-card { display: flex; flex-direction: column; }

.post-card__thumbnail {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.post-card__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.post-card:hover .post-card__thumbnail img { transform: scale(1.06); }

.post-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

.post-card__category {
    display: inline-block;
    color: var(--gold-dark);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.625rem;
}

.post-card__title {
    font-size: var(--text-xl);
    margin-bottom: 0.75rem;
    color: var(--secondary);
    line-height: 1.3;
    transition: color var(--transition);
}
.post-card:hover .post-card__title { color: var(--primary); }

.post-card__excerpt {
    color: var(--text-muted);
    font-size: var(--text-sm);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 1.25rem;
}

.post-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    font-size: var(--text-xs);
    color: var(--text-muted);
}

.post-card__author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-card__author-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

/* No posts */
.no-results {
    text-align: center;
    padding: 5rem 1rem;
    color: var(--text-muted);
}
.no-results svg { width: 80px; height: 80px; margin-inline: auto; margin-bottom: 1.5rem; opacity: 0.35; }

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--text);
    border: 2px solid var(--border);
    transition: all var(--transition);
}

.page-numbers:hover,
.page-numbers.current {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* =========================================================
   8. SINGLE POST
   ========================================================= */
.entry-header { margin-bottom: 3rem; }
.entry-title { font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl)); margin-bottom: 1rem; }
.entry-meta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: var(--text-sm);
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border);
}
.entry-meta a { color: var(--text-muted); }
.entry-meta a:hover { color: var(--primary); }

.entry-content {
    font-size: var(--text-lg);
    line-height: 1.85;
    color: var(--text);
}
.entry-content p { margin-bottom: 1.5rem; }
.entry-content h2 { font-size: var(--text-3xl); margin: 2.5rem 0 1rem; }
.entry-content h3 { font-size: var(--text-2xl); margin: 2rem 0 0.75rem; }
.entry-content ul, .entry-content ol { padding-left: 1.5rem; margin-bottom: 1.5rem; }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content li { margin-bottom: 0.5rem; }
.entry-content blockquote {
    border-left: 4px solid var(--gold);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    background: var(--light);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--text-muted);
}
.entry-content code {
    font-family: var(--font-mono);
    background: var(--light);
    padding: 0.15em 0.45em;
    border-radius: var(--radius-xs);
    font-size: 0.9em;
    color: var(--primary);
}
.entry-content pre {
    background: var(--secondary);
    color: #e2e8f0;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    overflow-x: auto;
    margin-bottom: 1.5rem;
    font-family: var(--font-mono);
    font-size: var(--text-sm);
    line-height: 1.65;
}
.entry-content pre code { background: none; color: inherit; padding: 0; }
.entry-content img { border-radius: var(--radius-md); margin-block: 2rem; }
.entry-content table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; }
.entry-content th, .entry-content td {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    text-align: left;
}
.entry-content th { background: var(--primary); color: var(--white); font-family: var(--font-sans); }
.entry-content tr:nth-child(even) { background: var(--light); }

/* =========================================================
   9. FOOTER — Modern premium redesign
   ========================================================= */
.site-footer {
    background: linear-gradient(175deg, #07190a 0%, #061325 35%, #030e1e 65%, #010b18 100%);
    color: rgba(255,255,255,.75);
    position: relative;
    border-top: 3px solid transparent;
    background-clip: padding-box;
}
.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 40% at 10% 20%, rgba(26,82,0,.18) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 90% 80%, rgba(0,60,120,.12) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}
.site-footer > * { position: relative; z-index: 1; }
/* Gold gradient top line */
.site-footer::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #FFC107 25%, #FFD54F 50%, #FFC107 75%, transparent 100%);
    pointer-events: none;
    z-index: 2;
}

/* ── CTA Strip ────────────────────────────────────────────── */
.ft-cta {
    background: linear-gradient(120deg, #FFD700 0%, #FFC107 40%, #e6a800 70%, #FFD54F 100%);
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 -4px 24px rgba(0,0,0,.12);
}
.ft-cta::before {
    content: '';
    position: absolute;
    right: -60px;
    top: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    pointer-events: none;
}
.ft-cta::after {
    content: '';
    position: absolute;
    left: 30%;
    bottom: -80px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    pointer-events: none;
}
.ft-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.ft-cta__badge {
    display: inline-block;
    background: rgba(0,20,50,.15);
    color: #1A5200;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
}
.ft-cta__heading {
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    font-weight: 800;
    color: #1A5200;
    margin: 0 0 4px;
    line-height: 1.2;
}
.ft-cta__sub {
    color: rgba(0,30,70,.65);
    font-size: .9rem;
    margin: 0;
}
.ft-cta__actions {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}
.ft-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1.6rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: .88rem;
    transition: transform .2s, box-shadow .2s, background .2s;
    white-space: nowrap;
    text-decoration: none;
}
.ft-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.ft-btn--primary {
    background: #1A5200;
    color: #fff;
}
.ft-btn--primary:hover { background: #0a3d00; color: #fff; }
.ft-btn--ghost {
    background: rgba(0,30,70,.15);
    color: #1A5200;
    border: 1.5px solid rgba(0,30,70,.25);
}
.ft-btn--ghost:hover { background: rgba(0,30,70,.25); }

/* ── Accreditation bar ────────────────────────────────────── */
.ft-accred {
    background: rgba(0,0,0,.35);
    border-top: 1px solid rgba(255,193,7,.2);
    border-bottom: 1px solid rgba(255,255,255,.06);
    padding: .9rem 0;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}
.ft-accred__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: .25rem 0;
}
.ft-accred__item {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .75rem;
    font-weight: 600;
    color: rgba(255,255,255,.5);
    padding: .3rem 1.2rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.ft-accred__item i { color: #FFC107; font-size: .7rem; }
.ft-accred__sep {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,.1);
    flex-shrink: 0;
}

/* ── Footer body ──────────────────────────────────────────── */
.ft-body {
    padding: 56px 0 40px;
    border-top: 1px solid rgba(26,82,0,.25);
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.ft-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

/* ── Footer body dot-grid texture ───────────────────────── */
.ft-body {
    background-image: radial-gradient(rgba(255,193,7,.07) 1px, transparent 1px);
    background-size: 28px 28px;
}

/* Brand column */
.ft-brand {}
.ft-brand__logo-text {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    text-decoration: none;
}

/* Circular emblem */
.ft-brand__emblem {
    position: relative;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ft-brand__emblem-ring {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    animation: emblem-spin 30s linear infinite;
    will-change: transform;
}
@keyframes emblem-spin {
    to { transform: rotate(360deg); }
}
.ft-brand__emblem-text {
    position: relative;
    z-index: 1;
    font-size: .8rem;
    font-weight: 900;
    letter-spacing: .1em;
    color: #FFC107;
    text-shadow: 0 0 20px rgba(255,193,7,.4);
}
.ft-brand__name-wrap {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.ft-brand__name {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
}
.ft-brand__est {
    font-size: .66rem;
    font-weight: 500;
    color: rgba(255,193,7,.5);
    letter-spacing: .07em;
    text-transform: uppercase;
}

/* Micro stats row */
.ft-brand__micro-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0 0 20px;
    padding: 12px 16px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,193,7,.12);
    border-radius: 10px;
}
.ft-brand__mstat {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}
.ft-brand__mstat strong {
    font-size: .95rem;
    font-weight: 800;
    color: #FFC107;
    line-height: 1.2;
}
.ft-brand__mstat span {
    font-size: .6rem;
    color: rgba(255,255,255,.38);
    text-transform: uppercase;
    letter-spacing: .06em;
}
.ft-brand__mstat-sep {
    width: 1px;
    height: 28px;
    background: rgba(255,193,7,.15);
    flex-shrink: 0;
}
.ft-brand__desc {
    font-size: .82rem;
    color: rgba(255,255,255,.5);
    line-height: 1.75;
    margin: 0 0 20px;
}
.ft-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ft-contact li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: .82rem;
    color: rgba(255,255,255,.55);
}
.ft-contact i { color: #FFC107; margin-top: 2px; flex-shrink: 0; width: 14px; text-align: center; }
.ft-contact a { color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
.ft-contact a:hover { color: #FFC107; }

/* Social icons */
.ft-social {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 6px;
}
.ft-social__btn {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    transition: transform .25s cubic-bezier(.34,1.56,.64,1), background .2s, color .2s, box-shadow .2s, border-color .2s;
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.6);
    border: 1px solid rgba(255,255,255,.1);
}
.ft-social__btn:hover {
    transform: translateY(-5px) scale(1.08);
    background: #FFC107;
    color: #1A5200;
    border-color: #FFC107;
    box-shadow: 0 8px 20px rgba(255,193,7,.3);
}
/* Platform brand colours on hover */
.ft-social__btn--whatsapp:hover  { background: #25D366; color: #fff; border-color: #25D366; }
.ft-social__btn--facebook:hover  { background: #1877F2; color: #fff; border-color: #1877F2; }
.ft-social__btn--instagram:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); color: #fff; border-color: #d6249f; }
.ft-social__btn--youtube:hover   { background: #FF0000; color: #fff; border-color: #FF0000; }
.ft-social__btn--linkedin:hover  { background: #0A66C2; color: #fff; border-color: #0A66C2; }
.ft-social__btn--twitter:hover   { background: #000; color: #fff; border-color: #000; }

/* Nav columns */
.ft-col {}
.ft-col__title {
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #FFC107;
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding-bottom: 12px;
    position: relative;
}
.ft-col__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, #FFC107, transparent);
    border-radius: 2px;
}
.ft-col__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.ft-col__list a {
    font-size: .81rem;
    color: rgba(255,255,255,.45);
    text-decoration: none;
    padding: 5px 0 5px 16px;
    display: block;
    position: relative;
    transition: color .22s, padding-left .22s;
    line-height: 1.45;
}
.ft-col__list a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255,193,7,.25);
    transition: background .22s, transform .22s;
}
.ft-col__list a:hover { color: rgba(255,255,255,.9); padding-left: 20px; }
.ft-col__list a:hover::before { background: #FFC107; transform: translateY(-50%) scale(1.4); }

/* Pay fees button */
.ft-pay-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 18px;
    background: linear-gradient(135deg, #FFC107, #e6a800);
    color: #1A5200;
    font-size: .82rem;
    font-weight: 700;
    padding: 9px 18px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
}
.ft-pay-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,193,7,.35); }

/* Notices column */
.ft-notices {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.ft-notice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.ft-notice:last-child { border-bottom: none; }
.ft-notice__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 5px;
}
.ft-notice__body {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}
.ft-notice__body a {
    font-size: .8rem;
    color: rgba(255,255,255,.65);
    text-decoration: none;
    line-height: 1.4;
    transition: color .2s;
    display: block;
}
.ft-notice__body a:hover { color: #FFC107; }
.ft-notice__body time {
    font-size: .67rem;
    color: rgba(255,255,255,.28);
}
.ft-view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    font-size: .78rem;
    font-weight: 600;
    color: #FFC107;
    text-decoration: none;
    transition: gap .2s;
}
.ft-view-all:hover { gap: 9px; }

/* ── SHTR note ────────────────────────────────────────────── */
.ft-shtr {
    background: rgba(0,0,0,.4);
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,.07);
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.ft-shtr p {
    font-size: .75rem;
    color: rgba(255,255,255,.72);
    line-height: 1.75;
    margin: 0;
    text-align: center;
}
.ft-shtr strong { color: #FFC107; font-weight: 700; }

/* ── Footer bottom bar ────────────────────────────────────── */
.ft-bottom {
    background: rgba(0,0,0,.55);
    padding: 18px 0;
    border-top: 1px solid rgba(26,82,0,.2);
}
.ft-bottom__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .5rem;
}
.ft-bottom__copy {
    font-size: .76rem;
    color: rgba(255,255,255,.68);
}
.ft-bottom__copy a { color: #FFC107; text-decoration: none; }
.ft-bottom__copy a:hover { color: #fff; }
.ft-bottom__pipe { margin: 0 .5rem; opacity: .5; }
.ft-bottom__legal {
    display: flex;
    flex-wrap: wrap;
    gap: .25rem .875rem;
}
.ft-bottom__legal a {
    font-size: .73rem;
    color: rgba(255,255,255,.58);
    text-decoration: none;
    transition: color .2s;
}
.ft-bottom__legal a:hover { color: #FFC107; }

/* Social links legacy (used in old footer markup — keep for header) */
.social-links { display: flex; gap: .625rem; }
.social-link {
    width: 38px; height: 38px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,.15);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.7);
    font-size: var(--text-sm);
    transition: all var(--transition);
    text-decoration: none;
}
.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--secondary); transform: translateY(-3px); }

/* ── Footer responsive ────────────────────────────────────── */
@media (max-width: 1100px) {
    .ft-grid { grid-template-columns: 1fr 1fr; gap: 36px 32px; }
    .ft-brand { grid-column: 1 / -1; }
    .ft-accred__item { padding: .3rem .75rem; }
}
@media (max-width: 768px) {
    .ft-cta__inner { flex-direction: column; align-items: flex-start; }
    .ft-accred__inner { gap: 0; }
    .ft-accred__sep { display: none; }
    .ft-accred__item { flex: 1 1 45%; justify-content: center; }
    .ft-grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
    .ft-brand { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
    .ft-grid { grid-template-columns: 1fr; gap: 28px; }
    .ft-bottom__inner { flex-direction: column; align-items: center; text-align: center; }
    .ft-bottom__legal { justify-content: center; }
    .ft-cta__actions { width: 100%; }
    .ft-btn { flex: 1; justify-content: center; }
    .ft-shtr p { font-size: .65rem; }
}

/* =========================================================
   10. WIDGETS & SIDEBAR
   ========================================================= */
.widget-area { display: flex; flex-direction: column; gap: 2rem; }

.widget {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 1.75rem;
    border-top: 4px solid var(--gold);
}

.widget-title {
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary);
    margin-bottom: 1.25rem;
}

/* =========================================================
   11. BREADCRUMBS
   ========================================================= */
.breadcrumbs {
    background: var(--light);
    padding: 0.75rem 0;
    font-size: var(--text-sm);
    border-bottom: 1px solid var(--border);
}
.breadcrumbs ol {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    list-style: none;
}
.breadcrumbs li + li::before { content: '/'; color: var(--text-muted); }
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs [aria-current] { color: var(--primary); font-weight: 500; }

/* =========================================================
   12. FORMS
   ========================================================= */
.form-group { margin-bottom: 1.25rem; }

label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="search"],
select,
textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: var(--text-base);
    color: var(--text);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

input:focus, select:focus, textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 45, 91, 0.08);
}

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

/* =========================================================
   13. COMMENTS
   ========================================================= */
.comment-list { list-style: none; margin: 0; padding: 0; }
.comment { padding: 1.5rem 0; border-bottom: 1px solid var(--border); }
.comment .avatar { border-radius: 50%; width: 48px; height: 48px; flex-shrink: 0; }
.comment-author { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.comment-content { font-size: var(--text-sm); color: var(--text-muted); }

/* =========================================================
   14. REACT MOUNT POINT
   ========================================================= */
#react-app {
    min-height: 200px;
}

.react-loading {
    text-align: center;
    padding: 3rem;
    color: var(--text-muted);
}

/* =========================================================
   15. RESPONSIVE
   ========================================================= */
/* ── Tablet: 768px – 1024px ─────────────────────────── */
@media (max-width: 1024px) {
    :root {
        --section-gap: 4.5rem;
        --nav-height:  51px;
    }

    .stats-grid     { grid-template-columns: repeat(2, 1fr); }

    /* Trim long nav items */
    .primary-navigation .primary-menu > .menu-item > a {
        font-size: 12px;
        padding: 0 7px;
    }

    /* Hide Apply CTA text, keep icon */
    .hdr-apply-btn span { display: none; }
    .hdr-apply-btn { padding: 0 12px; }


    /* Trending bar: fewer pills visible */
    .trending-label { display: none; }
}

/* ── Mobile: ≤ 768px ────────────────────────────────── */
@media (max-width: 768px) {
    :root {
        --section-gap:  3.5rem;
        --tnb-height:   0px;
        --nav-height:   52px;
        --logo-drop:    12px;
    }

    /* Hide top network bar on mobile */
    .top-network-bar { display: none; }

    /* Hamburger visible on LEFT, desktop nav hidden */
    .nav-toggle          { display: flex; }
    .primary-navigation  { display: none; }
    /* Collapse quick-action labels on mobile — icons only */
    .hdr-quick-label     { display: none; }
    .hdr-quick-btn       { min-width: 36px; padding: 0 6px; border-left: none; }
    .hdr-badge           { display: none; }

    /* Logo: smaller on mobile */
    .site-logo {
        min-width: 90px;
        height: calc(var(--nav-height) + var(--logo-drop));
        padding: 4px 10px 6px;
    }
    .site-logo__emblem { width: 28px; height: 28px; font-size: 11px; }
    .site-logo__name   { font-size: 11px; }
    .site-logo__tagline { display: none; }

    /* Hide icon buttons except hamburger */
    .hdr-icon-btn--notify { display: none; }
    .hdr-apply-btn        { display: none; }


    /* Breaking news: compact on mobile (only when ticker present) */
    .has-ticker { --breaking-height: 54px; }
    .breaking-inner { height: 38px; }
    .breaking-label { font-size: 10px; padding: 0 12px 0 14px; height: 38px; }
    .breaking-item  { font-size: 12px; padding: 0 16px; }

    /* Trending: compact, hide label */
    .trending-label { display: none; }

    .posts-grid   { grid-template-columns: 1fr; }
}

/* ── Small mobile: ≤ 480px ──────────────────────────── */
@media (max-width: 480px) {
    :root { --section-gap: 2.5rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; justify-content: center; }

    /* Hide search icon on very small screens */
    #search-toggle { display: none; }
    .search-bar-panel { display: none; }
}

/* ── Reduced-motion: stop marquee ───────────────────── */
@media (prefers-reduced-motion: reduce) {
    .breaking-track { animation: none; }
}

/* =========================================================
   16. ACCESSIBILITY & PRINT
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
    html { scroll-behavior: auto; }
}

@media (prefers-color-scheme: dark) {
    /* Dark mode ready — extend here */
}

@media print {
    .site-header, .site-footer, .sidebar, .pagination, .nav-toggle { display: none !important; }
    body { font-size: 12pt; color: #000; }
    a::after { content: ' (' attr(href) ')'; font-size: 0.85em; }
}

/* =========================================================
   17. WORDPRESS CORE CLASSES (required)
   ========================================================= */
.alignleft  { float: left;  margin: 0.5rem 1.5rem 1rem 0; }
.alignright { float: right; margin: 0.5rem 0 1rem 1.5rem; }
.aligncenter { display: block; margin-inline: auto; }
.alignwide  { max-width: 1100px; margin-inline: auto; }
.alignfull  { max-width: 100%; width: 100vw; position: relative; left: 50%; transform: translateX(-50%); }

.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: var(--text-sm); text-align: center; color: var(--text-muted); margin-top: 0.5rem; }

.sticky { position: relative; }
.sticky::before {
    content: 'Featured';
    position: absolute;
    top: 1rem; right: 1rem;
    background: var(--gold);
    color: var(--secondary);
    font-size: var(--text-xs);
    font-weight: 700;
    padding: 0.2em 0.65em;
    border-radius: var(--radius-pill);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    z-index: 2;
}

.screen-reader-text { @extend .sr-only; }
.screen-reader-text:focus {
    position: fixed;
    top: 1rem; left: 1rem;
    background: var(--gold);
    color: var(--secondary);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    z-index: 9999;
    width: auto; height: auto;
    clip: auto;
    white-space: normal;
    overflow: visible;
}

.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
.gallery-item img { border-radius: var(--radius-sm); }

/* Gutenberg */
.wp-block-image figure { margin: 0; }
.has-primary-color { color: var(--primary); }
.has-gold-color    { color: var(--gold);    }
.has-primary-background-color { background: var(--primary); }
.has-gold-background-color    { background: var(--gold);    }

/* =========================================================
   18. HOMEPAGE — HERO SWIPER (cinematic)
   ========================================================= */
.hero-section {
    position: relative;
    height: calc(100vh - var(--header-height) - var(--breaking-height) - var(--trending-height));
    min-height: 560px;
    overflow: hidden;
    background: var(--secondary);
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Background layer: image */
.hero-slide__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.06);
    transition: transform 12s linear;
    will-change: transform;
}
.swiper-slide-active .hero-slide__bg { transform: scale(1); }

/* Background layer: video (self-hosted) */
.hero-slide__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Background layer: YouTube / Vimeo iframe */
.hero-slide__iframe-wrap {
    position: absolute;
    inset: -10%;
    pointer-events: none;
}
.hero-slide__iframe-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Dark cinematic overlay */
.hero-slide__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(0,15,40,0.78) 0%,
        rgba(0,15,40,0.45) 60%,
        rgba(0,15,40,0.25) 100%
    );
    z-index: 1;
}

/* Radial vignette */
.hero-slide__vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.65) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Glassmorphism content card */
.hero-slide__content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
}

.hero-slide__inner {
    max-width: 760px;
    padding: 0 var(--gutter);
    width: 100%;
}

.hero-slide__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,193,7,0.15);
    border: 1px solid rgba(255,193,7,0.45);
    color: var(--gold);
    padding: 0.35rem 1rem;
    border-radius: var(--radius-pill);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.hero-slide__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fff;
    line-height: 1.12;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.hero-slide__gold { color: var(--gold); }

.hero-slide__sub {
    font-size: clamp(var(--text-base), 1.8vw, var(--text-xl));
    color: rgba(255,255,255,0.82);
    margin-bottom: 2rem;
    max-width: 580px;
    line-height: 1.65;
}

.hero-slide__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-slide__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: var(--text-sm);
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}
.hero-slide__btn--primary {
    background: var(--gold);
    color: var(--secondary);
}
.hero-slide__btn--primary:hover {
    background: var(--gold-hover);
    color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,193,7,0.4);
}
.hero-slide__btn--outline {
    border: 2px solid rgba(255,255,255,0.65);
    color: #fff;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}
.hero-slide__btn--outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}

/* Per-slide progress bar */
.hero-slide__progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255,255,255,0.2);
    z-index: 4;
}
.hero-slide__progress-fill {
    height: 100%;
    background: var(--gold);
    width: 100%;
    transform: scaleX(0);
    transform-origin: left;
    will-change: transform;
    animation: heroProgress 12s linear forwards;
    animation-play-state: paused;
}
.swiper-slide-active .hero-slide__progress-fill {
    animation-play-state: running;
}
@keyframes heroProgress {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
}

/* Navigation buttons */
.hero-swiper__prev,
.hero-swiper__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.12);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: all var(--transition);
}
.hero-swiper__prev { left: 1.5rem; }
.hero-swiper__next { right: 1.5rem; }
.hero-swiper__prev:hover,
.hero-swiper__next:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--secondary);
    transform: translateY(-50%) scale(1.08);
}

/* Pagination dots */
.hero-swiper__dots {
    position: absolute;
    bottom: 1.75rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 6px;
}
.hero-swiper__dots .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.45);
    border-radius: 4px;
    transition: all 0.3s var(--ease);
    opacity: 1;
}
.hero-swiper__dots .swiper-pagination-bullet-active {
    width: 28px;
    background: var(--gold);
}

/* Slide counter */
.hero-swiper__counter {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 5;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.06em;
}
.hero-swiper__counter .current { color: #fff; font-size: 18px; }

/* Scroll hint arrow */
.hero-swiper__scroll-hint {
    position: absolute;
    bottom: 1.75rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: rgba(255,255,255,0.55);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(6px); }
}

/* Fallback (Customizer-based) hero */
.hero--fallback {
    background:
        linear-gradient(var(--overlay), var(--overlay)),
        center/cover no-repeat;
}

/* =========================================================
   19. HOMEPAGE — PROGRAMMES EXPLORER
   ========================================================= */
.programmes-section { padding-block: var(--section-gap); background: var(--light); }

#prog-root { min-height: 200px; }

.prog-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.prog-filters {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.prog-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-pill);
    font-size: var(--text-sm);
    font-weight: 600;
    border: 2px solid var(--border);
    color: var(--text-muted);
    background: var(--white);
    cursor: pointer;
    transition: all var(--transition);
}
.prog-pill:hover { border-color: var(--primary); color: var(--primary); }
.prog-pill.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.prog-search {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-pill);
    padding: 0.4rem 1rem;
    transition: border-color var(--transition);
}
.prog-search:focus-within { border-color: var(--primary); }
.prog-search input {
    border: none;
    outline: none;
    font-size: var(--text-sm);
    width: 200px;
    background: transparent;
}
.prog-search i { color: var(--text-muted); font-size: 14px; }

.prog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.75rem;
}

.prog-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
    border-top: 4px solid var(--primary);
}
.prog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.prog-card__header {
    padding: 1.5rem 1.5rem 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.prog-card__icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: rgba(0,45,91,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
    flex-shrink: 0;
}

.prog-card__cat {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold-dark);
    margin-bottom: 0.25rem;
}

.prog-card__title {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.25;
}

.prog-card__meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 0.75rem 1.5rem;
    background: var(--light);
    font-size: var(--text-xs);
    color: var(--text-muted);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.prog-card__meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}
.prog-card__meta i { color: var(--primary); }

.prog-card__body {
    padding: 1rem 1.5rem;
    flex: 1;
}
.prog-card__elig {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.6;
}

.prog-card__actions {
    padding: 1rem 1.5rem 1.5rem;
    display: flex;
    gap: 0.625rem;
    flex-wrap: wrap;
}

.prog-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 0.45rem 1rem;
    border-radius: var(--radius-pill);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}
.prog-card__btn--primary {
    background: var(--primary);
    color: #fff;
}
.prog-card__btn--primary:hover { background: var(--primary-hover); color: #fff; }
.prog-card__btn--outline {
    border: 1.5px solid var(--border);
    color: var(--text-muted);
}
.prog-card__btn--outline:hover { border-color: var(--primary); color: var(--primary); }
.prog-card__btn--gold {
    background: var(--gold);
    color: var(--secondary);
}
.prog-card__btn--gold:hover { background: var(--gold-hover); color: var(--secondary); }

.prog-empty {
    text-align: center;
    padding: 4rem 1rem;
    color: var(--text-muted);
}
.prog-empty i { font-size: 3rem; margin-bottom: 1rem; opacity: 0.35; }

.prog-footer-link {
    text-align: center;
    margin-top: 3rem;
}

/* =========================================================
   20. HOMEPAGE — WHY CHOOSE / FEATURES GRID
   ========================================================= */
.features-section { padding-block: var(--section-gap); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem 1.75rem;
    box-shadow: var(--shadow-sm);
    border-bottom: 4px solid transparent;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s var(--ease);
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--gold);
}
.feature-card:hover::before { transform: scaleX(1); }

.feature-card__icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: rgba(0,45,91,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--primary);
    margin-bottom: 1.25rem;
    transition: background var(--transition), color var(--transition);
}
.feature-card:hover .feature-card__icon {
    background: var(--primary);
    color: var(--gold);
}

.feature-card__title {
    font-size: var(--text-xl);
    color: var(--secondary);
    margin-bottom: 0.75rem;
}
.feature-card__desc {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.75;
}

/* =========================================================
   21. HOMEPAGE — ADMISSIONS JOURNEY / STEPS TRACK
   ========================================================= */
.admissions-section { padding-block: var(--section-gap); background: var(--light); }

.steps-track {
    position: relative;
    display: flex;
    gap: 0;
    justify-content: space-between;
    margin-top: 3rem;
}

/* Horizontal connector line */
.steps-track::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 8%;
    right: 8%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold), var(--primary));
    z-index: 0;
}

.step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 0.5rem;
    position: relative;
    z-index: 1;
}

.step-item__bubble {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.35s var(--ease);
    position: relative;
}
.step-item__bubble i {
    font-size: 20px;
    color: var(--text-muted);
    transition: color var(--transition);
}
.step-item__num {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    background: var(--gold);
    color: var(--secondary);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-item:hover .step-item__bubble,
.step-item.is-active .step-item__bubble {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 0 6px rgba(0,45,91,0.12);
}
.step-item:hover .step-item__bubble i,
.step-item.is-active .step-item__bubble i {
    color: var(--gold);
}

.step-item__title {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.375rem;
}
.step-item__desc {
    font-size: var(--text-xs);
    color: var(--text-muted);
    line-height: 1.65;
}

/* =========================================================
   22. HOMEPAGE — PLACEMENTS
   ========================================================= */
.placements-section { padding-block: var(--section-gap); }

.placement-wrap {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 4rem;
    align-items: center;
}

.placement-stats {}

.placement-numbers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.placement-num {
    background: var(--light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    border-bottom: 3px solid var(--gold);
    transition: transform var(--transition), box-shadow var(--transition);
}
.placement-num:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.placement-num__value {
    font-family: var(--font-serif);
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}
.placement-num__label {
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.placement-logos {}
.placement-logos-head {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
}

.recruiter-swiper { overflow: hidden; }
.recruiter-slide { width: auto !important; }

.recruiter-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    height: 72px;
    min-width: 120px;
    transition: all var(--transition);
    filter: grayscale(1) opacity(0.6);
}
.recruiter-logo:hover {
    filter: grayscale(0) opacity(1);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}
.recruiter-logo img { max-height: 40px; max-width: 100px; object-fit: contain; }

/* =========================================================
   23. HOMEPAGE — FACULTY SPOTLIGHT (3D flip cards)
   ========================================================= */
.faculty-section { padding-block: var(--section-gap); background: var(--light); }

.faculty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 2rem;
}

.faculty-card {
    perspective: 900px;
    height: 380px;
    cursor: pointer;
}

.faculty-card__inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
    border-radius: var(--radius-md);
}
.faculty-card:hover .faculty-card__inner { transform: rotateY(180deg); }
.faculty-card:hover .faculty-card__front { pointer-events: none; }

.faculty-card__front,
.faculty-card__back {
    position: absolute;
    inset: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Front face */
.faculty-card__front { background: var(--white); }

.faculty-card__photo {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: top;
}
.faculty-card__initials {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(255,255,255,0.25);
    font-family: var(--font-serif);
}

.faculty-card__info {
    padding: 1.25rem;
}
.faculty-card__name {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}
.faculty-card__desig {
    font-size: var(--text-sm);
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.faculty-card__dept {
    font-size: var(--text-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
}
.faculty-card__exp {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--gold-dark);
}

/* Back face */
.faculty-card__back {
    background: linear-gradient(160deg, var(--primary) 0%, var(--secondary) 100%);
    transform: rotateY(180deg);
    color: #fff;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.faculty-card__back-head {
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding-bottom: 0.875rem;
    margin-bottom: 0.875rem;
}
.faculty-card__back-name {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--gold);
}
.faculty-card__back-desig {
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.7);
}

.faculty-card__qual,
.faculty-card__research {
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}
.faculty-card__qual strong,
.faculty-card__research strong {
    color: var(--gold);
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.2rem;
}

/* View Profile button on card back */
.faculty-card__profile-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 9px 14px;
    margin: 0.75rem 0 0.5rem;
    background: rgba(255,255,255,0.12);
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: .03em;
    transition: background 0.2s, border-color 0.2s;
}
.faculty-card__profile-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--secondary);
}

.faculty-card__links {
    display: flex;
    gap: 0.625rem;
    margin-top: auto;
}
.faculty-card__social {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    text-decoration: none;
    transition: all var(--transition);
}
.faculty-card__social:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--secondary);
}

/* =========================================================
   24. HOMEPAGE — BUDDYPRESS COMMUNITY
   ========================================================= */
.community-section { padding-block: var(--section-gap); }

.community-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.community-col {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.community-col__head {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--secondary);
}
.community-col__head i { color: var(--primary); }

.community-col__body { padding: 1rem 0; }

.bp-user-row,
.bp-topic-row {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.625rem 1.5rem;
    transition: background var(--transition);
    text-decoration: none;
    color: var(--text);
}
.bp-user-row:hover,
.bp-topic-row:hover { background: var(--light); color: var(--text); }

.bp-user-row .avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.bp-user-row__name { font-size: var(--text-sm); font-weight: 600; }
.bp-user-row__meta { font-size: var(--text-xs); color: var(--text-muted); }

.bp-topic-row__title { font-size: var(--text-sm); font-weight: 600; line-height: 1.3; }
.bp-topic-row__meta  { font-size: var(--text-xs); color: var(--text-muted); }

.bp-best-media {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}
.bp-best-media__item {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--light);
}
.bp-best-media__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease);
}
.bp-best-media__item:hover img { transform: scale(1.08); }

/* =========================================================
   25. HOMEPAGE — NEWS & EVENTS
   ========================================================= */
.news-events-section { padding-block: var(--section-gap); background: var(--light); }

.news-events-wrap {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* News column */
.news-col__head,
.events-col__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.75rem;
}
.news-col__head h3,
.events-col__head h3 {
    font-size: var(--text-2xl);
    color: var(--secondary);
}

.news-grid { display: flex; flex-direction: column; gap: 1.5rem; }

.news-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    box-shadow: var(--shadow-xs);
    transition: transform var(--transition), box-shadow var(--transition);
}
.news-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.news-card__thumb {
    width: 120px;
    flex-shrink: 0;
    overflow: hidden;
}
.news-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease);
}
.news-card:hover .news-card__thumb img { transform: scale(1.06); }

.news-card__body { padding: 1rem 1.25rem; flex: 1; }
.news-card__cat {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold-dark);
    margin-bottom: 0.35rem;
}
.news-card__title {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.3;
    margin-bottom: 0.375rem;
    transition: color var(--transition);
}
.news-card:hover .news-card__title { color: var(--primary); }
.news-card__meta {
    font-size: var(--text-xs);
    color: var(--text-muted);
    display: flex;
    gap: 0.875rem;
    align-items: center;
}

/* Events column */
.events-list { display: flex; flex-direction: column; gap: 0; }

.event-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: var(--text);
    transition: all var(--transition);
}
.event-item:last-child { border-bottom: none; }
.event-item:hover { color: var(--text); padding-left: 4px; }

.event-item__date {
    width: 52px;
    height: 56px;
    background: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    text-align: center;
}
.event-item__date-day {
    font-size: var(--text-2xl);
    font-weight: 800;
    line-height: 1;
    font-family: var(--font-serif);
}
.event-item__date-mon {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gold);
}

.event-item__body { flex: 1; }
.event-item__title {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.3;
    margin-bottom: 0.375rem;
    transition: color var(--transition);
}
.event-item:hover .event-item__title { color: var(--primary); }
.event-item__excerpt { font-size: var(--text-xs); color: var(--text-muted); line-height: 1.55; }

.event-item__arrow {
    color: var(--text-muted);
    font-size: 14px;
    align-self: center;
    flex-shrink: 0;
    transition: transform var(--transition), color var(--transition);
}
.event-item:hover .event-item__arrow {
    transform: translateX(4px);
    color: var(--primary);
}

/* =========================================================
   26. HOMEPAGE — TESTIMONIALS SWIPER
   ========================================================= */
.testimonials-section { padding-block: var(--section-gap); }

.testi-swiper { overflow: hidden; padding: 1rem 0 3.5rem; }

.testi-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    box-shadow: var(--shadow-md);
    position: relative;
    height: auto;
    display: flex;
    flex-direction: column;
    border-top: 4px solid var(--gold);
}

.testi-card::before {
    content: '\201C';
    position: absolute;
    top: 1.25rem;
    right: 1.75rem;
    font-family: var(--font-serif);
    font-size: 6rem;
    color: rgba(255,193,7,0.1);
    line-height: 1;
    pointer-events: none;
}

.testi-card__stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1rem;
    color: var(--gold);
    font-size: 15px;
}

.testi-card__quote {
    font-size: var(--text-base);
    line-height: 1.75;
    color: var(--text-muted);
    font-style: italic;
    flex: 1;
    margin-bottom: 1.75rem;
}

.testi-card__person {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

.testi-card__avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
    flex-shrink: 0;
}
.testi-card__avatar-fallback {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
    flex-shrink: 0;
}

.testi-card__info { flex: 1; }
.testi-card__name {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--secondary);
}
.testi-card__course {
    font-size: var(--text-xs);
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}
.testi-card__role {
    font-size: var(--text-sm);
    color: var(--primary);
    font-weight: 600;
}

.testi-card__play {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 14px;
    cursor: pointer;
    flex-shrink: 0;
    transition: all var(--transition);
    padding-left: 2px; /* optical centering of play icon */
}
.testi-card__play:hover {
    background: var(--primary);
    color: var(--gold);
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(0,45,91,0.3);
}

/* Swiper nav below cards */
.testi-swiper__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}
.testi-swiper__prev,
.testi-swiper__next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition);
    font-size: 15px;
}
.testi-swiper__prev:hover,
.testi-swiper__next:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(0,45,91,0.05);
}
.testi-swiper-pagination .swiper-pagination-bullet {
    background: var(--border);
    opacity: 1;
}
.testi-swiper-pagination .swiper-pagination-bullet-active {
    background: var(--primary);
    width: 22px;
    border-radius: 3px;
}

/* =========================================================
   27. HOMEPAGE — GALLERY (Instagram-style lightbox)
   ========================================================= */
.gallery-section { padding-block: var(--section-gap); background: var(--light); }

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

.gallery-thumb {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    border-radius: var(--radius-xs);
    background: var(--secondary);
}
.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s var(--ease);
    display: block;
}
.gallery-thumb:hover img { transform: scale(1.08); }

.gallery-thumb__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,20,50,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}
.gallery-thumb:hover .gallery-thumb__overlay { opacity: 1; }
.gallery-thumb__overlay i { color: #fff; font-size: 24px; }

/* Featured (spans 2 cols or 2 rows) */
.gallery-thumb--wide { grid-column: span 2; }
.gallery-thumb--tall { grid-row: span 2; }

/* Full-screen lightbox overlay */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(0,0,0,0.97);
    display: none;
    flex-direction: column;
    align-items: stretch;
}
.gallery-lightbox.is-open {
    display: flex;
}

.gallery-lb-swiper {
    flex: 1;
    width: 100%;
    overflow: hidden;
}

.gallery-lb-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.gallery-lb-slide img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.gallery-lb__close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 10;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all var(--transition);
}
.gallery-lb__close:hover { background: #e53e3e; border-color: #e53e3e; }

.gallery-lb__prev,
.gallery-lb__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all var(--transition);
}
.gallery-lb__prev { left: 1.25rem; }
.gallery-lb__next { right: 1.25rem; }
.gallery-lb__prev:hover,
.gallery-lb__next:hover { background: rgba(255,255,255,0.2); }

.gallery-lb__counter {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.06em;
}

/* =========================================================
   28. HOMEPAGE — NOTICE BOARD
   ========================================================= */
.notice-board-section { padding-block: var(--section-gap); }

.notice-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.notice-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
    text-decoration: none;
    color: var(--text);
}
.notice-item:last-child { border-bottom: none; }
.notice-item:hover { background: var(--light); color: var(--text); }
.notice-item--link { cursor: pointer; }

.notice-item__icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

/* Type color variants */
.notice-item--info    .notice-item__icon { background: rgba(59,130,246,0.1);  color: #3b82f6; }
.notice-item--urgent  .notice-item__icon { background: rgba(239,68,68,0.1);   color: #ef4444; }
.notice-item--exam    .notice-item__icon { background: rgba(168,85,247,0.1);  color: #a855f7; }
.notice-item--event   .notice-item__icon { background: rgba(34,197,94,0.1);   color: #22c55e; }
.notice-item--result  .notice-item__icon { background: rgba(234,179,8,0.1);   color: #eab308; }

.notice-item__body { flex: 1; min-width: 0; }

.notice-item__badge {
    display: inline-flex;
    align-items: center;
    padding: 0.15rem 0.625rem;
    border-radius: var(--radius-pill);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.375rem;
}
.notice-item--info   .notice-item__badge { background: rgba(59,130,246,0.1);  color: #3b82f6; }
.notice-item--urgent .notice-item__badge { background: rgba(239,68,68,0.1);   color: #ef4444; }
.notice-item--exam   .notice-item__badge { background: rgba(168,85,247,0.1);  color: #a855f7; }
.notice-item--event  .notice-item__badge { background: rgba(34,197,94,0.1);   color: #22c55e; }
.notice-item--result .notice-item__badge { background: rgba(234,179,8,0.1);   color: #eab308; }

.notice-item__new {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: #ef4444;
    color: #fff;
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.1rem 0.5rem;
    border-radius: var(--radius-pill);
    margin-left: 0.5rem;
    vertical-align: middle;
    animation: newPulse 2s ease-in-out infinite;
}
@keyframes newPulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.6; }
}

.notice-item__title {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--secondary);
    line-height: 1.35;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.notice-item__content {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.55;
}

.notice-item__meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    flex-shrink: 0;
    font-size: var(--text-xs);
    color: var(--text-muted);
    white-space: nowrap;
}
.notice-item__date { font-weight: 600; }
.notice-item__expiry {
    color: #ef4444;
    font-size: 10px;
}

/* =========================================================
   29. SHARED VIDEO MODAL
   ========================================================= */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 9500;
    display: none;
    align-items: center;
    justify-content: center;
}
.video-modal.is-open { display: flex; }

.video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.92);
    cursor: pointer;
}

.video-modal__box {
    position: relative;
    z-index: 1;
    width: min(900px, 92vw);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #000;
    box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}

.video-modal__close {
    position: absolute;
    top: -44px;
    right: 0;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: all var(--transition);
    z-index: 2;
}
.video-modal__close:hover { background: #e53e3e; border-color: #e53e3e; }

.video-modal__player {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    background: #000;
}
.video-modal__player iframe,
.video-modal__player video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* =========================================================
   30. NOTICE TICKER — type color variants
   ========================================================= */
.breaking-label--urgent  { background: rgba(185,28,28,.22); color: #7f1d1d; }
.breaking-label--exam    { background: rgba(109,40,217,.18); color: #4c1d95; }
.breaking-label--event   { background: rgba(6,95,70,.18);   color: #064e3b; }
.breaking-label--result  { background: rgba(146,64,14,.18); color: #78350f; }
.breaking-label--info    { background: rgba(30,64,175,.18); color: #1e3a8a; }

.breaking-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-right: 6px; }
.breaking-dot--urgent { background: #b91c1c; }
.breaking-dot--exam   { background: #6d28d9; }
.breaking-dot--event  { background: #065f46; }
.breaking-dot--result { background: #92400e; }
.breaking-dot--info   { background: #1e40af; }

.breaking-item--link { cursor: pointer; }
.breaking-item--link:hover { color: var(--primary); }

/* ── Urgency tint on the whole bar ───────────────────────── */
.breaking-news-bar--warn     { background: #f4f6f9; }
.breaking-news-bar--warn     .breaking-inner { background: #f59e0b; box-shadow: 0 4px 16px rgba(245,158,11,.45); }
.breaking-news-bar--critical { background: #f4f6f9; }
.breaking-news-bar--critical .breaking-inner { background: #ef4444; box-shadow: 0 4px 16px rgba(239,68,68,.45); }
.breaking-news-bar--critical .breaking-item  { color: #fff; }
.breaking-news-bar--critical .breaking-label { color: #fff; border-right-color: rgba(255,255,255,.25); }
.breaking-news-bar--critical .breaking-pause { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.5); color: #fff; }

/* ── Expiry badge pills inside ticker items ──────────────── */
.notice-expiry-pill {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 10px;
    font-weight: 700;
    padding: 1px 7px;
    border-radius: 20px;
    margin-left: 7px;
    vertical-align: middle;
    letter-spacing: .4px;
    text-transform: uppercase;
    line-height: 1.6;
}
.notice-expiry-pill--warn {
    background: rgba(255,255,255,.9);
    color: #92400e;
    border: 1px solid #fbbf24;
}
.notice-expiry-pill--critical {
    background: rgba(255,255,255,.9);
    color: #991b1b;
    border: 1px solid #f87171;
    animation: noticePillBlink 1s ease-in-out infinite;
    will-change: opacity;
}

/* ── Blinking dot for critical items ────────────────────── */
.breaking-item--critical .breaking-dot {
    animation: noticeDotBlink 1s ease-in-out infinite;
    will-change: opacity, transform;
}

@keyframes noticePillBlink {
    0%, 100% { opacity: 1;   background: #fee2e2; }
    50%       { opacity: .65; background: #fca5a5; }
}
@keyframes noticeDotBlink {
    0%, 100% { opacity: 1;  transform: scale(1);   }
    50%       { opacity: .15; transform: scale(1.5); }
}

/* =========================================================
   31. ARCHIVE HEADER
   ========================================================= */
.archive-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 3.5rem 0;
    color: #fff;
}
.archive-header__eyebrow {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    margin-bottom: 0.625rem;
}
.archive-header__title {
    font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
    color: #fff;
    margin-bottom: 0.875rem;
}
.archive-header__desc {
    font-size: var(--text-lg);
    color: rgba(255,255,255,0.75);
    max-width: 600px;
}

/* =========================================================
   32. INNER PAGE TEMPLATES
   ========================================================= */

/* ── Page Hero (page.php) ──────────────────────────── */
.page-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: var(--secondary);
    overflow: hidden;
}

.page-hero__img {
    position: absolute;
    inset: 0;
    background-image: var(--page-hero-bg);
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    transition: transform 1.2s var(--ease);
}
.page-hero:hover .page-hero__img { transform: scale(1); }

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,15,50,0.88) 0%,
        rgba(0,15,50,0.5) 55%,
        rgba(0,15,50,0.2) 100%
    );
    z-index: 1;
}
.page-hero__vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.5) 100%);
    z-index: 2;
    pointer-events: none;
}

.page-hero__inner {
    position: relative;
    z-index: 3;
    padding-bottom: 2.5rem;
}

.page-hero__content { max-width: 700px; }

.page-hero__eyebrow {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    margin-bottom: 0.75rem;
}
.page-hero__eyebrow a { color: var(--gold); text-decoration: none; }

.page-hero__title {
    font-size: clamp(var(--text-3xl), 4.5vw, var(--text-5xl));
    color: #fff;
    line-height: 1.15;
    margin-bottom: 0.75rem;
}

.page-hero__desc {
    font-size: var(--text-lg);
    color: rgba(255,255,255,0.72);
    line-height: 1.6;
    max-width: 580px;
}

.page-hero__scroll-hint {
    position: absolute;
    bottom: 1rem;
    right: var(--gutter);
    z-index: 4;
    color: rgba(255,255,255,0.4);
    font-size: 18px;
    animation: scrollBounce 2s ease-in-out infinite;
}

/* ── Page content layout ────────────────────────────── */
.page-content__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.page-content__layout:has(.page-sidebar) {
    grid-template-columns: 1fr 300px;
}

.page-article .entry-content { font-size: var(--text-lg); }
.page-entry-content { max-width: 72ch; }

.page-edit-link {
    margin-top: 2rem;
    font-size: var(--text-sm);
}
.page-edit-link a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    border: 1px solid var(--border);
    padding: 0.35rem 0.875rem;
    border-radius: var(--radius-pill);
    font-size: var(--text-xs);
    font-weight: 600;
    transition: all var(--transition);
}
.page-edit-link a:hover { color: var(--primary); border-color: var(--primary); }

/* ── Page sidebar ───────────────────────────────────── */
.page-sidebar .widget { margin-bottom: 1.5rem; }

.widget--subpages .widget-subpages { display: flex; flex-direction: column; gap: 0; }
.widget--subpages .widget-subpages li a {
    display: flex;
    align-items: center;
    padding: 0.625rem 0;
    border-bottom: 1px solid var(--border);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    transition: all var(--transition);
}
.widget--subpages .widget-subpages li a::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    margin-right: 0.75rem;
    flex-shrink: 0;
}
.widget--subpages .widget-subpages li a:hover,
.widget--subpages .widget-subpages li.is-active a {
    color: var(--primary);
    padding-left: 4px;
}

/* ── Post Hero (single.php) ────────────────────────── */
.post-hero {
    position: relative;
    min-height: 440px;
    background: var(--secondary);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}
.post-hero__img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.post-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,15,50,0.92) 0%, rgba(0,15,50,0.45) 60%, rgba(0,15,50,0.1) 100%);
    z-index: 1;
}
.post-hero__vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.4) 100%);
    z-index: 2;
    pointer-events: none;
}
.post-hero__content {
    position: relative;
    z-index: 3;
    padding-bottom: 2.5rem;
    max-width: 820px;
}
.post-hero__cat {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 0.75rem;
}
.post-hero__title {
    font-size: clamp(var(--text-3xl), 4.5vw, var(--text-5xl));
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1rem;
}
.post-hero__meta {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    flex-wrap: wrap;
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.65);
}
.post-hero__meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}
.post-hero__meta-item a { color: rgba(255,255,255,0.65); transition: color var(--transition); }
.post-hero__meta-item a:hover { color: var(--gold); }
.post-hero__avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}
.post-hero__meta-sep { opacity: 0.35; }

/* ── Single post layout ─────────────────────────────── */
.single-post-grid {
    display: grid;
    grid-template-columns: 1fr var(--sidebar-width);
    gap: 3rem;
    align-items: start;
}

.single-entry-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border);
}

/* ── Share strip ──────────────────────────────────────── */
.share-strip {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    flex-wrap: wrap;
    margin-block: 1.5rem;
}
.share-strip--bottom {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
}
.share-strip__label {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.share-strip__btns { display: flex; gap: 0.625rem; flex-wrap: wrap; }

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    text-decoration: none;
}
.share-btn--twitter  { background: #000; color: #fff; }
.share-btn--facebook { background: #1877f2; color: #fff; }
.share-btn--linkedin { background: #0a66c2; color: #fff; }
.share-btn--whatsapp { background: #25d366; color: #fff; }
.share-btn--copy     { background: var(--light); color: var(--text-muted); border: 1px solid var(--border); }
.share-btn:hover     { transform: translateY(-3px) scale(1.1); box-shadow: var(--shadow-sm); }

.share-btn--labeled {
    width: auto;
    border-radius: var(--radius-pill);
    padding: 0 1rem;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
}

/* ── Post tags ─────────────────────────────────────── */
.post-tags {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    padding: 1.25rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-block: 1.5rem;
}
.post-tags__label {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--text-muted);
}
.post-tags__tag {
    display: inline-block;
    padding: 0.25rem 0.875rem;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    transition: all var(--transition);
}
.post-tags__tag:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ── Author bio ─────────────────────────────────────── */
.author-bio {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--light);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--gold);
    margin-top: 2.5rem;
    align-items: flex-start;
}
.author-bio__avatar { flex-shrink: 0; }
.author-bio__img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
}
.author-bio__label {
    display: block;
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-dark);
    margin-bottom: 0.25rem;
}
.author-bio__name {
    font-size: var(--text-xl);
    color: var(--secondary);
    margin-bottom: 0.625rem;
}
.author-bio__name a { color: var(--secondary); }
.author-bio__name a:hover { color: var(--primary); }
.author-bio__desc {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0.875rem;
}
.author-bio__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--primary);
}

/* ── Post navigation ────────────────────────────────── */
.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border);
}
.post-nav-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text);
    padding: 1.25rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all var(--transition);
    overflow: hidden;
}
.post-nav-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
    color: var(--text);
}
.post-nav-item--next { text-align: right; align-items: flex-end; }

.post-nav-item__dir {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
}
.post-nav-item--next .post-nav-item__dir { flex-direction: row-reverse; }

.post-nav-item__thumb {
    width: 100%;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.post-nav-item__thumb img { width: 100%; height: 100%; object-fit: cover; }

.post-nav-item__title {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.35;
    transition: color var(--transition);
}
.post-nav-item:hover .post-nav-item__title { color: var(--primary); }

/* ── Related posts ──────────────────────────────────── */
.related-posts {
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border);
}
.related-posts__heading {
    font-size: var(--text-2xl);
    color: var(--secondary);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.related-posts__heading::after {
    content: '';
    flex: 1;
    height: 2px;
    background: var(--border);
}
.related-posts__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* ── Archive layout ─────────────────────────────────── */
.archive-layout {
    display: grid;
    grid-template-columns: 1fr var(--sidebar-width);
    gap: 3rem;
    align-items: start;
}

.archive-header__inner {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}
.archive-header__icon-wrap {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 4px;
}

/* ── Sidebar widgets ──────────────────────────────────── */
.sidebar {
    position: sticky;
    top: calc(var(--nav-height) + 1rem);
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.sidebar-about {
    text-align: center;
}
.sidebar-about__emblem {
    width: 56px;
    height: 56px;
    background: var(--primary);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
    margin: 0 auto 1rem;
}
.sidebar-about__desc {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}
.sidebar-about__link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--primary);
}

.widget-recent-posts { display: flex; flex-direction: column; gap: 1rem; }
.widget-recent-posts__item {
    display: flex;
    gap: 0.875rem;
    align-items: flex-start;
}
.widget-recent-posts__thumb {
    width: 72px;
    height: 60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    display: block;
}
.widget-recent-posts__thumb img { width: 100%; height: 100%; object-fit: cover; }
.widget-recent-posts__title {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--secondary);
    line-height: 1.35;
    margin-bottom: 0.375rem;
    transition: color var(--transition);
}
.widget-recent-posts__title:hover { color: var(--primary); }
.widget-recent-posts__date {
    font-size: var(--text-xs);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.widget-categories { display: flex; flex-direction: column; gap: 0; }
.widget-categories__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.625rem 0;
    border-bottom: 1px solid var(--border);
}
.widget-categories__item:last-child { border-bottom: none; }
.widget-categories__item a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--text-sm);
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition);
}
.widget-categories__item a i { color: var(--gold); }
.widget-categories__item a:hover { color: var(--primary); }
.widget-categories__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    background: var(--light);
    border-radius: var(--radius-pill);
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--text-muted);
}

.widget--notices .widget-notices { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 0.875rem; }
.widget-notices__item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: var(--text-sm);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}
.widget-notices__item:last-child { border-bottom: none; }
.widget-notices__item i { font-size: 12px; margin-top: 2px; flex-shrink: 0; }
.widget-notices__item--info    i { color: #3b82f6; }
.widget-notices__item--urgent  i { color: #ef4444; }
.widget-notices__item--exam    i { color: #a855f7; }
.widget-notices__item--event   i { color: #22c55e; }
.widget-notices__item--result  i { color: #eab308; }
.widget-notices__link { color: var(--text); text-decoration: none; display: flex; gap: 0.5rem; }
.widget-notices__link:hover { color: var(--primary); }
.widget-notices__all {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--primary);
}

.widget-tags { display: flex; flex-wrap: wrap; gap: 0.375rem; }
.widget-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    transition: all var(--transition);
}
.widget-tag:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

.widget--cta { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; border-top: none; }
.sidebar-cta { text-align: center; }
.sidebar-cta__icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}
.sidebar-cta__title {
    font-size: var(--text-xl);
    color: #fff;
    margin-bottom: 0.625rem;
}
.sidebar-cta__desc {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}
.sidebar-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gold);
    color: var(--secondary);
    padding: 0.65rem 1.5rem;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: var(--text-sm);
    text-decoration: none;
    transition: all var(--transition);
    margin-bottom: 0.75rem;
    width: 100%;
    justify-content: center;
}
.sidebar-cta__btn:hover { background: var(--gold-hover); color: var(--secondary); transform: translateY(-2px); }
.sidebar-cta__link {
    display: block;
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.65);
    text-decoration: underline;
    transition: color var(--transition);
}
.sidebar-cta__link:hover { color: var(--gold); }

/* =========================================================
   33. RESPONSIVE — NEW SECTIONS
   ========================================================= */
@media (max-width: 1024px) {
    .features-grid          { grid-template-columns: repeat(2, 1fr); }
    .placement-wrap         { grid-template-columns: 1fr; gap: 2.5rem; }
    .community-grid         { grid-template-columns: 1fr; gap: 1.5rem; }
    .news-events-wrap       { grid-template-columns: 1fr; }
    .gallery-grid           { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .hero-section {
        height: calc(100svh - var(--nav-height) - var(--breaking-height) - var(--trending-height));
        min-height: 480px;
    }
    .hero-slide__title { font-size: clamp(1.6rem, 6vw, 2.5rem); }
    .hero-swiper__prev { left: 0.75rem; }
    .hero-swiper__next { right: 0.75rem; }
    .hero-swiper__counter { display: none; }

    .prog-grid              { grid-template-columns: 1fr; }
    .features-grid          { grid-template-columns: 1fr; }
    .placement-numbers      { grid-template-columns: 1fr 1fr; }
    .faculty-grid           { grid-template-columns: repeat(2, 1fr); }
    .faculty-card           { height: 320px; }
    .steps-track            { flex-wrap: wrap; gap: 1.5rem; justify-content: flex-start; }
    .steps-track::before    { display: none; }
    .step-item              { flex: 0 0 calc(50% - 0.75rem); align-items: flex-start; text-align: left; }
    .gallery-grid           { grid-template-columns: repeat(2, 1fr); }
    .gallery-thumb--wide,
    .gallery-thumb--tall    { grid-column: auto; grid-row: auto; }

    .news-card__thumb       { width: 90px; }
    .prog-controls          { flex-direction: column; align-items: stretch; }
    .prog-search            { width: 100%; }
    .prog-search input      { width: 100%; }
}

@media (max-width: 480px) {
    .hero-slide__actions    { flex-direction: column; }
    .hero-slide__btn        { width: 100%; justify-content: center; }
    .placement-numbers      { grid-template-columns: 1fr 1fr; }
    .faculty-grid           { grid-template-columns: 1fr; }
    .gallery-grid           { grid-template-columns: repeat(2, 1fr); gap: 3px; }
    .testi-card             { padding: 1.5rem; }
}

/* ── Inner Page Templates (added to §33) ───────────── */

/* ── Single post grid ──────────────────────────────── */
@media (max-width: 1024px) {
    .single-post-grid            { grid-template-columns: 1fr; }
    .single-post-grid .sidebar   { position: static; max-height: none; }
    .share-strip--top            { display: none; }          /* hide inline share on tablet */
    .related-posts__grid         { grid-template-columns: repeat(2, 1fr); }
    .archive-layout              { grid-template-columns: 1fr; }
    .archive-layout .sidebar     { position: static; max-height: none; }
    .page-content__layout        { grid-template-columns: 1fr; }
    .page-sidebar                { position: static; max-height: none; }
}

@media (max-width: 768px) {
    /* Post hero */
    .post-hero                   { height: clamp(280px, 55vw, 420px); }
    .post-hero__title            { font-size: clamp(1.5rem, 5.5vw, 2.2rem); }
    .post-hero__meta             { flex-wrap: wrap; gap: 0.5rem; }

    /* Share strip */
    .share-strip                 { flex-wrap: wrap; gap: 0.75rem; }
    .share-strip__label          { width: 100%; }

    /* Author bio */
    .author-bio                  { flex-direction: column; text-align: center; }
    .author-bio__avatar          { margin: 0 auto; }
    .author-bio__social          { justify-content: center; }

    /* Post navigation */
    .post-navigation             { grid-template-columns: 1fr; gap: 0; }
    .post-nav__next              { border-left: none; border-top: 1px solid rgba(255,255,255,0.08); }

    /* Related posts */
    .related-posts__grid         { grid-template-columns: 1fr; }

    /* Tags */
    .post-tags                   { gap: 0.4rem; }

    /* Archive */
    .archive-header              { padding: 2rem 0; }
    .archive-header__title       { font-size: clamp(1.6rem, 6vw, 2.5rem); }
    .posts-grid                  { grid-template-columns: 1fr; }

    /* Page hero */
    .page-hero                   { min-height: 280px; }
    .page-hero__title            { font-size: clamp(1.5rem, 5.5vw, 2.2rem); }

    /* Sidebar */
    .widget                      { margin-bottom: 1.25rem; }
    .sidebar-cta                 { padding: 1.5rem; }
}

@media (max-width: 480px) {
    .post-hero__read-time        { display: none; }
    .share-strip .share-btn span { display: none; }          /* icon-only on tiny screens */
    .author-bio                  { padding: 1.25rem; }
    .post-navigation             { font-size: var(--text-sm); }
    .post-nav__title             { font-size: 0.9rem; }
    .breadcrumbs ol              { font-size: 0.75rem; }
    .page-entry-content          { font-size: var(--text-sm); }
}

/* ── CPT programme & notice singles ───────────────── */
@media (max-width: 1024px) {
    .prog-single-grid            { grid-template-columns: 1fr; }
    .prog-single__aside          { position: static; }
    .prog-curriculum             { gap: 1rem; }
    .notice-single-grid          { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .prog-hero__meta             { flex-wrap: wrap; gap: 0.4rem; }
    .prog-hero__title            { font-size: clamp(1.5rem, 5.5vw, 2.2rem); }
    .prog-overview-grid          { grid-template-columns: repeat(2, 1fr); }
    .prog-tabs__nav              { overflow-x: auto; scroll-behavior: smooth; }
    .prog-tab-btn                { white-space: nowrap; }
    .curriculum-sem-grid         { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .prog-overview-grid          { grid-template-columns: 1fr; }
    .prog-related-grid           { grid-template-columns: 1fr; }
    .notice-meta-bar             { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
}

/* ── Page templates: About, Admissions, Contact, Faculty ── */
@media (max-width: 1024px) {
    .about-leadership-grid       { grid-template-columns: repeat(2, 1fr); }
    .about-accred-logos          { grid-template-columns: repeat(3, 1fr); }
    .admissions-grid             { grid-template-columns: 1fr; }
    .contact-grid                { grid-template-columns: 1fr; }
    .faculty-filter-grid         { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .about-intro-grid            { grid-template-columns: 1fr; }
    .about-intro__img            { max-width: 100%; }
    .about-milestones            { grid-template-columns: repeat(2, 1fr); }
    .about-leadership-grid       { grid-template-columns: 1fr; }
    .about-accred-logos          { grid-template-columns: repeat(2, 1fr); }

    .admissions-timeline         { padding-left: 2rem; }
    .admissions-timeline::before { left: 0; }
    .adm-step__bubble            { left: -2rem; }

    .contact-map                 { height: 260px; }
    .contact-offices-grid        { grid-template-columns: 1fr; }

    .faculty-filter-grid         { grid-template-columns: 1fr; }
    .faculty-filter-controls     { flex-direction: column; }
    .faculty-search              { width: 100%; }
}

@media (max-width: 480px) {
    .about-milestones            { grid-template-columns: 1fr; }
    .about-accred-logos          { grid-template-columns: repeat(2, 1fr); }
    .adm-fee-table               { font-size: 0.8rem; }
    .adm-fee-table th,
    .adm-fee-table td            { padding: 0.5rem 0.4rem; }
}

/* ── Vite/React component shells ──────────────────── */
@media (max-width: 768px) {
    .react-faculty-root          { padding: 0; }
    .react-contact-root          { padding: 0; }
}

/* =========================================================
   34. CPT SINGLE — PROGRAMME
   ========================================================= */
.prog-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    background: var(--secondary);
    overflow: hidden;
}
.prog-hero--has-bg {
    background-image: var(--prog-hero-bg);
    background-size: cover;
    background-position: center;
}
.prog-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10,18,50,.92) 0%, rgba(10,18,50,.5) 100%);
}
.prog-hero__inner {
    position: relative;
    z-index: 1;
    padding-bottom: 3rem;
}
.prog-hero__level-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--secondary);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .25rem .75rem;
    border-radius: var(--radius-pill);
    margin-bottom: .75rem;
}
.prog-hero__kicker {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255,193,7,.15);
    border: 1px solid rgba(255,193,7,.3);
    color: #FFC107;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .3rem .9rem;
    border-radius: 20px;
    margin-bottom: .875rem;
}
.prog-hero__title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #fff;
    line-height: 1.15;
    margin-bottom: .75rem;
    font-weight: 800;
    letter-spacing: -.02em;
}
.prog-hero__streams {
    color: rgba(255,255,255,.7);
    font-size: var(--text-sm);
    margin-bottom: 1rem;
}
.btn--ghost-white {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .65rem 1.25rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: .875rem;
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.85);
    border: 1px solid rgba(255,255,255,.2);
    text-decoration: none;
    transition: background .2s;
}
.btn--ghost-white:hover { background: rgba(255,255,255,.2); color: #fff; }
.prog-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: rgba(255,255,255,.8);
    font-size: var(--text-sm);
    margin-bottom: 1.5rem;
}
.prog-hero__meta span { display: flex; align-items: center; gap: .4rem; }
.prog-hero__actions  { display: flex; flex-wrap: wrap; gap: .75rem; }
.prog-hero__scroll   { position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.5); animation: bounce 2s ease-in-out infinite; }

/* Overview cards */
.prog-overview { background: var(--surface); }
.prog-overview-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap: 1.25rem; }
.prog-overview-card { background: var(--surface-2); border-radius: var(--radius); padding: 1.25rem; display: flex; flex-direction: column; align-items: center; text-align: center; gap: .4rem; }
.prog-overview-card__icon { width: 42px; height: 42px; background: rgba(255,193,7,.12); border-radius: 50%; display: grid; place-items: center; color: var(--gold); font-size: 1.1rem; }
.prog-overview-card__label { font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); }
.prog-overview-card__value { font-weight: 700; color: var(--text); font-size: 1rem; }

/* Grid */
.prog-single-grid { display: grid; grid-template-columns: 1fr 300px; gap: 2rem; padding: 2.5rem 0; }
.prog-single__aside { display: flex; flex-direction: column; gap: 1.25rem; }
.prog-aside-card { background: var(--surface-2); border-radius: var(--radius); padding: 1.5rem; }
.prog-aside-cta__title { font-size: 1.05rem; color: var(--text); margin-bottom: .5rem; }
.prog-aside-cta__desc  { font-size: var(--text-sm); color: var(--text-muted); margin-bottom: 1rem; line-height: 1.6; }
.btn--full { width: 100%; justify-content: center; margin-bottom: .5rem; }
.prog-aside-facts__title, .prog-aside-contact__title { font-size: .9rem; color: var(--gold); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .75rem; }
.prog-aside-facts__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .6rem; font-size: var(--text-sm); }
.prog-aside-facts__list li { display: flex; align-items: center; gap: .6rem; color: var(--text-muted); }
.prog-aside-facts__list li i { color: var(--gold); width: 16px; }
.prog-aside-contact__link { display: flex; align-items: center; gap: .5rem; font-size: var(--text-sm); color: var(--gold); margin-top: .5rem; text-decoration: none; }
.prog-aside-contact__link:hover { text-decoration: underline; }
.aside-notices-list { list-style: none; padding: 0; margin: 0; }
.aside-notices-list li { border-bottom: 1px solid rgba(255,255,255,.06); padding: .5rem 0; display: flex; justify-content: space-between; align-items: flex-start; gap: .5rem; }
.aside-notices-list__date { font-size: .72rem; color: var(--text-muted); white-space: nowrap; }

/* Tabs */
.prog-tabs { margin-bottom: 2rem; }
.prog-tabs__nav { display: flex; gap: 0; border-bottom: 2px solid rgba(255,255,255,.08); flex-wrap: wrap; }
.prog-tab-btn { background: none; border: none; padding: .75rem 1.25rem; font-size: var(--text-sm); font-weight: 600; color: var(--text-muted); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px; display: flex; align-items: center; gap: .4rem; transition: all var(--transition); }
.prog-tab-btn:hover { color: var(--text); }
.prog-tab-btn.is-active { color: var(--gold); border-bottom-color: var(--gold); }
.prog-tab-panel { display: none; padding: 1.5rem 0; }
.prog-tab-panel.is-active { display: block; }
.prog-tab-empty { color: var(--text-muted); font-style: italic; }
.prog-tab-content { line-height: 1.8; }

/* Curriculum */
.curriculum-sem { border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); margin-bottom: .75rem; overflow: hidden; }
.curriculum-sem__header { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem; cursor: pointer; list-style: none; background: var(--surface-2); }
.curriculum-sem__header::-webkit-details-marker { display: none; }
.curriculum-sem__number { font-weight: 700; color: var(--gold); font-size: .85rem; white-space: nowrap; }
.curriculum-sem__title  { flex: 1; font-weight: 600; }
.curriculum-sem__arrow  { margin-left: auto; transition: transform var(--transition); }
.curriculum-sem[open] .curriculum-sem__arrow { transform: rotate(180deg); }
.curriculum-sem__body   { padding: 1rem 1.25rem; }
.curriculum-sem-grid    { display: grid; grid-template-columns: repeat(2, 1fr); gap: .5rem; }
.curriculum-sub { background: var(--surface); border-radius: 6px; padding: .5rem .75rem; display: flex; align-items: center; gap: .5rem; font-size: .85rem; }
.curriculum-sub__code   { color: var(--gold); font-weight: 700; font-size: .75rem; min-width: 64px; }
.curriculum-sub__name   { flex: 1; }
.curriculum-sub__credits { color: var(--text-muted); font-size: .72rem; white-space: nowrap; }

/* Faculty inline cards */
.prog-section-title { font-size: 1.2rem; margin-bottom: 1.25rem; display: flex; align-items: center; gap: .6rem; }
.prog-section-title i { color: var(--gold); }
.prog-faculty-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 1rem; margin-bottom: 2.5rem; }
.prog-faculty-card { display: flex; gap: 1rem; background: var(--surface-2); border-radius: var(--radius); padding: 1rem; align-items: flex-start; }
.prog-faculty-card__img { width: 60px; height: 60px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.prog-faculty-card__img img { width: 100%; height: 100%; object-fit: cover; }
.prog-faculty-card__img--placeholder { background: rgba(255,193,7,.1); display: grid; place-items: center; color: var(--gold); font-size: 1.4rem; }
.prog-faculty-card__body { display: flex; flex-direction: column; gap: .2rem; }
.prog-faculty-card__name a { color: var(--text); font-weight: 700; text-decoration: none; }
.prog-faculty-card__name a:hover { color: var(--gold); }
.prog-faculty-card__role, .prog-faculty-card__dept { font-size: .78rem; color: var(--text-muted); }
.prog-faculty-card__email { font-size: .72rem; color: var(--gold); text-decoration: none; }

/* Related programmes */
.prog-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.prog-card--mini .prog-card__thumb { height: 120px; overflow: hidden; border-radius: var(--radius) var(--radius) 0 0; }
.prog-card--mini .prog-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.prog-card--mini .prog-card__body { padding: .75rem; }
.prog-card--mini .prog-card__level { font-size: .7rem; color: var(--gold); font-weight: 700; text-transform: uppercase; }
.prog-card--mini .prog-card__title { font-size: .9rem; margin: .25rem 0; }
.prog-card--mini .prog-card__title a { color: var(--text); text-decoration: none; }
.prog-card--mini .prog-card__dur    { font-size: .75rem; color: var(--text-muted); }

/* Fee simple */
.prog-fee-simple { display: flex; flex-direction: column; gap: 1.5rem; padding: 1.5rem 0; }
.prog-fee-simple__card { display: flex; align-items: center; gap: 1.5rem; background: linear-gradient(135deg, rgba(255,193,7,.1), rgba(255,193,7,.04)); border: 1px solid rgba(255,193,7,.2); border-radius: var(--radius); padding: 1.5rem 2rem; }
.prog-fee-simple__icon { width: 56px; height: 56px; background: rgba(255,193,7,.15); border-radius: 50%; display: grid; place-items: center; color: var(--gold); font-size: 1.5rem; flex-shrink: 0; }
.prog-fee-simple__amount { font-size: 2rem; font-weight: 800; color: var(--text); display: block; }
.prog-fee-simple__freq   { font-size: var(--text-sm); color: var(--text-muted); display: block; margin-top: .2rem; }
.prog-fee-table table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.prog-fee-table th { background: var(--surface-2); color: var(--text-muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; padding: .65rem 1rem; text-align: left; border-bottom: 2px solid rgba(255,255,255,.08); }
.prog-fee-table td { padding: .7rem 1rem; border-bottom: 1px solid rgba(255,255,255,.05); color: var(--text); }
.prog-fee-table tr:last-child td { border-bottom: none; }
.prog-fee-simple__note { display: flex; align-items: flex-start; gap: .5rem; font-size: .82rem; color: var(--text-muted); background: var(--surface-2); border-radius: var(--radius); padding: .875rem 1rem; }
.prog-fee-simple__note i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }

/* Related programme mini-cards (updated markup) */
.prog-related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 1rem; }
.prog-card--mini { display: flex; align-items: center; gap: 1rem; background: var(--surface-2); border-radius: var(--radius); padding: 1rem 1.25rem; text-decoration: none; color: var(--text); border: 1px solid rgba(255,255,255,.06); transition: border-color .2s, transform .2s; }
.prog-card--mini:hover { border-color: var(--gold); transform: translateX(4px); }
.prog-card__icon-wrap { width: 40px; height: 40px; background: rgba(255,193,7,.1); border-radius: 8px; display: grid; place-items: center; color: var(--gold); font-size: 1rem; flex-shrink: 0; }
.prog-card__meta-row { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: .25rem; }
.prog-card__meta-row span { font-size: .75rem; color: var(--text-muted); display: flex; align-items: center; gap: .3rem; }
.prog-card__arrow { color: rgba(255,255,255,.25); margin-left: auto; flex-shrink: 0; transition: color .2s; }
.prog-card--mini:hover .prog-card__arrow { color: var(--gold); }

/* Full-width button modifier */
.btn--full { width: 100%; justify-content: center; }

/* =========================================================
   35. CPT SINGLE — NOTICE
   ========================================================= */
.notice-hero { padding: 3rem 0 2rem; border-bottom: 3px solid var(--notice-accent, var(--gold)); }
.notice-hero__badges { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; flex-wrap: wrap; }
.notice-hero__title { font-size: clamp(1.5rem, 4vw, 2.4rem); line-height: 1.25; margin-bottom: 1rem; }
.notice-meta-bar { display: flex; flex-wrap: wrap; gap: 1rem; font-size: var(--text-sm); color: var(--text-muted); align-items: center; }
.notice-meta-bar span { display: flex; align-items: center; gap: .4rem; }
.notice-expiry { color: #f97316; }
.notice-single-grid { display: grid; grid-template-columns: 1fr 280px; gap: 2rem; }
.notice-alert { display: flex; align-items: center; gap: .75rem; background: rgba(249,115,22,.1); border: 1px solid #f97316; border-radius: var(--radius); padding: 1rem 1.25rem; color: #f97316; font-size: var(--text-sm); margin-bottom: 1.5rem; }
.notice-body { line-height: 1.85; }
.notice-attachments { margin-top: 2rem; border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem; }
.notice-attachments__title { font-size: 1rem; margin-bottom: 1rem; display: flex; align-items: center; gap: .5rem; }
.notice-attachments__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.notice-attachments__item { display: flex; align-items: center; gap: .75rem; background: var(--surface-2); border-radius: var(--radius); padding: .75rem 1rem; font-size: var(--text-sm); }
.notice-attachments__item i { color: var(--gold); font-size: 1.2rem; }
.notice-attachments__link { flex: 1; color: var(--text); text-decoration: none; }
.notice-attachments__link:hover { color: var(--gold); }
.notice-attachments__ext { font-size: .7rem; background: rgba(255,193,7,.15); color: var(--gold); padding: .15rem .5rem; border-radius: 4px; font-weight: 700; }
.notice-back-link a { color: var(--gold); text-decoration: none; display: inline-flex; align-items: center; gap: .4rem; }
.notice-meta-widget .widget-title { color: var(--gold); }
.notice-meta-dl { display: grid; grid-template-columns: auto 1fr; gap: .5rem 1rem; font-size: var(--text-sm); }
.notice-meta-dl dt { font-weight: 600; color: var(--text-muted); }
.notice-meta-dl dd { margin: 0; }
.notice-meta-dl__expired { color: #dc3545; }
.notice-single__sidebar { display: flex; flex-direction: column; gap: 1.25rem; }

/* =========================================================
   36. PAGE TEMPLATES — ABOUT, ADMISSIONS, CONTACT, FACULTY
   ========================================================= */

/* About stats */
.about-stats { background: var(--surface-2); }
.about-stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); gap: 1.5rem; text-align: center; }
.about-stat-item__num { display: block; font-size: 2.4rem; font-weight: 800; color: var(--gold); line-height: 1; }
.about-stat-item__label { font-size: .8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; }

/* About intro */
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-intro__img { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.about-intro__img img { width: 100%; border-radius: var(--radius-lg); }
.about-intro__img-badge { position: absolute; bottom: 1.5rem; left: 1.5rem; background: var(--gold); color: var(--secondary); padding: .5rem 1rem; border-radius: var(--radius-pill); font-weight: 700; font-size: .85rem; display: flex; align-items: center; gap: .4rem; }

/* Vision / Mission */
.about-vm-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.about-vm-card { background: var(--surface-2); border-radius: var(--radius-lg); padding: 2rem; }
.about-vm-card__icon { width: 52px; height: 52px; background: rgba(255,193,7,.12); border-radius: 50%; display: grid; place-items: center; color: var(--gold); font-size: 1.4rem; margin-bottom: 1rem; }
.about-vm-card h3 { font-size: 1.1rem; margin-bottom: .75rem; }
.about-vm-card p  { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.7; }
.about-vm-values  { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .4rem; font-size: var(--text-sm); color: var(--text-muted); }
.about-vm-values li { display: flex; align-items: center; gap: .5rem; }
.about-vm-values li i { color: var(--gold); }

/* Milestones */
.about-milestones { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.about-milestone { background: var(--surface-2); border-radius: var(--radius); padding: 1.25rem; border-top: 3px solid var(--gold); }
.about-milestone__year { font-size: 1.4rem; font-weight: 800; color: var(--gold); display: block; margin-bottom: .4rem; }
.about-milestone__text { font-size: .85rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* Leadership */
.about-leadership-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.about-leader-card { background: var(--surface-2); border-radius: var(--radius-lg); overflow: hidden; }
.about-leader-card__img { height: 200px; overflow: hidden; }
.about-leader-card__img img { width: 100%; height: 100%; object-fit: cover; }
.about-leader-card__img--placeholder { background: rgba(255,193,7,.08); display: grid; place-items: center; color: var(--gold); font-size: 3rem; }
.about-leader-card__body { padding: 1.25rem; }
.about-leader-card__name a { color: var(--text); text-decoration: none; font-weight: 700; display: block; }
.about-leader-card__name a:hover { color: var(--gold); }
.about-leader-card__role { font-size: .8rem; color: var(--gold); display: block; margin: .2rem 0 .5rem; }
.about-leader-card__msg  { font-size: .82rem; color: var(--text-muted); line-height: 1.6; }
.about-leader-card__email { color: var(--gold); font-size: 1rem; }

/* Accreditations */
.about-accred-logos { display: grid; grid-template-columns: repeat(6,1fr); gap: 1rem; }
.about-accred-item { background: var(--surface-2); border-radius: var(--radius); padding: 1.25rem; text-align: center; border: 1px solid rgba(255,193,7,.12); transition: border-color var(--transition); }
.about-accred-item:hover { border-color: var(--gold); }
.about-accred-item__name { font-size: 1.4rem; font-weight: 800; color: var(--gold); }
.about-accred-item__desc { font-size: .72rem; color: var(--text-muted); margin: .25rem 0; line-height: 1.4; }
.about-accred-item__grade { font-size: .72rem; background: rgba(255,193,7,.12); color: var(--gold); padding: .15rem .5rem; border-radius: 4px; display: inline-block; }

/* Admissions */
.admissions-grid { display: grid; grid-template-columns: 1fr 300px; gap: 2.5rem; align-items: start; }
.admissions-dates .adm-dates-card { background: var(--surface-2); border-radius: var(--radius-lg); padding: 1.5rem; position: sticky; top: calc(var(--nav-height) + 1.5rem); }
.adm-dates-card h3 { font-size: 1rem; display: flex; align-items: center; gap: .5rem; margin-bottom: 1rem; }
.adm-dates-list { list-style: none; padding: 0; margin: 0 0 1.25rem; display: flex; flex-direction: column; gap: .75rem; }
.adm-dates-list li { display: flex; justify-content: space-between; font-size: .85rem; border-bottom: 1px solid rgba(255,255,255,.06); padding-bottom: .6rem; }
.adm-dates-list__label { color: var(--text-muted); }
.adm-dates-list__date  { color: var(--gold); font-weight: 600; white-space: nowrap; }

/* React AdmissionsTimeline CSS */
.admissions-timeline { padding-left: 3rem; position: relative; }
.adm-step { position: relative; margin-bottom: 1rem; }
.adm-step__connector { position: absolute; left: -2.5rem; top: 3.5rem; bottom: -1rem; border-left: 2px dashed; opacity: .3; }
.adm-step__header { width: 100%; background: var(--surface-2); border: 1px solid rgba(255,255,255,.07); border-radius: var(--radius); padding: 1rem 1.25rem; cursor: pointer; display: flex; align-items: center; gap: 1rem; text-align: left; transition: border-color var(--transition); }
.adm-step--open .adm-step__header { border-color: rgba(255,193,7,.3); }
.adm-step__header:hover { border-color: rgba(255,193,7,.2); }
.adm-step__bubble { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; color: var(--secondary); font-size: 1rem; position: relative; flex-shrink: 0; }
.adm-step__number { position: absolute; bottom: -4px; right: -4px; background: var(--secondary); color: var(--gold); font-size: .6rem; font-weight: 800; padding: 1px 4px; border-radius: 10px; }
.adm-step__info { flex: 1; display: flex; flex-direction: column; }
.adm-step__title { font-weight: 700; color: var(--text); }
.adm-step__short { font-size: .8rem; color: var(--text-muted); }
.adm-step__deadline { font-size: .78rem; color: var(--gold); white-space: nowrap; display: flex; align-items: center; gap: .3rem; }
.adm-step__toggle-icon { color: var(--text-muted); transition: transform var(--transition); }
.adm-step--open .adm-step__toggle-icon { transform: rotate(180deg); }
.adm-step__detail { background: var(--surface); border: 1px solid rgba(255,193,7,.15); border-top: none; border-radius: 0 0 var(--radius) var(--radius); padding: 1rem 1.25rem; font-size: var(--text-sm); color: var(--text-muted); line-height: 1.7; }

/* Downloads */
.adm-downloads-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 1rem; }
.adm-download-card { display: flex; align-items: center; gap: 1rem; background: var(--surface-2); border: 1px solid rgba(255,255,255,.06); border-radius: var(--radius); padding: 1rem 1.25rem; text-decoration: none; color: var(--text); transition: border-color var(--transition), transform var(--transition); }
.adm-download-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.adm-download-card > i:first-child { font-size: 1.6rem; color: #dc3545; flex-shrink: 0; }
.adm-download-card__label { flex: 1; font-size: .88rem; font-weight: 600; }
.adm-download-card__ext { font-size: .7rem; background: rgba(255,255,255,.07); padding: .15rem .4rem; border-radius: 4px; color: var(--text-muted); }
.adm-download-card__arrow { color: var(--gold); margin-left: auto; }
.adm-fees-note { font-size: var(--text-sm); color: var(--text-muted); margin-top: 1rem; display: flex; align-items: flex-start; gap: .5rem; }
.adm-fees-note i { color: var(--gold); margin-top: .1rem; }

/* FAQ */
.adm-faq-list { max-width: 860px; margin: 0 auto; }
.adm-faq-item { border-bottom: 1px solid rgba(255,255,255,.08); }
.adm-faq-item__q { width: 100%; background: none; border: none; padding: 1.25rem 0; display: flex; align-items: center; justify-content: space-between; gap: 1rem; cursor: pointer; text-align: left; font-size: 1rem; font-weight: 600; color: var(--text); }
.adm-faq-item__icon { transition: transform .3s; flex-shrink: 0; color: var(--gold); }
.adm-faq-item.is-open .adm-faq-item__icon { transform: rotate(180deg); }
.adm-faq-item__a { display: none; padding-bottom: 1.25rem; }
.adm-faq-item__a p { color: var(--text-muted); font-size: var(--text-sm); line-height: 1.75; }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; }
.contact-section-title { font-size: 1.3rem; margin-bottom: 1.5rem; display: flex; align-items: center; gap: .6rem; }
.contact-section-title i { color: var(--gold); }
.contact-offices-grid { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 1.5rem; }
.contact-office { display: flex; gap: 1rem; background: var(--surface-2); border-radius: var(--radius); padding: 1.25rem; font-style: normal; }
.contact-office__icon { width: 40px; height: 40px; background: rgba(255,193,7,.1); border-radius: 50%; display: grid; place-items: center; color: var(--gold); font-size: 1rem; flex-shrink: 0; }
.contact-office__body strong { display: block; margin-bottom: .25rem; }
.contact-office__body p  { font-size: .85rem; color: var(--text-muted); margin-bottom: .4rem; }
.contact-office__body a  { font-size: .85rem; color: var(--gold); text-decoration: none; display: flex; align-items: center; gap: .4rem; }
.contact-office__hours   { font-size: .78rem; color: var(--text-muted); display: flex; align-items: center; gap: .4rem; margin-top: .3rem; }
.contact-social { margin-bottom: 1.5rem; }
.contact-social h3 { font-size: .9rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .75rem; }
.contact-social-links { display: flex; gap: .75rem; flex-wrap: wrap; }
.contact-social-link { width: 40px; height: 40px; background: var(--surface-2); border-radius: 50%; display: grid; place-items: center; color: var(--text); text-decoration: none; transition: background var(--transition), color var(--transition); }
.contact-social-link:hover { background: var(--gold); color: var(--secondary); }
.contact-quick-cta { display: flex; flex-direction: column; gap: .75rem; }
.contact-quick-cta__btn { display: flex; align-items: center; gap: 1rem; background: var(--surface-2); border-radius: var(--radius); padding: 1rem 1.25rem; color: var(--text); text-decoration: none; border: 1px solid rgba(255,255,255,.06); transition: border-color var(--transition); }
.contact-quick-cta__btn:hover { border-color: var(--gold); }
.contact-quick-cta__btn--wa { border-color: rgba(37,211,102,.2); }
.contact-quick-cta__btn--wa:hover { border-color: #25d366; }
.contact-quick-cta__btn > i { font-size: 1.5rem; color: var(--gold); }
.contact-quick-cta__btn--wa > i { color: #25d366; }
.contact-quick-cta__btn small { display: block; font-size: .72rem; color: var(--text-muted); }
.contact-map-section { height: 420px; background: var(--surface); }
.contact-map { height: 100%; position: relative; display: flex; align-items: center; justify-content: center; }
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.contact-map__trigger { background: var(--surface-2); border: 2px dashed rgba(255,193,7,.3); border-radius: var(--radius-lg); padding: 2rem 3rem; cursor: pointer; display: flex; flex-direction: column; align-items: center; gap: .75rem; color: var(--text-muted); transition: border-color var(--transition); }
.contact-map__trigger:hover { border-color: var(--gold); color: var(--gold); }
.contact-map__trigger i { font-size: 2.5rem; }

/* =========================================================
   37. REACT COMPONENT STYLES
   ========================================================= */

/* FacultyFilter */
.faculty-stats-bar { display: flex; gap: 2rem; justify-content: center; margin-bottom: 2rem; background: var(--surface-2); border-radius: var(--radius); padding: 1.25rem; }
.faculty-stat { text-align: center; }
.faculty-stat strong { display: block; font-size: 1.8rem; font-weight: 800; color: var(--gold); }
.faculty-stat span { font-size: .78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; }
.faculty-filter-controls { display: flex; flex-wrap: wrap; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.faculty-search { position: relative; flex: 1; min-width: 240px; }
.faculty-search > i { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--text-muted); pointer-events: none; }
.faculty-search input { width: 100%; padding: .65rem 2.5rem .65rem 2.5rem; background: var(--surface-2); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-pill); color: var(--text); font-size: var(--text-sm); }
.faculty-search input:focus { outline: none; border-color: var(--gold); }
.faculty-search__clear { position: absolute; right: .75rem; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--text-muted); cursor: pointer; }
.faculty-dept-tabs { display: flex; gap: .4rem; flex-wrap: wrap; }
.faculty-dept-tab { background: var(--surface-2); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-pill); padding: .35rem .85rem; font-size: .78rem; font-weight: 600; cursor: pointer; color: var(--text-muted); transition: all var(--transition); }
.faculty-dept-tab.is-active, .faculty-dept-tab:hover { background: var(--gold); color: var(--secondary); border-color: var(--gold); }
.faculty-toolbar-right { display: flex; align-items: center; gap: .75rem; margin-left: auto; }
.faculty-count { font-size: .8rem; color: var(--text-muted); }
.faculty-view-toggle { display: flex; background: var(--surface-2); border-radius: var(--radius); overflow: hidden; }
.view-btn { background: none; border: none; padding: .4rem .65rem; color: var(--text-muted); cursor: pointer; }
.view-btn.is-active { background: var(--gold); color: var(--secondary); }
.faculty-filter-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 1.25rem; }
.faculty-filter-grid--list { grid-template-columns: 1fr; }
.faculty-card-react { background: var(--surface-2); border-radius: var(--radius-lg); overflow: hidden; transition: transform var(--transition), box-shadow var(--transition); }
.faculty-card-react:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.4); }
.faculty-filter-grid--list .faculty-card-react { display: flex; align-items: center; padding: 1rem; border-radius: var(--radius); }
.faculty-card-react__img-wrap { aspect-ratio: 1; overflow: hidden; }
.faculty-filter-grid--list .faculty-card-react__img-wrap { width: 70px; height: 70px; border-radius: 50%; flex-shrink: 0; margin-right: 1rem; }
.faculty-card-react__img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.faculty-card-react__placeholder { width: 100%; aspect-ratio: 1; background: rgba(255,193,7,.08); display: grid; place-items: center; color: var(--gold); font-size: 2.5rem; }
.faculty-filter-grid--list .faculty-card-react__placeholder { aspect-ratio: unset; height: 70px; border-radius: 50%; font-size: 1.5rem; }
.faculty-card-react__body { padding: 1rem; display: flex; flex-direction: column; gap: .2rem; }
.faculty-filter-grid--list .faculty-card-react__body { padding: 0; flex: 1; }
.faculty-card-react__name { font-weight: 700; color: var(--text); text-decoration: none; font-size: .95rem; }
.faculty-card-react__name:hover { color: var(--gold); }
.faculty-card-react__role  { font-size: .78rem; color: var(--gold); }
.faculty-card-react__dept  { font-size: .75rem; color: var(--text-muted); }
.faculty-card-react__quals { font-size: .72rem; color: var(--text-muted); }
.faculty-card-react__links { display: flex; gap: .5rem; margin-top: .4rem; }
.faculty-card-react__links a { width: 28px; height: 28px; background: rgba(255,255,255,.06); border-radius: 50%; display: grid; place-items: center; color: var(--text-muted); font-size: .8rem; text-decoration: none; transition: background var(--transition), color var(--transition); }
.faculty-card-react__links a:hover { background: var(--gold); color: var(--secondary); }
.faculty-empty { text-align: center; padding: 4rem 2rem; color: var(--text-muted); }
.faculty-empty i { font-size: 3rem; color: rgba(255,193,7,.2); display: block; margin-bottom: 1rem; }

/* ContactForm */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.cf-row { display: grid; gap: 1rem; }
.cf-row--2 { grid-template-columns: 1fr 1fr; }
.cf-field { display: flex; flex-direction: column; gap: .4rem; }
.cf-field label { font-size: .85rem; font-weight: 600; color: var(--text-muted); }
.cf-field label span { color: #dc3545; }
.cf-field input, .cf-field select, .cf-field textarea {
    background: var(--surface-2);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius);
    color: var(--text);
    padding: .65rem 1rem;
    font-size: var(--text-sm);
    font-family: inherit;
    transition: border-color var(--transition);
    width: 100%;
}
.cf-field input:focus, .cf-field select:focus, .cf-field textarea:focus { outline: none; border-color: var(--gold); }
.cf-field textarea { resize: vertical; }
.cf-field--error input, .cf-field--error select, .cf-field--error textarea { border-color: #dc3545; }
.cf-error { font-size: .78rem; color: #dc3545; display: flex; align-items: center; gap: .3rem; }
.cf-char-count { font-size: .72rem; color: var(--text-muted); text-align: right; }
.cf-api-error { background: rgba(220,53,69,.1); border: 1px solid #dc3545; border-radius: var(--radius); padding: .75rem 1rem; color: #dc3545; font-size: var(--text-sm); display: flex; align-items: center; gap: .5rem; }
.cf-submit { align-self: flex-start; }
.cf-privacy { font-size: .75rem; color: var(--text-muted); display: flex; align-items: center; gap: .4rem; margin-top: -.5rem; }
.cf-success { text-align: center; padding: 3rem 2rem; background: var(--surface-2); border-radius: var(--radius-lg); border: 1px solid rgba(25,135,84,.3); }
.cf-success__icon { font-size: 3rem; color: #198754; margin-bottom: 1rem; }
.cf-success h3 { font-size: 1.4rem; margin-bottom: .5rem; }
.cf-success p { color: var(--text-muted); margin-bottom: 1.5rem; }

/* =========================================================
   FRONT-PAGE — HOMEPAGE SECTIONS
   ========================================================= */

/* ── Section utility ──────────────────────────────────────── */
.section {
    padding: 3.5rem 0;
}
.section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2rem;
}
.section-kicker {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-dark);
    background: rgba(201,168,76,.1);
    border: 1px solid rgba(201,168,76,.25);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    margin-bottom: 0.75rem;
}
.section-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}
.section-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.65;
}
.section-foot {
    text-align: center;
    margin-top: 2.5rem;
}
.btn--outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.5rem;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.875rem;
    transition: all var(--transition);
}
.btn--outline-dark:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn--lg {
    padding: 0.9rem 2rem;
    font-size: 1rem;
}


/* ── Hero Slider ─────────────────────────────────────────── */
.hero-slider {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 480px;
    max-height: 720px;
    overflow: hidden;
    background: var(--secondary);
}
.hero-track {
    display: flex;
    height: 100%;
    transition: none;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
}
.hero-slide--active {
    opacity: 1;
    pointer-events: auto;
}
.hero-slide__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    transition: transform 8s ease;
}
.hero-slide--active .hero-slide__bg {
    transform: scale(1);
}
.hero-slide__bg--video {
    background: #000;
}
.hero-slide__bg--video iframe,
.hero-slide__bg--video video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
.hero-slide__bg--fallback {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}
.hero-slide__overlay {
    position: absolute;
    inset: 0;
}
.hero-slide__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 6rem;
    z-index: 2;
}
.hero-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(255,193,7,.15);
    border: 1px solid rgba(255,193,7,.4);
    padding: 5px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 1rem;
    width: fit-content;
}
.hero-heading {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    max-width: 720px;
    margin-bottom: 1rem;
    text-shadow: 0 2px 16px rgba(0,0,0,.4);
}
.hero-heading__accent {
    color: var(--gold);
}
.hero-subheading {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,.88);
    max-width: 600px;
    margin-bottom: 2rem;
    line-height: 1.6;
}
.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Prev / Next arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.3);
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    transition: background var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}
.hero-arrow:hover {
    background: rgba(255,255,255,.3);
}
.hero-arrow--prev { left: 1.5rem; }
.hero-arrow--next { right: 1.5rem; }

/* Dot pagination */
.hero-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
}
.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-pill);
    background: rgba(255,255,255,.4);
    border: none;
    cursor: pointer;
    transition: width 0.3s ease, background 0.3s ease;
    padding: 0;
}
.hero-dot--active {
    width: 24px;
    background: var(--gold);
}


/* ── Hero fallback (no slides) ───────────────────────────── */
.hero-fallback {
    position: relative;
    min-height: 560px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: flex-end;
    padding-bottom: 5rem;
}
.hero-fallback__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 40%, rgba(255,193,7,.08) 0%, transparent 60%);
}
.hero-fallback__content {
    position: relative;
    z-index: 1;
}


/* ── Stats Bar ───────────────────────────────────────────── */
.stats-bar {
    background: transparent;
    position: relative;
    z-index: 20;
    padding: 0 0 0;
    margin-top: -64px;
    margin-bottom: 2.5rem;
}
.stats-bar__inner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.18);
    overflow: hidden;
    border-top: 4px solid var(--gold);
}
.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.6rem 1.5rem;
    border-right: 1px solid rgba(0,45,91,.07);
    transition: background var(--transition);
    background: #fff;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(0,45,91,.03); }
.stat-item__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0,45,91,.08), rgba(0,45,91,.14));
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,45,91,.12);
}
.stat-item__body {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}
.stat-item__value {
    font-size: 1.65rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
}
.stat-item__label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    white-space: nowrap;
}


/* ── Programmes Grid ─────────────────────────────────────── */
.fp-section {
    background: var(--light);
}
.prog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}
.prog-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
}
.prog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.prog-card__thumb {
    height: 160px;
    overflow: hidden;
    background: var(--light);
}
.prog-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.prog-card:hover .prog-card__thumb img {
    transform: scale(1.06);
}
.prog-card__thumb--icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary);
    background: linear-gradient(135deg, #e8f0fe 0%, #dde8f8 100%);
}
.prog-card__body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}
.prog-card__cat {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: var(--radius-pill);
    border: 1px solid;
    width: fit-content;
}
.prog-card__title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}
.prog-card__title a {
    color: var(--primary);
    text-decoration: none;
}
.prog-card__title a:hover {
    color: var(--gold-dark);
}
.prog-card__excerpt {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}
.prog-card__meta {
    list-style: none;
    padding: 0;
    margin: 0.25rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 1rem;
    font-size: 0.78rem;
    color: var(--text-muted);
}
.prog-card__meta li {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.prog-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: auto;
    padding-top: 0.75rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    border-top: 1px solid var(--border);
}
.prog-card__cta:hover {
    color: var(--gold-dark);
    gap: 0.5rem;
}


/* ── Why Section ─────────────────────────────────────────── */
.why-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}
.why-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,45,91,.04) 0%, transparent 70%);
    pointer-events: none;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}
.why-card {
    padding: 1.4rem 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: var(--white);
    transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.why-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: rgba(0,45,91,.15);
}
.why-card__icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(0,45,91,.07);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    transition: background var(--transition);
}
.why-card:hover .why-card__icon {
    background: var(--primary);
    color: var(--white);
}
.why-card__title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.why-card__desc {
    font-size: 0.775rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}


/* ── Notices + Events ────────────────────────────────────── */
.ne-section {
    background: var(--light);
}
.ne-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.ne-col {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    overflow: hidden;
}
.ne-col__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border);
    background: var(--primary);
}
.ne-col__title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}
.ne-col__all {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    transition: opacity var(--transition);
}
.ne-col__all:hover { opacity: 0.8; }

.notice-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.notice-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
}
.notice-item:last-child { border-bottom: none; }
.notice-item:hover { background: var(--light); }
.notice-item__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 5px;
    flex-shrink: 0;
}
.notice-item__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.notice-item__title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.notice-item__title:hover { color: var(--primary); }
.notice-item__date {
    font-size: 0.7rem;
    color: var(--text-muted);
}
.notice-item__type {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    flex-shrink: 0;
    margin-top: 3px;
}

.event-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.event-card-sm {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1.25rem;
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
}
.event-card-sm:last-child { border-bottom: none; }
.event-card-sm:hover { background: var(--light); }
.event-card-sm__img {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    flex-shrink: 0;
}
.event-card-sm__img--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0,45,91,.08) 0%, rgba(0,45,91,.12) 100%);
    color: var(--primary);
    font-size: 1.4rem;
}
.event-card-sm__body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.event-card-sm__title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.event-card-sm__title:hover { color: var(--primary); }
.event-card-sm__date {
    font-size: 0.72rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}


/* ── Testimonials ────────────────────────────────────────── */
.testi-section {
    background: var(--secondary);
    position: relative;
    overflow: hidden;
}
.testi-section::before {
    content: '\201C';
    position: absolute;
    top: -1rem;
    left: 2rem;
    font-size: 18rem;
    color: rgba(255,255,255,.03);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}
.testi-section .section-kicker {
    color: var(--gold);
    background: rgba(255,193,7,.12);
    border-color: rgba(255,193,7,.3);
}
.testi-section .section-title {
    color: var(--white);
}
.testi-swiper {
    padding-bottom: 3rem !important;
}
.testi-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-md);
    padding: 2rem;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: background var(--transition), transform var(--transition);
}
.testi-card:hover {
    background: rgba(255,255,255,.1);
    transform: translateY(-3px);
}
.testi-card__stars {
    display: flex;
    gap: 4px;
    color: var(--gold);
    font-size: 0.9rem;
}
.testi-card__quote {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.75;
    color: rgba(255,255,255,.85);
    font-style: italic;
    flex: 1;
}
.testi-card__quote p { margin: 0; }
.testi-card__author {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,.1);
}
.testi-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(255,193,7,.4);
}
.testi-card__avatar--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}
.testi-card__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.testi-card__name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
}
.testi-card__meta {
    font-size: 0.75rem;
    color: rgba(255,255,255,.55);
}
.testi-card__placement {
    font-size: 0.75rem;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 4px;
}
.testi-section .swiper-pagination-bullet {
    background: rgba(255,255,255,.4);
    opacity: 1;
}
.testi-section .swiper-pagination-bullet-active {
    background: var(--gold);
    width: 20px;
    border-radius: var(--radius-pill);
}


/* ── Recruiters ──────────────────────────────────────────── */
.recruiters-section {
    background: var(--white);
    border-top: 1px solid var(--border);
}
.recruiters-swiper {
    padding: 1rem 0;
}
.recruiter-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    height: 80px;
    background: var(--white);
    transition: box-shadow var(--transition), transform var(--transition);
}
.recruiter-logo:hover {
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}
.recruiter-logo img {
    max-height: 50px;
    max-width: 130px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter var(--transition), opacity var(--transition);
}
.recruiter-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}


/* ── Responsive: Front-page ──────────────────────────────── */
@media (max-width: 1024px) {
    .stats-bar__inner { grid-template-columns: repeat(3, 1fr); }
    .stat-item:nth-child(3) { border-right: none; }
    .ne-grid { grid-template-columns: 1fr; }
}
@media (max-width: 1024px) {
    .section { padding: 2.5rem 0; }
    .section-head { margin-bottom: 1.75rem; }
    .fp-explore__header { padding: 1.75rem 1rem 1.25rem; }
    .fp-lens__header { padding: 2rem 1rem 1.25rem; }
    .legacy-section { padding: 2rem 0; }
}
@media (max-width: 768px) {
    .section { padding: 2.5rem 0; }
    .hero-slider { height: 65vh; min-height: 380px; }
    .hero-heading { font-size: clamp(1.6rem, 6vw, 2.4rem); }
    .hero-slide__content { padding-bottom: 4rem; }
    .hero-arrow { width: 36px; height: 36px; font-size: 0.9rem; }
    .hero-arrow--prev { left: 0.75rem; }
    .hero-arrow--next { right: 0.75rem; }
    .stats-bar { margin-top: -48px; }
    .stats-bar__inner { grid-template-columns: repeat(2, 1fr); border-radius: 12px; }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(3) { border-right: 1px solid rgba(0,45,91,.07); }
    .stat-item:nth-child(4) { border-right: none; }
    .why-grid { grid-template-columns: repeat(3, 1fr); }
    .prog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .stats-bar { margin-top: -32px; margin-bottom: 1.5rem; }
    .stats-bar__inner { grid-template-columns: repeat(2, 1fr); border-radius: 10px; }
    .stat-item { padding: 1.1rem 1rem; gap: 0.75rem; }
    .stat-item__icon { width: 38px; height: 38px; font-size: 1rem; }
    .stat-item__value { font-size: 1.3rem; }
}
@media (max-width: 480px) {
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { width: 100%; justify-content: center; }
    .stats-bar__inner { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .prog-grid { grid-template-columns: 1fr; }
    .ne-grid { grid-template-columns: 1fr; }
}


/* =============================================================
   FRONT PAGE — LEGACY / IMPACT SECTION
   ============================================================= */
.legacy-section {
    background: linear-gradient(145deg, #0a2d00 0%, #051800 55%, #0a3d20 100%);
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}
.legacy-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 10% 60%, rgba(255,193,7,0.10) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 15%, rgba(30,90,160,0.35) 0%, transparent 55%);
    pointer-events: none;
}
.legacy-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 36px 36px;
    pointer-events: none;
}
.legacy-section__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}
.legacy-section__head {
    text-align: center;
    margin-bottom: 0;
}
.legacy-section__kicker {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--gold);
    border: 1px solid rgba(255,193,7,0.35);
    border-radius: 999px;
    padding: 0.3rem 1.1rem;
    margin-bottom: 1.25rem;
}
.legacy-section__title {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}
.legacy-section__title em {
    font-style: normal;
    color: var(--gold);
}
.legacy-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.legacy-stats--full {
    grid-template-columns: repeat(6, 1fr);
    width: 100%;
}
.legacy-stat {
    text-align: center;
    padding: 1.25rem 1rem 1rem;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}
.legacy-stat:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.legacy-stat__icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,193,7,0.12), rgba(255,193,7,0.22));
    border: 2px solid rgba(255,193,7,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold);
    margin: 0 auto 0.75rem;
    box-shadow: 0 4px 14px rgba(255,193,7,0.15);
}
.legacy-stat__num {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 0.4rem;
}
.legacy-stat__title {
    display: block;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 0.75rem;
}
.legacy-stat__desc {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
}

/* ── MoU Partner Country Flags ─────────────────────────── */
.mou-flags {
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    margin-top: 0.75rem;
    flex-wrap: nowrap;
}
@keyframes flag-float {
    0%, 100% { transform: translateY(0) scale(1); filter: drop-shadow(0 0 0px transparent); }
    50%       { transform: translateY(-7px) scale(1.18); filter: drop-shadow(0 4px 10px rgba(255,193,7,0.55)); }
}
.mou-flag {
    font-size: 1.25rem;
    display: inline-block;
    cursor: default;
    position: relative;
    animation: flag-float 3s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.42s);
    transition: transform 0.18s ease;
    will-change: transform, filter;
}
.mou-flag::after {
    content: attr(data-country);
    position: absolute;
    bottom: calc(100% + 7px);
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    background: rgba(255,193,7,0.92);
    color: #001430;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    white-space: nowrap;
    padding: 3px 8px;
    border-radius: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
}
.mou-flag:hover {
    animation-play-state: paused;
    transform: scale(1.35) translateY(-4px);
}
.mou-flag:hover::after {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

/* ── Right panel: Latest Notices ──────────────────────────── */
.legacy-right {
    position: sticky;
    top: 1rem;
    align-self: start;
}
.lnotice-panel {
    background: rgba(255,255,255,0.06);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 1.1rem 1.25rem;
    box-shadow: 0 8px 28px rgba(0,0,0,0.25);
}
.lnotice-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.lnotice-panel__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.lnotice-panel__all {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    transition: opacity 0.15s;
}
.lnotice-panel__all:hover { opacity: 0.75; }

/* Notice list */
.lnotice-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.lnotice-item {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    cursor: default;
    transition: background 0.15s;
}
.lnotice-item:last-child { border-bottom: none; padding-bottom: 0; }
.lnotice-item__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 5px;
}
.lnotice-item__body { flex: 1; min-width: 0; }
.lnotice-item__title {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    line-height: 1.45;
    margin-bottom: 0.3rem;
    transition: color 0.15s;
}
.lnotice-item__title:hover { color: var(--gold); }
.lnotice-item__meta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.lnotice-item__date {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.lnotice-item__type {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.lnotice-empty {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    text-align: center;
    padding: 1.5rem 0;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .legacy-stats--full { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
    .legacy-stats--full { grid-template-columns: repeat(2, 1fr); }
    .legacy-section { padding: 2.5rem 0; }
}


/* =============================================================
   FRONT PAGE — EXPLORE DSPSR PHOTO CARDS
   ============================================================= */
.explore-section { padding: 0; line-height: 0; }
.explore-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 360px;
}
.explore-card {
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
    min-height: 360px;
}
.explore-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s var(--ease);
}
.explore-card:hover .explore-card__bg { transform: scale(1.09); }
.explore-card__icon-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255,255,255,0.15);
}
.explore-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(0,0,0,0.82) 0%,
        rgba(0,0,0,0.35) 45%,
        rgba(0,0,0,0.05) 100%);
    transition: background var(--transition);
}
.explore-card:hover .explore-card__overlay {
    background: linear-gradient(to top,
        rgba(0,45,91,0.90) 0%,
        rgba(0,45,91,0.45) 50%,
        rgba(0,45,91,0.10) 100%);
}
.explore-card__label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1.75rem 1.75rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    line-height: 1.3;
}
.explore-card__name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
}
.explore-card__arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}
.explore-card:hover .explore-card__arrow {
    background: #fff;
    border-color: #fff;
    color: var(--primary);
    transform: translateX(3px);
}
@media (max-width: 900px) {
    .explore-grid { grid-template-columns: repeat(2, 1fr); }
    .explore-card { min-height: 240px; }
}
@media (max-width: 480px) {
    .explore-grid { grid-template-columns: 1fr 1fr; }
    .explore-card { min-height: 180px; }
    .explore-card__name { font-size: 0.95rem; }
    .explore-card__arrow { width: 32px; height: 32px; font-size: 0.75rem; }
}


/* =============================================================
   FRONT PAGE — LATEST NEWS
   ============================================================= */
.news-section { background: var(--light); }
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.news-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    display: flex;
    flex-direction: column;
    transition: box-shadow var(--transition), transform var(--transition);
}
.news-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.news-card__thumb-wrap {
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--primary);
    flex-shrink: 0;
}
.news-card__thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease);
}
.news-card:hover .news-card__thumb-wrap img { transform: scale(1.06); }
.news-card__thumb-placeholder {
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), #1a56db);
    color: rgba(255,255,255,0.25);
    font-size: 2.5rem;
}
.news-card__body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.news-card__cat {
    display: inline-block;
    font-size: 0.64rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    background: rgba(0,45,91,0.08);
    border-radius: 999px;
    padding: 0.25rem 0.8rem;
    margin-bottom: 0.8rem;
    align-self: flex-start;
}
.news-card__title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.45;
    margin-bottom: 0.75rem;
}
.news-card__title a { color: var(--text); text-decoration: none; }
.news-card__title a:hover { color: var(--primary); }
.news-card__excerpt {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 1.25rem;
}
.news-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    font-size: 0.78rem;
    margin-top: auto;
}
.news-card__date { color: var(--text-muted); display: flex; align-items: center; gap: 0.35rem; }
.news-card__read { color: var(--primary); font-weight: 600; text-decoration: none; }
.news-card__read:hover { text-decoration: underline; }
@media (max-width: 900px) { .news-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .news-grid { grid-template-columns: 1fr; } }


/* =============================================================
   FRONT PAGE — ALUMNI TESTIMONIAL — 3-ROW MARQUEE
   ============================================================= */
.alumni-section { background: #f7f9fc; }
.alumni-section__cta { text-align: center; padding-top: 2rem; }

/* ── Marquee wrapper — edge-fade mask ─────────────────── */
.tmarq {
    overflow: hidden;
    padding: 1.5rem 0 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    mask-image:         linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

/* ── Each scrolling row ────────────────────────────────── */
.tmarq__row {
    display: flex;
    gap: 0.9rem;
    width: max-content;
    will-change: transform;
}
.tmarq__row--l { animation: tmarq-l var(--tmarq-speed, 42s) linear infinite; }
.tmarq__row--r { animation: tmarq-r var(--tmarq-speed, 55s) linear infinite; }

@keyframes tmarq-l {
    from { transform: translateX(0); }
    to   { transform: translateX(-33.333%); }
}
@keyframes tmarq-r {
    from { transform: translateX(-33.333%); }
    to   { transform: translateX(0); }
}
.tmarq:hover .tmarq__row { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) {
    .tmarq__row { animation: none; }
}

/* ── Individual card ───────────────────────────────────── */
.tmarq-card {
    flex: 0 0 210px;
    background: #fff;
    border-radius: 14px;
    padding: 1rem 1.1rem 0.85rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    border: 1px solid rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.tmarq-card:hover {
    box-shadow: 0 8px 24px rgba(0,45,91,0.13);
    transform: translateY(-3px);
}

/* Profile row */
.tmarq-card__top {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.tmarq-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #e9ecef;
}
.tmarq-card__avatar--init {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #002D5B 0%, #1a56db 100%);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.tmarq-card__meta { min-width: 0; }
.tmarq-card__name {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.tmarq-card__role {
    display: block;
    font-size: 0.72rem;
    color: #6b7280;
    margin-top: 0.12rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Company logo — large & centred */
.tmarq-card__logo {
    border-top: 1px solid #f3f4f6;
    padding-top: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
}
.tmarq-card__logo img {
    max-height: 36px;
    max-width: 120px;
    width: auto;
    object-fit: contain;
}
.tmarq-card__logo--text {
    font-size: 0.8rem;
    font-weight: 700;
    color: #374151;
    gap: 0.4rem;
    letter-spacing: 0.01em;
}


/* =============================================================
   FRONT PAGE — RECRUITER INFINITE STRIP
   ============================================================= */
.recruiter-strip {
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0 2rem;
    overflow: hidden;
}
.recruiter-strip__head {
    text-align: center;
    margin-bottom: 1.5rem;
}
.recruiter-strip__label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.recruiter-strip__wrapper {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.recruiter-strip__track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: recruiter-scroll 28s linear infinite;
    will-change: transform;
}
.recruiter-strip__track:hover { animation-play-state: paused; }
@keyframes recruiter-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .recruiter-strip__track { animation: none; }
}
.recruiter-strip .recruiter-logo {
    flex: 0 0 auto;
    height: 56px;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(80%) opacity(0.6);
    transition: filter 0.35s ease;
}
.recruiter-strip .recruiter-logo:hover { filter: grayscale(0%) opacity(1); }
.recruiter-strip .recruiter-logo img {
    max-height: 44px;
    max-width: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
}


/* =============================================================
   FACULTY DIRECTORY — page-faculty.php
   ============================================================= */

/* Hero */
.fac-hero {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #002D5B 0%, #004080 55%, #005CA8 100%);
    overflow: hidden;
    padding: 64px 0 56px;
}
.fac-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 36px 36px;
}
.fac-hero__overlay { display: none; }
.fac-hero__inner {
    position: relative;
    z-index: 1;
    text-align: center;
}
.fac-hero__shloka {
    font-size: 1rem;
    color: rgba(255,255,255,.6);
    font-style: italic;
    line-height: 1.9;
    margin-bottom: 20px;
    letter-spacing: .02em;
}
.fac-hero__title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
    letter-spacing: -.02em;
}
.fac-hero__sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,.75);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Stats bar */
.fac-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
    margin: 32px 0 28px;
    overflow: hidden;
    border: 1px solid rgba(0,45,91,.08);
}
.fac-stat {
    flex: 1 1 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 16px;
    border-right: 1px solid rgba(0,45,91,.08);
    transition: background .2s;
}
.fac-stat:last-child { border-right: none; }
.fac-stat:hover { background: #f5f8ff; }
.fac-stat__num {
    font-size: 2rem;
    font-weight: 800;
    color: #1A5200;
    line-height: 1;
    margin-bottom: 4px;
}
.fac-stat__label {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #6b7280;
    text-align: center;
}

/* Controls row */
.fac-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 28px;
}
.fac-search-wrap {
    position: relative;
    flex: 1 1 260px;
}
.fac-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: .85rem;
    pointer-events: none;
}
.fac-search {
    width: 100%;
    padding: 10px 36px 10px 38px;
    border: 1.5px solid #d1d5db;
    border-radius: 8px;
    font-size: .95rem;
    color: #1f2937;
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
}
.fac-search:focus {
    border-color: #002D5B;
    box-shadow: 0 0 0 3px rgba(0,45,91,.1);
}
.fac-search-clear {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
}
.fac-search-clear:hover { color: #ef4444; }

.fac-filter-wrap {
    position: relative;
    flex: 0 1 220px;
}
.fac-filter-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: .8rem;
    pointer-events: none;
}
.fac-filter {
    width: 100%;
    padding: 10px 12px 10px 34px;
    border: 1.5px solid #d1d5db;
    border-radius: 8px;
    font-size: .95rem;
    color: #1f2937;
    background: #fff;
    appearance: none;
    cursor: pointer;
    outline: none;
    transition: border-color .2s;
}
.fac-filter:focus { border-color: #002D5B; }

/* View toggle */
.fac-view-toggle {
    display: flex;
    gap: 4px;
    background: #f3f4f6;
    border-radius: 8px;
    padding: 3px;
}
.fac-view-btn {
    background: none;
    border: none;
    padding: 7px 11px;
    border-radius: 6px;
    color: #6b7280;
    cursor: pointer;
    font-size: .95rem;
    transition: background .15s, color .15s;
    line-height: 1;
}
.fac-view-btn:hover { color: #002D5B; }
.fac-view-btn--active {
    background: #fff;
    color: #1A5200;
    box-shadow: 0 1px 4px rgba(0,0,0,.12);
}

/* Empty state */
.fac-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 60px 20px;
    color: #9ca3af;
    text-align: center;
    font-size: 1rem;
}
.fac-empty i { color: #d1d5db; }

/* Faculty grid */
.fac-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

/* Faculty card */
.fac-card {
    position: relative;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
    border: 1px solid rgba(0,45,91,.06);
}
.fac-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0,45,91,.14);
}
.fac-card__accent {
    height: 4px;
    background: linear-gradient(90deg, #002D5B, #FFC107);
}
.fac-card__leave-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #fee2e2;
    color: #dc2626;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 3px 8px;
    border-radius: 20px;
    z-index: 2;
}

/* Photo */
.fac-card__photo-wrap {
    display: flex;
    justify-content: center;
    padding: 24px 20px 12px;
}
.fac-card__photo-wrap a {
    display: block;
    border-radius: 50%;
    overflow: hidden;
    width: 96px;
    height: 96px;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.fac-card__photo {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}
.fac-card__avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: linear-gradient(135deg, #002D5B, #005CA8);
    color: #fff;
    font-size: 1.6rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: .02em;
    -webkit-user-select: none;
    user-select: none;
}

/* Card body */
.fac-card__body {
    flex: 1;
    padding: 0 18px 12px;
    text-align: center;
}
.fac-card__name {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 4px;
    line-height: 1.3;
}
.fac-card__name a {
    color: #1f2937;
    text-decoration: none;
}
.fac-card__name a:hover { color: #002D5B; }
.fac-card__role {
    font-size: .8rem;
    color: #1A5200;
    font-weight: 600;
    margin-bottom: 4px;
}
.fac-card__qual {
    font-size: .78rem;
    color: #6b7280;
    margin-bottom: 8px;
}
.fac-card__email { font-size: .77rem; }
.fac-card__email a {
    color: #4b5563;
    text-decoration: none;
    word-break: break-all;
}
.fac-card__email a:hover { color: #002D5B; }
.fac-card__email i { margin-right: 4px; color: #9ca3af; }

/* Card footer */
.fac-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px 14px;
    border-top: 1px solid rgba(0,45,91,.06);
    gap: 8px;
}
.fac-card__profile-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    font-weight: 600;
    color: #1A5200;
    text-decoration: none;
    padding: 6px 12px;
    border: 1.5px solid rgba(0,45,91,.2);
    border-radius: 6px;
    transition: background .2s, color .2s, border-color .2s;
}
.fac-card__profile-btn:hover {
    background: #002D5B;
    color: #fff;
    border-color: #002D5B;
}
.fac-card__linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: #e8f0fe;
    color: #0a66c2;
    font-size: .9rem;
    text-decoration: none;
    transition: background .2s, color .2s;
    flex-shrink: 0;
}
.fac-card__linkedin:hover { background: #0a66c2; color: #fff; }

/* List view mode */
.fac-grid--list {
    grid-template-columns: 1fr;
    gap: 14px;
}
.fac-grid--list .fac-card {
    flex-direction: row;
    align-items: center;
    border-radius: 10px;
}
.fac-grid--list .fac-card__accent {
    width: 4px;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    border-radius: 0;
}
.fac-grid--list .fac-card__leave-badge { top: 10px; right: 10px; }
.fac-grid--list .fac-card__photo-wrap {
    padding: 16px 12px 16px 20px;
    flex-shrink: 0;
}
.fac-grid--list .fac-card__photo-wrap a,
.fac-grid--list .fac-card__photo,
.fac-grid--list .fac-card__avatar {
    width: 64px;
    height: 64px;
    font-size: 1.1rem;
}
.fac-grid--list .fac-card__body {
    flex: 1;
    text-align: left;
    padding: 14px 8px;
}
.fac-grid--list .fac-card__footer {
    border-top: none;
    border-left: 1px solid rgba(0,45,91,.06);
    padding: 14px 16px;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    min-width: 140px;
}

/* =============================================================
   SINGLE FACULTY PROFILE — single-tannivan_faculty.php
   ============================================================= */

.fac-profile-hero {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding-bottom: 48px;
    background: #002D5B;
}
.fac-profile-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    filter: blur(12px) brightness(.55);
    transform: scale(1.08);
}
.fac-profile-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,20,55,.5) 0%, rgba(0,20,55,.85) 100%);
}
.fac-profile-hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    gap: 32px;
    padding-top: 56px;
}
.fac-profile-hero__photo-wrap { flex-shrink: 0; }
.fac-profile-hero__photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255,255,255,.3);
    box-shadow: 0 8px 32px rgba(0,0,0,.35);
    display: block;
}
.fac-profile-hero__avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFC107, #e6a800);
    color: #1A5200;
    font-size: 3rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid rgba(255,255,255,.25);
    box-shadow: 0 8px 32px rgba(0,0,0,.35);
    -webkit-user-select: none;
    user-select: none;
}
.fac-profile-hero__meta {
    flex: 1;
    padding-bottom: 4px;
}
.fac-profile-hero__name {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 6px;
    line-height: 1.15;
    letter-spacing: -.02em;
}
.fac-profile-hero__desig {
    font-size: 1.05rem;
    color: #FFC107;
    font-weight: 600;
    margin-bottom: 6px;
}
.fac-profile-hero__dept {
    font-size: .9rem;
    color: rgba(255,255,255,.7);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
}
.fac-profile-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.fac-profile-action {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    border-radius: 7px;
    font-size: .85rem;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,.25);
    color: #fff;
    transition: background .2s, border-color .2s;
}
.fac-profile-action:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.5); }
.fac-profile-action--email  { background: rgba(255,255,255,.08); }
.fac-profile-action--linkedin { background: #0a66c2; border-color: #0a66c2; }
.fac-profile-action--linkedin:hover { background: #094f9e; }
.fac-profile-action--back   { background: rgba(255,255,255,.06); }

/* Profile content grid */
.fac-profile-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 36px;
    margin: 40px 0 60px;
}

/* Sidebar */
.fac-profile-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.fac-info-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
    padding: 20px;
    border: 1px solid rgba(0,45,91,.06);
}
.fac-info-card__heading {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #1A5200;
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 7px;
}
.fac-info-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.fac-info-list li {
    display: flex;
    flex-direction: column;
    gap: 1px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,45,91,.06);
}
.fac-info-list li:last-child { border-bottom: none; }
.fac-info-list__label {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #9ca3af;
    font-weight: 600;
}
.fac-info-list__value {
    font-size: .9rem;
    color: #1f2937;
    font-weight: 500;
}
.fac-info-list__value a {
    color: #1A5200;
    text-decoration: none;
    word-break: break-all;
}
.fac-info-list__value a:hover { text-decoration: underline; }

/* Research interest tags */
.fac-interests-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}
.fac-interest-tag {
    background: #e8f4fd;
    color: #0369a1;
    font-size: .75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

/* Social links */
.fac-social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.fac-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 14px;
    border-radius: 8px;
    font-size: .85rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity .2s, transform .2s;
}
.fac-social-btn:hover { opacity: .85; transform: translateX(2px); }
.fac-social-btn--email { background: #f3f4f6; color: #374151; }
.fac-social-btn--linkedin { background: #e8f0fe; color: #0a66c2; }

.page-edit-link { margin-top: 4px; }
.page-edit-link a {
    font-size: .8rem;
    color: #9ca3af;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.page-edit-link a:hover { color: #002D5B; }

/* Right content area */
.fac-profile-content {
    display: flex;
    flex-direction: column;
    gap: 36px;
    min-width: 0;
}
.fac-section-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1A5200;
    margin: 0 0 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(0,45,91,.08);
}

.fac-bio__content {
    font-size: .97rem;
    line-height: 1.8;
    color: #374151;
}
.fac-bio__content p { margin-bottom: 1em; }
.fac-bio__empty {
    color: #6b7280;
    font-size: .95rem;
    font-style: italic;
    line-height: 1.7;
}

/* Authored posts */
.fac-posts-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.fac-post-item {
    display: flex;
    gap: 16px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
    overflow: hidden;
    border: 1px solid rgba(0,45,91,.06);
    transition: box-shadow .2s;
}
.fac-post-item:hover { box-shadow: 0 6px 24px rgba(0,45,91,.12); }
.fac-post-item__thumb {
    flex-shrink: 0;
    display: block;
    width: 110px;
}
.fac-post-item__thumb img {
    width: 110px;
    height: 100%;
    object-fit: cover;
    display: block;
}
.fac-post-item__body {
    flex: 1;
    padding: 14px 16px 14px 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0;
}
.fac-post-item__date {
    font-size: .75rem;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 5px;
}
.fac-post-item__title {
    font-size: .97rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.35;
}
.fac-post-item__title a { color: #1f2937; text-decoration: none; }
.fac-post-item__title a:hover { color: #002D5B; }
.fac-post-item__excerpt {
    font-size: .83rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.55;
}
.fac-post-item__read {
    font-size: .82rem;
    font-weight: 600;
    color: #1A5200;
    text-decoration: none;
    margin-top: auto;
}
.fac-post-item__read:hover { text-decoration: underline; }

/* =============================================================
   FACULTY — Responsive
   ============================================================= */
@media (max-width: 1024px) {
    .fac-profile-grid { grid-template-columns: 240px 1fr; gap: 24px; }
    .fac-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 18px; }
}
@media (max-width: 768px) {
    .fac-hero { min-height: 260px; padding: 48px 0 40px; }
    .fac-hero__shloka { font-size: .85rem; }
    .fac-stats { flex-wrap: wrap; }
    .fac-stat { flex: 1 1 45%; border-bottom: 1px solid rgba(0,45,91,.08); }
    .fac-stat:nth-child(odd)  { border-right: 1px solid rgba(0,45,91,.08); }
    .fac-stat:nth-child(even) { border-right: none; }
    .fac-stat:last-child:nth-child(odd) { flex: 1 1 100%; border-right: none; }
    .fac-controls { flex-direction: column; align-items: stretch; }
    .fac-filter-wrap { flex: 1 1 auto; }
    .fac-profile-hero__inner { flex-direction: column; align-items: center; text-align: center; padding-top: 40px; }
    .fac-profile-hero__dept  { justify-content: center; }
    .fac-profile-hero__actions { justify-content: center; }
    .fac-profile-grid { grid-template-columns: 1fr; }
    .fac-profile-sidebar { flex-direction: row; flex-wrap: wrap; }
    .fac-info-card { flex: 1 1 260px; }
    .fac-profile-hero { padding-bottom: 36px; }
    .fac-grid--list .fac-card { flex-direction: column; }
    .fac-grid--list .fac-card__accent { width: auto; height: 4px; position: static; }
    .fac-grid--list .fac-card__photo-wrap { padding: 16px 0 8px; justify-content: center; }
    .fac-grid--list .fac-card__body { text-align: center; padding: 0 16px 10px; }
    .fac-grid--list .fac-card__footer { border-left: none; border-top: 1px solid rgba(0,45,91,.06); flex-direction: row; justify-content: center; min-width: auto; }
}
@media (max-width: 480px) {
    .fac-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .fac-card__photo-wrap a,
    .fac-card__photo,
    .fac-card__avatar { width: 76px; height: 76px; }
    .fac-card__avatar { font-size: 1.25rem; }
    .fac-profile-hero__photo,
    .fac-profile-hero__avatar { width: 110px; height: 110px; font-size: 2.2rem; }
    .fac-post-item { flex-direction: column; }
    .fac-post-item__thumb { width: 100%; height: 160px; }
    .fac-post-item__thumb img { width: 100%; height: 160px; }
    .fac-post-item__body { padding: 12px 14px 14px; }
    .fac-stat { flex: 1 1 45%; }
}

/* =========================================================
   PROGRAMMES LISTING PAGE  (page-programmes.php)
   ========================================================= */

/* Hero */
.pl-hero {
    position: relative;
    background: linear-gradient(135deg, #002D5B 0%, #003f80 60%, #00509e 100%);
    color: #fff;
    padding: 5rem 0 4rem;
    overflow: hidden;
}
.pl-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
}
.pl-hero__inner {
    position: relative;
    z-index: 1;
    text-align: center;
}
.pl-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.65);
    margin-bottom: 1.25rem;
}
.pl-breadcrumb a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color var(--transition);
}
.pl-breadcrumb a:hover { color: #fff; }
.pl-breadcrumb span { color: rgba(255,255,255,0.4); }
.pl-hero__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 1rem;
    color: #fff;
}
.pl-hero__title span { color: var(--gold); }
.pl-hero__sub {
    font-size: var(--text-lg);
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}
.pl-hero__search {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.12);
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-pill);
    padding: 0.65rem 1.5rem;
    max-width: 420px;
    width: 100%;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    transition: border-color var(--transition), background var(--transition);
}
.pl-hero__search:focus-within {
    border-color: var(--gold);
    background: rgba(255,255,255,0.18);
}
.pl-hero__search i { color: rgba(255,255,255,0.6); }
.pl-hero__search input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    color: #fff;
    font-size: var(--text-sm);
}
.pl-hero__search input::placeholder { color: rgba(255,255,255,0.5); }
.pl-hero__wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}
.pl-hero__wave svg { width: 100%; height: 60px; }

/* Stats bar */
.pl-stats {
    background: #f5f7fa;
    padding: 0.25rem 0 2rem;
}
.pl-stats__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    margin-top: -1px;
}
.pl-stat {
    flex: 1 1 160px;
    text-align: center;
    padding: 1.5rem 1rem;
}
.pl-stat__num {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.35rem;
}
.pl-stat__lbl {
    display: block;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
}
.pl-stat__sep {
    width: 1px;
    height: 48px;
    background: var(--border);
    flex-shrink: 0;
}

/* Body / grid area */
.pl-body {
    padding: 3rem 0 5rem;
    background: #f5f7fa;
}
.pl-pill-count {
    font-weight: 400;
    opacity: 0.7;
    font-size: 0.85em;
}
.pl-result-count {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin: 0 0 1.5rem;
}

/* Bottom CTA */
.pl-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #00509e 100%);
    padding: 4rem 0;
    color: #fff;
}
.pl-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.pl-cta__title {
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.5rem;
}
.pl-cta__sub {
    color: rgba(255,255,255,0.75);
    margin: 0;
}
.pl-cta__btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}
.btn--outline-white {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.6);
    color: #fff;
}
.btn--outline-white:hover {
    background: rgba(255,255,255,0.12);
    border-color: #fff;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .pl-stats__inner { flex-direction: column; gap: 0; }
    .pl-stat__sep { width: 80%; height: 1px; }
    .pl-cta__inner { flex-direction: column; text-align: center; }
    .pl-cta__btns { justify-content: center; }
    .pl-hero { padding: 3.5rem 0 3rem; }
    .pl-hero__search { max-width: 100%; }
}
@media (max-width: 480px) {
    .prog-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   NOTICE BOARD PAGE  (page-notices.php)
   ========================================================= */

/* Hero (reuses .pl-hero base styles) */
.nb-hero {
    position: relative;
    background: linear-gradient(135deg, #1a0050 0%, #002D5B 60%, #003f80 100%);
    color: #fff;
    padding: 5rem 0 4rem;
    overflow: hidden;
}
.nb-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='20' cy='20' r='2'/%3E%3C/g%3E%3C/svg%3E");
}
.nb-hero__inner {
    position: relative;
    z-index: 1;
    text-align: center;
}
.nb-hero__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 1rem;
    color: #fff;
}
.nb-hero__title span { color: var(--gold); }
.nb-hero__sub {
    font-size: var(--text-lg);
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* Colored stat numbers */
.nb-stat__num--urgent { color: #ef4444; }
.nb-stat__num--exam   { color: #a855f7; }
.nb-stat__num--event  { color: #22c55e; }
.nb-stat__num--result { color: #eab308; }
.nb-stat__num--info   { color: #3b82f6; }

/* Layout */
.nb-body { padding-top: 2.5rem; padding-bottom: 5rem; }
.nb-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 2rem;
    align-items: start;
}

/* Sidebar */
.nb-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.nb-filter-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
}
.nb-filter-card__title {
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin: 0 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.nb-filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.nb-filter-btn {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    width: 100%;
    padding: 0.55rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-muted);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-align: left;
}
.nb-filter-btn:hover { background: var(--light); color: var(--text); }
.nb-filter-btn.active {
    background: rgba(0,45,91,0.08);
    color: var(--primary);
}
.nb-filter-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.nb-filter-count {
    margin-left: auto;
    font-size: var(--text-xs);
    font-weight: 700;
    background: var(--light);
    border-radius: var(--radius-pill);
    padding: 1px 7px;
    color: var(--text-muted);
}
.nb-filter-btn.active .nb-filter-count {
    background: rgba(0,45,91,0.1);
    color: var(--primary);
}

.nb-info-card {
    background: rgba(0,45,91,0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1rem 1.1rem;
    font-size: var(--text-xs);
    color: var(--text-muted);
    line-height: 1.6;
}
.nb-info-card__icon {
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    display: block;
}
.nb-info-card p { margin: 0 0 0.4rem; }
.nb-info-card p:last-child { margin: 0; }

/* Main area */
.nb-main { min-width: 0; }
.nb-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}
.nb-toolbar .pl-result-count { margin: 0; }
.nb-search-pill { flex-shrink: 0; }

/* Notice item extras */
.nb-item-top {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.35rem;
}
.nb-expired-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: rgba(156,163,175,0.15);
    color: #9ca3af;
    border-radius: var(--radius-pill);
    padding: 1px 7px;
}
.notice-item--expired {
    opacity: 0.6;
}
.notice-item--expired .notice-item__icon {
    background: rgba(156,163,175,0.1) !important;
    color: #9ca3af !important;
}
.nb-ext-icon {
    font-size: 0.7em;
    margin-left: 4px;
    opacity: 0.6;
}
.nb-item-meta {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    min-width: 130px;
    align-items: flex-end;
    flex-shrink: 0;
}
.nb-read-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    margin-top: 0.25rem;
}
.nb-read-link:hover { color: var(--gold-dark); }

/* Responsive */
@media (max-width: 900px) {
    .nb-layout { grid-template-columns: 1fr; }
    .nb-sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
    .nb-filter-card { flex: 1 1 240px; }
    .nb-info-card { flex: 1 1 200px; }
    .nb-filter-list { flex-direction: row; flex-wrap: wrap; gap: 4px; }
    .nb-filter-btn { width: auto; }
}
@media (max-width: 600px) {
    .nb-toolbar { flex-direction: column; align-items: flex-start; }
    .nb-item-meta { flex-direction: row; align-items: center; min-width: auto; }
    .notice-item { flex-wrap: wrap; }
}

/* =========================================================
   BACK-TO-TOP BUTTON
   ========================================================= */
.btt {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--secondary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s, background 0.2s;
}
.btt--visible {
    opacity: 1;
    pointer-events: auto;
}
.btt:hover {
    background: var(--gold-hover);
    transform: translateY(-3px);
}

/* =========================================================
   ABOUT PAGE  (page-about.php)
   ========================================================= */
.section--sm { padding-block: calc( var(--section-gap) * 0.65 ); }
.about-stats { background: var(--primary); }
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    text-align: center;
}
.about-stat-item {
    padding: 1.75rem 1rem;
    border-right: 1px solid rgba(255,255,255,.12);
}
.about-stat-item:last-child { border-right: none; }
.about-stat-item__num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.35rem;
}
.about-stat-item__label {
    display: block;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: rgba(255,255,255,.75);
}

.about-intro { background: var(--white); }
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-intro__img { position: relative; border-radius: var(--radius-md); overflow: hidden; }
.about-intro__img img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-md); }
.about-intro__img-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: var(--primary);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-pill);
    font-size: var(--text-xs);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-vision { background: var(--light); }
.about-vm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}
.about-vm-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--primary);
}
.about-vm-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(0,45,91,.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
}
.about-vm-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--secondary); margin: 0 0 0.75rem; }
.about-vm-card p  { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.7; margin: 0; }
.about-vm-values  { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.4rem; }
.about-vm-values li { font-size: var(--text-sm); color: var(--text-muted); display: flex; align-items: center; gap: 0.5rem; }
.about-vm-values li i { color: var(--primary); font-size: 0.75rem; }

.about-milestones {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 2.5rem;
}
.about-milestones::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    z-index: 0;
}
.about-milestone {
    position: relative;
    z-index: 1;
    padding: 0 1rem 1rem;
    text-align: center;
}
.about-milestone__year {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: var(--text-sm);
    font-weight: 800;
    margin-bottom: 1rem;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--primary);
}
.about-milestone__text {
    font-size: var(--text-xs);
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.about-leadership { background: var(--light); }
.about-leadership-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.about-leader-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}
.about-leader-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.about-leader-card__img {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--light);
}
.about-leader-card__img img { width: 100%; height: 100%; object-fit: cover; }
.about-leader-card__img--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.3;
}
.about-leader-card__body { padding: 1.25rem 1rem 1.5rem; }
.about-leader-card__name { display: block; font-size: var(--text-sm); font-weight: 700; color: var(--secondary); margin-bottom: 0.25rem; }
.about-leader-card__name a { color: inherit; text-decoration: none; }
.about-leader-card__name a:hover { color: var(--primary); }
.about-leader-card__role  { display: block; font-size: var(--text-xs); color: var(--gold-dark); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.6rem; }
.about-leader-card__msg   { font-size: var(--text-xs); color: var(--text-muted); line-height: 1.6; margin: 0 0 0.75rem; }
.about-leader-card__email { color: var(--primary); font-size: 1rem; }

.about-accred { background: var(--white); }
.about-accred-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
}
.about-accred-item {
    flex: 0 0 140px;
    background: var(--light);
    border-radius: var(--radius-sm);
    padding: 1.25rem 1rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: box-shadow var(--transition);
}
.about-accred-item:hover { box-shadow: var(--shadow-sm); }
.about-accred-item__name { font-size: 1.25rem; font-weight: 800; color: var(--primary); margin-bottom: 0.35rem; }
.about-accred-item__desc { font-size: 10px; color: var(--text-muted); line-height: 1.4; margin-bottom: 0.5rem; }
.about-accred-item__grade {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: rgba(0,45,91,.08);
    color: var(--primary);
    border-radius: var(--radius-pill);
    padding: 2px 8px;
}

/* Responsive — About */
@media (max-width: 1024px) {
    .about-stats-grid { grid-template-columns: repeat(3, 1fr); }
    .about-milestones { grid-template-columns: repeat(2, 1fr); }
    .about-milestones::before { display: none; }
}
@media (max-width: 768px) {
    .about-stats-grid    { grid-template-columns: repeat(2, 1fr); }
    .about-intro-grid    { grid-template-columns: 1fr; gap: 2rem; }
    .about-vm-grid       { grid-template-columns: 1fr; }
    .about-leadership-grid { grid-template-columns: repeat(2, 1fr); }
    .about-stat-item     { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
}
@media (max-width: 480px) {
    .about-stats-grid      { grid-template-columns: 1fr 1fr; }
    .about-milestones      { grid-template-columns: 1fr; }
    .about-leadership-grid { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   ADMISSIONS PAGE  (page-admissions.php)
   ========================================================= */
.admissions-progs { background: var(--light); }
.admissions-process { background: var(--white); }

.admissions-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2.5rem;
    align-items: start;
    margin-top: 2rem;
}

/* Steps timeline */
.adm-steps { display: flex; flex-direction: column; gap: 0; }
.adm-step {
    display: flex;
    gap: 0;
}
.adm-step__left {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    margin-right: 1.25rem;
}
.adm-step__num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: var(--text-sm);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.adm-step__line {
    width: 2px;
    flex: 1;
    min-height: 24px;
    background: rgba(0,45,91,.12);
    margin: 4px 0;
}
.adm-step:last-child .adm-step__line { display: none; }
.adm-step__body {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding-bottom: 1.75rem;
    flex: 1;
}
.adm-step__icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(0,45,91,.07);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.adm-step__title { font-size: var(--text-base); font-weight: 700; color: var(--secondary); margin: 0 0 0.3rem; }
.adm-step__desc  { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.65; margin: 0; }

/* Key dates card */
.adm-dates-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 1.75rem;
    border-top: 4px solid var(--gold);
    position: sticky;
    top: 100px;
}
.adm-dates-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 0 0 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.adm-dates-list { list-style: none; padding: 0; margin: 0 0 1.5rem; display: flex; flex-direction: column; gap: 0; }
.adm-dates-list li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--border);
    font-size: var(--text-sm);
}
.adm-dates-list li:last-child { border-bottom: none; }
.adm-dates-list__label { color: var(--text-muted); }
.adm-dates-list__date  { font-weight: 700; color: var(--primary); text-align: right; }

/* Fee table */
.admissions-fees { background: var(--light); }
.adm-fee-table { width: 100%; border-collapse: collapse; font-size: var(--text-sm); }
.adm-fee-table thead { background: var(--primary); color: #fff; }
.adm-fee-table th, .adm-fee-table td { padding: 0.75rem 1rem; text-align: left; border-bottom: 1px solid var(--border); }
.adm-fee-table th { font-weight: 700; font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.06em; border: none; }
.adm-fee-table tbody tr:hover { background: rgba(0,45,91,.04); }
.adm-fee-table td a { color: var(--primary); text-decoration: none; font-weight: 600; }
.adm-fees-note { font-size: var(--text-sm); color: var(--text-muted); margin-top: 1rem; display: flex; align-items: flex-start; gap: 0.5rem; }
.adm-fees-note i { color: var(--primary); margin-top: 2px; flex-shrink: 0; }

/* Downloads */
.admissions-downloads { background: var(--white); }
.adm-downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}
.adm-download-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--text);
    transition: all var(--transition);
}
.adm-download-card:hover { border-color: var(--primary); background: rgba(0,45,91,.04); color: var(--primary); }
.adm-download-card > .fa-file-pdf { font-size: 1.5rem; color: #dc2626; flex-shrink: 0; }
.adm-download-card__label { flex: 1; font-size: var(--text-sm); font-weight: 600; line-height: 1.3; }
.adm-download-card__ext { font-size: 10px; font-weight: 700; background: rgba(220,38,38,.1); color: #dc2626; border-radius: 4px; padding: 2px 6px; flex-shrink: 0; }
.adm-download-card__arrow { color: var(--text-muted); font-size: 0.8rem; flex-shrink: 0; }

/* FAQ accordion */
.admissions-faq { background: var(--light); }
.adm-faq-list { max-width: 800px; margin: 2.5rem auto 0; display: flex; flex-direction: column; gap: 0.75rem; }
.adm-faq-item { background: var(--white); border-radius: var(--radius-sm); border: 1px solid var(--border); overflow: hidden; }
.adm-faq-item__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 1.1rem 1.5rem;
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--secondary);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: color var(--transition);
}
.adm-faq-item__q:hover { color: var(--primary); }
.adm-faq-item.is-open .adm-faq-item__q { color: var(--primary); }
.adm-faq-item__icon { flex-shrink: 0; transition: transform 0.3s; font-size: 0.8rem; }
.adm-faq-item.is-open .adm-faq-item__icon { transform: rotate(180deg); }
.adm-faq-item__a { display: none; padding: 0 1.5rem 1.25rem; font-size: var(--text-sm); color: var(--text-muted); line-height: 1.7; border-top: 1px solid var(--border); }
.adm-faq-item.is-open .adm-faq-item__a { display: block; }
.adm-faq-item__a p { margin: 0.75rem 0 0; }

/* Responsive — Admissions */
@media (max-width: 900px) {
    .admissions-grid { grid-template-columns: 1fr; }
    .adm-dates-card  { position: static; }
}

/* =========================================================
   CONTACT PAGE  (page-contact.php)
   ========================================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 3rem;
    align-items: start;
}
.contact-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 0 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}
.contact-section-title i { color: var(--primary); }

/* Form */
.ct-form { display: flex; flex-direction: column; gap: 1.1rem; }
.ct-form__row { display: flex; gap: 1rem; }
.ct-form__row--2 > .ct-form__group { flex: 1; min-width: 0; }
.ct-form__group { display: flex; flex-direction: column; gap: 0.35rem; }
.ct-form__label { font-size: var(--text-sm); font-weight: 600; color: var(--text); }
.ct-form__label span { color: #dc2626; }
.ct-form__input {
    padding: 0.65rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: var(--text-sm);
    color: var(--text);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    width: 100%;
}
.ct-form__input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,45,91,.1); }
.ct-form__select { -webkit-appearance: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.ct-form__textarea { resize: vertical; min-height: 130px; }
.ct-form__status { font-size: var(--text-sm); padding: 0.75rem 1rem; border-radius: var(--radius-sm); display: none; }
.ct-form__status:not(:empty) { display: block; }
.ct-form__status--ok  { background: rgba(34,197,94,.1); color: #15803d; border: 1px solid rgba(34,197,94,.3); }
.ct-form__status--err { background: rgba(239,68,68,.1); color: #dc2626; border: 1px solid rgba(239,68,68,.3); }
.ct-form__submit { align-self: flex-start; gap: 0.5rem; }

/* Offices */
.contact-offices-grid { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.contact-office {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--light);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    border: 1px solid var(--border);
    font-style: normal;
}
.contact-office__icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0,45,91,.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.contact-office__body { flex: 1; min-width: 0; }
.contact-office__body strong { display: block; font-size: var(--text-sm); font-weight: 700; color: var(--secondary); margin-bottom: 0.3rem; }
.contact-office__body p  { font-size: var(--text-xs); color: var(--text-muted); margin: 0 0 0.3rem; }
.contact-office__body a  { display: block; font-size: var(--text-xs); color: var(--primary); text-decoration: none; margin-bottom: 0.15rem; }
.contact-office__body a:hover { color: var(--gold-dark); }
.contact-office__hours { display: block; font-size: var(--text-xs); color: var(--text-muted); margin-top: 0.2rem; }

/* Social */
.contact-social h3 { font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin: 0 0 0.75rem; }
.contact-social-links { display: flex; gap: 0.625rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.contact-social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--light);
    border: 1px solid var(--border);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all var(--transition);
    text-decoration: none;
}
.contact-social-link:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* Quick CTA */
.contact-quick-cta { display: flex; flex-direction: column; gap: 0.625rem; }
.contact-quick-cta__btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1.25rem;
    border-radius: var(--radius-sm);
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    transition: all var(--transition);
}
.contact-quick-cta__btn:hover { background: var(--primary-hover); color: #fff; transform: translateX(3px); }
.contact-quick-cta__btn--wa { background: #25d366; color: #fff; }
.contact-quick-cta__btn--wa:hover { background: #1da851; color: #fff; }
.contact-quick-cta__btn i { font-size: 1.4rem; flex-shrink: 0; }
.contact-quick-cta__btn span { display: flex; flex-direction: column; line-height: 1.2; }
.contact-quick-cta__btn small { font-size: 10px; opacity: 0.8; font-weight: 400; }
.contact-quick-cta__btn strong { font-weight: 700; font-size: var(--text-sm); }

/* ── Interactive Map ── */
.cmap-section { line-height: 0; }

.cmap-wrap {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.cmap-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: saturate(0.9);
}

/* Floating info card */
.cmap-card {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    z-index: 10;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    width: 320px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.cmap-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.22); }

.cmap-card__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.1rem;
    background: var(--primary);
    color: #fff;
}
.cmap-card__avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.cmap-card__info { flex: 1; min-width: 0; }
.cmap-card__info strong { display: block; font-size: var(--text-sm); font-weight: 700; line-height: 1.2; }
.cmap-card__info span  { display: block; font-size: 11px; opacity: 0.8; margin-top: 2px; }
.cmap-card__close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.8);
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
    line-height: 1;
    transition: color 0.2s;
}
.cmap-card__close:hover { color: #fff; }
.cmap-card__close i { transition: transform 0.3s; }

.cmap-card__body { padding: 1rem 1.1rem; }
.cmap-card__body--hidden { display: none; }

.cmap-card__chips {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 0.875rem;
    font-size: var(--text-xs);
    color: var(--text-muted);
}
.cmap-card__chips span { display: flex; align-items: center; gap: 0.5rem; }
.cmap-card__chips i { color: var(--primary); width: 14px; text-align: center; }

.cmap-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cmap-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.875rem;
    border-radius: var(--radius-pill);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    white-space: nowrap;
}
.cmap-btn--primary {
    background: var(--primary);
    color: #fff;
}
.cmap-btn--primary:hover { background: var(--primary-hover); color: #fff; }
.cmap-btn--outline {
    background: transparent;
    border: 1.5px solid var(--primary);
    color: var(--primary);
}
.cmap-btn--outline:hover { background: var(--primary); color: #fff; }
.cmap-btn--ghost {
    background: var(--light);
    color: var(--text-muted);
    border: 1.5px solid var(--border);
}
.cmap-btn--ghost:hover { border-color: var(--primary); color: var(--primary); }
.cmap-btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* Status message */
.cmap-status {
    font-size: var(--text-xs);
    margin-top: 0.625rem;
    min-height: 0;
    line-height: 1.4;
    border-radius: 6px;
    transition: all 0.2s;
}
.cmap-status:not(:empty) { padding: 0.4rem 0.6rem; }
.cmap-status--ok   { background: rgba(34,197,94,0.1); color: #15803d; }
.cmap-status--warn { background: rgba(234,179,8,0.1);  color: #92400e; }
.cmap-status--info { background: rgba(59,130,246,0.1); color: #1d4ed8; }

/* My Location button */
.cmap-locate-btn {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 10;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff;
    color: var(--primary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    transition: all 0.2s;
}
.cmap-locate-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: scale(1.08);
}

/* Responsive — Contact */
@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; }
    .cmap-wrap     { height: 420px; }
    .cmap-card     { width: calc(100% - 4rem); }
}
@media (max-width: 600px) {
    .ct-form__row--2 { flex-direction: column; }
    .cmap-wrap       { height: 360px; }
    .cmap-card       { bottom: 1rem; left: 1rem; width: calc(100% - 2rem); }
    .cmap-locate-btn { bottom: 1rem; right: 1rem; }
}



/* =========================================================
   HOMEPAGE v3 — NEW SECTIONS
   ========================================================= */

/* ── Hero Full-Screen Slider ─────────────────────────── */
.fp-hero--fullscreen {
    position: relative;
    width: 100%;
    height: 65vh;
    min-height: 480px;
    max-height: 700px;
    overflow: hidden;
}
.fp-hero__slider {
    position: absolute;
    inset: 0;
}
.fp-hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease;
}
.fp-hero__slide.is-active { opacity: 1; }
.fp-hero__slide--fallback {
    background: linear-gradient(135deg, #0a3d20 0%, #1A6B35 50%, #1A5200 100%);
}
.fp-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,.35) 0%,
        rgba(0,0,0,.55) 50%,
        rgba(0,0,0,.65) 100%
    );
    z-index: 2;
}
.fp-hero__overlay-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fp-hero__inner {
    width: 100%;
    max-width: 820px;
    padding: 2rem 2rem;
    text-align: center;
}
.fp-hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .9rem;
}
/* Prev / Next arrows */
.fp-hero__prev,
.fp-hero__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    border: 2px solid rgba(255,255,255,.45);
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .22s, border-color .22s;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}
.fp-hero__prev { left: 1.2rem; }
.fp-hero__next { right: 1.2rem; }
.fp-hero__prev:hover,
.fp-hero__next:hover {
    background: rgba(255,255,255,.32);
    border-color: rgba(255,255,255,.7);
}
.fp-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1.5px solid rgba(200,150,12,.65);
    color: #f5d97e;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    padding: 5px 16px;
    border-radius: 999px;
}
.fp-hero__headline {
    font-size: clamp(1.9rem, 3.8vw, 3rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin: 0;
    text-shadow: 0 2px 16px rgba(0,0,0,.5);
}
.fp-hero__courses {
    font-size: .92rem;
    font-weight: 700;
    color: #a8f0c0;
    margin: 0;
    letter-spacing: .08em;
}
.fp-hero__desc {
    font-size: .9rem;
    color: rgba(255,255,255,.84);
    line-height: 1.65;
    margin: 0;
    max-width: 560px;
}
.fp-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    justify-content: center;
}
.fp-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: .85rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all .22s;
    white-space: nowrap;
}
.fp-btn--dark        { background: #111; color: #fff; }
.fp-btn--dark:hover  { background: #333; color: #fff; }
.fp-btn--white       { background: #fff; color: #111; border-color: #fff; }
.fp-btn--white:hover { background: #f0f0f0; color: #111; }
.fp-btn--green       { background: var(--nav-green); color: #fff; border-color: var(--nav-green); }
.fp-btn--green:hover { background: var(--nav-green-hover); color: #fff; }
.fp-btn--outline         { background: transparent; color: #111; border-color: #ccc; }
.fp-btn--outline:hover   { border-color: var(--nav-green); color: var(--nav-green); }
.fp-btn--outline-white       { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.fp-btn--outline-white:hover { background: rgba(255,255,255,.12); color: #fff; border-color: #fff; }
.fp-hero__links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: .4rem .75rem;
    font-size: .8rem;
}
.fp-hero__links a {
    color: rgba(255,255,255,.72);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color .18s;
}
.fp-hero__links a:hover { color: #a8f0c0; }
.fp-hero__links span { color: rgba(255,255,255,.3); }
/* Quickstats hidden — moved to floating stats bar below hero */
.fp-hero__quickstats { display: none; }
.fp-hero__accred {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    justify-content: center;
}
.fp-hero__badge-mini {
    font-size: .7rem;
    font-weight: 700;
    color: rgba(255,255,255,.8);
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 999px;
    padding: 3px 12px;
    letter-spacing: .05em;
}
.fp-hero__slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 4;
}
.fp-hero__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
    border: none;
    cursor: pointer;
    transition: background .2s, transform .2s;
}
.fp-hero__dot.is-active { background: #fff; transform: scale(1.3); }

/* ── Floating Stats Bar ──────────────────────────────── */
.fp-statsbar {
    position: relative;
    z-index: 10;
    padding: 0 1rem;
    margin-top: -2.8rem;
    margin-bottom: 0;
}
.fp-statsbar__card {
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    border: 2px solid #f0c040;
    box-shadow: 0 8px 40px rgba(0,0,0,.14);
    padding: 1.25rem 2rem;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}
.fp-statsbar__item {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .5rem 1rem;
    border-right: 1px solid #f0f0f0;
}
.fp-statsbar__item:last-child { border-right: none; }
.fp-statsbar__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #e8f5ec 0%, #d4edda 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    color: #1A5200;
    flex-shrink: 0;
}
.fp-statsbar__text { display: flex; flex-direction: column; }
.fp-statsbar__num {
    font-size: 1.15rem;
    font-weight: 900;
    color: #111;
    line-height: 1;
}
.fp-statsbar__label {
    font-size: .62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #888;
    margin-top: 2px;
}

/* ── Quick Access Cards ──────────────────────────────── */
.fp-quickcards {
    padding: 3rem 0 2rem;
    background: #f7f9fc;
}
.fp-quickcards__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.fp-qcard {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding: 1.4rem 1.2rem;
    background: #fff;
    border: 1.5px solid #e8ece8;
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    transition: border-color .22s, box-shadow .22s, transform .22s;
    cursor: pointer;
}
.fp-qcard:hover {
    border-color: var(--nav-green);
    box-shadow: 0 4px 20px rgba(26,107,53,.12);
    transform: translateY(-3px);
}
.fp-qcard__icon {
    font-size: 1.6rem;
    color: var(--nav-green);
    line-height: 1;
}
.fp-qcard__label {
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .1em;
    color: var(--nav-green);
    text-transform: uppercase;
}
.fp-qcard__value {
    font-size: .85rem;
    color: #333;
    margin: 0;
    font-weight: 600;
    line-height: 1.4;
}
.fp-qcard__value small { font-weight: 400; color: #777; }
.fp-qcard__link {
    font-size: .78rem;
    color: var(--nav-green);
    font-weight: 600;
    margin-top: auto;
}

/* ── Key Stats ───────────────────────────────────────── */
.fp-stats {
    padding: 2rem 0;
    background: linear-gradient(135deg, #0a2d00 0%, #0a3d20 100%);
}
.fp-stats__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}
.fp-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .35rem;
    padding: 1.2rem .5rem;
    border-right: 1px solid rgba(255,255,255,.1);
}
.fp-stat:last-child { border-right: none; }
.fp-stat__icon {
    font-size: 1.5rem;
    color: var(--gold-rich);
    margin-bottom: .25rem;
}
.fp-stat__num {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 900;
    color: #fff;
    line-height: 1;
}
.fp-stat__label {
    font-size: .6rem;
    font-weight: 700;
    color: rgba(255,255,255,.6);
    letter-spacing: .08em;
    text-transform: uppercase;
    text-align: center;
}

/* ── Helpline Section ────────────────────────────────── */
.fp-helpline {
    padding: 2.5rem 0;
    background: #fff;
}
.fp-helpline__title {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 900;
    color: #7B0000;
    text-align: center;
    margin: 0 0 .4rem;
}
.fp-helpline__sub {
    text-align: center;
    color: #666;
    font-size: .88rem;
    margin: 0 0 2rem;
}
.fp-helpline__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.fp-hc {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: 1rem 1.2rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    background: #fafafa;
    transition: border-color .22s, box-shadow .22s;
}
.fp-hc:hover { border-color: var(--nav-green); box-shadow: 0 3px 16px rgba(26,107,53,.10); }
.fp-hc__badge {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: #7B0000;
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    font-weight: 900;
    text-align: center;
    line-height: 1.2;
    letter-spacing: .02em;
}
.fp-hc__info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.fp-hc__course {
    font-size: .6rem;
    font-weight: 800;
    color: #7B0000;
    letter-spacing: .07em;
    text-transform: uppercase;
}
.fp-hc__name {
    font-size: .88rem;
    font-weight: 700;
    color: #111;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.fp-hc__phone {
    font-size: .78rem;
    color: #555;
}
.fp-hc__call {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    text-decoration: none;
    transition: background .2s, transform .2s;
}
.fp-hc__call:hover { background: #1aab54; transform: scale(1.1); }
.fp-helpline__note {
    text-align: center;
    font-size: .75rem;
    color: #aaa;
    margin-top: 1.5rem;
}

/* ── Explore DSPSR — full-width gradient panels ──────── */
.fp-explore {
    overflow: hidden;
}
.fp-explore__header {
    text-align: center;
    padding: 2rem 1rem 1.5rem;
    background: #f9fafb;
}
.fp-explore__heading {
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    font-weight: 900;
    color: #1a1a2e;
    margin: 0 0 .35rem;
}
.fp-explore__subheading {
    font-size: .9rem;
    color: #666;
    margin: 0;
}
.fp-explore__panels {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 380px;
}
.fp-explore__panel {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 2rem 1.5rem 2rem;
    text-decoration: none;
    color: #fff;
    overflow: hidden;
}
/* Gradient bg layer — the one that zooms on hover */
.fp-explore__panel-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    transition: transform .5s cubic-bezier(.25,.46,.45,.94);
}
.fp-explore__panel:hover .fp-explore__panel-bg {
    transform: scale(1.08);
}
/* Dark overlay deepens on hover */
.fp-explore__panel-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    z-index: 1;
    transition: background .4s ease;
}
.fp-explore__panel:hover .fp-explore__panel-overlay {
    background: rgba(0,0,0,.22);
}
/* Left accent bar slides in from bottom */
.fp-explore__panel-accent {
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: rgba(255,255,255,.9);
    transform: scaleY(0);
    transform-origin: bottom;
    z-index: 2;
    transition: transform .4s cubic-bezier(.25,.46,.45,.94);
}
.fp-explore__panel:hover .fp-explore__panel-accent {
    transform: scaleY(1);
}
.fp-explore__panel-icon {
    font-size: 2.8rem;
    opacity: .9;
    line-height: 1;
    padding-top: 1.5rem;
    margin-bottom: auto;
    position: relative;
    z-index: 2;
    transition: transform .35s cubic-bezier(.25,.46,.45,.94), opacity .3s;
}
.fp-explore__panel:hover .fp-explore__panel-icon {
    transform: translateY(-4px) scale(1.15);
    opacity: 1;
}
.fp-explore__panel-label {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: .01em;
    margin-bottom: .65rem;
    line-height: 1.2;
    position: relative;
    z-index: 2;
    transition: transform .3s cubic-bezier(.25,.46,.45,.94), letter-spacing .3s;
}
.fp-explore__panel:hover .fp-explore__panel-label {
    transform: translateY(-4px);
    letter-spacing: .04em;
}
.fp-explore__panel-arrow {
    position: absolute;
    bottom: 1.4rem;
    right: 1.4rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    border: 2px solid rgba(255,255,255,.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    z-index: 2;
    transition: background .3s, transform .3s cubic-bezier(.25,.46,.45,.94), border-color .3s;
}
.fp-explore__panel:hover .fp-explore__panel-arrow {
    background: rgba(255,255,255,.4);
    border-color: rgba(255,255,255,.9);
    transform: rotate(-45deg) scale(1.15);
}

/* ── Through Our Lens — Campus Media Marquee ─────────── */
.fp-lens {
    background: #f5f7f5;
    overflow: hidden;
}
.fp-lens__header {
    text-align: center;
    padding: 2.5rem 1rem 1.5rem;
    position: relative;
}
.fp-lens__kicker {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #1A5200;
    margin-bottom: .6rem;
}
.fp-lens__title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 900;
    color: #0d1a0d;
    margin: 0 0 .4rem;
}
.fp-lens__sub {
    font-size: .9rem;
    color: #555;
    margin: 0;
}
.fp-lens__admin-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    margin-top: .9rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    color: #a3e635;
    text-decoration: none;
    border: 1px solid rgba(163,230,53,.3);
    border-radius: 999px;
    padding: .3rem .9rem;
    transition: background .2s, border-color .2s;
}
.fp-lens__admin-link:hover { background: rgba(163,230,53,.08); border-color: rgba(163,230,53,.7); }
.fp-lens__marquee-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 3rem;
}
/* Each marquee row */
.fp-lens__row {
    display: flex;
    gap: 4px;
    width: max-content;
    animation: lens-scroll-l var(--lens-speed, 42s) linear infinite;
    will-change: transform;
}
.fp-lens__row--r {
    animation-name: lens-scroll-r;
}
@keyframes lens-scroll-l {
    from { transform: translateX(0); }
    to   { transform: translateX(-33.333%); }
}
@keyframes lens-scroll-r {
    from { transform: translateX(-33.333%); }
    to   { transform: translateX(0); }
}
/* Individual card */
.fp-lens__card {
    position: relative;
    width: 280px;
    height: 200px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 8px;
    cursor: default;
}
.fp-lens__card--video {
    cursor: pointer;
}
.fp-lens__card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .5s cubic-bezier(.25,.46,.45,.94);
}
.fp-lens__card:hover .fp-lens__card-bg {
    transform: scale(1.06);
}
/* Permanent subtle gradient on each card */
.fp-lens__card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.08) 50%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}
/* Play button for video cards */
.fp-lens__play {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fp-lens__play i {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    border: 2px solid rgba(255,255,255,.6);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    padding-left: 3px;
    transition: background .25s, transform .25s;
}
.fp-lens__card--video:hover .fp-lens__play i {
    background: rgba(255,255,255,.3);
    transform: scale(1.12);
}

/* Zoom icon for photo cards */
.fp-lens__zoom {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .25s;
}
.fp-lens__zoom i {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    border: 2px solid rgba(255,255,255,.6);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    transition: background .25s, transform .25s;
}
.fp-lens__card--image { cursor: pointer; }
.fp-lens__card--image:hover .fp-lens__zoom { opacity: 1; }
.fp-lens__card--image:hover .fp-lens__zoom i {
    background: rgba(255,255,255,.3);
    transform: scale(1.12);
}

/* Fallback icon cards (no photo, no video) */
.fp-lens__fb-icon {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fp-lens__fb-icon i {
    font-size: 2.8rem;
    color: rgba(255,255,255,.22);
    filter: drop-shadow(0 2px 8px rgba(0,0,0,.3));
    transition: color .3s, transform .3s;
}
.fp-lens__card--icon:hover .fp-lens__fb-icon i {
    color: rgba(255,255,255,.45);
    transform: scale(1.1);
}
/* Always show overlay text on icon/fallback cards */
.fp-lens__card-overlay--always .fp-lens__card-tag,
.fp-lens__card-overlay--always .fp-lens__card-caption {
    transform: translateY(0);
    opacity: 1;
}

/* Overlay with tag + caption */
.fp-lens__card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: .9rem 1rem;
    z-index: 2;
}
.fp-lens__card-tag {
    display: block;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #a3e635;
    margin-bottom: .2rem;
    transform: translateY(4px);
    opacity: 0;
    transition: transform .3s ease, opacity .3s ease;
}
.fp-lens__card-caption {
    font-size: .78rem;
    color: #fff;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    transform: translateY(4px);
    opacity: 0;
    transition: transform .3s ease .06s, opacity .3s ease .06s;
}
.fp-lens__card:hover .fp-lens__card-tag,
.fp-lens__card:hover .fp-lens__card-caption {
    transform: translateY(0);
    opacity: 1;
}

/* Campus Media Video Lightbox */
.cm-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99990;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity .3s ease;
}
.cm-lightbox.is-open {
    pointer-events: all;
    opacity: 1;
}
.cm-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.88);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}
.cm-lightbox__close {
    position: absolute;
    top: 1.2rem;
    right: 1.4rem;
    z-index: 2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}
.cm-lightbox__close:hover { background: rgba(255,255,255,.25); }
.cm-lightbox__frame {
    position: relative;
    z-index: 1;
    width: min(900px, 95vw);
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,.7);
}
.cm-lightbox__frame iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Image lightbox frame */
.cm-lightbox__frame--img {
    position: relative;
    z-index: 1;
    max-width: min(1000px, 95vw);
    max-height: 90vh;
    aspect-ratio: unset;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,.7);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cm-lightbox__frame--img img {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 8px;
}

/* ── Course Intake — Aspirational Hero Cards ─────────── */
.fp-intake-hero {
    background: #07070f;
    padding: 0;
    overflow: hidden;
}
.fp-intake-hero__header {
    text-align: center;
    padding: 3.5rem 1rem 2.5rem;
}
.fp-intake-hero__kicker {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #f59e0b;
    margin-bottom: .7rem;
}
.fp-intake-hero__title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: #fff;
    margin: 0 0 .5rem;
}
.fp-intake-hero__sub {
    font-size: .88rem;
    color: #666;
    margin: 0;
    letter-spacing: .03em;
}
.fp-intake-hero__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 580px;
}
/* Individual programme card */
.fp-ic {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    text-decoration: none;
    color: #fff;
    overflow: hidden;
    border-right: 1px solid rgba(255,255,255,.06);
}
.fp-ic:last-child { border-right: none; }
/* Photo background layer */
.fp-ic__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .6s cubic-bezier(.25,.46,.45,.94);
    z-index: 0;
}
.fp-ic:hover .fp-ic__bg { transform: scale(1.06); }
/* Colour gradient overlay */
.fp-ic__gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
    transition: opacity .4s ease;
}
.fp-ic:hover .fp-ic__gradient { opacity: .82; }
/* Accent glow blob — bottom-left ambient light */
.fp-ic__glow {
    position: absolute;
    bottom: -60px;
    left: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    opacity: .18;
    filter: blur(60px);
    z-index: 2;
    transition: opacity .4s, transform .4s;
}
.fp-ic:hover .fp-ic__glow { opacity: .35; transform: scale(1.3); }
/* Top badges */
.fp-ic__top {
    position: relative;
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
}
.fp-ic__badge {
    display: inline-block;
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.85);
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 999px;
    padding: .2rem .65rem;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}
/* Centre content */
.fp-ic__body {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 1rem 0;
}
.fp-ic__icon {
    font-size: 2.6rem;
    margin-bottom: .6rem;
    display: block;
    filter: drop-shadow(0 0 20px currentColor);
    transition: transform .35s ease, filter .35s ease;
}
.fp-ic:hover .fp-ic__icon { transform: translateY(-4px) scale(1.1); filter: drop-shadow(0 0 30px currentColor); }
.fp-ic__abbr {
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin: 0 0 .4rem;
    display: block;
}
.fp-ic__full {
    font-size: clamp(.88rem, 1.1vw, 1rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin: 0 0 .75rem;
}
.fp-ic__desc {
    font-size: .78rem;
    color: rgba(255,255,255,.6);
    line-height: 1.5;
    margin: 0;
    transition: color .3s;
}
.fp-ic:hover .fp-ic__desc { color: rgba(255,255,255,.82); }
/* Bottom bar */
.fp-ic__foot {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,.12);
    padding-top: 1rem;
    gap: .5rem;
}
.fp-ic__seats {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.fp-ic__seats-num {
    font-size: 2.4rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}
.fp-ic__seats-label {
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .12em;
    color: rgba(255,255,255,.4);
    text-transform: uppercase;
    margin-top: .2rem;
}
.fp-ic__cta {
    font-size: .72rem;
    font-weight: 700;
    color: rgba(255,255,255,.7);
    letter-spacing: .04em;
    transition: color .25s;
    white-space: nowrap;
}
.fp-ic:hover .fp-ic__cta { color: #fff; }
/* Footer info bar */
.fp-intake-hero__footer {
    text-align: center;
    padding: 1.2rem 1rem 2.2rem;
    font-size: .78rem;
    color: #555;
}
.fp-intake-hero__footer a { color: #888; text-decoration: none; }
.fp-intake-hero__footer a:hover { color: #a3e635; }
/* Mobile stacking */
@media (max-width: 900px) {
    .fp-intake-hero__grid { grid-template-columns: repeat(2, 1fr); min-height: 0; }
    .fp-ic { min-height: 360px; border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); }
}
@media (max-width: 520px) {
    .fp-intake-hero__grid { grid-template-columns: 1fr; }
    .fp-lens__card { width: 220px; height: 160px; }
}

/* ── Placement Highlights ────────────────────────────── */
.fp-placement {
    padding: 2.5rem 0;
    background: linear-gradient(135deg, #0a2d00 0%, #0a3d20 100%);
}
.fp-placement .section-kicker { color: var(--gold-rich); }
.fp-placement .section-title  { color: #fff; }
.fp-placement .section-desc   { color: rgba(255,255,255,.65); }
.fp-placement__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-top: 2.5rem;
}
.fp-pl-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .6rem;
    padding: 2rem 1.5rem;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    transition: background .22s, transform .22s;
}
.fp-pl-card:hover { background: rgba(255,255,255,.10); transform: translateY(-3px); }
.fp-pl-card__icon {
    font-size: 1.8rem;
    color: var(--gold-rich);
}
.fp-pl-card__num {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1;
}
.fp-pl-card__label {
    font-size: .72rem;
    font-weight: 600;
    color: rgba(255,255,255,.65);
    letter-spacing: .06em;
    text-transform: uppercase;
}

/* ── Testimonial default avatar ──────────────────────── */
.tmarq-card__avatar--default {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #e5e7eb;
}
.tmarq-card__avatar--default svg {
    width: 100%;
    height: 100%;
    display: block;
}
.tmarq-card__quote {
    font-size: .78rem;
    color: #555;
    line-height: 1.55;
    margin: .5rem 0 0;
    font-style: italic;
}

/* ── Enquiry Modal ───────────────────────────────────── */
.enq-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s;
}
.enq-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}
.enq-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    cursor: pointer;
}
.enq-modal__box {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 480px;
    max-height: 92vh;
    overflow-y: auto;
    padding: 2rem;
    box-shadow: 0 20px 80px rgba(0,0,0,.25);
    transform: scale(.94);
    transition: transform .28s;
}
.enq-modal.is-open .enq-modal__box { transform: scale(1); }
.enq-modal__close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: #f3f4f6;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    color: #555;
    transition: background .2s;
}
.enq-modal__close:hover { background: #e5e7eb; }
.enq-modal__head { margin-bottom: 1.5rem; }
.enq-modal__badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--accent-green-lt);
    color: var(--nav-green);
    font-size: .72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: .75rem;
}
.enq-modal__title {
    font-size: 1.5rem;
    font-weight: 900;
    color: #111;
    margin: 0 0 .25rem;
}
.enq-modal__sub {
    font-size: .84rem;
    color: #777;
    margin: 0;
}
.enq-form__row {
    margin-bottom: 1rem;
}
.enq-form__row label {
    display: block;
    font-size: .8rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 4px;
}
.enq-form__row label span { color: #dc2626; }
.enq-form__row input,
.enq-form__row select,
.enq-form__row textarea {
    width: 100%;
    border: 1.5px solid #d1d5db;
    border-radius: 8px;
    padding: 9px 12px;
    font-size: .88rem;
    color: #111;
    transition: border-color .2s;
    font-family: inherit;
}
.enq-form__row input:focus,
.enq-form__row select:focus,
.enq-form__row textarea:focus {
    outline: none;
    border-color: var(--nav-green);
    box-shadow: 0 0 0 3px rgba(26,107,53,.1);
}
.enq-form__row textarea { resize: vertical; }
.enq-form__submit {
    width: 100%;
    padding: 12px;
    background: var(--nav-green);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: background .22s;
    font-family: inherit;
}
.enq-form__submit:hover:not(:disabled) { background: var(--nav-green-hover); }
.enq-form__submit:disabled { opacity: .6; cursor: not-allowed; }
.enq-form__success {
    text-align: center;
    color: var(--nav-green);
    font-weight: 600;
    font-size: .92rem;
    margin-top: .75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ── Homepage responsive ────────────────────────────── */
@media (max-width: 1100px) {
    .fp-statsbar__card { grid-template-columns: repeat(3, 1fr); }
    .fp-statsbar__item:nth-child(3) { border-right: none; }
    .fp-intake__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .fp-hero--fullscreen { height: 60vh; min-height: 420px; }
    .fp-hero__headline { font-size: clamp(1.5rem, 4vw, 2.2rem); }
    .fp-statsbar__card { grid-template-columns: repeat(3, 1fr); }
    .fp-quickcards__grid { grid-template-columns: repeat(2, 1fr); }
    .fp-helpline__grid { grid-template-columns: 1fr 1fr; }
    .fp-explore__panels { grid-template-columns: repeat(2, 1fr); }
    .fp-placement__grid { grid-template-columns: repeat(2, 1fr); }
    .fp-lens__grid { grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(4, 180px); }
    .fp-lens__cell:nth-child(n) { grid-column: span 1; }
}
@media (max-width: 600px) {
    .fp-hero--fullscreen { height: 70vh; min-height: 400px; }
    .fp-hero__inner { padding: 1.5rem 1.25rem; }
    .fp-hero__ctas { flex-direction: column; }
    .fp-btn { justify-content: center; }
    .fp-statsbar { margin-top: -1.5rem; }
    .fp-statsbar__card { grid-template-columns: repeat(2, 1fr); padding: 1rem; }
    .fp-statsbar__item { padding: .5rem .6rem; }
    .fp-statsbar__item:nth-child(2n) { border-right: none; }
    .fp-statsbar__item:nth-child(5) { grid-column: 1 / -1; border-right: none; justify-content: center; }
    .fp-quickcards__grid { grid-template-columns: 1fr 1fr; }
    .fp-helpline__grid { grid-template-columns: 1fr; }
    .fp-explore__panels { grid-template-columns: 1fr 1fr; }
    .fp-intake__grid { grid-template-columns: repeat(2, 1fr); }
    .fp-intake__wrap { padding: 1.5rem 1rem; }
    .fp-placement__grid { grid-template-columns: 1fr 1fr; }
    .enq-modal__box { margin: 1rem; padding: 1.5rem; max-height: 88vh; }
}

/* =============================================================
   CORPORATE MENTORS PAGE  (page-mentors.php)
   ============================================================= */

/* ── Hero ────────────────────────────────────────────────── */
.pm-hero {
    background: linear-gradient(135deg, #0a3d20 0%, #1A6B35 60%, #145A2C 100%);
    padding: 4rem 0 3rem;
    text-align: center;
    color: #fff;
}
.pm-hero__kicker {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #f5d97e;
    border: 1px solid rgba(200,150,12,.4);
    border-radius: 999px;
    padding: .3rem 1.1rem;
    margin-bottom: 1rem;
}
.pm-hero__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin: 0 0 .75rem;
    color: #fff;
}
.pm-hero__sub {
    font-size: .95rem;
    color: rgba(255,255,255,.82);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Mentors Grid ────────────────────────────────────────── */
.pm-section { padding: 4rem 0; background: #f7f9fc; }
.pm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.75rem;
}

/* ── Mentor Card ─────────────────────────────────────────── */
.pm-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 16px rgba(0,45,91,.08);
    overflow: hidden;
    transition: transform .22s, box-shadow .22s;
}
.pm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0,45,91,.13);
}
.pm-card__photo-wrap {
    position: relative;
    height: 220px;
    background: linear-gradient(135deg, #e8f5ec 0%, #dbeafe 100%);
}
.pm-card__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.pm-card__photo--initials {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: 900;
    color: #1A6B35;
    background: linear-gradient(135deg, #e8f5ec 0%, #dbeafe 100%);
    width: 100%;
    height: 100%;
}
.pm-card__li {
    position: absolute;
    top: .8rem;
    right: .8rem;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #0a66c2;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    text-decoration: none;
    transition: background .2s;
}
.pm-card__li:hover { background: #004182; }
.pm-card__body {
    padding: 1.25rem 1.4rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .35rem;
}
.pm-card__name {
    font-size: 1.05rem;
    font-weight: 800;
    color: #111;
    margin: 0;
}
.pm-card__role {
    font-size: .82rem;
    font-weight: 600;
    color: #1A6B35;
    margin: 0;
}
.pm-card__company {
    font-size: .8rem;
    color: #555;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}
.pm-card__since {
    font-size: .78rem;
    color: #777;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}
.pm-card__years {
    font-weight: 700;
    color: #1A6B35;
}
.pm-card__bio {
    font-size: .83rem;
    color: #444;
    line-height: 1.6;
    margin: .35rem 0 0;
    border-top: 1px solid #f0f0f0;
    padding-top: .6rem;
}

/* ── Empty State ─────────────────────────────────────────── */
.pm-empty {
    text-align: center;
    padding: 4rem 1rem;
    color: #666;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .75rem;
}
.pm-empty i { color: #ccc; }

/* ── CTA Strip ───────────────────────────────────────────── */
.pm-cta {
    background: linear-gradient(135deg, #0a2d00 0%, #1A5200 100%);
    padding: 3rem 0;
    color: #fff;
}
.pm-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.pm-cta__title {
    font-size: clamp(1.2rem, 2.2vw, 1.7rem);
    font-weight: 800;
    margin: 0 0 .35rem;
}
.pm-cta__sub {
    font-size: .88rem;
    color: rgba(255,255,255,.75);
    margin: 0;
}
.pm-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1A6B35;
    color: #fff;
    border-radius: 10px;
    padding: .9rem 1.8rem;
    font-weight: 700;
    font-size: .9rem;
    text-decoration: none;
    white-space: nowrap;
    transition: background .22s;
}
.pm-cta__btn:hover { background: #145A2C; color: #fff; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 600px) {
    .pm-grid { grid-template-columns: 1fr; }
    .pm-cta__inner { flex-direction: column; text-align: center; }
}

/* =========================================================
   BUTTON — Gold variant (used on dark placement section)
   ========================================================= */
.btn--gold {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: #C8960C;
    color: #fff;
    border: 2px solid #C8960C;
    border-radius: 6px;
    padding: .65rem 1.5rem;
    font-size: .9rem;
    font-weight: 700;
    text-decoration: none;
    transition: background .22s ease, border-color .22s ease, transform .18s ease;
}
.btn--gold:hover {
    background: #a67a0a;
    border-color: #a67a0a;
    color: #fff;
    transform: translateY(-1px);
}

/* =========================================================
   INTAKE — Badge pills and footer pill (readability fixes)
   ========================================================= */
.fp-intake-hero__badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .6rem;
    margin-top: .75rem;
}
.fp-intake-hero__badge-pill {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.35);
    color: #fff;
    border-radius: 99px;
    padding: .32rem .9rem;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .03em;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.fp-intake-hero__footer--pill {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: .5rem .75rem;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 10px;
    margin: 1.5rem auto 0;
    max-width: 680px;
    padding: .75rem 1.5rem;
    font-size: .82rem;
    color: rgba(255,255,255,.9);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}
.fp-intake-hero__footer--pill a {
    color: #FFD55A;
    font-weight: 600;
    text-decoration: none;
}
.fp-intake-hero__footer--pill a:hover { color: #fff; text-decoration: underline; }

/* =========================================================
   WHY DSPSR — 3 Pillars (v5.0)
   ========================================================= */
.why-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-top: 2.5rem;
}
@media (max-width: 900px) {
    .why-pillars { grid-template-columns: 1fr; gap: 1.25rem; }
}
.why-pillar {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 24px rgba(0,0,0,.07);
    border-top: 4px solid transparent;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform .25s ease, box-shadow .25s ease;
}
.why-pillar:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.12); }
.why-pillar--gold  { border-top-color: #C8960C; }
.why-pillar--blue  { border-top-color: #1d4ed8; }
.why-pillar--green { border-top-color: #1A5200; }

.why-pillar__icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
}
.why-pillar--gold  .why-pillar__icon-wrap { background: rgba(200,150,12,.12); color: #C8960C; }
.why-pillar--blue  .why-pillar__icon-wrap { background: rgba(29,78,216,.10);  color: #1d4ed8; }
.why-pillar--green .why-pillar__icon-wrap { background: rgba(26,82,0,.10);    color: #1A5200; }

.why-pillar__title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0d1a0d;
    margin: 0;
    line-height: 1.25;
}
.why-pillar__desc {
    font-size: .95rem;
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
    flex: 1;
}
.why-pillar__chips {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: auto;
    padding-top: .5rem;
}
.why-chip {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    border-radius: 99px;
    padding: .28rem .8rem;
    background: #f3f4f6;
    color: #374151;
}
.why-pillar--gold  .why-chip { background: rgba(200,150,12,.1); color: #92610a; }
.why-pillar--blue  .why-chip { background: rgba(29,78,216,.08); color: #1d4ed8; }
.why-pillar--green .why-chip { background: rgba(26,82,0,.08);   color: #1A5200; }

/* =========================================================
   ALUMNI TESTIMONIALS — Clean Card Grid (v5.0)
   ========================================================= */
.alumni-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
@media (max-width: 1024px) { .alumni-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .alumni-grid { grid-template-columns: 1fr; } }

.alumni-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 2px 16px rgba(0,0,0,.07);
    border: 1px solid rgba(0,0,0,.06);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform .22s ease, box-shadow .22s ease;
}
.alumni-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,.11); }

.alumni-card__top {
    display: flex;
    align-items: center;
    gap: .875rem;
}
.alumni-card__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(26,82,0,.15);
}
.alumni-card__avatar--default {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #e5e7eb;
}
.alumni-card__avatar--default svg { width: 100%; height: 100%; display: block; }

.alumni-card__identity {
    display: flex;
    flex-direction: column;
    gap: .15rem;
    min-width: 0;
}
.alumni-card__name    { font-size: .95rem; font-weight: 700; color: #0d1a0d; line-height: 1.3; }
.alumni-card__role    { font-size: .8rem;  color: #6b7280; line-height: 1.3; }
.alumni-card__company { font-size: .78rem; color: #1A5200; font-weight: 600; }

.alumni-card__quote {
    font-size: .9rem;
    color: #374151;
    line-height: 1.7;
    margin: 0;
    padding: 0;
    border: none;
    flex: 1;
}
.alumni-card__quote-mark {
    font-size: 2.2rem;
    line-height: 0;
    vertical-align: -.55rem;
    color: #C8960C;
    margin-right: .15rem;
    font-family: Georgia, 'Times New Roman', serif;
}

.alumni-card__logo {
    margin-top: auto;
    padding-top: .875rem;
    border-top: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
}
.alumni-card__logo img {
    max-height: 28px;
    max-width: 110px;
    object-fit: contain;
    filter: grayscale(25%) opacity(.85);
}
.alumni-card__logo--text {
    font-size: .8rem;
    color: #6b7280;
    gap: .35rem;
    display: flex;
    align-items: center;
}

/* =========================================================
   STICKY CTA PILL (v5.0)
   ========================================================= */
.fp-sticky-cta {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(160%);
    z-index: 9000;
    transition: transform .42s cubic-bezier(.34,1.56,.64,1);
    pointer-events: none;
}
.fp-sticky-cta.is-visible {
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}
.fp-sticky-cta__inner {
    display: flex;
    align-items: center;
    gap: .75rem;
    background: #1A5200;
    color: #fff;
    border-radius: 99px;
    padding: .7rem 1.1rem .7rem 1.4rem;
    box-shadow: 0 8px 28px rgba(26,82,0,.38), 0 2px 8px rgba(0,0,0,.15);
    white-space: nowrap;
}
.fp-sticky-cta__text {
    display: flex;
    align-items: center;
    gap: .45rem;
    font-size: .84rem;
}
.fp-sticky-cta__text strong { font-weight: 700; letter-spacing: .01em; }
.fp-sticky-cta__sep { opacity: .45; }

.fp-sticky-cta__btn {
    background: #C8960C;
    color: #fff;
    border-radius: 99px;
    padding: .42rem 1.1rem;
    font-size: .82rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: .35rem;
    transition: background .2s ease;
    flex-shrink: 0;
}
.fp-sticky-cta__btn:hover { background: #a67a0a; color: #fff; }

.fp-sticky-cta__dismiss {
    background: none;
    border: none;
    color: rgba(255,255,255,.6);
    cursor: pointer;
    padding: .25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color .2s ease;
    flex-shrink: 0;
}
.fp-sticky-cta__dismiss:hover { color: #fff; }

@media (max-width: 520px) {
    .fp-sticky-cta {
        left: 1rem;
        right: 1rem;
        transform: translateY(160%);
        width: calc(100% - 2rem);
    }
    .fp-sticky-cta.is-visible { transform: translateY(0); }
    .fp-sticky-cta__inner {
        border-radius: 14px;
        padding: .75rem 1rem;
        justify-content: space-between;
    }
    .fp-sticky-cta__sep { display: none; }
}

/* =============================================================
   HOMEPAGE — CORPORATE MENTOR CARDS SECTION
   ============================================================= */

.mentor-section {
    padding: 5rem 0 4rem;
    background: #f8faf7;
}

.mentor-section__head {
    text-align: center;
    margin-bottom: 3rem;
}

.mentor-section .section-kicker {
    color: var(--green-deep, #1A5200);
    border-color: rgba(26,82,0,.25);
}

.mentor-section .section-title {
    color: #111;
}

.mentor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1100px) {
    .mentor-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .mentor-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (max-width: 480px) {
    .mentor-grid { grid-template-columns: 1fr; }
}

/* ── Individual card ──────────────────────────────────────── */
.mentor-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,.07);
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
}
.mentor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(26,82,0,.12);
}

/* ── Photo area ───────────────────────────────────────────── */
.mentor-card__photo-wrap {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, #1A5200 0%, #2d8a00 100%);
}
.mentor-card__photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform .35s ease;
}
.mentor-card:hover .mentor-card__photo-wrap img {
    transform: scale(1.05);
}
.mentor-card__photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: rgba(255,255,255,.6);
}
.mentor-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.45) 0%, transparent 55%);
    pointer-events: none;
}

/* ── Card body ────────────────────────────────────────────── */
.mentor-card__body {
    padding: 1.1rem 1.2rem 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: .75rem;
}
.mentor-card__info {
    flex: 1;
}
.mentor-card__name {
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 .15rem;
    line-height: 1.3;
}
.mentor-card__role {
    font-size: .78rem;
    font-weight: 600;
    color: #1A5200;
    margin: 0 0 .5rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.mentor-card__bio {
    font-size: .82rem;
    color: #555;
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Card footer ──────────────────────────────────────────── */
.mentor-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    padding-top: .6rem;
    border-top: 1px solid #f0f0f0;
}
.mentor-card__company-logo {
    height: 24px;
    width: auto;
    max-width: 90px;
    object-fit: contain;
    filter: grayscale(30%);
    flex-shrink: 0;
}
.mentor-card__company-text {
    font-size: .75rem;
    font-weight: 600;
    color: #444;
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.mentor-card__linkedin {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: #0a66c2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s;
}
.mentor-card__linkedin:hover { background: #004fa3; }
.mentor-card__linkedin svg {
    width: 14px;
    height: 14px;
    fill: #fff;
}

/* ── Section footer CTA ───────────────────────────────────── */
.section-foot {
    text-align: center;
    margin-top: 2.5rem;
}
