body,
html {
    scroll-behavior: smooth;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(42px) scale(0.985);
    transition:
        opacity 0.85s ease,
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        background-color 0.35s ease,
        border-color 0.35s ease;
    will-change: opacity, transform;
}

.reveal-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@keyframes aboutFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes aboutPulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(125, 201, 255, 0.18);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(125, 201, 255, 0);
    }
}

.about-section {
    min-height: 100vh;
    padding-bottom: 4rem;
    isolation: isolate;
}

.about-section .hero-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 38%;
}

.about-section .container {
    z-index: 3;
}

.about-section .bg-overlay::before {
    background:
        linear-gradient(
            90deg,
            rgba(8, 88, 146, 0.82) 0%,
            rgba(8, 88, 146, 0.56) 34%,
            rgba(8, 88, 146, 0.14) 58%,
            rgba(4, 20, 31, 0.74) 100%
        ),
        linear-gradient(
            180deg,
            rgba(7, 32, 47, 0.06) 0%,
            rgba(7, 32, 47, 0.68) 100%
        );
    opacity: 1;
}

.about-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.04) 0%,
        rgba(255, 255, 255, 0) 20%
    );
    pointer-events: none;
}

.about-section::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 30%;
    z-index: 2;
    background: linear-gradient(
        180deg,
        rgba(5, 20, 31, 0) 0%,
        rgba(5, 20, 31, 0.72) 100%
    );
    pointer-events: none;
}

.about-hero-eyebrow {
    font-size: clamp(3rem, 4.8vw, 4.5rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: #ffffff;
}

.about-hero-title-row {
    display: flex;
    align-items: flex-end;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.about-section .hero-title {
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    text-transform: none;
    text-wrap: balance;
}

.about-hero-scroll {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 0 0.65rem;
    flex-shrink: 0;
    background-color: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(6px);
    /* animation: aboutFloat 2.8s ease-in-out infinite; */
}

#about-next-section {
    position: relative;
    top: -5rem;
}

.about-page-container {
    max-width: 1440px;
    padding-left: 1rem;
    padding-right: 1rem;
}

.about-story-section {
    padding: 5.5rem 0 2rem;
    background: #ffffff;
}

.about-section-heading {
    margin-bottom: 2.5rem;
}

.about-section-kicker {
    color: #333333;
    font-size: 1.45rem;
    line-height: 1.4;
}

.about-section-title {
    color: #0d74bd;
    font-size: clamp(2.3rem, 4.1vw, 3.9rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.about-history-panel {
    padding: 3rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #083761 0%, #0f5b93 100%);
    color: #ffffff;
    box-shadow: 0 22px 50px rgba(12, 51, 82, 0.18);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.about-history-panel:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(12, 51, 82, 0.24);
}

.about-history-title {
    font-size: clamp(2.2rem, 3.2vw, 3.5rem);
    color: #a7d8ff;
}

.about-history-copy {
    font-size: 0.9rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.9);
    text-align: justify;
}

.about-history-timeline {
    position: relative;
    margin-top: 2.5rem;
    padding-top: 1.75rem;
}

.about-history-line {
    position: absolute;
    top: 1.8rem;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.35) 0%,
        rgba(167, 216, 255, 0.85) 100%
    );
}

.about-history-item {
    position: relative;
    padding-top: 1.8rem;
    transition:
        transform 0.28s ease,
        opacity 0.28s ease;
}

.about-history-item:hover {
    transform: translateY(-4px);
}

.about-history-dot {
    position: absolute;
    top: -0.5rem;
    left: 0;
    width: 1.15rem;
    height: 1.15rem;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.08);
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        background-color 0.28s ease;
    animation: aboutPulse 2.8s ease-in-out infinite;
}

.about-history-dot.is-accent {
    background: #7dc9ff;
}

.about-history-item:hover .about-history-dot {
    transform: scale(1.14);
    box-shadow: 0 0 0 12px rgba(125, 201, 255, 0.16);
}

