:root {
    --color-background: #2d6cdf;
    --color-primary: #2d6cdf;
    --color-primary-dark: #1f56b5;
    --color-gold: #f5b515;
    --color-accent: #fff4d6;
    --color-text: #0b1933;
    --color-white: #ffffff;
    --color-muted: rgba(255, 255, 255, 0.78);
    --transition-speed: 320ms;
    --header-top-height: 44px;
    --header-main-height: 72px;
    --header-height: calc(var(--header-top-height) + var(--header-main-height));
    font-size: 16px;
    font-family: 'Poppins', Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--color-white);
    background-color: #0e1f46;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 0.65em;
    color: inherit;
}

p,
li {
    margin: 0 0 1em;
    line-height: 1.7;
    color: inherit;
}

.section__title + .section__description,
.page-hero__title + .page-hero__description {
    margin-top: -0.35rem;
}

.section,
.section--alt,
.section--accent,
.section--dark {
    padding-top: clamp(3rem, 6vw, 4.5rem);
    padding-bottom: clamp(3rem, 6vw, 4.5rem);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: var(--color-white);
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: background var(--transition-speed) ease, transform var(--transition-speed) ease, border-color var(--transition-speed) ease;
}

.social-link:hover,
.social-link:focus {
    text-decoration: none;
    background: rgba(255, 255, 255, 0.28);
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.45);
}

.social-link__icon {
    font-size: 1rem;
}

.social-links--light .social-link {
    background: rgba(11, 25, 51, 0.05);
    border-color: rgba(11, 25, 51, 0.12);
    color: #0b1933;
}

.social-links--light .social-link:hover,
.social-links--light .social-link:focus {
    background: rgba(11, 25, 51, 0.1);
    border-color: rgba(11, 25, 51, 0.3);
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: underline;
}

.container {
    width: min(1200px, 92vw);
    margin: 0 auto;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    color: var(--color-white);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.site-header__top {
    background: rgba(14, 40, 96, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.site-header__top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: var(--header-top-height);
    gap: 1rem;
    flex-wrap: nowrap;
}

.site-header__top-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: flex-end;
    flex: 0 0 auto;
}

.header-eshec-flag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.85rem 0.25rem 0.6rem;
    border-radius: 999px;
    background: linear-gradient(120deg, rgba(123, 177, 255, 0.25), rgba(92, 143, 255, 0.45));
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: var(--color-white);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    animation: eshecPulse 3.5s ease-in-out infinite;
    min-width: 260px;
    max-width: none;
    flex: 1 1 auto;
    overflow: hidden;
    position: relative;
}

@media (max-width: 900px) {
    .site-header__top-inner {
        flex-direction: column;
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .site-header__top-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .header-eshec-flag {
        width: 100%;
    }
}

.header-eshec-flag__icon {
    display: inline-flex;
    padding: 0.25rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
}

.header-eshec-flag__icon svg {
    color: var(--color-white);
}

.header-eshec-flag__text {
    line-height: 1.2;
    display: inline-flex;
    flex: 0 0 auto;
    white-space: nowrap;
    animation: eshecMarquee 14s linear infinite;
}

.header-eshec-flag__text::after {
    content: attr(data-text);
    margin-left: 2rem;
}

@keyframes eshecPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(123, 177, 255, 0.55);
        transform: translateY(0);
    }
    50% {
        box-shadow: 0 0 18px 4px rgba(123, 177, 255, 0.35);
        transform: translateY(-1px);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(123, 177, 255, 0.55);
        transform: translateY(0);
    }
}

@keyframes eshecMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.site-header__top-actions .btn {
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    font-size: 0.95rem;
}

.site-header__top-actions .header-actions__search {
    padding: 0.2rem;
}

/* Vertical divider between E-Learning and Search on top row */
.site-header__top-divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.35);
    display: inline-block;
}

/* Ensure Search label sits before the icon nicely */
.site-header__search {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.site-header__search-label {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.site-header__main {
    background: rgba(12, 36, 82, 0.88);
}
.site-header__main .container {
    min-height: var(--header-main-height);
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--color-white);
}

.brand__logo {
    height: 48px;
    width: auto;
    border-radius: 6px;
    object-fit: cover;
    background: var(--color-white);
    padding: 4px;
}

.brand__text {
    font-size: 1rem;
    line-height: 1.2;
}

.primary-nav {
    margin-left: 3rem;
    display: flex;
    align-items: center;
}

.primary-nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
}

.primary-nav__home {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.12);
    color: var(--color-white);
    transition: background var(--transition-speed) ease, border-color var(--transition-speed) ease, transform var(--transition-speed) ease;
    padding: 0;
}

.primary-nav__home svg {
    width: 24px;
    height: 24px;
}

.primary-nav__home:focus,
.primary-nav__home:hover {
    background: rgba(255, 255, 255, 0.24);
    border-color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transform: translateY(-1px);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.nav-mobile-only {
    display: none;
}

.nav-mobile-only__btn {
    display: block;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    transition: background var(--transition-speed) ease, color var(--transition-speed) ease, border-color var(--transition-speed) ease;
    color: var(--color-white);
}

.nav-mobile-only__btn--outline {
    border: 1px solid rgba(255, 255, 255, 0.55);
}

.nav-mobile-only__btn--ghost {
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.08);
}

