/* Team Page Custom Styling */

.team-card {
    transition: all 0.3s ease;
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.team-image {
    transition: all 0.3s ease;
    overflow: hidden;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.culture-card {
    transition: all 0.3s ease;
    background: #ffffff;
    border: 1px solid #d1fae5;
}

.culture-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.1);
    border-color: #10b981;
}

.culture-icon {
    transition: all 0.3s ease;
}

.culture-card:hover .culture-icon {
    transform: scale(1.1) rotate(5deg);
    color: #10b981;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in:nth-child(1) {
    animation-delay: 0.1s;
}

.fade-in:nth-child(2) {
    animation-delay: 0.2s;
}

.fade-in:nth-child(3) {
    animation-delay: 0.3s;
}

.fade-in:nth-child(4) {
    animation-delay: 0.4s;
}

.fade-in:nth-child(5) {
    animation-delay: 0.5s;
}

.fade-in:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gradient-text {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Mobile-specific styles - plain white backgrounds */
@media (max-width: 768px) {
    .team-card {
        background: #ffffff;
    }

    .team-card:hover {
        background: #ffffff;
    }

    .culture-card {
        background: #ffffff;
    }

    .culture-card:hover {
        background: #ffffff;
    }
}