/* =============================================
   GVK SCHOOL — DESIGN SYSTEM
   ============================================= */

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
    /* Colors */
    --color-primary: #13498E;
    --color-primary-dark: #012D65;
    --color-primary-light: #E8F0FE;
    --color-secondary: #81B96B;
    --color-secondary-light: #EBF8ED;
    --color-body: #232323;
    --color-white: #ffffff;

    /* Typography Scale */
    --fs-h1: 3.75rem;
    --fs-h2: 2.488rem;
    --fs-h3: 2.074rem;
    --fs-h4: 1.728rem;
    --fs-h5: 1.44rem;
    --fs-h6: 1.2rem;
    --fs-p: 1rem;
    --fs-small: 13.33px;

    /* Button */
    --fs-btn: 1.2rem;

    /* Spacing */
    --section-spacing: 100px;

    /* Font */
    --font-base: 'Inter', sans-serif;

    /* Transitions */
    --transition-base: 0.3s ease;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-base);
    font-size: var(--fs-p);
    color: var(--color-body);
    background-color: var(--color-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* --- Typography --- */
h1,
.h1 {
    font-size: var(--fs-h1);
    color: var(--color-primary);
    font-weight: 700;
    line-height: 1.15;
}

h2,
.h2 {
    font-size: var(--fs-h2);
    font-weight: 700;
    line-height: 1.2;
}

h3,
.h3 {
    font-size: var(--fs-h3);
    font-weight: 600;
    line-height: 1.25;
}

h4,
.h4 {
    font-size: var(--fs-h4);
    font-weight: 600;
    line-height: 1.3;
}

h5,
.h5 {
    font-size: var(--fs-h5);
    font-weight: 600;
    line-height: 1.35;
}

h6,
.h6 {
    font-size: var(--fs-h6);
    font-weight: 600;
    line-height: 1.4;
}

p {
    font-size: var(--fs-p);
    line-height: 1.75;
    margin-bottom: 1rem;
}

small,
.text-small {
    font-size: var(--fs-small);
}

/* --- Sections --- */
section {
    padding-top: var(--section-spacing);
    padding-bottom: var(--section-spacing);
}

/* --- Buttons --- */
.btn-primary {
    font-size: var(--fs-btn);
    font-weight: 600;
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 6px;
    padding: 0.6em 1.6em;
    transition: background-color var(--transition-base), border-color var(--transition-base), transform var(--transition-base);
}

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

.btn-secondary {
    font-size: var(--fs-btn);
    font-weight: 600;
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-white);
    border-radius: 6px;
    padding: 0.6em 1.6em;
    transition: background-color var(--transition-base), border-color var(--transition-base), transform var(--transition-base);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: #5f9450;
    border-color: #5f9450;
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-outline-primary {
    font-size: var(--fs-btn);
    font-weight: 600;
    background-color: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: 6px;
    padding: 0.6em 1.6em;
    transition: background-color var(--transition-base), color var(--transition-base), transform var(--transition-base);
}

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

/* --- Utility: Background Colors --- */
.bg-primary-light {
    background-color: var(--color-primary-light);
}

.bg-secondary-light {
    background-color: var(--color-secondary-light);
}

.bg-primary {
    background-color: var(--color-primary);
}

.bg-secondary {
    background-color: var(--color-secondary);
}

/* --- Utility: Text Colors --- */
.text-primary {
    color: var(--color-primary) !important;
}

.text-secondary {
    color: var(--color-secondary) !important;
}

/* --- Section Title Style --- */
.section-title {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--color-body);
    opacity: 0.75;
    margin-bottom: 2.5rem;
}

/* --- Divider / Accent Line --- */
.title-underline {
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--color-secondary);
    border-radius: 2px;
    margin-bottom: 1.25rem;
}



/* --- GSAP Animation Helpers --- */
.gsap-fade-up {
    opacity: 0;
    transform: translateY(40px);
}

.gsap-fade-in {
    opacity: 0;
}

/* --- Responsive Typography --- */
@media (max-width: 992px) {
    :root {
        --fs-h1: 2.8rem;
        --fs-h2: 2rem;
        --fs-h3: 1.7rem;
    }
}

@media (max-width: 576px) {
    :root {
        --fs-h1: 2.2rem;
        --fs-h2: 1.65rem;
        --fs-h3: 1.4rem;
        --section-spacing: 60px;
    }
}

/* =============================================
   NAVBAR — SPLIT / CENTERED LOGO
   ============================================= */
#mainNav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding-top: 1.1rem;
    padding-bottom: 1.1rem;
    background-color: transparent;
    box-shadow: none;
    z-index: 1040;
    transition: background-color 0.45s ease, box-shadow 0.45s ease,
        padding-top 0.35s ease, padding-bottom 0.35s ease;
}

#mainNav.scrolled {
    background-color: var(--color-white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.09);
    padding-top: 0.45rem;
    padding-bottom: 0.45rem;
}

#mainNav .navbar-collapse {
    justify-content: space-between;
    align-items: center;
}

/* --- Transparent state: white links over hero --- */
#mainNav:not(.scrolled) .nav-link {
    color: rgba(255, 255, 255, 0.88);
}

#mainNav:not(.scrolled) .nav-link:hover,
#mainNav:not(.scrolled) .nav-link.active {
    color: var(--color-white);
}

/* White hamburger icon over dark hero */
#mainNav:not(.scrolled) .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2C255%2C255%2C0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* --- Scrolled state: primary links on white --- */
#mainNav.scrolled .nav-link {
    color: var(--color-body);
}

#mainNav.scrolled .nav-link:hover,
#mainNav.scrolled .nav-link.active {
    color: var(--color-primary);
}

/* Logo shrinks on scroll */
#mainNav .navbar-brand img {
    max-height: 65px;
    width: auto;
    transition: max-height 0.35s ease;
}

#mainNav.scrolled .navbar-brand img {
    max-height: 48px;
}

/* Mobile brand also shrinks */
#mainNav.scrolled .d-lg-none img {
    height: 42px !important;
}

/* =============================================
   HERO SECTION
   ============================================= */
section.hero-section {
    padding: 0;
    min-height: 100vh;
    position: relative;
    background-size: cover;
    background-position: center top;
    background-color: var(--color-primary-dark);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* =============================================
   FLOATING ENQUIRE TAB
   ============================================= */
.enquire-tab {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding: 20px 10px;
    border-radius: 6px 0 0 6px;
    z-index: 1050;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    writing-mode: vertical-rl;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: -3px 0 14px rgba(0, 0, 0, 0.12);
    transition: background-color var(--transition-base), padding var(--transition-base);
}

.enquire-tab:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 22px 12px;
}

/* =============================================
   PATHWAY CARDS
   ============================================= */
.pathway-card {
    padding: 2rem;
    border-radius: 14px;
    height: 100%;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    border: 1px solid;
    border-color: #13498e !important;
}

.pathway-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(19, 73, 142, 0.12);
}

.pathway-card .card-icon {
    font-size: 2.2rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    display: block;
}

.pathway-card h5 {
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-body);
}

.pathway-card p {
    color: var(--color-body);
    opacity: 0.8;
    margin-bottom: 0;
    line-height: 1.65;
}

.pathway-card-block .row>*:nth-child(odd) .pathway-card {
    background-color: var(--color-primary-light);
}

.pathway-card-block .row>*:nth-child(even) .pathway-card {
    background-color: var(--color-secondary-light);
}

/* =============================================
   GVK CARD (general purpose)
   ============================================= */
.gvk-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    overflow: hidden;
}

.gvk-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(19, 73, 142, 0.12);
}

/* =============================================
   FOOTER
   ============================================= */
footer {
    background-color: var(--color-primary);
    color: rgba(255, 255, 255, 0.85);
    padding-top: 60px;
    padding-bottom: 30px;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-base);
}

footer a:hover {
    color: var(--color-white);
}

/* =============================================
   BUTTONS — PILL SHAPE
   ============================================= */
.btn-primary,
.btn-secondary,
.btn-outline-primary {
    border-radius: 9999px;
}

/* =============================================
   HERO — VIDEO BACKGROUND
   ============================================= */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Bottom-left alignment override */
section.hero-section {
    align-items: flex-end;
}

.hero-content-wrapper {
    padding-bottom: 90px;
    padding-top: 120px;
}

/* =============================================
   PATHWAY CARD — SVG ICON IMAGES
   ============================================= */