.nav-mobile-only__btn--primary {
    border: 1px solid transparent;
    background: var(--color-primary);
    color: var(--color-white);
}

.nav-mobile-only__btn:hover,
.nav-mobile-only__btn:focus {
    background: rgba(255, 255, 255, 0.18);
}

.nav-mobile-only__btn--primary:hover,
.nav-mobile-only__btn--primary:focus {
    background: var(--color-primary-dark);
}

.header-actions__toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: transparent;
    color: var(--color-white);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition-speed) ease, border-color var(--transition-speed) ease;
}

.header-actions__toggle:hover,
.header-actions__toggle:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.75);
}

.header-actions__toggle svg {
    display: block;
}

body.nav-open {
    overflow: hidden;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    margin-left: 1.5rem;
    padding-left: 1.5rem;
}

.header-actions::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.25rem;
    bottom: 0.25rem;
    width: 1px;
    background: rgba(245, 181, 21, 0.65);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.5rem;
    border-radius: 999px;
    font-weight: 500;
    transition: all var(--transition-speed) ease;
    border: 2px solid transparent;
}

.btn--primary {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn--primary:hover,
.btn--primary:focus {
    background: var(--color-primary-dark);
}

.btn--ghost {
    background: transparent;
    border-color: var(--color-white);
}

.btn--ghost:hover,
.btn--ghost:focus {
    background: rgba(255, 255, 255, 0.15);
}

.btn--outline {
    background: transparent;
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.btn--outline:hover,
.btn--outline:focus {
    background: rgba(245, 181, 21, 0.12);
}

.header-actions__search {
    background: transparent;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    padding: 0.4rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.header-actions__search--mobile {
    display: none;
    padding: 0.3rem;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: border-color var(--transition-speed) ease, background var(--transition-speed) ease;
}

.header-actions__search--mobile:hover,
.header-actions__search--mobile:focus {
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.1);
}

.hero {
.eshec-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    background: rgba(245, 249, 255, 0.9);
    color: #0a2a66;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: badgeGlow 4s ease-in-out infinite;
}

.eshec-badge::before {
    content: "\2713";
    font-size: 0.9rem;
    color: #1a58ff;
}

@keyframes badgeGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(26, 88, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 14px 3px rgba(26, 88, 255, 0.25);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(26, 88, 255, 0.4);
    }
}
    position: relative;
    min-height: calc(100vh - var(--header-height));
    display: grid;
    grid-template-rows: 1fr auto;
    background: #10295c;
    overflow: hidden;
}

.hero__slides {
    position: relative;
    height: 100%;
    min-height: 580px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    padding-top: var(--header-height);
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: translateX(100%);
    opacity: 0;
    transition: transform var(--transition-speed) ease, opacity var(--transition-speed) ease;
    isolation: isolate;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 36, 82, 0.48), rgba(30, 78, 190, 0.18));
    z-index: 1;
}

.hero-slide__content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    max-width: 600px;
    padding: 4rem 0 6rem;
}

.news-group {
    display: grid;
    gap: 3rem;
}

.news-category {
    display: grid;
    gap: 1.5rem;
}

.news-category__header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    border-bottom: 1px solid rgba(11, 25, 51, 0.12);
    padding-bottom: 0.75rem;
}

.news-category__title {
    margin: 0;
    font-size: 1.75rem;
    color: rgba(11, 25, 51, 0.92);
    text-transform: capitalize;
}
 

.hero-slide__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.hero-slide__title {
    font-size: clamp(2.5rem, 4vw + 1rem, 3.75rem);
    line-height: 1.1;
    margin: 0 0 1.5rem;
}

.hero-slide__description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 2.5rem;
}

.hero-slide__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-slide.is-active {
    transform: translateX(0);
    opacity: 1;
    background-image: var(--hero-bg);
}

.hero-slide.is-prev {
    transform: translateX(-100%);
}

.hero__tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    background: rgba(12, 32, 72, 0.82);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-tab {
    border: none;
    background: transparent;
    color: var(--color-white);
    padding: 1.25rem 1rem;
    text-align: left;
    cursor: pointer;
    transition: background var(--transition-speed) ease, border-color var(--transition-speed) ease;
    position: relative;
}

.hero-tab::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 3px;
    background: transparent;
    transition: background var(--transition-speed) ease;
}

.hero-tab__heading {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0.35rem;
}

.hero-tab__title {
    font-size: 0.95rem;
    font-weight: 600;
}

.hero-tab:hover,
.hero-tab:focus {
    background: rgba(255, 255, 255, 0.08);
}

.hero-tab.is-active::after {
    background: var(--color-primary);
}

.hero-tab.is-active .hero-tab__heading {
    color: var(--color-accent);
}

.hero-tab.is-active .hero-tab__title {
    color: var(--color-white);
}

.section {
    background: var(--color-white);
    color: var(--color-text);
    padding: 5rem 0;
}

.section--alt {
    background: #f3f6ff;
}

.section--accent {
    background: linear-gradient(135deg, #eef3ff, #fff6dc);
}

.section--dark {
    background: #101f46;
    color: var(--color-white);
}

.section__content {
    display: grid;
    gap: 2.5rem;
}

.section__content--split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 3rem;
}

