:root {
    --primary: #bd1721;

    --primary-dark: #9e121b;
    --secondary: #0c397a;

    --navy-dark: #0a2a5c;
    --navy-deep: #081f47;
    --accent: #f45b21;

    --gold: #ab8d57;

    --text-main: #1e293b;
    --text-light: #64748b;
    --bg-light: #f4f7fd;
    --glass: rgba(255, 255, 255, 0.85);
    --card-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    --display: 'Poppins', sans-serif;
    --text: 'Roboto', sans-serif;
    --line: #d9dee7;
    --gutter: clamp(24px, 4.5vw, 96px);
    --maxw: 1920px;
    --radius: 14px;
    --notch: polygon(17% 0, 100% 0, 100% 100%, 28% 100%, 0 55%);
    --off-x: 16px;
    --off-y: 14px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.5rem 0;
    transition: var(--transition);
}

.nav-container {
    width: 100%;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    display: block;
    height: 70px;
    width: auto;
}

.nav-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
    padding-left: 2rem;
    position: relative;
}

.nav-row {
    display: flex;
    list-style: none;
    gap: 1rem;
    margin-bottom: 0;
    width: 100%;
    justify-content: flex-end;
    align-items: center;
}

@media (max-width: 1100px) {
    .nav-container {
        padding: 0 1.5rem;
    }

    .mobile-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        z-index: 1001;
        width: 40px;
        height: 40px;
        border-radius: 8px;
        transition: var(--transition);
        color: var(--primary);
        font-size: 30px;
        line-height: 1;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 80px 1rem 2rem;
        overflow-y: auto;
    }

    .nav-wrapper.active {
        right: 0;
    }

    .nav-row {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem !important;
        width: 100% !important;
        margin-bottom: 0;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0.5rem 0 0.5rem 1.5rem;
        display: block;
        min-width: auto;
        width: 100%;
        border: none;
        background: transparent;
    }

    .nav-item:hover .nav-link {
        background: rgba(189, 23, 33, 0.08);
        color: var(--primary);
    }

    .nav-link {
        justify-content: center;
        width: 100%;
        text-align: center;
        background: rgba(189, 23, 33, 0.03);
    }
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link:hover {
    background: rgba(189, 23, 33, 0.05);
    color: var(--primary);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 240px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 0.6rem 1rem;
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.85rem;
    border-radius: 6px;
    transition: var(--transition);
}

.dropdown a:hover {
    background: var(--bg-light);
    color: var(--primary);
    padding-left: 1.25rem;
}

.mobile-toggle {
    display: none;
    color: var(--primary);
    cursor: pointer;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: var(--transition);
}

.mobile-toggle:hover {
    background: rgba(189, 23, 33, 0.1);
}

nav.scrolled {
    padding: 0.3rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(12, 57, 122, 0.5);
    outline-offset: 2px;
}

.back-to-top {
    position: fixed;
    right: 1.6rem;
    bottom: 1.6rem;
    z-index: 900;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 12px 26px -8px rgba(189, 23, 33, 0.6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: var(--transition);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
}

.hero {
    position: relative;
    min-height: 620px;

    min-height: calc(100vh - 112px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--bg-light);
    padding-top: 96px;
}

.hero-photo {
    position: absolute;
    top: 0;
    right: 0;

    width: 78%;
    height: 100%;
    background: url("../Landingpage/Landingimage.webp") center / cover no-repeat;
}

.hero-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, var(--bg-light) 0%, var(--bg-light) 15%, rgba(244, 247, 253, 0.85) 26%, rgba(244, 247, 253, 0.35) 42%, rgba(244, 247, 253, 0) 62%),
        linear-gradient(0deg, rgba(244, 247, 253, 0.55) 0%, rgba(244, 247, 253, 0) 30%);
}

.hero::before {
    content: "";
    position: absolute;
    top: 80px;
    left: 0;
    width: 420px;
    height: 300px;
    background-image: radial-gradient(rgba(12, 57, 122, 0.16) 1.6px, transparent 1.6px);
    background-size: 17px 17px;
    -webkit-mask-image: linear-gradient(135deg, #000 20%, transparent 75%);
    mask-image: linear-gradient(135deg, #000 20%, transparent 75%);
    z-index: 0;
}

.hero-wedge {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 46%;
    height: 240px;
    background: linear-gradient(100deg, var(--primary) 20%, var(--primary-dark));
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    z-index: 1;
}

.hero-main {
    position: relative;
    z-index: 2;
    padding: 2.6rem 4rem 0;
    max-width: 860px;
}

.badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--primary);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    padding: 0.65rem 1.4rem;
    border-radius: 50px;
    box-shadow: 0 8px 20px -6px rgba(189, 23, 33, 0.55);
}

.badge::before {
    content: "";
    position: absolute;
    left: 10px;
    bottom: -7px;
    border: 7px solid transparent;
    border-top-color: var(--primary-dark);
    border-left-color: var(--primary-dark);
}

.badge-dash {
    width: 38px;
    height: 4px;
    border-radius: 2px;
    background: var(--primary);
    margin: 1.4rem 0 1.1rem;
}

.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.3rem, 4.2vw, 3.9rem);
    font-weight: 800;
    line-height: 1.12;
    color: var(--navy-dark);
    letter-spacing: -0.5px;
}

.hero h1 .red {
    color: var(--primary);
}

.script {
    font-family: 'Caveat', cursive;
    font-size: clamp(2.4rem, 3.4vw, 3.4rem);
    font-weight: 700;
    color: var(--navy-dark);
    line-height: 1;
    margin: 0.6rem 0 0.2rem;
    display: inline-block;
}

.script svg {
    display: block;
    width: 230px;
    max-width: 100%;
    margin: 2px 0 0 10px;
}

.hero-intro {
    max-width: 520px;
    color: var(--text-light);
    font-size: 0.98rem;
    line-height: 1.75;
    margin: 1.2rem 0 2rem;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    padding: 0.9rem 1.8rem;
    border-radius: 9px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-red {
    background: var(--primary);
    color: white;
    box-shadow: 0 12px 26px -8px rgba(189, 23, 33, 0.6);
}

.btn-red:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.btn-red i {
    transition: transform 0.35s ease;
}

.btn-red:hover i {
    transform: translateX(4px);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.85);
    border: 1.5px solid rgba(12, 57, 122, 0.35);
    color: var(--secondary);
}

.btn-outline:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: white;
    transform: translateY(-3px);
}

.cards-row {
    --fc-navy: #0B2C6B;
    --fc-red: #D62828;
    --fc-text: #0F172A;
    --fc-muted: #64748B;

    --fc-cut-start: 42%;
    --fc-cut-end: 70%;
    --fc-icon: 68px;

    --fc-icon-dip: 0.1;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    align-items: stretch;
    padding: 3rem 4.5rem 2.4rem 4rem;
    margin-top: auto;
}

