:root {
    --primary-navy: #1e1e62;
    --accent-mint: #00d285;
    --light-blue-bg: #f3f8ff;
    --expert-bg: #fafbfc;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
}

/* --- 1. 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;
    text-align: center;
    color: white;
}

/* --- 2. 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;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: #0082a4;
    color: white;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 16px;
}








/* meet our expert team section start */

.expert-section {
    background-color: var(--expert-bg);
    padding: 2px 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%;
    height: 100%;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #1e1e62;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.img-wrap {
    height: 200px;
    width: 100%;
    background: #fdfdfd;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.card-info {
    padding: 15px 10px;
    text-align: center;
    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-all;
    font-weight: 500;
}

@media (max-width: 992px) {
    .expert-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .expert-grid-4 {
        grid-template-columns: 1fr;
    }
}

/* end here meet our experts */

/* start work culture */

.culture-text {
    line-height: 1.8;
    font-size: 0.95rem;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
    text-justify: inter-word;
    text-align-last: center;
    color: #6c757d;
}

.expert-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.team-card-v4 {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #0082a4;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}


@media (max-width: 768px) {
    .culture-text {
        max-width: 95%;
        text-align: center;
        text-align-last: center;
    }

    .expert-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.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;
}

.culture-full-width {
    background: #f8fafc;
    width: 100%;
    padding: 60px 0;
    border-top: 1px solid #eee;
}

.culture-img-wrap {
    width: 100%;
    height: 320px;
    border-radius: 15px;
    overflow: hidden;
}

.culture-img-wrap img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}


.carousel-fade .carousel-item {
    transition-duration: 0.8s;
}

@media (max-width: 991px) {
    .expert-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .expert-grid-4 {
        grid-template-columns: 1fr;
    }
}