.card-icon-img {
    width: 56px;
    height: 56px;
    margin-bottom: 1.25rem;
    display: block;
    object-fit: contain;
}

/* =============================================
   MOBILE FULLSCREEN MENU
   ============================================= */
.mobile-menu {
    position: fixed;
    inset: 0;
    background-color: var(--color-primary);
    z-index: 2000;
    visibility: hidden;
    display: flex;
    flex-direction: column;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.5rem 2rem 2.5rem;
    overflow-y: auto;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2.5rem;
}

.mobile-menu-logo {
    height: 52px;
    width: auto;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 2rem;
    padding: 0;
    line-height: 1;
    cursor: pointer;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity var(--transition-base), transform var(--transition-base);
}

.mobile-menu-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.mobile-nav {
    flex: 1;
    display: flex;
    align-items: center;
}

.mobile-nav-list {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.mobile-nav-link {
    display: block;
    color: var(--color-white);
    font-size: 1.65rem;
    font-weight: 700;
    text-decoration: none;
    padding: 0.6rem 0;
    letter-spacing: -0.01em;
    transition: color var(--transition-base), padding-left var(--transition-base);
}

.mobile-nav-link:hover {
    color: var(--color-secondary);
    padding-left: 0.6rem;
}

.mobile-menu-footer {
    padding-top: 1.75rem;
    margin-top: 1.5rem;
}

.mobile-contact {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.mobile-contact a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: color var(--transition-base);
}

.mobile-contact a:hover {
    color: var(--color-white);
}

.mobile-social {
    display: flex;
    gap: 1.25rem;
}

.mobile-social a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.4rem;
    text-decoration: none;
    transition: color var(--transition-base);
}

.mobile-social a:hover {
    color: var(--color-secondary);
}

/* Hide Bootstrap collapse on mobile — custom GSAP menu handles it */
@media (max-width: 991.98px) {
    #navbarContent {
        display: none !important;
    }
}

/* =============================================
   MOBILE SUB-MENU (inside fullscreen menu)
   ============================================= */
.mobile-nav-toggle {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    text-align: left;
}

.mobile-nav-toggle .toggle-chevron {
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.mobile-nav-toggle[aria-expanded="true"] .toggle-chevron {
    transform: rotate(180deg);
}

.mobile-subnav {
    list-style: none;
    padding: 0.5rem 0 0.75rem 0.75rem;
    margin: 0;
}

.mobile-subnav li {
    border: none !important;
}

.mobile-subnav-link {
    display: block;
    color: rgba(255, 255, 255, 0.68);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    padding: 0.3rem 0;
    transition: color var(--transition-base), padding-left var(--transition-base);
}

.mobile-subnav-link:hover {
    color: var(--color-secondary);
    padding-left: 0.4rem;
}

/* =============================================
   STATS BAR
   ============================================= */
section.stats-bar {
    background-color: var(--color-primary);
    padding-top: 56px;
    padding-bottom: 56px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0 3rem;
}

.stat-item+.stat-item {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-icon {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1;
    flex-shrink: 0;
}

.stat-number {
    font-size: var(--fs-h2);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: 0.25rem !important;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: var(--fs-small);
    color: rgba(255, 255, 255, 0.68);
    display: block;
}

@media (max-width: 576px) {
    .stat-item {
        padding: 0 1.25rem;
    }

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

    .stat-number {
        font-size: var(--fs-h3);
    }
}

/* =============================================
   HOLISTIC GROWTH SECTION
   ============================================= */
.holistic-img-wrap {
    width: 100%;
    overflow: hidden;
    background-color: var(--color-primary-light);
    margin-bottom: 1.1rem;
    border-radius: 10px;
}

.holistic-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    border-radius: 10px;
}

.holistic-card:hover .holistic-img-wrap img {
    transform: scale(1.04);
}

.holistic-card h5 {
    font-weight: 700;
    color: var(--color-body);
    margin-bottom: 0.5rem;
}

.holistic-card p {
    font-size: var(--fs-small);
    color: var(--color-body);
    opacity: 0.72;
    margin-bottom: 0;
    line-height: 1.65;
}

/* =============================================
   OUR STORY SECTION
   ============================================= */
section.our-story-section {
    padding: 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-color: var(--color-primary-dark);
    min-height: 480px;
    display: flex;
    align-items: center;
}

.our-story-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.82) 38%,
            rgba(0, 0, 0, 0.25) 100%);
    z-index: 0;
}

.our-story-content {
    position: relative;
    z-index: 1;
    padding: 100px 0;
}

.our-story-content h2,
.our-story-content .section-title {
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.our-story-content p {
    color: rgba(255, 255, 255, 0.82);
}

/* =============================================
   OUR PROGRAMS & STUDENTS CARDS
   ============================================= */
.promo-card {
    border-radius: 20px;
    padding: 3rem 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.promo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.promo-card-primary {
    background-color: var(--color-primary);
}

.promo-card-secondary {
    background-color: var(--color-secondary);
}

.promo-icon {
    font-size: 2.6rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    display: block;
}

.promo-card h3 {
    color: var(--color-white);
    font-size: var(--fs-h4);
    font-weight: 700;
    margin-bottom: 1rem;
}

.promo-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
    flex: 1;
}

.btn-outline-white {
    border: 2px solid rgba(255, 255, 255, 0.75);
    color: var(--color-white);
    background: transparent;
    border-radius: 9999px;
    font-size: var(--fs-btn);
    font-weight: 600;
    padding: 0.55em 1.6em;
    text-decoration: none;
    display: inline-block;
    transition: background-color var(--transition-base), border-color var(--transition-base);
}

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

/* =============================================
   LIFE AT GVK — SWIPER SECTION
   ============================================= */
section.life-gvk-section {
    background: linear-gradient(135deg,
            #071a3a 0%,
            #0f3070 35%,
            var(--color-primary) 65%,
            #071a3a 100%);
    background-size: 300% 300%;
    animation: gradientShift 10s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.life-gvk-section .section-heading {
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.life-gvk-section .section-lead {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.97rem;
    line-height: 1.75;
    max-width: 640px;
    margin: 0 auto 3rem;
}

/* --- Swiper slides --- */
.life-gvk-swiper {
    /* overflow: visible; */
    padding-bottom: 0 !important;
}

.life-gvk-swiper .swiper-wrapper {
    align-items: stretch;
}

.life-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    cursor: pointer;
}

.life-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease;
}

.life-card:hover img {
    transform: scale(1.05);
}

.life-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.78) 0%,
            rgba(0, 0, 0, 0.1) 55%,
            transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem 1.25rem;
}

.life-card-overlay p {
    color: var(--color-white);
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.45;
    margin: 0;
}

/* --- Swiper footer row (button + pagination) --- */
.life-gvk-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}

@media (max-width: 767.98px) {
    .life-gvk-footer {
        flex-direction: column;
        gap: 15px;
    }
}


/* --- Custom pill pagination --- */
.life-gvk-pagination {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: flex-end;
    width: auto !important;
}

.life-gvk-pagination .swiper-pagination-bullet {
    width: 22px;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.35);
    opacity: 1;
    margin: 0 !important;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.life-gvk-pagination .swiper-pagination-bullet-active {
    width: 36px;
    background: var(--color-white);
}

/* =============================================
   TESTIMONIALS — HOVER ACCORDION SLIDER
   ============================================= */
.testi-track {
    display: flex;
    gap: 12px;
    align-items: stretch;
    height: 460px;
    overflow: hidden;
    padding: 40px 0px;
}

.testi-card {
    flex: 1 1 0;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.09);
    transition: flex 0.65s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.3s ease;
}

.testi-card:hover,
.testi-card.is-active {
    box-shadow: 0 12px 36px rgba(19, 73, 142, 0.18);
}

.testi-card.is-active {
    flex: 4.5;
    border: 1px solid #C9C9C9;
}

.testi-track:has(.is-active) .testi-card:not(.is-active) {
    flex: 0.45;
}

/* ── Image wrap ── */
.testi-img-wrap {
    position: relative;
    flex-shrink: 0;
    width: 100%;
    transition: width 0.65s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 0;
}

.testi-card.is-active .testi-img-wrap {
    width: 240px;
}

.testi-img-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.65s ease;
}

.testi-card.is-active .testi-img-wrap img {
    transform: scale(1.04);
}

/* ── Quote panel (revealed on expand) ── */
.testi-quote-panel {
    flex: 1;
    background: var(--color-white);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    min-width: 0;
    border-left: 3px solid var(--color-primary-light);
}