.about-history-year {
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
}

.about-history-item-title {
    font-size: 0.95rem;
    line-height: 1.45;
    color: #ffffff;
}

.about-history-item-text {
    font-size: 0.82rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
}

.about-purpose-section {
    padding: 1.5rem 0 5.5rem;
    background: #ffffff;
}

.about-purpose-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    padding: 1.6rem;
    border-radius: 0.95rem;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        filter 0.35s ease;
}

.about-purpose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(11, 59, 95, 0.12);
    filter: saturate(1.03);
}

.about-purpose-card-vision {
    background: linear-gradient(180deg, #dcebf7 0%, #e8f2fa 100%);
}

.about-purpose-card-mission {
    background: linear-gradient(180deg, #f2f4f7 0%, #ececef 100%);
}

.about-purpose-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    margin-bottom: 1.5rem;
    border-radius: 50%;
    background: #ffffff;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.about-purpose-card:hover .about-purpose-icon {
    transform: scale(1.08) rotate(-4deg);
    box-shadow: 0 16px 28px rgba(13, 116, 189, 0.14);
}

.about-purpose-icon-eye,
.about-purpose-icon-target {
    position: relative;
    display: block;
}

.about-purpose-icon-eye {
    width: 1.7rem;
    height: 1.7rem;
    border: 4px solid #0d74bd;
    border-radius: 50%;
}

.about-purpose-icon-eye::after {
    content: "";
    position: absolute;
    inset: 0.28rem;
    border-radius: 50%;
    background: #0d74bd;
}

.about-purpose-icon-target {
    width: 1.95rem;
    height: 1.05rem;
    border: 4px solid #0d74bd;
    border-radius: 999px;
}

.about-purpose-icon-target::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: #0d74bd;
    transform: translate(-50%, -50%);
}

.about-purpose-title {
    margin-bottom: 1.25rem;
    color: #2a2f36;
    font-size: clamp(2rem, 3vw, 3.1rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.about-purpose-text {
    color: #35424f;
    font-size: 1rem;
    line-height: 1.8;
}

.about-video-card {
    position: relative;
    display: block;
    height: 100%;
    min-height: 20rem;
    overflow: hidden;
    width: 100%;
    border: 0;
    padding: 0;
    cursor: pointer;
    border-radius: 0.95rem;
    background: #0a3455;
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.about-video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 52px rgba(9, 53, 85, 0.28);
}

.about-video-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.7s ease,
        filter 0.4s ease;
}

.about-video-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(6, 32, 52, 0.34) 0%,
            rgba(8, 88, 146, 0.52) 100%
        ),
        linear-gradient(
            90deg,
            rgba(6, 32, 52, 0.2) 0%,
            rgba(6, 32, 52, 0.45) 100%
        );
    transition:
        opacity 0.35s ease,
        background 0.35s ease;
}

.about-video-badges {
    position: absolute;
    top: 1.1rem;
    right: 1.1rem;
    display: inline-flex;
    gap: 0.35rem;
}

.about-video-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}

.about-video-badge.is-purple {
    background: #7f44d7;
}

.about-video-badge.is-dark {
    background: #4a4a4a;
}

.about-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-top: 1.1rem solid transparent;
    border-bottom: 1.1rem solid transparent;
    border-left: 1.8rem solid #ffffff;
    transform: translate(-35%, -50%);
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.25));
    transition:
        transform 0.35s ease,
        filter 0.35s ease;
}

.about-video-card:hover .about-video-poster {
    transform: scale(1.06);
    filter: saturate(1.08);
}

.about-video-card:hover .about-video-overlay {
    background:
        linear-gradient(
            180deg,
            rgba(6, 32, 52, 0.24) 0%,
            rgba(8, 88, 146, 0.44) 100%
        ),
        linear-gradient(
            90deg,
            rgba(6, 32, 52, 0.14) 0%,
            rgba(6, 32, 52, 0.34) 100%
        );
}

