@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800&family=Inter:wght@400;500;600&family=Great+Vibes&display=swap');

:root {
    --navy: #12224e;
    --navy-deep: #0b1738;
    --red: #e21f26;
    --red-deep: #b8161c;
    --pink-bg: #fdecee;
    --ink: #24304a;
    --muted: #5c6478;
    --line: #e7e9f0;
    --radius: 14px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

/* ============ HEADER (shared site nav) ============ */
.navbar-wrap {
    background: #fff;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 200;
}

.navbar {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    gap: 24px;
}

.logo img {
    height: 46px;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 26px;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.nav-links>li>a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 14.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 2px;
    transition: color .2s;
}

.nav-links>li>a:hover,
.nav-links>li>a.active {
    color: var(--red);
}

.nav-links .dropdown {
    position: relative;
}

.dropdown-menu {
    list-style: none;
    margin: 0;
    padding: 8px 0;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 16px 32px rgba(18, 34, 78, .14);
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .2s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 9px 18px;
    color: var(--ink);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.dropdown-menu li a:hover {
    background: var(--pink-bg);
    color: var(--red);
}

.call-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--navy);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 18px;
    border-radius: 30px;
    white-space: nowrap;
    transition: background .2s;
}

.call-btn:hover {
    background: var(--red);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--navy);
    cursor: pointer;
}

/* ============ PAGE HEADER ============ */
.page-header {
    position: relative;
    overflow: hidden;
    padding: 56px 24px 46px;
    text-align: center;
    background: linear-gradient(115deg, var(--navy-deep) 0%, var(--navy) 55%, #3a3f6b 100%);
}

.page-header-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 10%, rgba(226, 31, 38, .25), transparent 55%);
    pointer-events: none;
}

.page-header-inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.page-header .eyebrow {
    display: inline-block;
    color: var(--red);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.page-header h1 {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(28px, 4.2vw, 44px);
    line-height: 1.2;
    margin: 0 0 18px;
}

.page-header .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}

.page-header .breadcrumb a {
    color: #cdd3e6;
    text-decoration: none;
    transition: color .2s;
}

.page-header .breadcrumb a:hover {
    color: #fff;
}

.page-header .breadcrumb i {
    color: var(--red);
    font-size: 11px;
}

.page-header .breadcrumb span {
    color: #fff;
    font-weight: 500;
}

@media (max-width: 780px) {
    .page-header {
        padding: 44px 20px 36px;
    }
}


/* ============ CEO PAGE ============ */
.ceo-page {
    overflow: hidden;
}

.ceo-hero {
    position: relative;
    padding: 70px 24px 40px;
    background: #fff;
}

.ceo-hero::before,
.ceo-hero::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    z-index: 0;
}

.ceo-hero::before {
    top: -60px;
    right: -60px;
    background: var(--red);
    clip-path: polygon(100% 0, 100% 100%, 0 0);
}

.ceo-hero::after {
    bottom: -60px;
    left: -60px;
    background: var(--navy);
    clip-path: polygon(0 100%, 100% 100%, 0 0);
}

.ceo-hero__inner {
    position: relative;
    z-index: 1;
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
    align-items: start;
}

/* Photo */
.ceo-photo {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(18, 34, 78, .18);
}

.ceo-photo img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.ceo-photo__tag {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy-deep);
    padding: 16px 22px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ceo-photo__name {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: .3px;
}

.ceo-photo__role {
    color: var(--red);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
}

.ceo-photo__org {
    color: #cdd3e6;
    font-size: 12.5px;
}

/* Copy */
.ceo-copy__eyebrow {
    color: var(--navy);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 14px;
    margin: 0 0 4px;
}

.ceo-copy__title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 20px;
    line-height: 1.1;
}

.ceo-copy__title span {
    color: var(--ink);
    font-weight: 600;
}

.ceo-copy p {
    color: var(--muted);
    font-size: 15.5px;
    line-height: 1.75;
    margin: 0 0 16px;
}

.ceo-quote {
    margin: 24px 0 0;
    background: var(--pink-bg);
    border-left: 4px solid var(--red);
    border-radius: 10px;
    padding: 22px 26px 22px 60px;
    position: relative;
}

.ceo-quote__mark {
    position: absolute;
    left: 18px;
    top: 6px;
    font-family: Georgia, serif;
    font-size: 46px;
    color: var(--red);
    line-height: 1;
    font-weight: 700;
}

.ceo-quote p {
    margin: 0;
    color: var(--navy-deep);
    font-weight: 600;
    font-size: 15px;
    line-height: 1.7;
}

/* ============ PRINCIPLES ============ */
.principles {
    padding: 20px 24px 50px;
    background: #fff;
}