.fcard {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 320px;
    background: #FFFFFF;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.10);
    transition: transform 300ms ease, box-shadow 300ms ease;
}

.fcard:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}

.fcard-media {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    overflow: hidden;
}

.fcard-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 300ms ease;
}

.fcard:hover .fcard-media img {
    transform: scale(1.05);
}

.fcard-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.18) 100%);
    pointer-events: none;
}

.fcard-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 24px 22px;
}

.fcard-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #FFFFFF;
    clip-path: polygon(0 0, var(--fc-cut-start) 0, var(--fc-cut-end) 100%, 0 100%);
}

.fcard-panel>* {
    position: relative;
}

.fcard-icon {
    position: absolute;
    top: calc(-1 * var(--fc-icon) * (1 - var(--fc-icon-dip)));
    left: 24px;
    width: var(--fc-icon);
    height: var(--fc-icon);
    border-radius: 50%;
    background: #FFFFFF;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 3px solid #0B2C6B;
    box-shadow:
        0 0 0 4px #FFFFFF,
        0 12px 30px rgba(15, 23, 42, 0.18),
        0 4px 12px rgba(15, 23, 42, 0.12);
    transition: border-color 300ms ease, transform 300ms ease, box-shadow 300ms ease;
}

.fcard:hover .fcard-icon {
    border-color: #D62828;
    transform: translateY(-4px) scale(1.08);
    box-shadow:
        0 0 0 4px #FFFFFF,
        0 16px 38px rgba(15, 23, 42, 0.24),
        0 6px 16px rgba(15, 23, 42, 0.16);
}

.fcard-icon img {
    width: calc(var(--fc-icon) * var(--fc-icon-zoom, 0.62));
    height: calc(var(--fc-icon) * var(--fc-icon-zoom, 0.62));
    object-fit: contain;
    display: block;
    flex: none;
}

.fcard-title {
    font-family: 'Poppins', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--fc-text);
    line-height: 1.25;
    margin-top: 0;
    transition: color 300ms ease;
}

.fcard:hover .fcard-title {
    color: var(--fc-red);
}

.fcard-sub {
    font-size: 13px;
    font-weight: 500;
    color: var(--fc-muted);
    margin-top: 7px;
    line-height: 1.4;
}

.fcard-line {
    display: block;
    width: 32px;
    height: 3px;
    border-radius: 10px;
    background: var(--fc-red);
    margin-top: 12px;
}

.cards-carousel {
    display: contents;
}

.cards-nav {

    position: relative;
    z-index: 2;
    display: none;
}

.cards-nav__btn {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(12, 57, 122, 0.28);
    border-radius: 50%;
    background: #FFFFFF;
    color: var(--secondary);
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}

.cards-nav__btn:hover:not(:disabled) {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #FFFFFF;
}

.cards-nav__btn:disabled {
    opacity: 0.35;
    cursor: default;
}

.cards-nav__btn svg {
    width: 20px;
    height: 20px;
}

.stats-bar {
    position: relative;
    background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy-deep) 100%);
    color: white;
    padding: 1.9rem 4rem;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.stats-bar::before {
    content: "";
    position: absolute;
    left: -140px;
    bottom: -220px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: repeating-radial-gradient(circle,
            rgba(255, 255, 255, 0.05) 0 2px,
            transparent 2px 26px);
    pointer-events: none;
}

.stat {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

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

.stat-icon {
    flex-shrink: 0;
    display: block;
    width: 52px;
    height: 52px;
    padding: 9px;
    border-radius: 50%;
    background: #fff;
    object-fit: contain;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22), 0 8px 18px rgba(0, 0, 0, 0.28);
}

.stat-num {
    font-family: 'Poppins', sans-serif;
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1.15;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.4;
}

@media (max-width: 1250px) {
    .cards-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .cards-next {
        display: none;
    }
}

@media (max-width: 1024px) {
    .hero-photo {
        width: 100%;
    }

    .hero-photo::after {
        background:
            linear-gradient(90deg, var(--bg-light) 0%, rgba(244, 247, 253, 0.93) 45%, rgba(244, 247, 253, 0.72) 100%);
    }

    .hero-main {
        padding: 2rem 2rem 0;
    }

    .cards-row {
        padding: 2.5rem 2rem 2rem;
    }

    .stats-bar {
        flex-wrap: wrap;
        padding: 1.5rem 2rem;
        gap: 1.2rem 0;
    }

    .stat {
        flex: 1 1 50%;
        justify-content: flex-start;
        padding-left: 1.5rem;
    }

    .stat+.stat {
        border-left: none;
    }
}

@media (max-width: 640px) {
    .hero-main {
        padding: 1.5rem 1.25rem 0;
    }

    .cards-row {
        padding: 2rem 1.25rem 1.75rem;
    }

    .stat {
        flex: 1 1 100%;
        padding-left: 0.5rem;
    }
}

@media (max-width: 1024px) {
    .cards-carousel {
        display: block;
        margin-top: auto;
    }

    .cards-row {
        display: flex;
        margin-top: 0;
        padding-bottom: 1.1rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;

        --fc-cut-start: 76%;
        --fc-cut-end: 100%;
    }

    .cards-row::-webkit-scrollbar {
        display: none;
    }

    .cards-nav {
        display: flex;
        justify-content: center;
        gap: 14px;
        padding-bottom: 2rem;
    }
}

@media (min-width: 701px) and (max-width: 1024px) {
    .cards-row {
        --per: 2;

        gap: 2rem;

        scroll-padding-inline: 2rem;
    }

    .fcard {
        flex: 0 0 calc((100% - 2rem) / 2);
        scroll-snap-align: start;
    }
}

@media (max-width: 700px) {
    .cards-row {
        --per: 1;
    }

    .fcard {
        flex: 0 0 100%;
        scroll-snap-align: center;
    }

    .cards-nav {
        padding-bottom: 1.75rem;
    }
}

