﻿/* General Styles */
/*body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.team-section {
    padding: 50px 20px;
    text-align: center;
    background-color: #f9f9f9;
}*/

/*    .team-section h2 {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }*/

.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.team-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 23%;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

    .team-card:hover {
        transform: translateY(-10px);
    }

    .team-card img {
        width: 80%;
        height: 70%;
        border-radius: 20px;
        margin-bottom: 15px;
    }

    .team-card h3 {
        font-size: 1.7rem;
        font-weight: bold;
        margin-bottom: 0px;
    }

    .team-card p {
        font-size: 1.3rem;
        font-weight: bold;
        color: #777;
        margin-bottom: -1px;
    }

.social-links {
/*    display: flex;
    justify-content: center;*/
/*    gap: 10px;*/
}

    .social-links a {
        color: #333;
        font-size: 1.4rem;
        transition: color 0.3s ease;
    }

        .social-links a:hover {
            color: #0073b1; /* Change to your preferred hover color */
        }

/* Responsive Design */
@media (max-width: 700px) {
/*    .team-container {
        flex-direction: column;
        align-items: center;
    }*/

.team-container {
    width: 100%;
}

    .team-card {
        width: 100% !important;
        height : 100%;
    }
}

@media (max-width: 1000px) {
/*    .team-container {
        flex-direction: column;
        align-items: center;
    }*/

.team-container {
    width: 100%;
}

    .team-card {
        width: 47%;
    }
}
