/*team.css*/
.team-container {
    text-align: center;
    padding: 50px 20px;
}
.team-title {
    font-size: 2em;
    margin-bottom: 30px;
    color: #3D52A0;
    text-align: center;
}
.team-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.team-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    margin: 15px;
    padding: 20px;
    width: 250px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}
.team-card:hover {
    transform: scale(1.05);
}
.team-image img {
    width: 100%;
    height: auto;
    border-radius: 50%;
}
.team-name {
    font-size: 1.5em;
    margin: 10px 0;
}
.team-designation {
    font-style: italic;
    color: #555;
    margin-bottom: 10px;
}
.team-social {
    margin-top: 10px;
}
.social-icon {
    margin: 0 10px;
    color: #3D52A0;
    text-decoration: none;
}
.social-icon:hover {
    color: #7091E6;
}