.section__header {
    max-width: 720px;
}

.section__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    color: var(--color-gold);
    margin-bottom: 0.75rem;
    display: inline-block;
}

.section--dark .section__eyebrow {
    color: var(--color-accent);
}

.section__title {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 1.8rem + 1vw, 2.75rem);
}

.section__description {
    margin: 0;
    color: rgba(11, 25, 51, 0.7);
}

.section--dark .section__description {
    color: rgba(255, 255, 255, 0.78);
}

.intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: start;
}

.intro-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.intro-grid__stats {
    display: grid;
    gap: 1rem;
}

.intro-stat {
    background: rgba(21, 52, 118, 0.08);
    border: 1px solid rgba(21, 52, 118, 0.16);
    border-radius: 16px;
    padding: 1.5rem;
    color: var(--color-text);
}

.intro-stat h3 {
    margin-top: 0;
    margin-bottom: 0.4rem;
    font-size: 1.05rem;
}

.intro-stat p {
    margin: 0;
    color: rgba(11, 25, 51, 0.75);
}

.quick-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.quick-link {
    display: grid;
    gap: 1rem;
    grid-template-columns: auto 1fr;
    align-items: start;
    padding: 1.75rem;
    border-radius: 18px;
    background: rgba(45, 108, 223, 0.08);
    border: 1px solid rgba(45, 108, 223, 0.16);
    color: var(--color-text);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.quick-link:hover,
.quick-link:focus {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(15, 35, 92, 0.12);
}

.quick-link__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(45, 108, 223, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.quick-link__title {
    margin: 0 0 0.4rem;
    font-size: 1.1rem;
}

.quick-link__body {
    margin: 0;
    color: rgba(11, 25, 51, 0.7);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
}

.values-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 18px 48px rgba(12, 32, 72, 0.12);
    color: var(--color-text);
}

.section--accent .values-card {
    background: rgba(255, 255, 255, 0.92);
}

.values-card__title {
    margin: 0 0 0.75rem;
    font-size: 1.2rem;
}

.values-card p {
    margin: 0;
    color: rgba(11, 25, 51, 0.72);
}

.values-list {
    margin: 0;
    padding-left: 1.2rem;
    color: rgba(11, 25, 51, 0.75);
    display: grid;
    gap: 0.35rem;
}

.callout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 2rem;
    padding: 3rem 3.5rem;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 28px;
    box-shadow: 0 26px 52px rgba(12, 36, 82, 0.18);
}

.callout__title {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 1.8rem + 1vw, 2.6rem);
}

.callout__description {
    margin: 0;
    color: rgba(11, 25, 51, 0.72);
}

.callout__actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.75rem;
}

.feature-card {
    background: #f5f8ff;
    padding: 1.75rem;
    border-radius: 18px;
    border: 1px solid rgba(32, 86, 172, 0.12);
    box-shadow: 0 18px 38px rgba(15, 35, 92, 0.08);
}

.feature-card__title {
    margin: 0 0 0.75rem;
    font-size: 1.15rem;
    color: var(--color-text);
}

.feature-card__body {
    margin: 0;
    color: rgba(11, 25, 51, 0.7);
}

.section--dark .feature-card {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
    display: grid;
    gap: 0.75rem;
}

.checklist li {
    position: relative;
    padding-left: 1.8rem;
    color: rgba(11, 25, 51, 0.75);
}

.checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.4rem;
    width: 0.9rem;
    height: 0.9rem;
    border-radius: 50%;
    background: var(--color-primary);
}

.page-hero {
    position: relative;
    padding: calc(var(--header-height) + 3rem) 0 4rem;
    background: linear-gradient(140deg, rgba(12, 36, 82, 0.92), rgba(45, 108, 223, 0.75));
    color: var(--color-white);
    overflow: hidden;
}

.page-hero__inner {
    max-width: 840px;
    display: grid;
    gap: 1.5rem;
}

.page-hero__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    color: var(--color-accent);
}

.page-hero__title {
    margin: 0;
    font-size: clamp(2.5rem, 2.2rem + 1.5vw, 3.4rem);
    line-height: 1.1;
}

.page-hero__description {
    margin: 0;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
}

.page-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.history-grid,
.partners-grid,
.program-group,
.policies-grid,
.requirements-grid,
.documents-grid {
    display: grid;
    gap: 1.5rem;
}

.history-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.history-card {
    background: #f5f8ff;
    border-radius: 18px;
    padding: 1.75rem;
    border: 1px solid rgba(32, 86, 172, 0.12);
    box-shadow: 0 18px 38px rgba(15, 35, 92, 0.08);
}

.history-card h3 {
    margin: 0 0 0.75rem;
}

.history-card p {
    margin: 0;
    color: rgba(11, 25, 51, 0.7);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.leadership-card {
    background: #f5f8ff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(32, 86, 172, 0.12);
    display: grid;
    grid-template-rows: auto 1fr;
}

.leadership-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.leadership-card__body {
    padding: 1.5rem;
    display: grid;
    gap: 0.75rem;
}

.leadership-card__role {
    margin: 0;
    font-weight: 600;
    color: rgba(11, 25, 51, 0.72);
}

.partners-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.partner-card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 18px;
    padding: 1.75rem;
    border: 1px solid rgba(32, 86, 172, 0.12);
    box-shadow: 0 18px 38px rgba(15, 35, 92, 0.08);
}