.about-video-card:hover .about-video-play {
    transform: translate(-35%, -50%) scale(1.08);
    filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.32));
}

.about-services-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1.5rem;
    border-radius: 0.95rem;
    background: linear-gradient(90deg, #083761 0%, #0d74bd 100%);
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 20px 46px rgba(13, 116, 189, 0.16);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background-position 0.35s ease;
    background-size: 140% 100%;
    background-position: 0 50%;
    height: 6em;
}

.about-services-cta:hover,
.about-services-cta:focus {
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-5px);
    box-shadow: 0 28px 56px rgba(13, 116, 189, 0.24);
    background-position: 100% 50%;
}

.about-services-cta-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border: 1.5px solid rgba(255, 255, 255, 0.82);
    border-radius: 50%;
    flex-shrink: 0;
    transition:
        transform 0.3s ease,
        background-color 0.3s ease;
}

.about-services-cta-icon::before {
    content: "";
    width: 0.7rem;
    height: 0.7rem;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    transform: rotate(45deg) translate(-1px, 1px);
}

.about-services-cta:hover .about-services-cta-icon,
.about-services-cta:focus .about-services-cta-icon {
    transform: translateX(4px);
    background-color: rgba(255, 255, 255, 0.08);
}

.about-services-cta-text {
    font-size: clamp(1.35rem, 2vw, 2rem);
}

.about-leaders-section {
    padding: 4.5rem 0 4.5rem;
    background: #ffffff;
}

.about-leaders-intro {
    height: 100%;
    padding-right: 1rem;
}

.about-leaders-intro-title {
    color: #0d74bd;
    font-size: clamp(2.8rem, 4.4vw, 3.5rem);
    line-height: 1;
}

.about-leaders-intro-text {
    margin-top: 1rem;
    padding: 2rem;
    border-radius: 0.5rem;
    background: #dcebf7;
    color: #2d3640;
    font-size: 1.3rem;
    box-shadow: inset 0 0 0 1px rgba(13, 116, 189, 0.05);
}

.about-leaders-group + .about-leaders-group {
    margin-top: 1.8rem;
}

