/* About Page Specific Styles */
.team-card {
    border: none;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-card img {
    transition: transform 0.5s ease;
}

.team-card:hover img {
    transform: scale(1.05);
}

.mission-card, .vision-card {
    border: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.company-stats {
    padding: 4rem 0;
}

.company-stats .display-4 {
    font-weight: 700;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .company-stats .display-4 {
        font-size: 2.5rem;
    }
}