/* Parallax Effect */
.parallax {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

/* Interactive Team Section */
.team-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    text-align: center;
}

.team-member img {
    width: 200px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

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