.program-group {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section--alt .program-group {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.partnership-highlight {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    margin: 0 0 2rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(45, 108, 223, 0.18), rgba(245, 181, 21, 0.18));
    border: 1px solid rgba(45, 108, 223, 0.28);
    box-shadow: 0 18px 32px rgba(9, 24, 64, 0.18);
    color: rgba(11, 25, 51, 0.9);
}

.partnership-highlight__logo {
    width: 78px;
    height: 78px;
    border-radius: 16px;
    object-fit: contain;
    background: #ffffff;
    padding: 0.5rem;
    box-shadow: 0 12px 24px rgba(9, 24, 64, 0.16);
}

.partnership-highlight__eyebrow {
    margin: 0 0 0.35rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(11, 25, 51, 0.75);
}

    .study-modes {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.25rem;
    }

    .study-mode-card {
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(238, 244, 255, 0.95));
        border-radius: 18px;
        padding: 1.5rem;
        border: 1px solid rgba(45, 108, 223, 0.15);
        box-shadow: 0 14px 28px rgba(10, 25, 51, 0.08);
        display: grid;
        gap: 0.75rem;
    }

    .study-mode-card__icon {
        width: 56px;
        height: 56px;
        border-radius: 16px;
        background: rgba(45, 108, 223, 0.12);
        color: #2d6cdf;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
    }

    .study-mode-card__link {
        font-weight: 600;
        color: #2d6cdf;
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
    }

    .study-mode-card__link::after {
        content: '\2192';
        font-size: 1rem;
    }

    .study-modes__cta {
        margin-top: 2rem;
        display: flex;
        justify-content: center;
    }
.partnership-highlight__text {
    margin: 0;
    font-size: 1rem;
    color: rgba(11, 25, 51, 0.78);
}

.program-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 18px;
    padding: 1.75rem;
    border: 1px solid rgba(32, 86, 172, 0.12);
    box-shadow: 0 18px 38px rgba(15, 35, 92, 0.08);
    color: var(--color-text);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-height: 230px;
}

.program-card h3 {
    margin: 0 0 0.75rem;
}

.program-card__duration {
    margin-top: auto;
    align-self: flex-end;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #0a2a66;
    background: rgba(245, 181, 21, 0.15);
    border: 1px solid rgba(245, 181, 21, 0.45);
    border-radius: 999px;
    padding: 0.25rem 0.85rem;
}

.program-entry {
    margin-top: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 14px;
    background: rgba(45, 108, 223, 0.08);
    border: 1px solid rgba(45, 108, 223, 0.18);
}

.program-entry h4 {
    margin: 0 0 0.5rem;
}

.policies-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.policy-card {
    background: #f5f8ff;
    border-radius: 18px;
    padding: 1.75rem;
    border: 1px solid rgba(32, 86, 172, 0.12);
    display: grid;
    gap: 0.75rem;
}

.policy-card ul {
    margin: 0;
    padding-left: 1.2rem;
    display: grid;
    gap: 0.35rem;
}

.policy-card__link {
    font-weight: 600;
    color: var(--color-primary);
}

.requirements-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.requirement-card {
    background: rgba(45, 108, 223, 0.08);
    border-radius: 18px;
    padding: 1.75rem;
    border: 1px solid rgba(45, 108, 223, 0.18);
}

.process-list {
    margin: 0;
    padding-left: 1.4rem;
    display: grid;
    gap: 0.85rem;
    color: rgba(11, 25, 51, 0.72);
}

.process-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.documents-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.document-card {
    background: #f5f8ff;
    border-radius: 18px;
    padding: 1.75rem;
    border: 1px solid rgba(32, 86, 172, 0.12);
    display: grid;
    gap: 0.75rem;
}

.document-card ul {
    margin: 0;
    padding-left: 1.2rem;
    display: grid;
    gap: 0.35rem;
}

.fees-table {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(32, 86, 172, 0.18);
    box-shadow: 0 18px 38px rgba(15, 35, 92, 0.08);
}

.fees-table__row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    background: rgba(255, 255, 255, 0.94);
}

.fees-table__row div {
    padding: 1rem 1.25rem;
    border-right: 1px solid rgba(32, 86, 172, 0.12);
    word-break: break-word;
}

.fees-table__row--head {
    background: rgba(12, 36, 82, 0.92);
    color: var(--color-white);
    font-weight: 600;
}

.fees-table__row:last-child div {
    border-bottom: none;
}

.fees-table__row div:last-child {
    border-right: none;
}

.fees-table__note {
    margin-top: 1rem;
    color: rgba(11, 25, 51, 0.7);
}

.fees-card {
    margin-top: 2.5rem;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 18px;
    border: 1px solid rgba(32, 86, 172, 0.18);
    box-shadow: 0 18px 32px rgba(15, 35, 92, 0.08);
    padding: 1.75rem 2rem;
    display: grid;
    gap: 1.25rem;
    color: rgba(11, 25, 51, 0.88);
}