@media (min-width: 1025px) {
    :root {
        --logo-h: clamp(56px, 7.4vh, 70px);
        --nav-clear: calc(var(--logo-h) + 20px);
    }

    .logo img {
        height: var(--logo-h);
    }

    .landing {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        min-height: 100svh;
    }

    .hero {
        flex: 1 1 auto;
        min-height: 0;
        padding-top: var(--nav-clear);
    }

    .hero-wedge {
        height: clamp(150px, 26vh, 240px);
    }

    .hero-main {
        padding: clamp(0.4rem, 1.1vh, 2.6rem) 4rem 0;
    }

    .badge {
        padding: clamp(0.45rem, 0.8vh, 0.65rem) 1.4rem;
    }

    .badge-dash {
        margin: clamp(0.6rem, 1.4vh, 1.4rem) 0 clamp(0.5rem, 1vh, 1.1rem);
    }

    .hero h1 {
        font-size: clamp(2rem, min(4.2vw, 4.7vh), 3.9rem);
        line-height: 1.1;
    }

    .script {
        font-size: clamp(1.9rem, min(3.4vw, 4.4vh), 3.4rem);
        margin: clamp(0.2rem, 0.5vh, 0.6rem) 0 clamp(0.1rem, 0.3vh, 0.2rem);
    }

    .hero-intro {
        font-size: 0.92rem;
        line-height: 1.62;
        margin: clamp(0.55rem, 1.2vh, 1.2rem) 0 clamp(0.75rem, 1.9vh, 2rem);
    }

    .hero-buttons .btn {
        padding: clamp(0.68rem, 1.1vh, 0.9rem) 1.8rem;
    }

    .cards-row {
        padding: clamp(1.3rem, 2.7vh, 3rem) 4.5rem clamp(1rem, 2.3vh, 2.4rem) 4rem;
    }

    .fcard {
        min-height: clamp(185px, 23vh, 320px);
    }

    .cards-row {

        --fc-icon: 50px;
    }

    .fcard-panel {
        padding: clamp(18px, 2.4vh, 24px) 24px clamp(14px, 1.9vh, 22px);
    }

    .fcard-title {
        font-size: clamp(15px, 1.9vh, 19px);
    }

    .fcard-sub {
        font-size: clamp(11.5px, 1.4vh, 13px);
        margin-top: clamp(5px, 0.8vh, 7px);
    }

    .fcard-line {
        margin-top: clamp(7px, 1.05vh, 10px);
    }

    .stats-bar {
        padding: clamp(1.15rem, 2.4vh, 1.9rem) 4rem;
    }

    .stat-num {
        font-size: clamp(1.5rem, 3.2vh, 1.9rem);
    }
}

@media (min-width: 1025px) and (max-width: 1250px) {
    .cards-row {
        --fc-cut-start: 58%;
        --fc-cut-end: 84%;
    }
}

@media (min-width: 1251px) and (max-width: 1450px) {
    .cards-row {
        --fc-cut-start: 60%;
        --fc-cut-end: 85%;
    }
}

@media (min-width: 1451px) and (max-width: 1750px) {
    .cards-row {
        --fc-cut-start: 60%;
        --fc-cut-end: 86%;
    }
}

@media (min-width: 1751px) and (max-width: 1900px) {
    .cards-row {
        --fc-cut-start: 48%;
        --fc-cut-end: 65%;
    }
}

@media (min-width: 1025px) and (max-height: 810px) {
    .hero-intro {
        max-width: 620px;
    }

    .fcard {
        min-height: clamp(172px, 23vh, 320px);
    }

    .cards-row {
        padding-bottom: clamp(0.85rem, 2.3vh, 2.4rem);
    }
}

.section {
    padding: 5.5rem 4rem;
    scroll-margin-top: 96px;
}

.section-inner {
    max-width: 1300px;
    margin: 0 auto;
}

.eyebrow {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.9rem;
}

.section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.9rem, 3.2vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
    color: var(--navy-dark);
    text-wrap: balance;
}

.section h2 .red {
    color: var(--primary);
}

.section-sub {
    color: var(--text-light);
    max-width: 560px;
    margin-top: 1rem;
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in {
    opacity: 1;
    transform: none;
}

img{display:block;max-width:100%}
figure{margin:0}
:focus-visible{outline:3px solid var(--navy-dark);outline-offset:3px}

.wrap{max-width:var(--maxw);margin-inline:auto;padding-inline:var(--gutter)}

.about{padding:76px 0 0;overflow:hidden}
.about__grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1.2fr);
  grid-template-areas:
    "copy media"
    "feat media"
    "cta  media"
    "more more";
  column-gap:44px;align-items:start;align-content:start;
}
.about__copy{grid-area:copy}
.features{grid-area:feat}
.about__cta{grid-area:cta}
.about__more{grid-area:more}
.about__media{grid-area:media}

.about__media{
  margin-right:calc(-1 * (var(--gutter) + max(0px,(100vw - var(--maxw)) / 2)));
}

.eyebrow{
  font-family:var(--display);font-weight:700;font-size:16px;
  letter-spacing:.16em;text-transform:uppercase;color:var(--primary);
  margin:0 0 14px;
}
.eyebrow::after{
  content:"";display:block;width:34px;height:3px;
  background:var(--primary);margin-top:8px;border-radius:2px;
}
.headline{
  font-family:var(--display);font-weight:800;
  font-size:clamp(34px,4.2vw,54px);line-height:1.06;
  letter-spacing:-.02em;color:var(--navy-dark);margin:0 0 22px;
}
.headline span{display:block;color:var(--primary);font-family:var(--text)}
.lede{max-width:60ch;margin:0 0 40px;font-size:15.5px}

.features{
  display:grid;grid-template-columns:repeat(4,1fr);
  margin:0 0 34px;padding:0;list-style:none;
}
.features li{padding:0 22px;position:relative}
.features li:first-child{padding-left:0}
.features li + li::before{
  content:"";position:absolute;left:0;top:6px;bottom:6px;
  border-left:1.5px dashed var(--line);
}
.feat-badge{
  width:52px;height:52px;border-radius:50%;
  background:var(--primary);display:grid;place-items:center;
  box-shadow:0 0 0 4px var(--bg-light),0 0 0 5.5px rgba(200,16,46,.45);
  margin-bottom:22px;
}
.feat-badge svg{width:24px;height:24px;stroke:#fff;fill:none;stroke-width:1.7;
  stroke-linecap:round;stroke-linejoin:round}
.features h3{
  font-family:var(--display);font-size:15px;font-weight:700;
  color:var(--navy-dark);margin:0 0 8px;
}
.features p{margin:0;font-size:13px;line-height:1.6}

.ab-btn{
  display:inline-flex;align-items:center;gap:14px;
  background:var(--primary);color:#fff;text-decoration:none;
  font-family:var(--display);font-weight:700;font-size:14px;
  padding:14px 18px 14px 24px;border:0;border-radius:6px;cursor:pointer;
  transition:background .2s ease,transform .2s ease;
}
.ab-btn svg{width:9px;height:9px;stroke:currentColor;stroke-width:2.4;fill:none}
.ab-btn i{
  display:grid;place-items:center;width:22px;height:22px;
  border-radius:50%;background:rgba(255,255,255,.22);
}
.ab-btn:hover{background:var(--primary-dark);transform:translateX(3px)}

.ab-btn--toggle{
  display:none;
  justify-content:space-between;min-width:172px;
}
.js .ab-btn--toggle{display:inline-flex}
.ab-btn--toggle i{transition:transform .3s ease}
.ab-btn--toggle[aria-expanded="true"] i{transform:rotate(90deg)}

