
/* ===== TEAM PAGE ===== */
.team-page {
    background: #f8fafc;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.team-page::before{
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    background:rgba(230,57,70,0.05);
    border-radius:50%;
    top:-150px;
    right:-100px;
}

.team-page::after{
    content:'';
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(29,53,87,0.05);
    border-radius:50%;
    bottom:-120px;
    left:-80px;
}

.team-heading{
    text-align:center;
    margin-bottom:50px;
    position:relative;
    z-index:2;
}

.team-heading span{
    color:#e63946;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    font-size:13px;
}

.team-heading h2{
    font-size:3rem;
    font-weight:800;
    margin-top:10px;
    color:#111827;
}

.team-heading h2 strong{
    color:#e63946;
}

.team-heading p{
    max-width:750px;
    margin:auto;
    color:#555;
    font-size:17px;
}

.team-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 10px 40px rgba(0,0,0,0.06);
    transition:0.3s;
    height:100%;
    position:relative;
    z-index:2;
}

.team-card:hover{
    transform:translateY(-8px);
}

.team-image{
    position:relative;
    padding:30px;
    background:linear-gradient(135deg,#fff5f5,#ffeaea);
}

.team-image::before{
    content:'';
    position:absolute;
    width:180px;
    height:180px;
    background:#ffd6d6;
    border-radius:50%;
    bottom:20px;
    left:50%;
    transform:translateX(-50%);
}

.team-image img{
    position:relative;
    z-index:2;
    width:100%;
    max-height:420px;
    object-fit:contain;
}

.team-content{
    padding:35px;
}

.team-content h3{
    font-size:2rem;
    font-weight:800;
    margin-bottom:5px;
}

.team-role{
    color:#e63946;
    font-weight:700;
    margin-bottom:20px;
    display:block;
}

.team-line{
    width:60px;
    height:4px;
    background:#e63946;
    border-radius:10px;
    margin-bottom:20px;
}

.team-content p{
    color:#555;
    line-height:1.8;
    margin-bottom:25px;
}

.team-points{
    list-style:none;
    padding:0;
    margin:0;
}

.team-points li{
    margin-bottom:15px;
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:600;
    color:#222;
}

.team-points li i{
    width:38px;
    height:38px;
    border-radius:12px;
    background:#fff1f2;
    color:#e63946;
    display:flex;
    align-items:center;
    justify-content:center;
}

.team-stats{
    margin-top:50px;
    position:relative;
    z-index:2;
}

.stat-box{
    background:#fff;
    border-radius:20px;
    padding:30px 20px;
    text-align:center;
    box-shadow:0 8px 30px rgba(0,0,0,0.05);
    transition:0.3s;
    height:100%;
}

.stat-box:hover{
    transform:translateY(-5px);
}

.stat-box i{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#fff1f2;
    color:#e63946;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin:auto auto 15px;
}

.stat-box h4{
    font-size:2rem;
    font-weight:800;
    color:#e63946;
    margin-bottom:5px;
}

.stat-box p{
    margin:0;
    font-weight:600;
    color:#555;
}

.mission-box{
    background:#fff;
    border-radius:24px;
    padding:35px;
    box-shadow:0 8px 30px rgba(0,0,0,0.05);
    height:100%;
}

.mission-box .icon{
    width:70px;
    height:70px;
    border-radius:18px;
    background:#fff1f2;
    color:#e63946;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:20px;
}

.mission-box h5{
    font-size:1.5rem;
    font-weight:800;
    margin-bottom:15px;
}

.mission-box p{
    color:#666;
    line-height:1.8;
}

@media(max-width:991px){
    .team-heading h2{
        font-size:2.2rem;
    }

    .team-content{
        padding:25px;
    }

    .team-content h3{
        font-size:1.6rem;
    }
}

@media(max-width:767px){
    .team-page{
        padding:40px 0;
    }

    .team-heading h2{
        font-size:1.8rem;
    }

    .team-heading p{
        font-size:14px;
    }
}