.fees-card--postgrad {
    border-left: 5px solid var(--color-gold);
}

.fees-card__programmes {
    border-top: 1px solid rgba(32, 86, 172, 0.15);
    padding-top: 1rem;
    margin-top: 0.5rem;
}

.fees-card__programmes ul {
    margin: 0.75rem 0 0;
    padding-left: 1.2rem;
    display: grid;
    gap: 0.35rem;
}

.fees-card__eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(11, 25, 51, 0.6);
    font-weight: 600;
}

.fees-card h3 {
    margin: 0;
    font-size: 1.3rem;
    color: rgba(11, 25, 51, 0.92);
}

.fees-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.85rem;
}

.fees-card li {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.fees-card__item {
    font-weight: 600;
}

.fees-card__amount {
    display: block;
    font-size: 1.1rem;
    color: var(--color-primary-dark);
}

.fees-card__amount small {
    display: block;
    font-size: 0.8rem;
    color: rgba(11, 25, 51, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.fees-card__note {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(11, 25, 51, 0.7);
}

.fees-download {
    margin-top: 2rem;
    display: flex;
    justify-content: flex-start;
}

.fees-download .btn {
    width: auto;
}

.payment-card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 18px;
    padding: 2rem;
    border: 1px solid rgba(32, 86, 172, 0.18);
    box-shadow: 0 18px 38px rgba(15, 35, 92, 0.08);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
}

.news-grid__empty {
    grid-column: 1 / -1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 2rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.news-card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-rows: 220px 1fr;
    box-shadow: 0 20px 46px rgba(12, 28, 68, 0.16);
    border: 1px solid rgba(32, 86, 172, 0.12);
}

.news-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card__body {
    padding: 1.5rem;
    display: grid;
    gap: 0.8rem;
}

.news-card__category {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(32, 86, 172, 0.75);
    font-weight: 600;
}

.news-card__title {
    margin: 0;
    color: rgba(11, 25, 51, 0.9);
    font-size: 1.25rem;
}

.news-card__meta {
    margin: 0;
    color: rgba(11, 25, 51, 0.6);
    font-size: 0.9rem;
}

.news-card__summary {
    margin: 0;
    color: rgba(11, 25, 51, 0.76);
}

.news-card__toggle {
    justify-self: flex-start;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(32, 86, 172, 0.35);
    background: transparent;
    color: rgba(32, 86, 172, 0.88);
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition-speed) ease, color var(--transition-speed) ease, border-color var(--transition-speed) ease;
}

.news-card__toggle:hover,
.news-card__toggle:focus {
    background: rgba(32, 86, 172, 0.12);
    color: var(--color-primary-dark);
    border-color: rgba(32, 86, 172, 0.55);
}

.news-card__details {
    padding: 1rem;
    border-radius: 14px;
    background: rgba(32, 86, 172, 0.08);
    color: rgba(11, 25, 51, 0.86);
}

.news-admin-trigger {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(45, 108, 223, 0.9);
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 36px rgba(12, 28, 68, 0.28);
    cursor: pointer;
    z-index: 110;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.news-admin-trigger:hover,
.news-admin-trigger:focus {
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(12, 28, 68, 0.34);
}

.news-admin-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 120;
}

.news-admin-modal.is-open {
    display: block;
}

.news-admin-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 11, 23, 0.78);
}

.news-admin-modal__content {
    position: relative;
    width: min(1100px, 94vw);
    margin: 4vh auto;
    background: #f7f9ff;
    border-radius: 28px;
    padding: 2.5rem;
    color: #0b1933;
    box-shadow: 0 40px 80px rgba(5, 11, 23, 0.35);
    max-height: 92vh;
    overflow: auto;
}

.news-admin-modal__close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: rgba(11, 25, 51, 0.08);
    border: 1px solid rgba(11, 25, 51, 0.12);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.news-admin-modal__inner {
    display: grid;
    gap: 2rem;
}

.news-admin-login__hint {
    margin: 0 0 1.5rem;
    color: rgba(11, 25, 51, 0.7);
}

.news-admin-login__feedback,
.news-admin-form__feedback {
    margin: 1rem 0 0;
    font-weight: 600;
    color: rgba(11, 25, 51, 0.76);
    min-height: 1.25rem;
}

.news-admin-feedback--error {
    color: #a12815;
}

.news-admin-feedback--success {
    color: #1f7a32;
}

.chat-widget {
    position: fixed;
    bottom: 1.75rem;
    right: 1.5rem;
    display: flex;
    align-items: flex-end;
    gap: 0.75rem;
    z-index: 150;
}

.chat-widget__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: var(--color-white);
    box-shadow: 0 20px 36px rgba(18, 140, 126, 0.28);
    border: none;
    cursor: pointer;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.chat-widget__button:hover,
.chat-widget__button:focus {
    transform: translateY(-2px);
    box-shadow: 0 24px 44px rgba(18, 140, 126, 0.34);
}

.chat-widget__message {
    background: var(--color-white);
    color: rgba(11, 25, 51, 0.85);
    border-radius: 18px;
    padding: 0.85rem 1.1rem;
    box-shadow: 0 16px 36px rgba(12, 28, 68, 0.12);
    max-width: 220px;
    font-weight: 600;
    position: relative;
}