.testi-quote-mark {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 0.75;
    margin-bottom: 1rem;
    display: block;
    opacity: 0;
}

.testi-quote {
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--color-body);
    margin-bottom: 1.25rem;
    opacity: 0;
}

.testi-name {
    font-size: 0.875rem;
    font-weight: 700;
    font-style: italic;
    color: var(--color-primary);
    display: block;
    opacity: 0;
}

/* ── Mobile: Swiper card layout ── */
.testi-mob-swiper {
    padding: 40px 0px;
}

.testi-mob-card {
    background: var(--color-white);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    min-height: 195px;
    box-shadow: 0 8px 32px rgba(19, 73, 142, 0.11);
    border: 1px solid rgba(19, 73, 142, 0.06);
}

.testi-mob-img {
    width: 115px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.testi-mob-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.testi-mob-body {
    flex: 1;
    padding: 1.25rem 1.1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    border-left: 3px solid var(--color-primary-light);
}

.mob-quote-mark {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 0.75;
    margin-bottom: 0.6rem;
    display: block;
}

.mob-quote {
    color: var(--color-body);
    margin-bottom: 0.6rem;
}

.mob-name {
    font-weight: 700;
    font-style: italic;
    color: var(--color-primary);
    display: block;
}

/* Mobile pagination — positioned below the swiper via !important overrides */
.testi-mob-pagination {
    position: relative !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 1.5rem;
    transform: none !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
}

.testi-mob-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(19, 73, 142, 0.22);
    opacity: 1;
    margin: 0 !important;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.testi-mob-pagination .swiper-pagination-bullet-active {
    width: 22px;
    border-radius: 4px;
    background: var(--color-primary);
}

/* =============================================
   CTA SECTION
   ============================================= */
section.cta-section {
    background-color: var(--color-secondary);
    padding: 0;
    overflow: visible;
    position: relative;
}

.cta-inner {
    display: flex;
    align-items: flex-end;
    min-height: 380px;
}

.cta-person-col {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
}

.cta-person-img {
    display: block;
    max-height: 500px;
    width: auto;
    object-fit: contain;
    object-position: bottom center;
    margin-top: -80px;
    position: relative;
    z-index: 1;
}

.cta-content {
    padding: 4rem 2rem 4rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-heading {
    color: var(--color-white);
    font-size: var(--fs-h2);
    line-height: 1.18;
    margin-bottom: 1rem;
}

.cta-sub {
    color: rgba(255, 255, 255, 0.85);
    line-height: normal;
    margin-bottom: 2rem;
}

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

@media (max-width: 767.98px) {
    .cta-person-img {
        max-height: 280px;
        margin-top: -40px;
    }

    .cta-content {
        padding: 2rem 1.5rem 3rem;
        text-align: center;
    }

    .cta-btns {
        justify-content: center;
    }

    .testi-mob-card {
        flex-direction: column;
    }
}

.testi-mob-img {
    width: 100%;
    min-height: 250px;
}

.testi-mob-img img {
    object-fit: contain;
}

.testi-mob-body {
    text-align: center;
    border-left: none;
}

/* =============================================
   FOOTER — DARK NAVY DESIGN
   ============================================= */
footer.footer-new {
    background-color: #071a3a;
    color: rgba(255, 255, 255, 0.72);
    padding-top: 4rem;
}

.footer-logo {
    height: auto;
    width: auto;
    margin-bottom: 1.25rem;
    display: block;
}

.footer-desc {
    font-size: var(--fs-small);
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.78;
    max-width: 260px;
}

.footer-heading {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: 1.25rem;
}

/* Contact list */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: var(--fs-small);
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.6;
}

.footer-contact-list li .bi {
    font-size: 1rem;
    color: var(--color-secondary);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.footer-contact-list a {
    color: rgba(255, 255, 255, 0.68);
    text-decoration: none;
    transition: color var(--transition-base);
}

.footer-contact-list a:hover {
    color: var(--color-secondary);
}

/* Useful links list */
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 0.8rem;
}

.footer-links-list a {
    font-size: var(--fs-small);
    color: rgba(255, 255, 255, 0.68);
    text-decoration: none;
    transition: color var(--transition-base);
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.footer-links-list a::before {
    content: '›';
    color: var(--color-secondary);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
}

.footer-links-list a:hover {
    color: var(--color-secondary);
}

/* Back to top spinning SVG button */
.btop-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 92px;
    height: 92px;
    position: relative;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    text-decoration: none;
    margin: 0 auto;
}

.btop-ring {
    width: 92px;
    height: 92px;
    animation: spinSlow 12s linear infinite;
    overflow: visible;
}

@keyframes spinSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.btop-arrow {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btop-arrow .bi {
    font-size: 1.5rem;
    color: var(--color-white);
}

.btop-btn:hover .btop-ring {
    animation-duration: 5s;
}

/* Footer divider */
.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2.5rem 0 0;
}

/* Footer bottom bar */
.footer-bottom {
    background-color: rgba(0, 0, 0, 0.28);
    padding: 1.1rem 0;
}

.footer-copy {
    font-size: var(--fs-small);
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

/* Social icon circles */
.footer-social {
    display: flex;
    gap: 0.55rem;
    align-items: center;
    justify-content: flex-end;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    text-decoration: none;
    transition: border-color var(--transition-base),
        color var(--transition-base),
        background-color var(--transition-base);
}

.footer-social-link:hover {
    border-color: var(--color-secondary);
    color: var(--color-secondary);
    background-color: rgba(129, 185, 107, 0.12);
}

@media (max-width: 767.98px) {
    .footer-social {
        justify-content: center;
        margin-top: 0.75rem;
    }

    .footer-copy {
        text-align: center;
    }

    .btop-btn {
        margin-top: 1.5rem;
    }
}

/* =============================================
   INNER PAGE HERO BANNER
   ============================================= */
section.inner-hero {
    padding: 0;
    position: relative;
    min-height: 520px;
    background-size: cover;
    background-position: center;
    background-color: var(--color-primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.50);
    z-index: 0;
}

.inner-hero-content {
    position: relative;
    z-index: 1;
    padding: 200px 1rem 100px;
    text-align: center;
    width: 100%;
}

.inner-hero-content h1 {
    color: var(--color-white);
    font-weight: 700;
}

.inner-hero-content p {
    color: var(--color-white);
    max-width: 650px;
    margin: 1rem auto 0;
    line-height: 1.65;
    font-size: var(--fs-normal);
    opacity: 0.9;
}

@media (max-width: 991.98px) {
    section.inner-hero {
        min-height: 420px;
    }

    .inner-hero-content {
        padding: 140px 1rem 80px;
    }
}

@media (max-width: 576px) {
    section.inner-hero {
        min-height: 340px;
    }

    .inner-hero-content {
        padding: 120px 1rem 70px;
    }
}

/* =============================================
   WHY GVK — INNER PAGE SECTION
   ============================================= */
section.why-gvk-inner h2,
section.why-gvk-inner .section-title {
    color: var(--color-primary);
    margin-bottom: 1.25rem;
    font-weight: 700;
}

section.why-gvk-inner p {
    color: var(--color-body);
    opacity: 0.8;
}

.why-gvk-img {
    border-radius: 14px;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    box-shadow: 0 12px 40px rgba(19, 73, 142, 0.12);
}

/* =============================================
   GVK'S LEGACY SECTION
   ============================================= */
section.legacy-section {
    background-color: #0b2347;
}

.legacy-section h2,
.legacy-section .section-title {
    color: var(--color-white);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.legacy-section p {
    color: rgba(255, 255, 255, 0.82);
    max-width: 680px;
}

.legacy-img {
    border-radius: 14px;
    width: 100%;
    object-fit: cover;
    display: block;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

/* =============================================
   WHAT SETS US APART SECTION
   ============================================= */
.sets-apart-section {
    background-color: var(--color-white);
    padding-top: var(--section-spacing);
    padding-bottom: var(--section-spacing);
}

.sets-apart-section .section-title {
    font-size: var(--fs-h2);
    font-weight: 700;
    margin-bottom: 0;
    letter-spacing: -0.02em;
}

.sets-apart-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sets-apart-card {
    padding: 2.5rem 2rem;
    border-radius: 16px;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.sets-apart-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.05);
}

.sets-apart-card.bg-green {
    background-color: var(--color-secondary-light);
    /* #EBF8ED */
}

.sets-apart-card.bg-blue {
    background-color: var(--color-primary-light);
    /* #E8F0FE */
}

.sets-apart-card h5 {
    font-weight: 700;
    color: var(--color-body);
    margin-bottom: 0.75rem;
}

.sets-apart-card p {
    color: #475569;
    margin-bottom: 0;
}

.sets-apart-img-card {
    grid-column: 2;
    grid-row: 2 / span 2;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.sets-apart-img-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.sets-apart-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.sets-apart-img-card:hover img {
    transform: scale(1.04);
}

@media (max-width: 991.98px) {
    .sets-apart-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sets-apart-card {
        padding: 2rem 1.5rem;
    }

    .sets-apart-img-card {
        grid-column: auto;
        grid-row: auto;
        min-height: 340px;
        height: 340px;
    }
}

/* =============================================
   FROM THE PRINCIPAL'S DESK SECTION
   ============================================= */
section.principal-section {
    background-color: var(--color-primary-dark);
}

.principal-img {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
    display: block;
    
}

.principal-heading {
    color: var(--color-white);
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.principal-quote {
    font-style: italic;
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--color-secondary);
    padding-left: 1.25rem;
}

.principal-body {
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 0.85rem;
}

.principal-body strong {
    color: var(--color-white);
}

.principal-signature {
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.principal-signature p {
    color: var(--color-white);
    margin-bottom: 0.15rem;
}

@media (max-width: 767.98px) {
    .principal-img {
        max-width: 320px;
        margin: 0 auto;
    }

    .principal-quote {
        font-size: 1.1rem;
    }
}

.principal-heading {
    margin-bottom: 2.5rem;
}

.principal-swiper {
    overflow: hidden;
}

.principal-swiper .swiper-slide {
    height: auto;
}

.principal-swiper-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 2.5rem;
}

.principal-nav-btn {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border: none;
    border-radius: 50%;
    background-color: var(--color-white);
    color: var(--color-primary);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: background-color var(--transition-base), color var(--transition-base),
        box-shadow var(--transition-base);
}

.principal-nav-btn:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 6px 22px rgba(19, 73, 142, 0.28);
}

.principal-pagination {
    display: flex;
    align-items: center;
    gap: 6px;
}

.principal-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    opacity: 1;
    margin: 0 !important;
    transition: width 0.3s ease, border-radius 0.3s ease, background-color 0.3s ease;
}

.principal-pagination .swiper-pagination-bullet-active {
    width: 26px;
    border-radius: 5px;
    background: var(--color-white);
}

/* =============================================
   GVK PROMISE CTA SECTION
   ============================================= */
section.gvk-promise-section {
    padding: 0;
    position: relative;
    min-height: 480px;
    background-size: cover;
    background-position: top;
    background-color: var(--color-primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gvk-promise-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 50, 0.4);
    z-index: 0;
}

.gvk-promise-content {
    position: relative;
    z-index: 1;
    padding: 100px 1rem;
    max-width: 800px;
}

.gvk-promise-title {
    color: var(--color-white);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.gvk-promise-text {
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 1.25rem;
}

.gvk-promise-btn {
    margin-top: 0.75rem;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.85);
    color: var(--color-white);
    border-radius: 9999px;
    font-weight: 600;
    padding: 0.65em 2em;
    text-decoration: none;
    transition: background-color var(--transition-base), border-color var(--transition-base);
}

.gvk-promise-btn:hover {
    background-color: var(--color-white);
    border-color: var(--color-white);
    color: var(--color-primary-dark);
}

@media (max-width: 576px) {
    .gvk-promise-content {
        padding: 80px 1rem;
    }

    .gvk-promise-text br {
        display: none;
    }
}

/* =============================================
   SCHOOL ACADEMIC LEADERS SECTION
   ============================================= */
section.leaders-section {
    background-color: #f4f7fc;
}

.leader-card {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 6px 28px rgba(19, 73, 142, 0.10);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 48px rgba(19, 73, 142, 0.18);
}

.leader-card-img-wrap {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background-color: var(--color-primary-light);
}

.leader-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.55s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.leader-card:hover .leader-card-img {
    transform: scale(1.08);
}

.leader-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(to top,
            rgba(5, 20, 55, 0.92) 0%,
            rgba(5, 20, 55, 0.55) 55%,
            transparent 100%);
}

.leader-role {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0.25rem;
}

.leader-name {
    color: var(--color-white);
    margin: 0;
}

@media (max-width: 767.98px) {
    .leader-card-img-wrap {
        aspect-ratio: 3 / 3.5;
    }
}

/* =============================================
   PRIVACY POLICY PAGE
   ============================================= */
section.privacy-section {
    background-color: var(--color-white);
}

.privacy-effective {
    font-size: var(--fs-small);
    color: var(--color-body);
    opacity: 0.55;
    margin-bottom: 2rem;
}

.privacy-section h3 {
    font-size: var(--fs-h5);
    font-weight: 700;
    color: var(--color-primary);
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
}

.privacy-section p,
.privacy-section li {
    color: var(--color-body);
    opacity: 0.85;
}

.privacy-section ul {
    padding-left: 1.4rem;
    margin-bottom: 1rem;
}

.privacy-section ul li {
    margin-bottom: 0.4rem;
}

.privacy-address {
    font-style: normal;
    color: var(--color-body);
    opacity: 0.85;
    margin-top: 0.5rem;
}

.privacy-address a {
    color: var(--color-primary);
    text-decoration: none;
}

.privacy-address a:hover {
    text-decoration: underline;
}

/* =============================================
   LEARNER PROFILE CARDS
   ============================================= */
section.learner-profile-section {
    background-color: #f4f7fc;
}

.lp-card-wrap {
    position: relative;
    padding-bottom: 24px;
    height: 100%;
}

.learner-profile-section .row>*:nth-child(odd) .lp-card {
    background-color: var(--color-primary-light);
}

.learner-profile-section .row>*:nth-child(even) .lp-card {
    background-color: var(--color-secondary-light);
}

.lp-card {
    position: relative;
    z-index: 1;
    border-radius: 18px;
    background: var(--color-white);
    overflow: hidden;
    /* box-shadow: 0 8px 28px rgba(19, 73, 142, 0.10); */
    transition: transform 0.38s cubic-bezier(0.165, 0.84, 0.44, 1),
        box-shadow 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

.lp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 48px rgba(19, 73, 142, 0.18);
}

.lp-card-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
    background-color: var(--color-primary-light);
}