.more{
  display:grid;grid-template-rows:1fr;
  transition:grid-template-rows .45s cubic-bezier(.4,0,.2,1);
}
.more[data-collapsed="true"]{grid-template-rows:0fr}
.more__inner{overflow:hidden;min-height:0}

.more__card{
  margin-top:30px;padding:30px 36px;
  background:#fff;border-left:4px solid var(--primary);
  border-radius:0 var(--radius) var(--radius) 0;
  box-shadow:0 1px 2px rgba(16,32,80,.05),0 14px 30px -22px rgba(16,32,80,.35);
}
.more__card p{margin:0 0 16px;font-size:15px}
.more__card p:last-child{margin:0}

.card__body .more__list{
  margin:26px 0 0;padding-top:24px;
  border-top:1.5px dashed var(--line);
}
.card__body .more__list li:last-child{margin-bottom:0}

.frame{position:relative}

.frame__stage{position:relative;isolation:isolate}
.frame__layer{position:absolute;inset:0;clip-path:var(--notch)}
.frame__outline{background:var(--primary);transform:translate(calc(-1 * var(--off-x)),var(--off-y))}
.frame__mat{background:var(--bg-light);transform:translate(calc(-.5 * var(--off-x)),calc(.5 * var(--off-y)))}
.frame__photo{position:relative;clip-path:var(--notch);z-index:1}
.frame__photo img{width:100%;height:auto;aspect-ratio:1920/1280;object-fit:cover}

.tagline{
  position:absolute;right:0;bottom:0;z-index:2;
  width:50%;min-height:19%;
  display:flex;align-items:center;gap:18px;
  background:var(--navy-deep);color:#fff;
  padding:20px 42px 20px 30px;overflow:hidden;
}
.tagline svg{width:34px;height:34px;stroke:var(--gold);fill:none;
  stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round;flex:none}
.tagline p{
  margin:0;font-family:var(--display);font-weight:700;
  font-size:clamp(15px,1.35vw,20px);line-height:1.25;
}
.tagline em{font-style:normal;color:var(--gold)}
.tagline::after{
  content:"";position:absolute;right:14px;top:-10%;height:120%;width:3px;
  background:var(--gold);transform:rotate(18deg);
}

.pillars{padding:56px 0 76px}
.pillars__grid{display:grid;grid-template-columns:1fr 1fr;gap:26px}

.pillars > .wrap,
.programs > .wrap{max-width:calc(1500px + 2 * var(--gutter))}

.card{
  position:relative;display:grid;grid-template-columns:200px 1fr;
  background:#fff;border-radius:var(--radius);overflow:hidden;
  box-shadow:0 1px 2px rgba(16,32,80,.06),0 12px 30px -18px rgba(16,32,80,.35);
  transition:box-shadow .25s ease,transform .25s ease;
}
.card:hover{transform:translateY(-3px);
  box-shadow:0 1px 2px rgba(16,32,80,.06),0 22px 44px -20px rgba(16,32,80,.4)}

.panel{position:relative;display:grid;place-items:center;min-height:290px}
.panel__shape{
  position:absolute;inset:0;
  clip-path:polygon(0 0,100% 0,52% 100%,0 100%);
}
.panel__gold{background:var(--gold);transform:translateX(30px)}
.panel__gap {background:#fff;transform:translateX(22px)}
.panel__fill{
  background-color:var(--navy-dark);
  background-image:radial-gradient(rgba(255,255,255,.16) 1px,transparent 1.1px);
  background-size:13px 13px;
}
.card--mission .panel__fill{background-color:var(--primary)}
.panel svg{position:relative;z-index:2;width:64px;height:64px;
  stroke:var(--gold);fill:none;stroke-width:1.6;margin-right:38px}

.card__body{padding:40px 44px 40px 20px}
.card__body h2{
  font-family:var(--display);font-weight:800;font-size:26px;
  color:var(--navy-dark);margin:0 0 10px;letter-spacing:-.01em;
}
.card__body h2::after{
  content:"";display:block;width:34px;height:3px;background:var(--primary);
  margin-top:12px;border-radius:2px;
}
.card__body p{margin:22px 0 0;font-size:14.5px}
.card__body ul{margin:22px 0 26px;padding:0;list-style:none}
.card__body li{position:relative;padding-left:20px;margin-bottom:16px;font-size:14.5px}
.card__body li::before{
  content:"";position:absolute;left:0;top:9px;width:7px;height:7px;
  border-radius:50%;background:var(--primary);
}

.card--vision .card__body{
  background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='150' viewBox='0 0 260 150'%3E%3Cg fill='%230f2a5e' opacity='.05'%3E%3Ccircle cx='40' cy='34' r='11'/%3E%3Cpath d='M40 48c14 0 22 12 22 28l-6 44h-9l-4-34-5 34h-9l-6-44c0-16 3-28 17-28z'/%3E%3Ccircle cx='140' cy='30' r='11'/%3E%3Cpath d='M140 44c15 0 23 13 23 30l-7 46h-9l-4-36-6 36h-9l-7-46c0-17 4-30 19-30z'/%3E%3Ccircle cx='225' cy='40' r='11'/%3E%3Cpath d='M225 54c14 0 22 12 22 28l-6 38h-9l-4-30-5 30h-9l-6-38c0-16 3-28 17-28z'/%3E%3C/g%3E%3C/svg%3E") right bottom/300px auto no-repeat;
}

.programs{padding:0 0 76px}
.card--program .panel__fill{background-color:var(--secondary)}
.card--program .card__body{padding-right:56px}

.card--program .card__body>p{max-width:880px}

.program{
  margin-top:26px;padding:22px 26px 24px;
  background:#f7f9fd;border:1px solid var(--line);
  border-left:4px solid var(--primary);border-radius:10px;
}
.program__title{
  font-family:var(--display);font-weight:700;font-size:17px;
  line-height:1.35;color:var(--navy-dark);margin:0;
}
.program__label{
  display:block;margin-top:18px;font-family:var(--display);
  font-size:12px;font-weight:700;letter-spacing:.14em;
  text-transform:uppercase;color:var(--text-light);
}
.program__modes{
  display:flex;flex-wrap:wrap;gap:10px;
  margin:10px 0 0;padding:0;list-style:none;
}
.program__modes li{
  display:inline-flex;align-items:center;gap:8px;
  margin:0;padding:7px 16px;font-size:13.5px;font-weight:500;
  color:var(--navy-dark);background:#fff;
  border:1px solid var(--line);border-radius:50px;
}

.program__modes li::before{
  content:"";position:static;width:7px;height:7px;flex:none;
  border-radius:50%;background:var(--primary);
}

@media (max-width:620px){
  .card--program .card__body{padding:28px 24px 34px}
  .program{padding:18px 18px 20px}
}

@media (max-width:1600px) and (min-width:1081px){
  .about__grid{
    grid-template-areas:
      "copy media"
      "feat feat"
      "cta  cta"
      "more more";
  }
  .lede{margin-bottom:0}
  .features{margin-top:48px}
  .features li{padding:0 26px}
}

@media (max-width:1080px){
  .about__grid{
    grid-template-columns:1fr;
    grid-template-areas:"copy" "media" "feat" "cta" "more";
    gap:44px;
  }
  .lede{margin-bottom:0}
  .features{margin-bottom:0}
  .about__media{margin-right:calc(-1 * var(--gutter))}
  .pillars__grid{grid-template-columns:1fr}
}
@media (max-width:820px){
  .features{grid-template-columns:1fr 1fr;gap:30px 0}
  .features li{padding-left:0}
  .features li + li::before{display:none}
  .features li:nth-child(even){padding-left:22px;border-left:1.5px dashed var(--line)}
  .tagline{width:70%;padding:16px 30px 16px 20px}
}
@media (max-width:620px){
  :root{
    --notch:polygon(8% 0,100% 0,100% 100%,10% 100%,0 50%);
    --off-x:9px;--off-y:8px;
  }
  .features{grid-template-columns:1fr}
  .features li:nth-child(even){padding-left:0;border-left:0}
  .card{grid-template-columns:1fr}
  .panel{min-height:150px}
  .panel__shape{clip-path:polygon(0 0,100% 0,100% 62%,0 100%)}
  .panel__gold{transform:translateY(26px)}
  .panel__gap{transform:translateY(18px)}
  .panel svg{margin:0 0 26px}
  .card__body{padding:28px 24px 34px}
}
@media (prefers-reduced-motion:reduce){
  .about *,.pillars *{transition:none!important;animation:none!important}
}

.facilities {
    position: relative;
    overflow: hidden;
}

.facilities::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/Facilties/Sportsbanner-facilities-Photoroom.webp") no-repeat top center / cover;
    z-index: 0;
    pointer-events: none;
}

