/* Custom Moving Gradient Background untuk Hero Section */
.animated-bg {
    background: linear-gradient(-45deg, #0f172a, #1e3a8a, #0369a1, #0f766e);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Kustomisasi Scrollbar (Opsional untuk tampilan desktop) */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9; 
}
::-webkit-scrollbar-thumb {
    background: #94a3b8; 
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #64748b; 
}