
.team-section {
    padding: 80px 0;
}

.team-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
    cursor: pointer;
}

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

.team-image {
    position: relative;
    overflow: hidden;
    padding-top: 100%;
}

.team-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 25px;
    text-align: center;
}


.team-intro { 
    max-width: 70%;
    text-align: center;
    margin: 0 auto;
    color: #666;
}
@media screen and (max-width: 992px) {
    .team-intro {
        max-width: 100%;
    }
}


.team-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.team-position {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
}

.team-description {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 20px;
    line-height: 1.6;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5f5f5;
    color: #333;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: #007bff;
    color: #fff;
}