.lp-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.55s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.lp-card:hover .lp-card-img-wrap img {
    transform: scale(1.07);
}

.lp-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.3em 0.85em;
    border-radius: 999px;
    z-index: 2;
}

.lp-tag-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.lp-tag-secondary {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.lp-card-body {
    padding: 1.5rem;
}

.lp-card-body h5 {
    margin-bottom: 0.6rem;
}

.lp-card-body p {
    color: var(--color-body);
    opacity: 0.8;
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.65;
}

@media (max-width: 767.98px) {
    .lp-card-img-wrap {
        height: 200px;
    }
}

/* =============================================
   MANDATORY DISCLOSURE SECTION
   ============================================= */
section.disclosure-section {
    background-color: #f8fafc;
}

.disclosure-block {
    margin-bottom: 3rem;
}

.disclosure-heading {
    font-size: var(--fs-h5);
    font-weight: 700;
    color: var(--color-primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--color-primary-light);
}

/* Table */
.disclosure-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-base);
    font-size: var(--fs-small);
    background-color: var(--color-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(19, 73, 142, 0.07);
}

.disclosure-table thead tr {
    background-color: var(--color-primary-light);
}

.disclosure-table thead th {
    font-size: var(--fs-small);
    font-weight: 700;
    color: var(--color-primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.85rem 1rem;
    border-bottom: 2px solid #c5d8f8;
    white-space: nowrap;
}

.disclosure-table tbody tr {
    border-bottom: 1px solid #e8eef8;
    transition: background-color var(--transition-base);
}

.disclosure-table tbody tr:last-child {
    border-bottom: none;
}

.disclosure-table tbody tr:hover {
    background-color: #f0f5ff;
}

.disclosure-table td {
    font-size: var(--fs-small);
    color: var(--color-body);
    padding: 0.8rem 1rem;
    line-height: 1.6;
    vertical-align: middle;
}

.col-sl {
    width: 60px;
    text-align: center;
}

.col-link {
    width: 180px;
}

.disclosure-link {
    color: var(--color-primary);
    font-weight: 600;
    font-size: var(--fs-small);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: color var(--transition-base);
    white-space: nowrap;
}

.disclosure-link:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

.disclosure-link .bi {
    font-size: 0.7rem;
}

.disclosure-na {
    color: var(--color-body);
    opacity: 0.38;
    font-size: var(--fs-small);
}

/* Document Quick Links Grid */
.disclosure-docs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 2.5rem;
}