.chat-widget__message::after {
    content: "";
    position: absolute;
    right: -10px;
    bottom: 12px;
    width: 16px;
    height: 16px;
    background: var(--color-white);
    transform: rotate(45deg);
    box-shadow: 8px 8px 20px rgba(12, 28, 68, 0.08);
}

.chat-widget__message p {
    margin: 0;
}

.chat-widget__dismiss {
    position: absolute;
    top: 4px;
    right: 6px;
    border: none;
    background: transparent;
    font-size: 1.1rem;
    line-height: 1;
    color: rgba(11, 25, 51, 0.4);
    cursor: pointer;
}

.chat-widget__dismiss:hover,
.chat-widget__dismiss:focus {
    color: rgba(11, 25, 51, 0.7);
}

.chat-widget__message[hidden] {
    display: none;
}

.chat-widget--message-hidden {
    align-items: center;
}

@media (max-width: 640px) {
    .chat-widget {
        right: 1rem;
        bottom: 1rem;
        gap: 0.5rem;
    }

    .chat-widget__button {
        width: 56px;
        height: 56px;
    }

    .chat-widget__message {
        max-width: 180px;
        font-size: 0.95rem;
    }
}

.news-admin-dashboard[hidden] {
    display: none !important;
}

.news-admin-dashboard__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.news-admin-dashboard__actions {
    display: flex;
    gap: 0.75rem;
}

.news-admin-form {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 22px;
    padding: 1.75rem;
    box-shadow: 0 18px 32px rgba(12, 28, 68, 0.12);
    border: 1px solid rgba(32, 86, 172, 0.18);
    transition: box-shadow var(--transition-speed) ease, border-color var(--transition-speed) ease;
}

.news-admin-form.is-editing {
    border-color: rgba(32, 86, 172, 0.45);
    box-shadow: 0 26px 44px rgba(12, 28, 68, 0.18);
}

.news-admin-form .form-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.news-admin-form__actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.news-admin-table {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 22px;
    padding: 1.5rem;
    box-shadow: 0 18px 32px rgba(12, 28, 68, 0.1);
}

.news-admin-table table {
    width: 100%;
    border-collapse: collapse;
}

.news-admin-table th,
.news-admin-table td {
    text-align: left;
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid rgba(11, 25, 51, 0.08);
}

.news-admin-row__actions {
    display: flex;
    gap: 0.5rem;
}

.news-admin-row__actions button {
    padding: 0.35rem 0.8rem;
    border-radius: 10px;
    border: 1px solid rgba(32, 86, 172, 0.25);
    background: rgba(32, 86, 172, 0.08);
    color: rgba(11, 25, 51, 0.85);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background var(--transition-speed) ease, border-color var(--transition-speed) ease;
}

.news-admin-row__actions button:hover,
.news-admin-row__actions button:focus {
    background: rgba(32, 86, 172, 0.18);
    border-color: rgba(32, 86, 172, 0.4);
}

.news-admin-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
}

.news-admin-chip--published {
    background: rgba(63, 158, 76, 0.12);
    color: #1f7a32;
}

.news-admin-chip--draft {
    background: rgba(191, 61, 39, 0.12);
    color: #a12815;
}

.payment-card ul {
    margin: 0 0 1rem;
    padding-left: 1.2rem;
    display: grid;
    gap: 0.35rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    background: #f5f8ff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(32, 86, 172, 0.12);
    box-shadow: 0 18px 38px rgba(15, 35, 92, 0.08);
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.gallery-item figcaption {
    padding: 1rem 1.25rem;
    color: rgba(11, 25, 51, 0.75);
}

.contact-details {
    display: grid;
    gap: 1.5rem;
}

.contact-details__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}

.contact-details__list a {
    color: var(--color-primary);
}

.contact-map iframe {
    width: 100%;
    min-height: 260px;
    border: 0;
    border-radius: 16px;
    box-shadow: 0 18px 38px rgba(15, 35, 92, 0.1);
}

.media-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(12, 36, 82, 0.2);
}

.media-card img {
    display: block;
    width: 100%;
    height: auto;
}

.testimonial-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: #f5f8ff;
    border-radius: 18px;
    padding: 2rem;
    border: 1px solid rgba(32, 86, 172, 0.12);
    position: relative;
    min-height: 220px;
}

.testimonial-card blockquote {
    margin: 0 0 1.5rem;
    font-style: italic;
    color: rgba(11, 25, 51, 0.78);
}

.testimonial-card__author {
    margin: 0;
    font-weight: 600;
    color: var(--color-text);
}

.elearning-card {
    background: linear-gradient(160deg, rgba(45, 108, 223, 0.2), rgba(31, 86, 181, 0.85));
    border-radius: 24px;
    padding: 2px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 32px 48px rgba(12, 36, 82, 0.24);
}

.elearning-card__inner {
    background: rgba(12, 28, 68, 0.92);
    border-radius: 22px;
    padding: 2.5rem;
    color: var(--color-white);
    display: grid;
    gap: 1.5rem;
}