.facilities .section-head {
    position: relative;
    z-index: 2;
    max-width: 640px;
}

.chips {
    position: relative;
    z-index: 2;

    scroll-margin-top: 96px;
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    margin: 2.6rem 0 2.4rem;
    background: white;
    border: 1px solid rgba(12, 57, 122, 0.1);
    border-radius: 14px;
    box-shadow: 0 14px 30px -20px rgba(8, 31, 71, 0.35);
    overflow-x: auto;
    scrollbar-width: none;
}

.chips::-webkit-scrollbar {
    display: none;
}

.chip {
    flex: 1 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.6rem 0.85rem;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: var(--navy-dark);
    white-space: nowrap;
    cursor: pointer;
    transition: var(--transition);
}

.chip + .chip::before {
    content: "";
    position: absolute;
    left: 0;
    top: 22%;
    bottom: 22%;
    width: 1px;
    background: rgba(12, 57, 122, 0.12);
}

.chip svg {
    width: 16px;
    height: 16px;
    flex: none;
    color: var(--secondary);
    transition: var(--transition);
}

.chip:hover {
    background: rgba(12, 57, 122, 0.04);
}

.chip:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: -3px;
}

.chip.active {
    background: linear-gradient(180deg, rgba(189, 23, 33, 0.06), rgba(189, 23, 33, 0.02));
    color: var(--primary);
    box-shadow: inset 0 -3px 0 var(--primary);
}

.chip.active svg {
    color: var(--primary);
}

.category-gallery {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.category-gallery[hidden] {
    display: none;
}

.ccard {
    display: flex;
    align-items: stretch;
    background: white;
    border: 1px solid rgba(12, 57, 122, 0.08);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 18px 38px -26px rgba(8, 31, 71, 0.4);
    transition: var(--transition);
}

.ccard:hover {
    transform: translateY(-4px);
    border-color: rgba(189, 23, 33, 0.2);
    box-shadow: 0 26px 48px -24px rgba(8, 31, 71, 0.35);
}

.ccard-media {
    flex: 0 0 38%;
    position: relative;
    overflow: hidden;
    background: rgba(12, 57, 122, 0.06);
    min-height: 170px;
}

.ccard-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.ccard:hover .ccard-media img {
    transform: scale(1.05);
}

.ccard-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.2rem 1.2rem 1rem;
    min-width: 0;
}

.ccard-head {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
}

.ccard-icon {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    flex: none;
    border-radius: 50%;
    background: rgba(189, 23, 33, 0.1);
    color: var(--primary);
}

.ccard[data-cat="indoor"] .ccard-icon {
    background: rgba(12, 57, 122, 0.09);
    color: var(--secondary);
}

.ccard[data-cat="gym"] .ccard-icon {
    background: rgba(171, 141, 87, 0.14);
    color: var(--gold);
}

.ccard-icon svg {
    width: 16px;
    height: 16px;
}

.ccard-head h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: var(--navy-dark);
}

.ccard-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 0.9rem;
}

.ccard-list li {
    position: relative;
    padding-left: 1rem;
    font-size: 0.82rem;
    color: var(--text-main);
}

.ccard-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
}

.ccard-footer {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
}

.ccard-more {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1.5px solid rgba(189, 23, 33, 0.35);
    color: var(--primary);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.ccard-more svg {
    width: 14px;
    height: 14px;
}

.ccard-more:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.ccard-more:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

.gallery-nav {
    display: none;
}

.gallery {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery[hidden] {
    display: none;
}

.gcard {
    display: flex;
    flex-direction: column;
    background: white;
    border: 1px solid rgba(12, 57, 122, 0.09);
    border-radius: 18px;
    padding: 0.6rem;
    box-shadow: 0 16px 34px -24px rgba(8, 31, 71, 0.4);
    transition: var(--transition);
}

.gcard:hover {
    transform: translateY(-4px);
    border-color: rgba(189, 23, 33, 0.22);
    box-shadow: 0 24px 44px -22px rgba(8, 31, 71, 0.35);
}

.gcard[hidden] {
    display: none;
}

.gcard-media {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 13px;
    overflow: hidden;
    background: rgba(12, 57, 122, 0.06);
    aspect-ratio: 4 / 3;
    cursor: zoom-in;
}

.gcard-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.gcard:hover .gcard-media img {
    transform: scale(1.06);
}

.gcard-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 31, 71, 0) 45%, rgba(8, 31, 71, 0.55));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.gcard:hover .gcard-media::after,
.gcard-media:focus-visible::after {
    opacity: 1;
}