.disclosure-doc-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    padding: 1.25rem 1rem;
    background-color: var(--color-primary-light);
    border: 1px solid #c5d8f8;
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    transition: background-color var(--transition-base),
        border-color var(--transition-base),
        transform var(--transition-base),
        box-shadow var(--transition-base);
}

.disclosure-doc-card:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(19, 73, 142, 0.18);
}

.disclosure-doc-card .bi {
    font-size: 1.6rem;
    color: var(--color-primary);
    transition: color var(--transition-base);
    flex-shrink: 0;
}

.disclosure-doc-card:hover .bi {
    color: var(--color-white);
}

.disclosure-doc-card span {
    font-family: var(--font-base);
    font-size: var(--fs-small);
    font-weight: 600;
    color: var(--color-body);
    line-height: 1.4;
    transition: color var(--transition-base);
}

.disclosure-doc-card:hover span {
    color: var(--color-white);
}

@media (max-width: 991.98px) {
    .disclosure-docs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767.98px) {
    .disclosure-docs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .col-link {
        width: auto;
    }
}

@media (max-width: 480px) {
    .disclosure-docs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .disclosure-doc-card {
        padding: 1rem 0.75rem;
    }
}

/* =============================================
   ADMISSION PAGE
   ============================================= */

/* ── Who Can Apply ─────────────────────────── */
section.admission-who-section {
    background: var(--color-white);
}

.adm-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    border-top: 4px solid transparent;
    box-shadow: 0 4px 24px rgba(19, 73, 142, 0.09);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.adm-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(19, 73, 142, 0.14);
}

.adm-card-primary {
    border-top-color: var(--color-primary);
}

.adm-card-secondary {
    border-top-color: var(--color-secondary);
}

.adm-card-head {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.4rem;
}

.adm-card-head h5 {
    font-size: var(--fs-h6);
    font-weight: 700;
    color: var(--color-primary-dark);
    margin: 0;
}

.adm-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--color-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.adm-card-icon .bi {
    font-size: 1.3rem;
    color: var(--color-primary);
}

.adm-icon-secondary {
    background: var(--color-secondary-light);
}

.adm-icon-secondary .bi {
    color: #3d7a27;
}

.adm-sub-head {
    font-size: var(--fs-small);
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
}

.adm-note {
    font-size: var(--fs-small);
    color: #666;
    margin-bottom: 0.35rem;
}

.adm-list {
    padding-left: 1.2rem;
    margin: 0;
    font-size: var(--fs-small);
    color: var(--color-body);
    line-height: 1.6;
}

.adm-list li {
    margin-bottom: 0.45rem;
}

.adm-docs-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.adm-docs-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: var(--fs-small);
    line-height: 1.55;
    color: var(--color-body);
}

.adm-docs-list .bi-check-circle-fill {
    color: #3d7a27;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── Admission Process Steps ───────────────── */
section.admission-steps-section {
    background: #f4f7fc;
}

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

.adm-steps-grid::before {
    content: '';
    position: absolute;
    top: 60px;
    left: calc(12.5% + 10px);
    right: calc(12.5% + 10px);
    height: 2px;
    background: linear-gradient(to right, var(--color-primary-light), var(--color-primary-light));
    z-index: 0;
    pointer-events: none;
}

.adm-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.adm-step-badge {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: 0.12em;
    margin-bottom: 0.5rem;
    opacity: 0.45;
}

.adm-step-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--color-white);
    border: 2px solid var(--color-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.1rem;
    box-shadow: 0 4px 16px rgba(19, 73, 142, 0.1);
    transition: background var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.adm-step:hover .adm-step-icon {
    background: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 8px 28px rgba(19, 73, 142, 0.28);
}

.adm-step-icon .bi {
    font-size: 1.55rem;
    color: var(--color-primary);
    transition: color var(--transition-base);
}

.adm-step:hover .adm-step-icon .bi {
    color: var(--color-white);
}

.adm-step h6 {
    font-size: var(--fs-h6);
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 0.5rem;
}

.adm-step p {
    font-size: var(--fs-small);
    color: #555;
    line-height: 1.6;
    max-width: 200px;
    margin: 0 auto;
}

@media (max-width: 991.98px) {
    .adm-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1.5rem;
    }

    .adm-steps-grid::before {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .adm-steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ── Enquiry Section ────────────────────────── */
section.enquiry-section {
    padding: 0;
    overflow: hidden;
}

.enquiry-inner {
    padding: var(--section-spacing) 0;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    position: relative;
}

.enquiry-inner::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.enquiry-inner::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 30%;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(129, 185, 107, 0.08);
    pointer-events: none;
}

/* Left info panel */
.enquiry-info-panel {
    padding: 0 3rem 0 0;
    height: 100%;
}

.enquiry-eyebrow {
    display: inline-block;
    font-size: var(--fs-small);
    font-weight: 700;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
    background: rgba(129, 185, 107, 0.15);
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    border: 1px solid rgba(129, 185, 107, 0.3);
}

.enquiry-heading {
    color: var(--color-white);
    margin-bottom: 1.1rem;
}

.enquiry-desc {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.enquiry-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.enquiry-contact-list li {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.eq-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.eq-icon .bi {
    font-size: 0.9rem;
    color: var(--color-secondary);
}

/* Right form card */
.enquiry-form-card {
    background: var(--color-white);
    border-radius: 24px;
    padding: 2.75rem;
    box-shadow: 0 24px 64px rgba(1, 45, 101, 0.28);
    position: relative;
}

.enquiry-form-title {
    font-size: var(--fs-h5);
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 1.75rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--color-primary-light);
}

.eq-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--color-primary-dark);
    margin-bottom: 0.45rem;
}

.eq-captcha-q {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: 0.05em;
    text-transform: none;
}

.eq-input {
    width: 100%;
    background: #f7f9fc;
    border: 1.5px solid #dde3ef;
    border-radius: 10px;
    padding: 0.72rem 1rem;
    color: var(--color-body);
    outline: none;
    transition: border-color var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
    -webkit-appearance: none;
    appearance: none;
}

.eq-input::placeholder {
    color: #b0bac8;
}

.eq-input:focus {
    border-color: var(--color-primary);
    background: var(--color-white);
    box-shadow: 0 0 0 3.5px rgba(19, 73, 142, 0.1);
}

.eq-select {
    cursor: pointer;
    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='%2313498E' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.eq-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
    background: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-base);
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    letter-spacing: 0.02em;
    transition: background var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}

.eq-submit:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(19, 73, 142, 0.28);
}

.eq-submit .bi {
    font-size: 1rem;
    transition: transform var(--transition-base);
}

.eq-submit:hover .bi {
    transform: translateX(4px);
}

@media (max-width: 991.98px) {
    .enquiry-info-panel {
        padding: 0 0 2.5rem 0;
    }
}

@media (max-width: 767.98px) {
    .enquiry-form-card {
        padding: 2rem 1.5rem;
    }

    .enquiry-heading {
        font-size: 1.75rem;
    }
}

/* =============================================
   JOIN OUR TEAM / CAREERS PAGE
   ============================================= */

/* ── Current Openings ──────────────────────── */
section.careers-openings-section {
    background: #f4f7fc;
}

.career-card {
    background: var(--color-white);
    border-radius: 18px;
    padding: 1.75rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 16px rgba(19, 73, 142, 0.07);
    transition: box-shadow var(--transition-base), transform var(--transition-base);
    border: 1.5px solid transparent;
}

.career-card:hover {
    box-shadow: 0 12px 40px rgba(19, 73, 142, 0.14);
    transform: translateY(-5px);
    border-color: var(--color-primary-light);
}

.career-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.career-tag {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.28rem 0.8rem;
    border-radius: 50px;
}

.career-tag-blue {
    background: var(--color-primary-light);
    color: var(--color-primary);
}

.career-tag-green {
    background: var(--color-secondary-light);
    color: #3d7a27;
}

.career-tag-orange {
    background: #fff4e6;
    color: #c46b00;
}

