
/* ABOUT PAGE CSS */

.about-hero{
    background: linear-gradient(135deg,#0d6efd,#0047b3);
    padding:80px 0;
    color:#fff;
    text-align:center;
}

.about-hero h1{
    font-size:48px;
    font-weight:700;
}

.about-section{
    padding:80px 0;
}

.about-img img{
    width:100%;
    border-radius:15px;
    margin-bottom:15px;
    transition:.3s;
}

.about-img img:hover{
    transform:scale(1.05);
}

.feature-card{
    background:#fff;
    padding:30px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
}

.feature-card:hover{
    transform:translateY(-10px);
}

.feature-card i{
    font-size:40px;
    color:#0d6efd;
    margin-bottom:15px;
}

.counter-section{
    background:#f8f9fa;
    padding:70px 0;
}

.counter-box{
    text-align:center;
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.counter-box h2{
    color:#0d6efd;
    font-weight:700;
}

.team-section{
    padding:80px 0;
}

.team-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.team-card:hover{
    transform:translateY(-10px);
}

.team-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.team-card h5{
    margin-top:15px;
    font-weight:600;
}

.social-links a{
    color:#666;
    margin:0 8px;
}

.social-links a:hover{
    color:#0d6efd;
}