.principles__inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius);
    padding: 26px 30px;
    flex-wrap: wrap;
}

.principles__label {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    padding-right: 26px;
    border-right: 2px solid var(--line);
    min-width: 150px;
}

.principles__label span {
    font-size: 12px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: .5px;
}

.principles__label strong {
    font-family: 'Poppins', sans-serif;
    color: var(--red);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: .5px;
}

.principles__grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
}

.principle {
    text-align: left;
}

.principle__icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-bottom: 10px;
}

.principle h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 13.5px;
    color: var(--navy);
    margin: 0 0 6px;
    font-weight: 700;
}

.principle p {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.5;
    margin: 0;
}

/* ============ VISION / MISSION + SIGNATURE ============ */
.vm {
    padding: 10px 24px 70px;
}

.vm__inner {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 0.85fr;
    gap: 24px;
    align-items: stretch;
}

.vm__card {
    border: 1.5px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.vm__icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: var(--navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.vm__card h4 {
    font-family: 'Poppins', sans-serif;
    color: var(--navy);
    font-size: 15px;
    font-weight: 700;
    margin: 4px 0 8px;
}

.vm__card p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

.vm__signature {
    border-left: 1.5px solid var(--line);
    padding-left: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vm__signature-script {
    font-family: 'Great Vibes', cursive;
    font-size: 34px;
    color: var(--navy);
    margin: 0 0 6px;
}

.vm__signature-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--navy);
    font-size: 15px;
    margin: 0;
}

.vm__signature-role {
    color: var(--red);
    font-weight: 700;
    font-size: 12.5px;
    margin: 2px 0;
}

.vm__signature-org {
    color: var(--muted);
    font-size: 12.5px;
    margin: 0 0 12px;
}

.vm__socials {
    display: flex;
    gap: 10px;
}

.vm__socials a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 13px;
    transition: background .2s;
}

.vm__socials a:hover {
    background: var(--red);
}

/* ============ FOOTER ============ */
.footer {
    background: var(--navy-deep);
    color: #cdd3e6;
    padding: 56px 24px 0;
    position: relative;
}

.footer-container {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 32px;
    padding-bottom: 40px;
}

.footer-col h4 {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    margin: 0 0 16px;
}

.footer-about img {
    height: 42px;
    margin-bottom: 14px;
    filter: brightness(0) invert(1);
}

.footer-about p {
    font-size: 13px;
    line-height: 1.7;
    color: #a9b1c9;
    margin: 0 0 16px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 13px;
    transition: background .2s;
}

.footer-socials a:hover {
    background: var(--red);
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #a9b1c9;
    text-decoration: none;
    font-size: 13.5px;
    transition: color .2s;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-info {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    margin-bottom: 12px;
    color: #a9b1c9;
}

.footer-info i {
    color: var(--red);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 18px 0;
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12.5px;
    color: #8b93ac;
}

.footer-policy a {
    color: #8b93ac;
    text-decoration: none;
}

.footer-policy span {
    margin: 0 8px;
}

.footer-credit i {
    color: var(--red);
}

.scroll-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .25s;
    z-index: 300;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* On mobile: move scroll-top to the LEFT so it doesn't overlap the
   floating contact buttons anchored to the RIGHT */
@media (max-width: 868px) {
    .scroll-top {
        right: auto;
        left: 16px;
        bottom: 16px;
    }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .ceo-hero__inner {
        grid-template-columns: 1fr;
    }

    .ceo-photo img {
        height: 380px;
    }

    .principles__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .vm__inner {
        grid-template-columns: 1fr 1fr;
    }

    .vm__signature {
        grid-column: span 2;
        border-left: none;
        border-top: 1.5px solid var(--line);
        padding-left: 0;
        padding-top: 20px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 780px) {
    .menu-toggle {
        display: block;
        order: 3;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 20px 20px;
        box-shadow: 0 16px 24px rgba(18, 34, 78, .12);
        display: none;
        gap: 4px;
    }

    .nav-links.open {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding-left: 12px;
    }

    .dropdown:hover .dropdown-menu,
    .dropdown.open .dropdown-menu {
        display: block;
    }

    .call-btn span {
        display: none;
    }

    .call-btn {
        padding: 10px;
    }

    .principles__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .principles__label {
        border-right: none;
        padding-right: 0;
        flex-direction: row;
        gap: 6px;
        align-items: baseline;
    }

    .principles__grid {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }

    .vm__inner {
        grid-template-columns: 1fr;
    }

    .vm__signature {
        grid-column: span 1;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}
/* Mobile view me top bar hide */
@media (max-width: 768px) {
    .top-bar {
        display: none !important;
    }
}