.career-badge {
    font-size: 0.72rem;
    font-weight: 600;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.career-badge .bi {
    font-size: 0.75rem;
}

.career-title {
    font-size: var(--fs-h5);
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 0.6rem;
}

.career-desc {
    font-size: var(--fs-small);
    color: #555;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 1.1rem;
}

.career-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    margin-bottom: 1.25rem;
}

.career-meta span {
    font-size: var(--fs-small);
    color: #777;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.career-meta .bi {
    color: var(--color-primary);
    font-size: 0.85rem;
}

.career-apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--fs-small);
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    border: 2px solid var(--color-primary);
    border-radius: 8px;
    padding: 0.55rem 1.25rem;
    align-self: flex-start;
    transition: background var(--transition-base), color var(--transition-base), transform var(--transition-base);
}

.career-apply-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateX(3px);
}

.career-apply-btn .bi {
    transition: transform var(--transition-base);
}

.career-apply-btn:hover .bi {
    transform: translateX(4px);
}

/* ── Application Form Section ──────────────── */
section.careers-form-section {
    padding: 0;
    overflow: hidden;
}

.careers-form-inner {
    padding: var(--section-spacing) 0;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    position: relative;
}

.careers-form-inner::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -80px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

.careers-form-inner::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 20%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(129, 185, 107, 0.07);
    pointer-events: none;
}

/* Left info panel */
.careers-info-panel {
    padding: 0 3rem 0 0;
}

.careers-eyebrow {
    display: inline-block;
    font-size: var(--fs-small);
    font-weight: 700;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
    background: rgba(129, 185, 107, 0.15);
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    border: 1px solid rgba(129, 185, 107, 0.3);
}

.careers-heading {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.careers-desc {
    font-size: var(--fs-small);
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
    margin-bottom: 2.25rem;
}

.careers-perk-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.careers-perk-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.cp-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cp-icon .bi {
    font-size: 1rem;
    color: var(--color-secondary);
}

.careers-perk-list li div strong {
    display: block;
    font-size: var(--fs-small);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.2rem;
}

.careers-perk-list li div p {
    font-size: var(--fs-small);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.55;
    margin: 0;
}

/* Right form card */
.careers-form-card {
    background: var(--color-white);
    border-radius: 24px;
    padding: 2.75rem;
    box-shadow: 0 24px 64px rgba(1, 45, 101, 0.3);
}

.careers-form-title {
    font-size: var(--fs-h5);
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 1.75rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--color-primary-light);
}

/* Textarea */
.eq-textarea {
    resize: vertical;
    min-height: 110px;
}

/* Resume upload area */
.careers-upload-wrap {
    border: 2px dashed #dde3ef;
    border-radius: 12px;
    background: #f7f9fc;
    padding: 1.75rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: border-color var(--transition-base), background var(--transition-base);
}

.careers-upload-wrap:hover,
.careers-upload-wrap.careers-upload-drag {
    border-color: var(--color-primary);
    background: var(--color-primary-light);
}

.careers-upload-icon {
    font-size: 2rem;
    color: var(--color-primary);
    display: block;
    margin-bottom: 0.5rem;
}

.careers-upload-text {
    font-size: var(--fs-small);
    font-weight: 600;
    color: var(--color-primary-dark);
    margin: 0 0 0.25rem;
}

.careers-upload-hint {
    display: block;
    font-size: 0.72rem;
    color: #999;
    margin-bottom: 0.85rem;
}

.careers-upload-btn {
    display: inline-block;
    font-size: var(--fs-small);
    font-weight: 600;
    color: var(--color-primary);
    border: 1.5px solid var(--color-primary);
    border-radius: 8px;
    padding: 0.45rem 1.2rem;
    cursor: pointer;
    transition: background var(--transition-base), color var(--transition-base);
}

.careers-upload-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.careers-file-name {
    font-size: var(--fs-small);
    color: var(--color-primary);
    font-weight: 600;
    margin-top: 0.5rem;
    min-height: 1.2rem;
}

.careers-submit {
    background: var(--color-secondary) !important;
}

.careers-submit:hover {
    background: #5f9450 !important;
    box-shadow: 0 8px 24px rgba(63, 122, 39, 0.28) !important;
}

@media (max-width: 991.98px) {
    .careers-info-panel {
        padding: 0 0 2.5rem 0;
    }
}

@media (max-width: 767.98px) {
    .careers-form-card {
        padding: 2rem 1.5rem;
    }

    .careers-heading {
        font-size: 2rem;
    }
}

/* =============================================
   REACH US — Light theme override
   ============================================= */

.reach-form-inner {
    background: #f4f7fc;
}

.reach-form-inner::before {
    background: rgba(19, 73, 142, 0.04);
}

.reach-form-inner::after {
    background: rgba(129, 185, 107, 0.06);
}

.reach-form-inner .careers-eyebrow {
    color: #3d7a27;
    background: var(--color-secondary-light);
    border-color: rgba(129, 185, 107, 0.4);
}

.reach-form-inner .careers-heading {
    color: var(--color-primary-dark);
}

.reach-form-inner .careers-desc {
    color: #555;
}

.reach-form-inner .cp-icon {
    background: var(--color-primary-light);
    border-color: rgba(19, 73, 142, 0.12);
}

.reach-form-inner .cp-icon .bi {
    color: var(--color-primary);
}

.reach-form-inner .careers-perk-list li div strong {
    color: var(--color-primary-dark);
}

.reach-form-inner .careers-perk-list li div p {
    color: #666;
}

.reach-form-inner .careers-form-card {
    box-shadow: 0 8px 40px rgba(19, 73, 142, 0.10);
    border: 1px solid rgba(19, 73, 142, 0.06);
}

/* =============================================
   GVK PULSE / CHRONICLE — Blog Listing
   ============================================= */

.pulse-section {
    background: var(--color-white);
    padding: var(--section-spacing) 0;
}

.pulse-eyebrow {
    display: inline-block;
    font-size: var(--fs-small);
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.75rem;
    background: var(--color-primary-light);
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
}

/* ── Category Filters ── */
.pulse-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.pulse-filter {
    font-size: var(--fs-small);
    font-weight: 600;
    color: #555;
    background: #f4f7fc;
    border: 1.5px solid #dde6f4;
    border-radius: 50px;
    padding: 0.45rem 1.2rem;
    cursor: pointer;
    transition: background var(--transition-base), color var(--transition-base), border-color var(--transition-base);
}

