:root {
    --primary-navy: #1e1e62;
    --accent-mint: #00d285;
    --light-blue-bg: #f3f8ff;
    --expert-bg: #fafbfc;
}

/* ===== GLOBAL RESET ===== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: Inter, sans-serif;
    background-color: #ffffff;
}

/* ===== HERO SECTION ===== */

.team-hero {
    height: 240px;
    background:
        linear-gradient(rgba(30, 30, 98, 0.85), rgba(30, 30, 98, 0.85)),
        url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&q=80&w=1500') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
}

/* ===== EXPERTISE ROW ===== */

.expertise-row {
    background-color: var(--light-blue-bg);
    padding: 35px 0;
}

.feature-box {
    background: #fff;
    border: 1px solid rgba(0, 130, 164, 0.1);
    border-radius: 12px;
    padding: 18px;
    height: 100%;
    text-align: center;
    transition: 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-4px);
}

.sub-text {
    color: rgb(0, 0, 0);
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.5;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: #0082a4;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 16px;
}

/* ===== EXPERT TEAM SECTION ===== */

.expert-section {
    background-color: var(--expert-bg);
    padding: 10px 0;
}

.expert-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.team-card-v4 {
    width: 100%;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #0082a4;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: 0.3s ease;
}

.team-card-v4:hover {
    transform: translateY(-5px);
}

.img-wrap {
    height: 220px;
    width: 100%;
    background: #fdfdfd;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.card-info {
    padding: 15px 10px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.member-role {
    font-size: 10px;
    font-weight: 700;
    color: #0082a4;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.member-email {
    font-size: 11px;
    color: #666;
    text-decoration: none;
    word-break: break-word;
    font-weight: 500;
}

/* ===== CULTURE SECTION ===== */

.culture-full-width {
    background: #f8fafc;
    width: 100%;
    padding: 60px 0;
    border-top: 1px solid #eee;
}

.culture-text {
    color: rgb(0, 0, 0) !important;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.7;
    max-width: 90%;
    margin: auto;
    text-align: justify;
    text-align-last: center;
}

.culture-img-wrap {
    width: 100%;
    height: 320px;
    border-radius: 15px;
    overflow: hidden;
}

.culture-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== IMPACT SECTION ===== */

.impact-full-width {
    background: var(--primary-navy);
    width: 100%;
    padding: 25px 0;
    color: white;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #00E5FF;
    line-height: 1;
}

.stat-text {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-top: 5px;
}

/* ===== CAROUSEL ===== */

.carousel-fade .carousel-item {
    transition-duration: 0.8s;
}

/* ===== TABLET RESPONSIVE ===== */

@media (max-width: 992px) {

    .expert-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-hero {
        height: 200px;
    }

    .culture-img-wrap {
        height: 260px;
    }
}

/* ===== MOBILE RESPONSIVE ===== */

@media (max-width: 576px) {

    .team-hero {
        height: 170px;
        padding: 15px;
    }

    .expert-grid-4 {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 12px;
    }

    .feature-box {
        padding: 15px;
    }

    .sub-text {
        font-size: 0.8rem;
    }

    .img-wrap {
        height: 220px;
        padding: 12px;
    }

    .card-info {
        padding: 12px;
    }

    .member-email {
        font-size: 10px;
    }

    .culture-full-width {
        padding: 40px 15px;
    }

    .culture-text {
        max-width: 100%;
        font-size: 0.82rem;
        line-height: 1.6;
        text-align: center;
        text-align-last: center;
    }

    .culture-img-wrap {
        height: 220px;
    }

    .stat-number {
        font-size: 1.7rem;
    }

    .stat-text {
        font-size: 10px;
    }
}