.about-leaders-group {
    padding: 1.45rem 1.6rem 1.15rem;
    border-radius: 1rem;
    background: linear-gradient(90deg, #f8f8f8 0%, #ffffff 100%);
}

.about-leaders-group .row {
    --bs-gutter-x: 1.1rem;
    --bs-gutter-y: 1rem;
}

.about-leaders-group-title {
    margin-bottom: 6rem;
    color: #006cb6;
    font-size: clamp(1.9rem, 2.8vw, 3rem);
    font-weight: 700;
}

.about-leader-card {
    display: block;
    width: 100%;
    border: 0;
    padding: 0;
    background: transparent;
    text-align: center;
    cursor: pointer;
    transition: transform 0.35s ease;
}

.about-leader-card:hover {
    transform: translateY(-4px);
}

.about-leader-photo-wrap {
    position: relative;
    display: block;
    aspect-ratio: 1.45 / 1;
    overflow: hidden;
    border-radius: 0.85rem;
    background:
        radial-gradient(
            circle at 82% 22%,
            rgba(16, 122, 198, 0.35) 0%,
            rgba(16, 122, 198, 0) 34%
        ),
        linear-gradient(120deg, #051726 0%, #08253a 34%, #0d74bd 100%);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.about-leader-photo-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(2, 10, 18, 0.08) 0%,
        rgba(2, 10, 18, 0.02) 48%,
        rgba(13, 116, 189, 0.08) 100%
    );
}

.about-leader-photo {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: auto;
    height: 104%;
    max-width: none;
    object-fit: contain;
    object-position: center bottom;
    transform: translateX(-50%);
    transition:
        transform 0.5s ease,
        filter 0.35s ease;
}

.about-leader-plus {
    position: absolute;
    right: -0.15rem;
    bottom: 0.35rem;
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(13, 116, 189, 0.22);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.about-leader-plus::before,
.about-leader-plus::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: #ffffff;
    transform: translate(-50%, -50%);
}

.about-leader-plus::before {
    width: 0.72rem;
    height: 3px;
    border-radius: 999px;
}

.about-leader-plus::after {
    width: 3px;
    height: 0.72rem;
    border-radius: 999px;
}

.about-leader-name,
.about-leader-role {
    display: block;
}

.about-leader-name {
    margin-top: 0.55rem;
    color: #0d74bd;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.25;
    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.about-leader-role {
    margin-top: 0.15rem;
    color: #4e5661;
    font-size: 0.76rem;
    line-height: 1.35;
}

.about-leader-card:hover .about-leader-photo-wrap {
    box-shadow: 0 18px 34px rgba(13, 116, 189, 0.14);
}

.about-leader-card:hover .about-leader-photo {
    /* transform: translateX(-50%) scale(1.02); */
    filter: saturate(1.06);
}

.about-leader-card:hover .about-leader-plus {
    transform: scale(1.2);
    box-shadow: 0 12px 22px rgba(13, 116, 189, 0.28);
}

.about-leader-card:hover .about-leader-name {
    color: #083761;
    transform: translateY(1px);
}

.about-recognition-section {
    padding: 4em 4em 8em;
    background: #ffffff;
}

.about-recognition-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 5rem 1.5rem 5rem;
    border-radius: 0.95rem;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.about-recognition-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 54px rgba(12, 51, 82, 0.18);
}

.about-recognition-card.is-award {
    background: linear-gradient(180deg, #062f4f 0%, #0d5f9c 100%);
    color: #ffffff;
}

.about-recognition-card.is-certificate {
    background: linear-gradient(180deg, #dcebf7 0%, #eaf3fa 100%);
    color: #243140;
}

.about-recognition-title {
    margin-bottom: 0.5rem;
    font-size: clamp(2.2rem, 3.4vw, 3.4rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.about-recognition-card.is-award .about-recognition-title {
    color: #4ab6ff;
}

.about-recognition-card.is-certificate .about-recognition-title {
    color: #0d74bd;
}

.about-recognition-copy {
    max-width: 25rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.92rem;
    line-height: 1.7;
}

.about-recognition-stage {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.75rem 0 1.35rem;
}

.about-recognition-stage-swiper {
    align-items: stretch;
}

.about-recognition-swiper {
    width: 100%;
    min-width: 0;
}

.about-recognition-swiper .swiper-wrapper {
    align-items: stretch;
}

.about-recognition-swiper .swiper-slide {
    height: auto;
}

.about-recognition-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 100%;
}

.about-recognition-image-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: zoom-in;
}

.about-recognition-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.7rem;
    height: 2.5rem;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease;
}

.about-recognition-arrow span {
    width: 0.65rem;
    height: 0.65rem;
    border-top: 2px solid #0d74bd;
    border-right: 2px solid #0d74bd;
    transform: rotate(-135deg);
}

.about-recognition-arrow.is-next span {
    transform: rotate(45deg);
}

.about-recognition-arrow:hover {
    transform: scale(1.08);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
    background: #ffffff;
}

.about-recognition-image {
    max-width: min(100%, 14rem);
    max-height: 15rem;
    object-fit: contain;
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.18));
    transition:
        transform 0.45s ease,
        filter 0.35s ease;
}

.about-recognition-image-button:hover .about-recognition-image,
.about-recognition-image-button:focus .about-recognition-image {
    transform: translateY(-4px) scale(1.03);
    filter: drop-shadow(0 22px 32px rgba(0, 0, 0, 0.22));
}

.about-recognition-footer {
    width: 100%;
    margin-top: 0.4rem;
}

.about-recognition-card:hover .about-recognition-image {
    transform: translateY(-6px) scale(1.03);
    filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.22));
}

.about-recognition-item-title {
    font-size: 1.15rem;
    line-height: 1.4;
}