.gcard-zoom {
    position: absolute;
    right: 0.7rem;
    bottom: 0.7rem;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 0.42rem 0.7rem;
    border-radius: 8px;
    background: var(--glass);
    color: var(--navy-dark);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.gcard-zoom svg {
    width: 15px;
    height: 15px;
}

.gcard:hover .gcard-zoom,
.gcard-media:focus-visible .gcard-zoom {
    opacity: 1;
    transform: none;
}

.gcard-media:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

.gcard-label {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 1rem 0.85rem 0.85rem;
}

.gcard-label strong {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--navy-dark);
}

.gcard-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--text-light);
}

.gcard-tag::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
}

.gcard[data-cat="women-outdoor"] .gcard-tag::before {
    background: var(--accent);
}

.gcard[data-cat="indoor"] .gcard-tag::before {
    background: var(--secondary);
}

.gcard[data-cat="gym"] .gcard-tag::before {
    background: var(--gold);
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 3rem 4.5rem;
    background: rgba(8, 31, 71, 0.92);
    backdrop-filter: blur(6px);
}

.lightbox.open {
    display: flex;
}

.lightbox-figure {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
    max-width: 1100px;
    width: 100%;
    animation: lb-in 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes lb-in {
    from {
        opacity: 0;
        transform: scale(0.96);
    }
}

.lightbox-figure img {
    max-width: 100%;
    max-height: 74vh;
    border-radius: 14px;
    box-shadow: 0 40px 70px -30px rgba(0, 0, 0, 0.8);
    object-fit: contain;
}

.lightbox-caption {
    text-align: center;
    color: white;
}

.lightbox-caption strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.lightbox-caption span {
    font-size: 0.85rem;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

.lb-btn {
    position: absolute;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.lb-btn svg {
    width: 24px;
    height: 24px;
}

.lb-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.lb-btn:focus-visible {
    outline: 2px solid white;
    outline-offset: 3px;
}

.lb-close {
    top: 1.6rem;
    right: 1.8rem;
}

.lb-prev {
    top: 50%;
    left: 1.5rem;
    transform: translateY(-50%);
}

.lb-next {
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
}

.lb-count {
    position: absolute;
    bottom: 1.6rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.7);
}

body.lb-locked {
    overflow: hidden;
}

@media (max-width: 1024px) {
    .chip {
        font-size: 0.74rem;
        padding: 0.55rem 0.75rem;
    }

    .ccard-media {
        min-height: 150px;
    }

    .lightbox {
        padding: 4rem 1.5rem;
    }

    .lb-prev {
        left: 0.5rem;
    }

    .lb-next {
        right: 0.5rem;
    }
}

@media (max-width: 860px) {
    .category-gallery {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .ccard {
        flex-direction: column;
    }

    .ccard-media {
        min-height: 0;
        aspect-ratio: 21 / 9;
    }

    .ccard-body {
        flex: none;
    }

    .ccard-footer {
        margin-top: 0.6rem;
    }
}

@media (max-width: 767px) {

    .chips {
        margin-top: 2rem;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.3rem;
        padding: 0.4rem;
        overflow-x: visible;
    }

    .chip {
        flex: 0 1 auto;
        font-size: 0.68rem;
        padding: 0.5rem 0.6rem;
        gap: 0.3rem;
    }

    .chip+.chip::before {
        display: none;
    }

    .chip svg {
        width: 14px;
        height: 14px;
    }

    .ccard-body {
        padding: 1rem 1rem 0.9rem;
    }

    .gallery {
        display: flex;
        grid-template-columns: none;
        gap: 0.7rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .gallery::-webkit-scrollbar {
        display: none;
    }

    .gallery-nav {
        position: relative;
        z-index: 2;
        display: flex;
        justify-content: center;
        gap: 14px;
        margin-top: 1rem;
    }

    .gallery-nav[hidden] {
        display: none;
    }

    .gcard {
        flex: 0 0 100%;
        scroll-snap-align: center;
        padding: 0;
        border-radius: 12px;
        border: 0;
        box-shadow: none;
    }

    .gcard:hover {
        transform: none;
        box-shadow: none;
    }

    .gcard-media {
        border-radius: 12px;
        cursor: default;
        pointer-events: none;
    }

    .gcard-zoom {
        display: none;
    }

    .gcard-label {
        padding: 0.7rem 0.15rem 0.2rem;
    }

    .gcard-label strong {
        font-size: 0.95rem;
    }

    .gcard-tag {
        font-size: 0.72rem;
    }

    .lightbox {
        display: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gcard,
    .gcard-media img,
    .gcard-zoom,
    .ccard,
    .ccard-media img,
    .ccard-more {
        transition: none;
    }

    .gcard:hover,
    .ccard:hover {
        transform: none;
    }

    .gcard:hover .gcard-media img,
    .ccard:hover .ccard-media img {
        transform: none;
    }

    .lightbox-figure {
        animation: none;
    }
}

.achievements {
    --gold-bright: #e8b64c;
    position: relative;
    overflow: hidden;
    background: linear-gradient(165deg, #0b2450 0%, #081f47 42%, #050f28 100%);
    color: white;
}

.ach-deco {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.ach-deco span {
    position: absolute;
    display: block;
}

.deco-glow {
    left: 50%;
    top: 45%;
    width: 1100px;
    height: 520px;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse at center,
            rgba(37, 99, 235, 0.16),
            transparent 68%);
}

.achievements .section-inner {
    position: relative;
    z-index: 2;
}

.achievements .eyebrow {
    color: var(--gold-bright);
}

.achievements .eyebrow::after {
    background: #ef3340;
}

.achievements h2 {
    color: white;
}

.achievements h2 .red {
    color: #ef3340;
}

.achievements .section-sub {
    color: rgba(255, 255, 255, 0.72);
    max-width: 640px;
}

.ach-divider {
    position: relative;
    width: 200px;
    height: 1px;
    margin: 2.4rem auto 0;
    background: linear-gradient(90deg,
            transparent,
            rgba(232, 182, 76, 0.85),
            transparent);
}

.ach-divider::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: var(--gold-bright);
    box-shadow: 0 0 12px 3px rgba(232, 182, 76, 0.6);
}

.ach-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 1.5rem;
    row-gap: 3.4rem;
    margin-top: 1.6rem;
    padding-top: 34px;
}

.ach-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.075),
            rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 6px 6px 0;
    transition: var(--transition);
}

.ach-card:hover {
    transform: translateY(-6px);
    border-color: color-mix(in srgb, var(--sport) 55%, transparent);
    box-shadow: 0 26px 50px -26px rgba(0, 0, 0, 0.85),
        0 0 0 1px color-mix(in srgb, var(--sport) 22%, transparent);
}

.ach-icon {
    position: absolute;
    z-index: 2;
    top: -27px;
    left: 50%;
    transform: translateX(-50%);
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 4px solid #071b3d;
    background: var(--sport);
    color: white;
    box-shadow: 0 0 22px -2px color-mix(in srgb, var(--sport) 75%, transparent);
}

.ach-icon svg {
    width: 26px;
    height: 26px;
}

.ach-media {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 11px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    cursor: zoom-in;
}

.ach-media:focus-visible {
    outline: 2px solid var(--gold-bright);
    outline-offset: 3px;
}

.ach-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 15, 40, 0) 55%, rgba(5, 15, 40, 0.75));
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.ach-zoom {
    position: absolute;
    z-index: 1;
    right: 10px;
    bottom: 10px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 0.35rem 0.65rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    color: #0b2450;
    opacity: 0;
    transform: translateY(6px);
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.ach-zoom svg {
    width: 14px;
    height: 14px;
}

.ach-card:hover .ach-media::after,
.ach-media:focus-visible::after,
.ach-card:hover .ach-zoom,
.ach-media:focus-visible .ach-zoom {
    opacity: 1;
}

.ach-card:hover .ach-zoom,
.ach-media:focus-visible .ach-zoom {
    transform: none;
}

.ach-card img {
    width: 100%;

    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

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

.ach-body {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 0.7rem 1.05rem;
}

.ach-body strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
}

.ach-sub {
    display: block;
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.62);
    margin-top: 1px;
}