.elearning-card__inner h3 {
    margin: 0;
    font-size: 1.75rem;
}

.elearning-card__inner p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
}

.elearning-card__inner a {
    justify-self: flex-start;
}

.elearning-card__help a {
    color: var(--color-accent);
}

.section--dark .testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
}

.alert {
    padding: 1rem 1.25rem;
    border-radius: 14px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.alert--success {
    background: rgba(45, 108, 223, 0.14);
    color: #163b93;
}

.alert--error {
    background: rgba(191, 18, 18, 0.12);
    color: #a01212;
}

.alert--info {
    background: rgba(45, 108, 223, 0.12);
    color: var(--color-text);
}

.form {
    background: rgba(255, 255, 255, 0.08);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.form__control {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.25rem;
}

.form__control label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form__control input,
.form__control select,
.form__control textarea {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    background: rgba(12, 28, 68, 0.6);
    color: var(--color-white);
}

.form__control input:focus,
.form__control select:focus,
.form__control textarea:focus {
    outline: 2px solid rgba(45, 108, 223, 0.6);
    border-color: rgba(45, 108, 223, 0.4);
}

.form__error {
    color: #ffb3b3;
    margin: 0.5rem 0 0;
    font-size: 0.85rem;
}

.btn--block {
    width: 100%;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
    display: grid;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}


.contact-list strong {
    color: var(--color-white);
}

.partners {
    background: rgba(8, 23, 54, 0.92);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.partners__inner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.75rem 0;
}

.partners__nav {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background var(--transition-speed) ease, border-color var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.partners__nav:hover,
.partners__nav:focus {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.65);
    transform: translateY(-2px);
}

.partners__nav svg {
    display: block;
}

.partners-carousel {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.partners-carousel__track {
    display: flex;
    transition: transform 0.45s ease;
}

.partners-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.partners-slide .partners__label {
    margin: 0;
}

.partners__label {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
    white-space: nowrap;
}

.partners__list {
    list-style: none;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    flex: 1;
    gap: 2.5rem;
    justify-content: flex-start;
    flex-wrap: nowrap;
}

.partners__item {
    display: flex;
}

.partners__link {
    display: grid;
    justify-items: center;
    gap: 0.55rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.3;
}

.partners__item img {
    height: 58px;
    width: auto;
    object-fit: contain;
    background: var(--color-white);
    border-radius: 10px;
    padding: 0.5rem 0.75rem;
    filter: drop-shadow(0 10px 22px rgba(3, 11, 26, 0.35));
    transition: transform var(--transition-speed) ease, filter var(--transition-speed) ease;
}

.partners__caption {
    display: block;
    color: rgba(255, 255, 255, 0.75);
}

.partners__link:hover img,
.partners__link:focus img {
    transform: translateY(-3px);
    filter: drop-shadow(0 14px 26px rgba(3, 11, 26, 0.4));
}

.partners__item--global img {
    background: rgba(13, 34, 85, 0.95);
    padding: 0.55rem 0.85rem;
}

.partners__item--global .partners__caption {
    color: rgba(255, 255, 255, 0.82);
}


.site-footer {
    background: #0a1638;
    color: rgba(255, 255, 255, 0.78);
    padding: 3.5rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2.5rem;
}

.footer-col {
    display: grid;
    gap: 1rem;
    font-size: 0.95rem;
}

.footer-col--brand p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-white);
    font-weight: 600;
}

.footer-brand__logo {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
    background: var(--color-white);
    padding: 4px;
}

.footer-brand__name {
    font-size: 1.1rem;
    line-height: 1.3;
}

.footer-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.footer-heading {
    margin: 0;
    font-size: 1.05rem;
    color: var(--color-white);
}

.footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.78);
}

.footer-list--contact li {
    line-height: 1.4;
}

