/* Start custom CSS for html, class: .elementor-element-9f3cb9e */.staff-section{
    padding:80px 20px;
    background:#f5f8fc;
    font-family:'Poppins',sans-serif;
}

.staff-heading{
    text-align:center;
    margin-bottom:50px;
}

.staff-heading h2{
    font-size:40px;
    color:#0b2c6a;
    margin-bottom:10px;
    font-weight:700;
}

.staff-heading p{
    color:#666;
    font-size:16px;
}

.staff-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.staff-card{
    background:#ffffff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:all .4s ease;
    text-align:center;
}

.staff-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.staff-image{
    width:100%;
    height:280px;
    background:#e8edf7;
    display:flex;
    align-items:center;
    justify-content:center;
}

.staff-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.staff-content{
    padding:25px;
}

.staff-content h3{
    margin:0;
    font-size:22px;
    color:#0b2c6a;
    font-weight:600;
}

.staff-content span{
    display:inline-block;
    margin-top:10px;
    padding:8px 18px;
    background:#0b2c6a;
    color:#fff;
    border-radius:30px;
    font-size:14px;
    font-weight:500;
}

@media(max-width:768px){

    .staff-heading h2{
        font-size:30px;
    }

    .staff-image{
        height:240px;
    }
}/* End custom CSS */