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

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #6D28D9;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #5B21B6;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom animation for sections */
section {
    transition: all 0.3s ease;
}

section:hover {
    transform: translateY(-2px);
}