.footer-social {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.4rem;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.footer-bottom {
    margin-top: 3rem;
    background: rgba(1, 8, 4, 0.35);
    padding: 1rem 0;
    font-size: 0.85rem;
}

.footer-bottom__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom__inner a {
    color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 992px) {
    .hero {
        min-height: calc(100vh - var(--header-main-height));
    }

    .hero__slides {
        min-height: 520px;
    }

    .hero-slide {
        padding-top: calc(var(--header-main-height) + 2.5rem);
    }

    .site-header__top {
        display: none;
    }

    .site-header__main .container {
        position: relative;
        align-items: center;
        gap: 0.75rem;
    }

    .primary-nav {
        margin-left: 0;
        position: absolute;
        top: calc(var(--header-main-height) + 0.5rem);
        left: 0;
        right: 0;
        padding: 1.25rem;
        background: rgba(12, 32, 72, 0.96);
        border-radius: 18px;
        box-shadow: 0 20px 40px rgba(12, 32, 72, 0.35);
        transform: scaleY(0);
        transform-origin: top;
        opacity: 0;
        pointer-events: none;
        transition: transform var(--transition-speed) ease, opacity var(--transition-speed) ease;
        z-index: 90;
    }

    .primary-nav.is-open {
        transform: scaleY(1);
        opacity: 1;
        pointer-events: auto;
    }

    .primary-nav ul {
        display: grid;
        gap: 0.85rem;
    }

    .primary-nav a {
        display: block;
        padding: 0.8rem 1rem;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.06);
        color: var(--color-white);
        font-weight: 500;
    }

    .primary-nav__home {
        display: flex;
        width: 100%;
        height: auto;
        justify-content: flex-start;
        padding: 0.8rem 1rem;
        border-radius: 12px;
    }

    .primary-nav__home svg {
        margin-right: 0.75rem;
    }

    .primary-nav__home .visually-hidden {
        position: static;
        width: auto;
        height: auto;
        margin: 0;
        clip: auto;
        white-space: normal;
    }

    .nav-mobile-only {
        display: block;
    }

    .primary-nav a:focus,
    .primary-nav a:hover {
        background: rgba(255, 255, 255, 0.12);
    }

    .header-actions {
        gap: 0.5rem;
        margin-left: 0;
        padding-left: 0;
    }

    .header-actions::before {
        content: none;
    }

    .header-actions__toggle {
        display: inline-flex;
    }

    .header-actions__search--mobile {
        display: inline-flex;
    }

    .header-actions .btn {
        display: none;
    }

    .brand {
        flex: 1;
        gap: 0.6rem;
    }

    .brand__logo {
        height: 42px;
    }

    .brand__text {
        display: block;
        font-size: 0.9rem;
        font-weight: 500;
        flex: 1;
        min-width: 0;
    }

    .news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .news-admin-modal__content {
        width: min(1000px, 96vw);
        margin: 6vh auto;
        padding: 2rem;
    }

    .news-admin-form .form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-slide__content {
        padding: 3rem 0 5rem;
    }

    .hero__tabs {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .testimonial-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section__content--split {
        grid-template-columns: 1fr;
    }

    .form {
        background: rgba(12, 28, 68, 0.75);
    }

    .callout {
        grid-template-columns: 1fr;
        padding: 2.5rem;
        text-align: center;
    }

    .callout__actions {
        justify-content: center;
    }

    .intro-grid {
        grid-template-columns: 1fr;
    }

    .quick-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .values-grid,
    .history-grid,
    .partners-grid,
    .documents-grid,
    .policies-grid,
    .requirements-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .partners__inner {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .partners-carousel {
        width: 100%;
    }

    .partners-slide {
        flex-direction: column;
        gap: 1.25rem;
    }

    .partners__label {
        white-space: normal;
    }

    .partners__list {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .partners__link {
        font-size: 0.8rem;
    }

    .partners__item img {
        height: 50px;
    }

    .fees-card {
        padding: 1.5rem;
    }

    .fees-download {
        justify-content: center;
    }

    .leadership-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .program-group {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .partnership-highlight {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .partnership-highlight__logo {
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: calc(100vh - var(--header-main-height));
        overflow: visible;
    }

    .hero__slides {
        min-height: 460px;
    }

    .hero-slide {
        padding-top: calc(var(--header-main-height) + 2rem);
        padding-bottom: 4.5rem;
    }

    .hero-slide__content {
        padding: 2.5rem 0 3.75rem;
        max-width: 100%;
    }

    .btn {
        width: 100%;
    }

    .header-actions .btn {
        width: auto;
        padding: 0.5rem 1.2rem;
        font-size: 0.95rem;
    }

    .hero-slide__actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
    }

    .hero-slide__actions .btn {
        width: auto;
    }

    .partners__link {
        font-size: 0.78rem;
    }

    .partners__item img {
        height: 46px;
    }

    .partnership-highlight {
        padding: 1.25rem;
    }

    .partnership-highlight__logo {
        width: 68px;
        height: 68px;
    }

    .partnership-highlight__text {
        font-size: 0.95rem;
    }

    .fees-card {
        padding: 1.4rem;
        text-align: center;
    }

    .fees-card__amount {
        font-size: 1rem;
    }

    .fees-download {
        margin-top: 1.5rem;
    }

    .fees-download .btn {
        width: 100%;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-admin-modal__content {
        margin: 4vh auto;
        padding: 1.5rem;
    }

    .news-admin-form .form-grid {
        grid-template-columns: 1fr;
    }

    .news-admin-trigger {
        bottom: 16px;
        right: 16px;
    }

    .hero-tab {
        padding: 1rem;
    }

    .feature-grid,
    .testimonial-list {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 3.5rem 0;
    }

    .form {
        padding: 1.5rem;
    }

    .callout {
        padding: 2rem;
    }

    .quick-links,
    .values-grid,
    .history-grid,
    .program-group,
    .policies-grid,
    .requirements-grid,
    .documents-grid,
    .leadership-grid,
    .partners-grid,
    .gallery-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .page-hero__actions {
        flex-direction: column;
    }

    .page-hero {
        padding: calc(var(--header-height) + 2rem) 0 3rem;
    }

    .intro-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-bottom__inner {
        justify-content: center;
        text-align: center;
    }

    .footer-actions .btn {
        width: auto;
    }

    .fees-table__row {
        grid-template-columns: 1.4fr repeat(4, minmax(0, 1fr));
        font-size: 0.8rem;
    }

    .fees-table__row--head {
        font-size: 0.76rem;
    }

    .fees-table__row div {
        padding: 0.55rem 0.4rem;
    }
}
