/* Team Page Image Fixes */
.team1-box .image-area .image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.team1-box .image-area .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.team1-box:hover .image-area .image img {
    transform: scale(1.05);
}

/* Ensure proper aspect ratio and scaling */
.team1-box .image-area {
    position: relative;
    margin-bottom: 20px;
}

.team1-box .image-area .icons {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team1-box:hover .image-area .icons {
    opacity: 1;
}

/* Responsive image sizing */
@media (max-width: 768px) {
    .team1-box .image-area .image {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .team1-box .image-area .image {
        height: 200px;
    }
}