.ach-bar {
    display: block;
    width: 38px;
    height: 3px;
    margin-top: 0.6rem;
    border-radius: 3px;
    background: var(--sport);
}

.year-chip {
    flex-shrink: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #e8b64c;
    border: 1px solid rgba(232, 182, 76, 0.45);
    padding: 0.28rem 0.75rem;
    border-radius: 50px;
}

.ach-lightbox {
    --gold-bright: #e8b64c;
    position: fixed;
    inset: 0;

    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 3rem 4.5rem;
    background: rgba(4, 12, 32, 0.93);
    backdrop-filter: blur(6px);
}

.ach-lightbox.open {
    display: flex;
}

.ach-lb-figure {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    max-width: 1100px;
    width: 100%;
    animation: ach-lb-in 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes ach-lb-in {
    from {
        opacity: 0;
        transform: scale(0.96);
    }
}

.ach-lb-figure img {
    max-width: 100%;
    max-height: 72vh;
    border-radius: 14px;
    object-fit: contain;
    box-shadow: 0 40px 70px -30px rgba(0, 0, 0, 0.9);
}

.ach-lb-caption {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    text-align: center;
    color: white;
}

.ach-lb-bar {
    width: 44px;
    height: 3px;
    border-radius: 3px;
    background: var(--sport, var(--gold-bright));
}

.ach-lb-caption strong {
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.ach-lb-sub {
    font-size: 0.88rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

.ach-lb-year {
    margin-top: 0.35rem;
}

.ach-lb-year[hidden] {
    display: none;
}

.ach-lb-btn {
    position: absolute;
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.ach-lb-btn svg {
    width: 22px;
    height: 22px;
}

.ach-lb-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
}

.ach-lb-btn:focus-visible {
    outline: 2px solid var(--gold-bright);
    outline-offset: 3px;
}

.ach-lb-close {
    top: 1.6rem;
    right: 1.8rem;
}

.ach-lb-prev {
    top: 50%;
    left: 1.5rem;
    transform: translateY(-50%);
}

.ach-lb-next {
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
}

.ach-lb-count {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.7);
}

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

@media (max-width: 860px) {
    .ach-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 1.1rem;
    }
}

@media (max-width: 640px) {
    .ach-grid {
        grid-template-columns: 1fr;
    }

    .ach-divider {
        margin-top: 2rem;
    }

    .ach-lightbox {
        padding: 4rem 1rem 3rem;
    }

    .ach-lb-btn {
        width: 42px;
        height: 42px;
    }

    .ach-lb-prev {
        left: 0.5rem;
    }

    .ach-lb-next {
        right: 0.5rem;
    }

    .ach-lb-close {
        top: 1rem;
        right: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {

    .ach-card,
    .ach-card img,
    .ach-media::after,
    .ach-zoom,
    .ach-lb-btn {
        transition: none;
    }

    .ach-lb-figure {
        animation: none;
    }

    .ach-card:hover,
    .ach-card:hover img {
        transform: none;
    }
}

.faq {
    background: white;
}

.faq__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 3.5rem;
    align-items: start;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(189, 23, 33, 0.07);
    border: 1px solid rgba(189, 23, 33, 0.2);
    padding: 0.5rem 1.15rem;
    border-radius: 50px;
}

.faq-badge svg {
    width: 18px;
    height: 18px;
}

.faq__intro h2 {
    margin-top: 1.4rem;
}

.faq__intro h2 em {
    font-style: italic;
}

.faq-cta {
    position: relative;
    overflow: hidden;
    margin-top: 2.6rem;
    padding: 2rem 2rem 2.1rem;
    border-radius: 16px;
    background: linear-gradient(150deg, var(--navy-dark) 0%, var(--navy-deep) 55%, #050f28 100%);
    color: white;
}

.faq-cta::after {
    content: "";
    position: absolute;
    right: -60px;
    top: -70px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1.1px);
    background-size: 13px 13px;
    pointer-events: none;
}

.faq-cta strong {
    position: relative;
    z-index: 1;
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 1.18rem;
    font-weight: 700;
}

.faq-cta p {
    position: relative;
    z-index: 1;
    margin-top: 0.6rem;
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
}

.faq-cta__btn {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.6rem;
    padding: 0.85rem 1.7rem;
    border-radius: 50px;
    background: var(--primary);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 16px 28px -14px rgba(189, 23, 33, 0.9);
    transition: var(--transition);
}

.faq-cta__btn svg {
    width: 18px;
    height: 18px;
}

.faq-cta__btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.faq-cta__btn:focus-visible {
    outline: 2px solid white;
    outline-offset: 3px;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    background: var(--bg-light);
    border: 1px solid rgba(12, 57, 122, 0.08);
    border-radius: 14px;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(189, 23, 33, 0.22);
}

.faq-item.open {
    background: white;
    border-color: rgba(189, 23, 33, 0.3);
    box-shadow: 0 20px 40px -26px rgba(8, 31, 71, 0.55);
}

.faq-item h3 {
    margin: 0;
    font: inherit;
}

.faq-q {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 1.05rem 1.25rem;
    border: 0;
    border-radius: 14px;
    background: transparent;
    text-align: left;
    cursor: pointer;
}

.faq-q:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: -2px;
}

.faq-num {
    flex: none;
    display: grid;
    place-items: center;
    width: 38px;
    height: 34px;
    border-radius: 9px;
    background: rgba(189, 23, 33, 0.1);
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.faq-item.open .faq-num {
    background: var(--primary);
    color: white;
}

.faq-text {
    flex: 1;
    font-family: 'Poppins', sans-serif;
    font-size: 0.97rem;
    font-weight: 600;
    line-height: 1.45;
    color: var(--navy-dark);
}

.faq-chev {
    flex: none;
    width: 20px;
    height: 20px;
    color: var(--secondary);
    transition: transform 0.35s ease, color 0.35s ease;
}

.faq-item.open .faq-chev {
    color: var(--primary);
    transform: rotate(180deg);
}

.faq-a {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
}

.faq-item.open .faq-a {
    grid-template-rows: 1fr;
}

.faq-a__inner {
    overflow: hidden;
}

.faq-a p {

    padding: 0 1.5rem 1.3rem calc(1.25rem + 38px + 1rem);
    font-size: 0.93rem;
    line-height: 1.8;
    color: var(--text-light);
}

@media (max-width: 980px) {
    .faq__grid {
        grid-template-columns: 1fr;
        gap: 2.4rem;
    }

    .faq-cta {
        margin-top: 2rem;
    }
}

@media (max-width: 640px) {
    .faq-q {
        gap: 0.75rem;
        padding: 0.95rem 1rem;
    }

    .faq-text {
        font-size: 0.9rem;
    }

    .faq-a p {
        padding: 0 1rem 1.15rem calc(1rem + 38px + 0.75rem);
    }
}

@media (prefers-reduced-motion: reduce) {

    .faq-item,
    .faq-num,
    .faq-chev,
    .faq-a,
    .faq-cta__btn {
        transition: none;
    }

    .faq-cta__btn:hover {
        transform: none;
    }
}

@media (max-width: 1024px) {
    .section {
        padding: 4rem 2rem;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 3.5rem 1.25rem;
    }

    .back-to-top {
        right: 1rem;
        bottom: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .gcard img,
    .fcard-media img,
    .fcard,
    .ach-card {
        transition: none;
    }
}

footer {
    background: #050505;
    color: white;
    padding: 5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    scroll-margin-top: 96px;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2.5rem;
}

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

@media (min-width: 769px) and (max-width: 1024px) {
    .footer-grid {
        align-items: start;
    }

    .footer-grid>div:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }

    .footer-grid>div:nth-child(2) {
        grid-column: 2;
        grid-row: 1 / span 3;
    }

    .footer-grid>div:nth-child(3) {
        grid-column: 3;
        grid-row: 1 / span 3;
    }

    .footer-grid>div:nth-child(4) {
        grid-column: 1;
        grid-row: 2;
    }

    .footer-grid>div:nth-child(5) {
        grid-column: 1;
        grid-row: 3;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    -webkit-touch-callout: none;
}

body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input,
textarea,
[contenteditable="true"] {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

@media (max-width: 980px) {

    .section-head,
    .about__copy,
    .faq__intro {
        text-align: center;
    }

    .facilities .section-head,
    .section-sub,
    .achievements .section-sub,
    .lede {
        margin-left: auto;
        margin-right: auto;
    }

    .faq-cta {
        text-align: center;
    }

    .faq-cta p {
        max-width: 56ch;
        margin-left: auto;
        margin-right: auto;
    }

    .eyebrow::after {
        margin-left: auto;
        margin-right: auto;
    }

}

@media (max-width: 767px) {

    .badge {
        font-size: 0.80rem;
        letter-spacing: 0.9px;
        gap: 7px;
        padding: 0.55rem 1rem;
        white-space: nowrap;
    }

    .badge svg {
        width: 17px;
        height: 17px;
        flex: none;
    }

    .hero-main {
        text-align: center;
    }

    .lede {
        text-align: left;
    }

    .badge-dash,
    .hero-intro,
    .script svg {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .features li,
    .about__cta {
        text-align: center;
    }

    .feat-badge {
        margin-left: auto;
        margin-right: auto;
    }

    /* the frame bleeds off the right gutter on wider screens; on mobile it
       sits inside the column. The notch clips the photo's left edge, so a
       small negative margin cancels that and the visible photo, not the
       invisible box, is what ends up centred. */
    .about__media {
        margin-right: 0;
        margin-left: -14px;
    }

    .about__grid {
        row-gap: 30px;
    }

    /* .about picks up .section's 56px bottom padding on mobile, which with
       the grid row gap and the pillars' own top padding left a ~156px hole
       between the Know More button and the first Vision card */
    .about {
        padding-bottom: 14px;
    }

    .pillars {
        padding-top: 18px;
    }
}

@media (max-width: 360px) {

    .badge {
        font-size: 0.62rem;
        letter-spacing: 0.5px;
        padding: 0.5rem 0.85rem;
    }
}

@media (min-width: 981px) {

    .faq__grid {
        column-gap: 3.5rem;
        row-gap: 0;
    }

    .faq__intro {
        grid-column: 1;
        grid-row: 1;
    }

    .faq-cta {
        grid-column: 1;
        grid-row: 2;
    }

    .faq__list {
        grid-column: 2;
        grid-row: 1 / span 2;
    }
}

/* ---- tablets (iPad Air portrait is 820px, the 13" is 1024px) ----
   Everything between the mobile rules and the 1025px desktop block was
   falling back to the base sizes, which are the largest in the sheet — an
   iPad ended up with bigger cards and badges than a desktop. This tier sits
   between the two. */
@media (min-width: 701px) and (max-width: 1024px) {

    .hero h1 {
        font-size: clamp(1.9rem, 3.4vw, 2.3rem);
    }

    /* The shared <=1024 scrim never drops below 72% white, which washes the
       photograph out completely. Hold it opaque under the text column, then
       clear it so the right third of the photo actually reads. */
    .hero-photo::after {
        background:
            linear-gradient(90deg,
                var(--bg-light) 0%,
                var(--bg-light) 34%,
                rgba(244, 247, 253, 0.88) 52%,
                rgba(244, 247, 253, 0.55) 68%,
                rgba(244, 247, 253, 0.14) 86%,
                rgba(244, 247, 253, 0.04) 100%),
            linear-gradient(0deg, rgba(244, 247, 253, 0.5) 0%, rgba(244, 247, 253, 0) 28%);
    }

    /* the framed photo ran the full column width and dominated the section */
    .about__media {
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }

    .cards-row {
        --fc-icon: 54px;
        padding-top: 2rem;
    }

    /* the card gets wider across this range, so let its height follow or a
       13" iPad ends up with a 464x236 letterbox */
    .fcard {
        min-height: clamp(236px, 27vw, 276px);
    }

    .fcard-panel {
        padding: 18px 20px 16px;
    }

    .fcard-title {
        font-size: 17px;
    }

    .fcard-sub {
        font-size: 12.5px;
        margin-top: 5px;
    }

    .stats-bar {
        padding: 1.25rem 2rem;
    }

    .stat-icon {
        width: 44px;
        height: 44px;
        padding: 7px;
    }

    .stat-num {
        font-size: 1.55rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }
}
