html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 80px; 
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
 
::-webkit-scrollbar-thumb {
    background: #cbd5e1; 
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8; 
}

/* Animation utilities */
@keyframes kenburns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.animate-kenburns {
    animation: kenburns 20s ease-out infinite alternate;
}

.font-display {
    font-family: 'Poppins', sans-serif;
}