/* Team Section Styling */
.team-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
}

.section-subtitle {
    font-size: 18px;
    color: #777;
    margin-bottom: 40px;
}

/* Team Card Styling */
.team-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.team-card img {
    width: 100%;
    height: 250px;
    object-fit: contain;
}

.team-name {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-top: 10px;
}

.team-position {
    font-size: 16px;
    color: #777;
    margin-bottom: 10px;
}

.team-description {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Social Icons */
.social-icons {
    margin-top: 10px;
}

.social-icons a {
    display: inline-block;
    font-size: 18px;
    color: #007bff;
    margin: 0 5px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #0056b3;
}
