/* Team Section Styles */
#team {
    background: #f8f9fa;
    border-radius: 10px;    
     border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 0 0 25%; 
}

#team h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff0000; /* Red heading */
}
#team h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff0000; /* Red heading */
}
#team p {
    font-size: 1rem;
    color: green; /* Lemon green subtitle */
}

.team-card {
    background: #ffffff;
    border: 1px solid #ddd;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-color: #4caf50;
}

.team-member img {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    /* object-fit: cover; */
    margin-bottom: 0.5rem;
    border: 4px solid green; /* Green border */
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.team-member img:hover {
    transform: scale(1.1);
    border-color: #ff0000; /* Red on hover */
}

.team-member h4 {
    font-size: 1.25rem;
    color: #333;
    font-weight: bold;
    margin-top: 1rem;
}

.team-member p {
    font-size: 1rem;
    color: #666;
    font-style: italic;
    margin-bottom: 0;
}