.pulse-filter:hover,
.pulse-filter.active {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

/* ── Featured Article Card ── */
.pulse-featured {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    border: 1.5px solid var(--color-primary-light);
    margin-bottom: 0.5rem;
    transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.pulse-featured:hover {
    box-shadow: 0 16px 56px rgba(19, 73, 142, 0.15);
    transform: translateY(-4px);
    color: inherit;
    text-decoration: none;
}

.pulse-featured-img {
    height: 100%;
    min-height: 340px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.pulse-featured:hover .pulse-featured-img {
    transform: scale(1.03);
}

.pulse-featured-body {
    padding: 2.5rem 2.75rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pulse-featured-top {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.1rem;
}

.pulse-featured-badge {
    font-size: 0.68rem;
    font-weight: 700;
    color: #92400e;
    background: #fef3c7;
    border: 1px solid #fde68a;
    padding: 0.28rem 0.75rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.pulse-featured-badge .bi {
    font-size: 0.6rem;
}

.pulse-featured-title {
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    font-weight: 800;
    color: var(--color-primary-dark);
    line-height: 1.25;
    margin-bottom: 1rem;
}

.pulse-featured-excerpt {
    font-size: var(--fs-small);
    color: #555;
    line-height: 1.8;
    flex: 1;
    margin-bottom: 1.5rem;
}

/* ── Category Badges ── */
.pulse-category {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
}

.pulse-cat-blue {
    background: var(--color-primary-light);
    color: var(--color-primary);
}

.pulse-cat-green {
    background: var(--color-secondary-light);
    color: #3d7a27;
}

.pulse-cat-orange {
    background: #fff4e6;
    color: #c46b00;
}

.pulse-cat-purple {
    background: #f0ebff;
    color: #6b3fd4;
}

/* ── Meta Row ── */
.pulse-card-meta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
    font-size: var(--fs-small);
    color: #888;
}

.pulse-meta-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    flex-shrink: 0;
}

.pulse-av-green {
    background: var(--color-secondary);
}

.pulse-av-orange {
    background: #e07b00;
}

.pulse-av-purple {
    background: #6b3fd4;
}

.pulse-meta-author {
    font-weight: 600;
    color: var(--color-body);
    font-size: var(--fs-small);
}

.pulse-meta-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #bbb;
    flex-shrink: 0;
}

.pulse-card-meta .bi {
    font-size: 0.75rem;
    color: var(--color-primary);
}

/* ── Read More ── */
.pulse-readmore {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: var(--fs-small);
    font-weight: 700;
    color: var(--color-primary);
    transition: gap var(--transition-base);
}

.pulse-featured:hover .pulse-readmore {
    gap: 0.75rem;
}

/* ── Regular Article Cards ── */
.pulse-card {
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    border-radius: 18px;
    overflow: hidden;
    border: 1.5px solid var(--color-primary-light);
    text-decoration: none;
    color: inherit;
    height: 100%;
    transition: box-shadow var(--transition-base), transform var(--transition-base), border-color var(--transition-base);
}

.pulse-card:hover {
    box-shadow: 0 14px 44px rgba(19, 73, 142, 0.13);
    transform: translateY(-5px);
    border-color: var(--color-primary);
    color: inherit;
    text-decoration: none;
}

.pulse-card-img-wrap {
    overflow: hidden;
    flex-shrink: 0;
}

.pulse-card-img {
    height: 210px;
    background-size: cover;
    background-position: center;
    transition: transform 0.45s ease;
}

.pulse-card:hover .pulse-card-img {
    transform: scale(1.05);
}

.pulse-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pulse-card-title {
    font-size: var(--fs-h6);
    font-weight: 700;
    color: var(--color-primary-dark);
    line-height: 1.35;
    margin: 0.65rem 0 0.75rem;
}

.pulse-card-excerpt {
    font-size: var(--fs-small);
    color: #666;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pulse-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid #eef1f8;
}

.pulse-card-footer .pulse-card-meta {
    gap: 0.5rem;
    margin-bottom: 0;
}

.pulse-meta-info {
    display: block;
    font-size: 0.72rem;
    color: #999;
}

.pulse-readmore-sm {
    font-size: var(--fs-small);
    font-weight: 700;
    color: var(--color-primary);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: gap var(--transition-base);
}

.pulse-card:hover .pulse-readmore-sm {
    gap: 0.55rem;
}

/* =============================================
   GVK PULSE ARTICLE — Single Post
   ============================================= */

/* Article hero header */
.article-hero-section {
    background: #13498e;
    padding: 10rem 0 2rem;
    border-bottom: 1px solid #e8eef8;
}

.article-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--fs-small);
    color: #fff;
    margin-bottom: 1.5rem;
}

.article-breadcrumb a {
    color: var(--color-primary-light);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap var(--transition-base);
}

.article-breadcrumb a:hover {
    gap: 0.65rem;
}

.ab-sep {
    color: #ccc;
}

.article-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--color-primary-light);
    line-height: 1.2;
    margin: 0.75rem 0 1.5rem;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid #e0e8f4;
}

.article-meta-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.article-meta-author strong {
    display: block;
    font-size: var(--fs-small);
    font-weight: 700;
    color: var(--color-primary-dark);
}

.article-meta-author span {
    font-size: 0.72rem;
    color: #888;
}

.article-meta-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: var(--fs-small);
    color: #888;
}

.article-meta-right .bi {
    color: var(--color-primary);
    margin-right: 0.3rem;
}

/* Article hero image */
.article-hero-img-wrap {
    margin: 2rem auto;
    padding: 0 1rem;
}

.article-hero-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 18px;
    display: block;
}

.article-img-caption {
    font-size: 0.78rem;
    color: #999;
    text-align: center;
    margin-top: 0.75rem;
    font-style: italic;
}

/* Article body */
.article-body-section {
    padding: 2rem 0 var(--section-spacing);
}

.article-content {
    font-family: var(--font-base);
}

.article-lead {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.85;
    font-weight: 500;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e8eef8;
}

.article-content h2 {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--color-primary-dark);
    margin: 2.25rem 0 1rem;
}

.article-content p {
    font-size: 1rem;
    color: #444;
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

.article-quote {
    border-left: 4px solid var(--color-primary);
    background: var(--color-primary-light);
    border-radius: 0 12px 12px 0;
    padding: 1.5rem 1.75rem;
    margin: 2rem 0;
}

.article-quote p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    font-style: italic;
    line-height: 1.65;
    margin: 0 0 0.5rem;
}

.article-quote cite {
    font-size: var(--fs-small);
    font-weight: 700;
    color: var(--color-primary);
    font-style: normal;
}

.article-list {
    padding-left: 0;
    list-style: none;
    margin-bottom: 1.5rem;
}

.article-list li {
    font-size: 1rem;
    color: #444;
    line-height: 1.75;
    padding: 0.55rem 0 0.55rem 1.75rem;
    border-bottom: 1px solid #f0f4fb;
    position: relative;
}

.article-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-secondary);
}

/* Tags */
.article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin: 2.5rem 0 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e8eef8;
}

.article-tag-label {
    font-size: var(--fs-small);
    font-weight: 700;
    color: #666;
}

.article-tag {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--color-primary);
    background: var(--color-primary-light);
    border: 1px solid rgba(19, 73, 142, 0.15);
    border-radius: 50px;
    padding: 0.28rem 0.85rem;
    text-decoration: none;
    transition: background var(--transition-base), color var(--transition-base);
}

.article-tag:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* Share */
.article-share {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.article-share-label {
    font-size: var(--fs-small);
    font-weight: 700;
    color: #555;
}

.article-share-btns {
    display: flex;
    gap: 0.5rem;
}

.ash-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    transition: transform var(--transition-base), opacity var(--transition-base);
}

.ash-btn:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}

.ash-fb {
    background: #1877f2;
    color: #fff;
}

.ash-tw {
    background: #000;
    color: #fff;
}

.ash-wa {
    background: #25d366;
    color: #fff;
}

.ash-lk {
    background: #0a66c2;
    color: #fff;
}

/* Author bio card */
.article-author-card {
    display: flex;
    gap: 1.25rem;
    background: #f8fafd;
    border: 1.5px solid var(--color-primary-light);
    border-radius: 18px;
    padding: 1.75rem 2rem;
    margin-top: 2rem;
}

.aac-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    flex-shrink: 0;
}

.aac-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-secondary);
    display: block;
    margin-bottom: 0.25rem;
}

.aac-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-primary-dark);
    margin-bottom: 0.2rem;
}

.aac-role {
    font-size: var(--fs-small);
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.aac-bio {
    font-size: var(--fs-small);
    color: #666;
    line-height: 1.65;
    margin: 0;
}

/* ── Sidebar ── */
.article-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-block {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e8eef8;
}

.sidebar-heading {
    font-size: var(--fs-small);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary-dark);
    margin-bottom: 0.85rem;
}

.sidebar-text {
    font-size: var(--fs-small);
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.sidebar-articles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-article {
    display: flex;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    transition: opacity var(--transition-base);
}

.sidebar-article:hover {
    opacity: 0.8;
}

.sa-img {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.sa-title {
    font-size: var(--fs-small);
    font-weight: 600;
    color: var(--color-primary-dark);
    line-height: 1.4;
    margin: 0.3rem 0 0.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sa-date {
    font-size: 0.72rem;
    color: #999;
}

.sidebar-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--fs-small);
    font-weight: 700;
    color: var(--color-primary);
    border: 1.5px solid var(--color-primary);
    border-radius: 8px;
    padding: 0.6rem 1.25rem;
    text-decoration: none;
    transition: background var(--transition-base), color var(--transition-base);
}

.sidebar-back-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* Responsive */
@media (max-width: 991.98px) {
    .pulse-featured-img {
        min-height: 260px;
    }

    .pulse-featured-body {
        padding: 1.75rem;
    }

    .article-sidebar {
        position: static;
        margin-top: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .pulse-featured-title {
        font-size: 1.4rem;
    }

    .article-title {
        font-size: 1.6rem;
    }

    .article-hero-img {
        height: 240px;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .article-author-card {
        flex-direction: column;
    }
}

/* =============================================
   OUR PROGRAMS PAGE
   ============================================= */

/* --- Program Card Icon Wrapper (mirrors card-icon-img visual weight) --- */
.prog-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background-color: rgba(19, 73, 142, 0.11);
    border-radius: 14px;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
}

.prog-icon-wrap .bi {
    font-size: 1.6rem;
    color: var(--color-primary);
    line-height: 1;
}

.prog-icon-green {
    background-color: rgba(129, 185, 107, 0.16);
}

.prog-icon-green .bi {
    color: #5f9450;
}

/* Age tag pill inside card headings */
.prog-age-tag {
    display: inline-block;
    font-size: 0.66rem;
    font-weight: 500;
    color: var(--color-primary);
    background-color: rgba(19, 73, 142, 0.1);
    border-radius: 20px;
    padding: 0.12em 0.65em;
    margin-left: 0.4em;
    vertical-align: middle;
    letter-spacing: 0.01em;
}

/* --- Language Banner --- */
.language-banner {
    background-color: var(--color-primary-dark);
    padding: 2.25rem 0;
}

.language-banner-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    text-align: center;
}

.lang-intro-text {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.92rem;
    margin-bottom: 0;
}

.lang-chips-wrap {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    justify-content: center;
}

.lang-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.48em 1.15em;
    border-radius: 9999px;
    font-size: 0.88rem;
    font-weight: 600;
}

