jQuery(document).ready(function($) {
function autoScroll() {
const container = $('.gallery-carousel');
container.animate({ scrollLeft: '+=250' }, 2000, 'linear', function() {
container.scrollLeft(0);
});
}
setInterval(autoScroll, 5000); // Scroll otomatis setiap 5 detik
});