.about-recognition-item-text {
    max-width: 20rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.88rem;
    line-height: 1.65;
}

.about-leader-modal[hidden] {
    display: none;
}

.about-video-modal[hidden] {
    display: none;
}

.about-recognition-modal[hidden] {
    display: none;
}

.about-modal-open {
    overflow: hidden;
}

.about-leader-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
}

.about-video-modal {
    position: fixed;
    inset: 0;
    z-index: 1250;
}

.about-recognition-modal {
    position: fixed;
    inset: 0;
    z-index: 1260;
}

.about-leader-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 23, 35, 0.72);
    opacity: 0;
    transition: opacity 0.28s ease;
}

.about-video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 23, 35, 0.82);
    opacity: 0;
    transition: opacity 0.28s ease;
}

.about-recognition-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 23, 35, 0.84);
    opacity: 0;
    transition: opacity 0.28s ease;
}

.about-leader-modal-dialog {
    position: relative;
    max-width: 60rem;
    margin: 8vh auto;
    padding: 1.75rem;
    border-radius: 1.1rem;
    background: #ffffff;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.22);
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    transition:
        opacity 0.28s ease,
        transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-video-modal-dialog {
    position: relative;
    max-width: min(72rem, calc(100vw - 2rem));
    margin: 6vh auto;
    padding: 1rem;
    border-radius: 1.1rem;
    background: #061a2a;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.32);
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    transition:
        opacity 0.28s ease,
        transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-recognition-modal-dialog {
    position: relative;
    max-width: min(60rem, calc(100vw - 2rem));
    margin: 5vh auto;
    padding: 1rem;
    border-radius: 1.1rem;
    background: #ffffff;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28);
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    transition:
        opacity 0.28s ease,
        transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-leader-modal-close {
    z-index: 999;
    position: absolute;
    top: 0.9rem;
    right: 1rem;
    width: 2.2rem;
    height: 2.2rem;
    border: 0;
    border-radius: 50%;
    background: #0d74bd;
    color: #ffffff;
    font-size: 1.35rem;
    line-height: 1;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease;
}

.about-video-modal-close {
    position: absolute;
    top: -0.9rem;
    right: -0.2rem;
    z-index: 2;
    width: 2.5rem;
    height: 2.5rem;
    border: 0;
    border-radius: 50%;
    background: #0d74bd;
    color: #ffffff;
    font-size: 1.45rem;
    line-height: 1;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease;
}

.about-recognition-modal-close {
    position: absolute;
    top: -0.9rem;
    right: -0.2rem;
    z-index: 2;
    width: 2.5rem;
    height: 2.5rem;
    border: 0;
    border-radius: 50%;
    background: #0d74bd;
    color: #ffffff;
    font-size: 1.45rem;
    line-height: 1;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease;
}

.about-leader-modal-close:hover {
    transform: rotate(90deg) scale(1.06);
    box-shadow: 0 10px 20px rgba(13, 116, 189, 0.24);
    background: #083761;
}

.about-video-modal-close:hover {
    transform: scale(1.06);
    box-shadow: 0 10px 20px rgba(13, 116, 189, 0.28);
    background: #083761;
}

.about-recognition-modal-close:hover {
    transform: scale(1.06);
    box-shadow: 0 10px 20px rgba(13, 116, 189, 0.28);
    background: #083761;
}

.about-video-modal-title {
    margin: 0 0 0.9rem;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
}

.about-recognition-modal-title {
    margin: 0 0 0.9rem;
    color: #1f2933;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

.about-video-modal-frame {
    overflow: hidden;
    border-radius: 0.9rem;
    background: #000000;
    aspect-ratio: 16 / 9;
}

.about-video-modal-player {
    display: block;
    width: 100%;
    height: 100%;
    background: #000000;
}

.about-recognition-modal-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 18rem;
    max-height: 78vh;
    overflow: hidden;
    border-radius: 0.9rem;
    background: #f5f7fa;
}

.about-recognition-modal-image {
    display: block;
    max-width: 100%;
    max-height: 78vh;
    object-fit: contain;
}

.about-leader-modal-image {
    width: 100%;
    border-radius: 0.95rem;
    object-fit: cover;
}

.about-leader-modal-position {
    color: #0d74bd;
    font-size: 0.92rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.about-leader-modal-name {
    color: #1f2933;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.about-leader-modal-bio {
    color: #43515f;
    font-size: 1rem;
    line-height: 1.8;
    white-space: pre-line;
}

.about-leader-modal.is-visible .about-leader-modal-backdrop {
    opacity: 1;
}

.about-leader-modal.is-visible .about-leader-modal-dialog {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.about-video-modal.is-visible .about-video-modal-backdrop {
    opacity: 1;
}

.about-video-modal.is-visible .about-video-modal-dialog {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.about-recognition-modal.is-visible .about-recognition-modal-backdrop {
    opacity: 1;
}

.about-recognition-modal.is-visible .about-recognition-modal-dialog {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.person-card {
    position: relative;
    background:
        radial-gradient(
            circle at 82% 22%,
            rgba(16, 122, 198, 0.35) 0%,
            rgba(16, 122, 198, 0) 34%
        ),
        linear-gradient(161deg, #051726 0%, #08253a 34%, #0d74bd 100%);
    border-radius: 10px;
    padding: 80px 20px 18px;
    text-align: center;
    overflow: visible;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
    cursor: pointer;
}

.person-card:hover {
    box-shadow: 0 12px 32px rgba(26, 77, 143, 0.18);
}

/* Photo container — positioned to stick up OUT of the card */
.person-photo-wrap {
    position: absolute;
    top: -102px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
}

.person-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* Plus button in the bottom-right of photo */
.photo-plus {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 22px;
    height: 22px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    font-size: 15px;
    font-weight: 700;
    color: #1a4d8f;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    line-height: 1;
}

.person-name {
    font-size: 0.78rem;
    font-weight: 700;
    color: #1a4d8f;
    line-height: 1.3;
    margin-bottom: 4px;
}

.person-role {
    font-size: 0.7rem;
    color: #718096;
    line-height: 1.4;
}

@media (prefers-reduced-motion: reduce) {
    .reveal-on-scroll,
    .about-history-panel,
    .about-history-item,
    .about-history-dot,
    .about-purpose-card,
    .about-purpose-icon,
    .about-video-card,
    .about-video-poster,
    .about-video-overlay,
    .about-video-play,
    .about-services-cta,
    .about-services-cta-icon,
    .about-leader-card,
    .about-leader-photo-wrap,
    .about-leader-photo,
    .about-leader-plus,
    .about-leader-name,
    .about-recognition-card,
    .about-recognition-arrow,
    .about-recognition-image,
    .about-leader-modal-backdrop,
    .about-leader-modal-dialog,
    .about-leader-modal-close,
    .about-video-modal-backdrop,
    .about-video-modal-dialog,
    .about-video-modal-close,
    .about-recognition-modal-backdrop,
    .about-recognition-modal-dialog,
    .about-recognition-modal-close,
    .about-hero-scroll {
        animation: none !important;
        transition: none !important;
    }
}

@media (max-width: 991.98px) {
    .about-section {
        min-height: 85vh;
        padding-bottom: 3rem;
    }

    .about-section .hero-image {
        object-position: center;
    }

    .about-section .bg-overlay::before {
        background:
            linear-gradient(
                180deg,
                rgba(7, 84, 139, 0.64) 0%,
                rgba(7, 84, 139, 0.32) 30%,
                rgba(4, 18, 28, 0.82) 100%
            ),
            linear-gradient(
                90deg,
                rgba(8, 88, 146, 0.55) 0%,
                rgba(8, 88, 146, 0) 65%
            );
    }

    .about-story-section {
        padding-top: 4.5rem;
    }

    .about-hero-eyebrow {
        font-size: clamp(2.4rem, 6vw, 3.4rem);
    }

    .about-section .hero-title {
        font-size: clamp(2.5rem, 6.5vw, 4rem);
    }

    .about-section-title {
        font-size: clamp(2rem, 4.6vw, 3rem);
    }

    .about-history-panel {
        padding: 1.75rem 1.2rem 1.15rem;
    }

    .about-history-line {
        left: 0.75rem;
        right: 0.75rem;
    }

    .about-purpose-card {
        min-height: 18rem;
    }

    .about-video-card {
        min-height: 18rem;
    }

    .about-hero-scroll {
        animation-duration: 3.8s;
    }

    .about-leaders-intro-text {
        max-width: 100%;
    }

    .about-leaders-intro {
        padding-right: 0;
    }

    .about-leaders-intro-title {
        max-width: none;
        font-size: clamp(2.3rem, 5vw, 3.5rem);
    }

    .about-leaders-group {
        padding: 1.3rem 1.15rem 1rem;
    }

    .about-leader-photo-wrap {
        aspect-ratio: 1.32 / 1;
    }

    .about-recognition-card {
        min-height: 28rem;
        padding: 1.5rem 1.15rem 1.2rem;
    }

    .about-recognition-title {
        font-size: clamp(1.9rem, 4vw, 2.7rem);
    }

    .about-recognition-copy {
        font-size: 0.86rem;
        line-height: 1.6;
    }

    .about-leader-modal-dialog {
        margin: 5vh 1rem;
    }

    .about-video-modal-dialog {
        max-width: calc(100vw - 2rem);
        margin: 8vh auto;
    }

    .about-recognition-modal-dialog {
        max-width: calc(100vw - 2rem);
        margin: 8vh auto;
    }
}

@media (max-width: 767.98px) {
    .about-section {
        min-height: 78vh;
        padding-bottom: 2.5rem;
    }

    .about-hero-eyebrow {
        margin-bottom: 0.5rem;
        font-size: clamp(2rem, 9vw, 2.7rem);
    }

    .about-hero-title-row {
        gap: 0.9rem;
        align-items: center;
    }

    .about-section .hero-title {
        font-size: clamp(2.15rem, 9.6vw, 3rem);
        line-height: 1.02;
    }

    .about-hero-scroll {
        width: 3rem;
        height: 3rem;
        margin-bottom: 0;
    }

    .about-page-container {
        padding-left: 0.85rem;
        padding-right: 0.85rem;
    }

    .about-story-section {
        padding: 3.75rem 0 1.5rem;
    }

    .about-section-heading {
        margin-bottom: 1.75rem;
    }

    .about-section-kicker {
        font-size: 1.05rem;
    }

    .about-section-title {
        font-size: clamp(1.9rem, 7vw, 2.5rem);
    }

    .about-history-panel {
        padding: 1.4rem 1rem 0.8rem;
    }

    .about-history-title {
        font-size: clamp(1.9rem, 7.5vw, 2.6rem);
    }

    .about-history-copy {
        font-size: 0.9rem;
        line-height: 1.65;
    }

    .about-history-timeline {
        margin-top: 2rem;
        padding-top: 0;
    }

    .about-history-line {
        display: none;
    }

    .about-history-item {
        padding-top: 1.35rem;
    }

    .about-history-dot {
        top: 0;
        width: 1rem;
        height: 1rem;
    }

    .about-purpose-section {
        padding: 1rem 0 4rem;
    }

    .about-purpose-card {
        min-height: auto;
        padding: 1.1rem;
    }

    .about-purpose-icon {
        width: 3.15rem;
        height: 3.15rem;
        margin-bottom: 0.85rem;
    }

    .about-purpose-title {
        font-size: clamp(1.55rem, 6vw, 2.1rem);
        margin-bottom: 0.8rem;
    }

    .about-purpose-text {
        font-size: 0.88rem;
        line-height: 1.6;
    }

    .about-video-card {
        min-height: 13.5rem;
    }

    .about-services-cta {
        gap: 0.9rem;
        padding: 0.9rem 1rem;
    }

    .about-services-cta-icon {
        width: 2.45rem;
        height: 2.45rem;
    }

    .about-services-cta-text {
        font-size: clamp(1.05rem, 4.8vw, 1.35rem);
    }

    .about-leaders-section {
        padding: 1rem 0 3rem;
    }

    .about-leaders-intro-title {
        font-size: clamp(2rem, 8vw, 2.9rem);
        max-width: 10rem;
        margin-bottom: 1rem !important;
    }

    .about-leaders-intro-text {
        max-width: 100%;
        margin-top: 0.75rem;
        padding: 0.95rem 0.9rem;
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .about-leaders-group + .about-leaders-group {
        margin-top: 1rem;
    }

    .about-leaders-group {
        padding: 0.9rem 0.8rem 0.6rem;
    }

    .about-leaders-group .row {
        --bs-gutter-x: 0.85rem;
        --bs-gutter-y: 0.7rem;
    }

    .about-leaders-group-title {
        margin-bottom: 0.85rem;
        font-size: clamp(1.55rem, 6vw, 2.1rem);
    }

    .about-leader-name {
        font-size: 0.8rem;
        line-height: 1.2;
    }

    .about-leader-role {
        font-size: 0.68rem;
        line-height: 1.25;
    }

    .about-recognition-section {
        padding: 2.25rem 0.85rem 4rem;
    }

    .about-recognition-card {
        min-height: auto;
        padding: 1.1rem 0.85rem 1rem;
    }

    .about-recognition-title {
        font-size: clamp(1.7rem, 6.8vw, 2.25rem);
    }

    .about-recognition-copy {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .about-recognition-stage {
        gap: 0.55rem;
        padding: 1rem 0 0.75rem;
    }

    .about-recognition-arrow {
        width: 1.8rem;
        height: 1.8rem;
    }

    .about-recognition-image {
        max-width: 8.5rem;
        max-height: 10rem;
    }

    .about-recognition-item-title {
        font-size: 0.98rem;
        line-height: 1.3;
    }

    .about-recognition-item-text {
        font-size: 0.76rem;
        line-height: 1.5;
    }

    .about-leader-modal-dialog {
        padding: 1.2rem;
    }

    .about-leader-modal-close {
        top: 0.65rem;
        right: 0.7rem;
    }

    .about-video-modal-dialog {
        max-width: calc(100vw - 1rem);
        margin: 10vh auto;
        padding: 0.75rem;
    }

    .about-video-modal-close {
        top: -0.65rem;
        right: -0.1rem;
        width: 2.2rem;
        height: 2.2rem;
    }

    .about-video-modal-title {
        font-size: 0.92rem;
    }

    .about-recognition-modal-dialog {
        max-width: calc(100vw - 1rem);
        margin: 10vh auto;
        padding: 0.75rem;
    }

    .about-recognition-modal-close {
        top: -0.65rem;
        right: -0.1rem;
        width: 2.2rem;
        height: 2.2rem;
    }

    .about-recognition-modal-title {
        font-size: 0.92rem;
    }

    .about-recognition-modal-frame,
    .about-recognition-modal-image {
        max-height: 72vh;
    }
}

@media (max-width: 575.98px) {
    .person-card {
        padding: 60px 12px 12px;
        border-radius: 8px;
    }

    .person-photo-wrap {
        top: -40px;
        width: 112px;
        height: 112px;
        border-radius: 10px;
    }

    .person-photo-wrap::after {
        border-radius: 0 0 10px 10px;
    }

    .photo-plus {
        right: 6px;
        bottom: 6px;
        width: 18px;
        height: 18px;
        font-size: 12px;
    }

    .about-leaders-group .col-6 {
        margin-bottom: 0.65rem !important;
    }
}
