/* Animations */
@keyframes gentleWave {
    0%, 100% { 
        transform: translateX(0px) translateY(0px) scale(1);
        opacity: 0.1;
    }
    33% { 
        transform: translateX(-10px) translateY(-15px) scale(1.05);
        opacity: 0.15;
    }
    66% { 
        transform: translateX(10px) translateY(-10px) scale(0.95);
        opacity: 0.08;
    }
}

@keyframes glow {
    0% { opacity: 0; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.02); }
    100% { opacity: 0.8; transform: scale(1); }
}

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

/* Loading animation */
.career-section {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.career-section:nth-child(1) { animation-delay: 0.1s; }
.career-section:nth-child(2) { animation-delay: 0.2s; }
.career-section:nth-child(3) { animation-delay: 0.3s; }
.career-section:nth-child(4) { animation-delay: 0.4s; }