.lang-chip-primary {
    background-color: rgba(255, 255, 255, 0.09);
    color: var(--color-white);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.lang-chip-secondary {
    background-color: rgba(129, 185, 107, 0.15);
    color: #a8d68a;
    border: 1.5px solid rgba(129, 185, 107, 0.32);
}

.lang-dot {
    font-size: 0.45rem;
}

.lang-sub {
    font-weight: 400;
    opacity: 0.72;
    font-size: 0.82rem;
}

/* --- Assessment: Measuring Progress heading --- */
.prog-measure-heading {
    font-size: var(--fs-h3);
    font-weight: 700;
    color: var(--color-primary-dark);
    line-height: 1.25;
    margin-bottom: 1.25rem;
}

/* --- Assessment blockquote --- */
.prog-quote {
    border-left: 4px solid var(--color-secondary);
    padding: 0.9rem 1.25rem;
    background-color: var(--color-secondary-light);
    border-radius: 0 10px 10px 0;
    font-style: italic;
    color: var(--color-body);
    margin: 1.5rem 0 0;
    font-size: 0.93rem;
    line-height: 1.78;
}

/* --- Checklist inside cards --- */
.prog-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.52rem;
}

.prog-check-list li {
    font-size: var(--fs-small);
    color: var(--color-body);
    opacity: 0.82;
    padding-left: 1.45rem;
    position: relative;
    line-height: 1.55;
}

.prog-check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.38em;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: var(--color-primary);
    opacity: 0.6;
}

.pathway-card.bg-secondary-light .prog-check-list li::before {
    background-color: #5f9450;
}

/* --- Teaching Methodology light-bg section --- */
.prog-methodology-section {
    background: linear-gradient(to bottom, #E8F0FE 0%, #ffffff 100%);
}

.teaching-approach-section {
    background: linear-gradient(to bottom, #E8F0FE 0%, #ffffff 100%);
}

/* --- Beyond the Classroom dark section --- */
.beyond-classroom-section {
    background: linear-gradient(135deg, #071a3a 0%, var(--color-primary) 100%);
    padding-top: var(--section-spacing);
    padding-bottom: var(--section-spacing);
}

.beyond-title {
    color: var(--color-white);
    font-size: var(--fs-h2);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.beyond-underline {
    background-color: var(--color-secondary);
}

.beyond-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.beyond-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.5;
}

.beyond-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    font-size: 1.2rem;
    color: var(--color-secondary);
    transition: background-color var(--transition-base);
}

.beyond-list li:hover .beyond-icon-wrap {
    background-color: rgba(129, 185, 107, 0.22);
}

/* --- Teacher Development Card --- */
.teacher-dev-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: background-color var(--transition-base), transform var(--transition-base);
}

.teacher-dev-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
}

.teacher-dev-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background-color: var(--color-secondary);
    font-size: 1.75rem;
    color: var(--color-white);
    flex-shrink: 0;
}

.teacher-dev-title {
    color: var(--color-white);
    font-size: var(--fs-h5);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.teacher-dev-text {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.95rem;
    line-height: 1.78;
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .language-banner-inner {
        flex-direction: column;
        gap: 1rem;
    }

    .beyond-title {
        font-size: var(--fs-h3);
    }

    .teacher-dev-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem 1.5rem;
    }
}

/* =============================================
   SPORTS PROGRAM SECTION
   ============================================= */
.sports-sub-heading {
    font-size: var(--fs-h4);
    font-weight: 700;
    color: var(--color-body);
    margin-bottom: 1.75rem;
}

/* Clickable sport cards */
.sports-card {
    cursor: pointer;
    position: relative;
}

.sports-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.sports-card:hover::after {
    border-color: var(--color-secondary);
}

/* View icon on hover */
.sports-card .life-card-overlay::after {
    content: '\F52A';
    font-family: 'bootstrap-icons';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.6);
    font-size: 2.2rem;
    color: rgba(255, 255, 255, 0);
    transition: color 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}

.sports-card:hover .life-card-overlay::after {
    color: rgba(255, 255, 255, 0.9);
    transform: translate(-50%, -50%) scale(1);
}

/* Swiper wrapper with padding for nav arrows */
.sports-swiper-wrap {
    position: relative;
}

/* Custom circular nav buttons */
.sports-swiper-wrap .swiper-button-prev,
.sports-swiper-wrap .swiper-button-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-white);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.16);
    color: var(--color-primary);
    top: 50%;
    margin-top: 0;
    transform: translateY(-50%);
    transition: background-color var(--transition-base), color var(--transition-base),
        box-shadow var(--transition-base);
}

.sports-swiper-wrap .swiper-button-prev::after,
.sports-swiper-wrap .swiper-button-next::after {
    font-size: 0.85rem;
    font-weight: 900;
}

.sports-swiper-wrap .swiper-button-prev:hover,
.sports-swiper-wrap .swiper-button-next:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 6px 22px rgba(19, 73, 142, 0.28);
}

/* Bottom note */
.sports-note {
    font-size: var(--fs-small);
    color: var(--color-body);
    opacity: 0.68;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ── Sports Photo Modal — fullscreen with thumbnail strip ── */
#sportsModal .modal-dialog {
    margin: 0;
}

.sports-modal-content {
    background-color: #0b1120;
    border: none;
    border-radius: 0;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Header */
.sports-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
    background-color: #0b1120;
    z-index: 2;
}

.sports-modal-title {
    color: var(--color-white);
    font-size: var(--fs-h5);
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.01em;
}

.sports-modal-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: color var(--transition-base), background-color var(--transition-base);
    padding: 0;
    flex-shrink: 0;
}

.sports-modal-close:hover {
    color: var(--color-white);
    background-color: rgba(255, 255, 255, 0.1);
}

/* Main image area — fills remaining height */
.sports-modal-main {
    flex: 1;
    min-height: 0;
    position: relative;
    overflow: hidden;
}

.sports-popup-swiper {
    width: 100%;
    height: 100%;
}

.sports-popup-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
}

.sports-popup-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Nav arrows */
.sports-popup-swiper .swiper-button-prev,
.sports-popup-swiper .swiper-button-next {
    color: var(--color-white);
    background-color: rgba(0, 0, 0, 0.45);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    transition: background-color var(--transition-base);
}

.sports-popup-swiper .swiper-button-prev:hover,
.sports-popup-swiper .swiper-button-next:hover {
    background-color: rgba(0, 0, 0, 0.75);
}

.sports-popup-swiper .swiper-button-prev::after,
.sports-popup-swiper .swiper-button-next::after {
    font-size: 0.9rem;
    font-weight: 900;
}

/* Thumbnail strip */
.sports-modal-thumbs {
    height: 100px;
    flex-shrink: 0;
    padding: 10px 16px;
    background-color: rgba(0, 0, 0, 0.55);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.sports-thumb-swiper {
    height: 100%;
}

.sports-thumb-swiper .swiper-slide {
    width: auto !important;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    opacity: 0.45;
    cursor: pointer;
    transition: opacity var(--transition-base);
    border: 2px solid transparent;
}

.sports-thumb-swiper .swiper-slide:hover {
    opacity: 0.75;
}

.sports-thumb-swiper .swiper-slide-thumb-active {
    opacity: 1;
    border-color: var(--color-secondary);
}

.sports-thumb-img {
    width: auto;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

@media (max-width: 576px) {
    .sports-modal-thumbs {
        height: 76px;
        padding: 8px 12px;
    }
}