/* Custom animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Apply animation to sections */
section {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Delay animations for staggered effect */
#skills {
    animation-delay: 0.2s;
}

#projects {
    animation-delay: 0.4s;
}

#contact {
    animation-delay: 0.6s;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #6366f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4f46e5;
}