body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    background: #f4f6f9;
    color: #1e293b;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

/* Premium typography */
h1, h2 {
    font-weight: 700;
    letter-spacing: -0.4px;
    margin-bottom: 14px;
}

h1 {
    font-size: 1.8rem;
    line-height: 1.25;
}

h2 {
    font-size: 1.0rem;
    line-height: 1.15;
}

/* -------------------------------------------------- */
/* PREMIUM HEADER */
/* -------------------------------------------------- */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 40px;
    background: #ffffff;
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header img {
    height: 48px;
}

nav a {
    margin-left: 28px;
    text-decoration: none;
    color: #1e293b;
    font-weight: 600;
    font-size: 1rem;
    transition: 0.2s ease;
}

nav a:hover {
    color: #3b82f6;
}

/* -------------------------------------------------- */
/* PREMIUM HERO */
/* -------------------------------------------------- */

.hero {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
    padding: 140px 20px 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Premium glow */
.hero::after {
    content: "";
    position: absolute;
    top: -120px;
    left: 50%;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(59,130,246,0.25), transparent 70%);
    transform: translateX(-50%);
    z-index: 0;
}

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

.hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 780px;
    margin: 0 auto 35px;
}

/* Premium CTA */
.cta {
    display: inline-block;
    padding: 16px 36px;
    background: #3b82f6;
    color: white;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.15rem;
    transition: 0.25s ease;
    box-shadow: 0 8px 26px rgba(59,130,246,0.35);
}

.cta:hover {
    background: #2563eb;
    box-shadow: 0 10px 32px rgba(37,99,235,0.45);
}

/* -------------------------------------------------- */
/* PREMIUM SECTIONS */
/* -------------------------------------------------- */

.section {
    padding: 90px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Premium card container */
.section-box {
    background: white;
    border-radius: 16px;
    padding: 55px;
    box-shadow: 0 10px 32px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.04);
}

/* Premium contrast section */
.section.alt {
    background: #eef2f7;
    border-radius: 16px;
    padding: 55px;
}

/* -------------------------------------------------- */
/* PREMIUM BULLET LISTS */
/* -------------------------------------------------- */

.bullet-list {
    margin-top: 28px;
    padding-left: 22px;
}

.bullet-list li {
    margin-bottom: 16px;
    font-size: 1.15rem;
    position: relative;
    padding-left: 6px;
}

/* Premium bullet style */
.bullet-list li::marker {
    color: #3b82f6;
    font-size: 1.5rem;
}

/* -------------------------------------------------- */
/* PREMIUM FOOTER */
/* -------------------------------------------------- */

footer {
    background: #0B1120 !important;
    color: #e2e8f0 !important;
    padding: 70px 20px !important;
    font-size: 15px !important;
    margin-top: 100px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

footer a {
    color: #93c5fd !important;
    text-decoration: none;
    font-weight: 500;
}

footer a:hover {
    text-decoration: underline;
}

/* -------------------------------------------------- */
/* PREMIUM ANIMATIONS */
/* -------------------------------------------------- */

.section-box, .hero-inner {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.section-box:nth-child(2) {
    animation-delay: 0.15s;
}

.section-box:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.site-header {
    background: #0B1120;
    padding: 18px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 18px rgba(0,0,0,0.4);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* White SVG logo */
.logo {
    height: 48px;
    filter: brightness(0) invert(1);
}

/* Desktop menu */
.nav-links a {
    color: #ffffff;
    margin-left: 28px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: 0.2s ease;
}

.nav-links a:hover {
    color: #93c5fd;
}

/* Mobile menu button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

/* Mobile menu drawer */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: #0B1120;
    padding: 20px;
}

.mobile-menu a {
    color: white;
    padding: 12px 0;
    text-decoration: none;
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu a:last-child {
    border-bottom: none;
}


.site-header {
    background: #000000;
    padding: 18px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 18px rgba(0,0,0,0.5);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Your logo is already white — no filter needed */
.logo {
    height: 54px;
}

/* Desktop menu */
.nav-links a {
    color: #ffffff;
    margin-left: 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: 0.2s ease;
}

.nav-links a:hover {
    color: #60a5fa;
}

/* -------------------------------------------------- */
/* PREMIUM MOBILE MENU */
/* -------------------------------------------------- */

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: 0.3s ease;
}

/* Mobile menu drawer */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: #000000;
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu a {
    color: white;
    padding: 14px 0;
    text-decoration: none;
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu a:last-child {
    border-bottom: none;
}
/* Mobile logo */
.mobile-logo {
    height: 48px;
    margin-bottom: 20px;
}

/* -------------------------------------------------- */
/* RESPONSIVE BEHAVIOR */
/* -------------------------------------------------- */

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-menu.active {
        display: flex;
    }
}
/* -------------------------------------------------- */
/* RESPONSIVE MENU */
/* -------------------------------------------------- */

@media (max-width: 800px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-menu.active {
        display: flex;
    }
}
/* FORCE hamburger to show on small screens */
@media (max-width: 900px) {
    .menu-toggle {
        display: flex !important;
    }

    .nav-links {
        display: none !important;
    }
}
/* Leadership Photo Styling */
.team-photo {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    overflow: hidden;
    display: block;
    margin: 0 auto 20px auto;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
}

/* Leadership Section Layout */
.team-member {
    margin-bottom: 60px;
    text-align: left;
}

.team-member h3 {
    margin-top: 10px;
    margin-bottom: 15px;
}

.team-member h4 {
    margin-top: 25px;
    margin-bottom: 10px;
}

/* Optional: Two‑Column Layout for Desktop */
@media (min-width: 900px) {
    .team-member {
        display: flex;
        align-items: flex-start;
        gap: 40px;
        text-align: left;
    }

    .team-member img.team-photo {
        margin: 0;
        flex-shrink: 0;
    }

    .team-member div {
        flex: 1;
    }
}
.team-member {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 60px;
}

.team-content {
    flex: 1;
}

@media (min-width: 900px) {
    .team-member {
        flex-direction: row;
        align-items: flex-start;
        gap: 40px;
    }

    .team-photo {
        margin: 0;
        flex-shrink: 0;
    }
}