currentIndex = (currentIndex - 1 + images.length) % images.length; // Wraps around for negative index
currentIndex = (currentIndex + 1) % images.length; // Wraps around for positive index
// Initialize gallery on load
// Show the first slide initially (remove opacity if needed)
// Change slide every 4 seconds
// Fade out the current slide
// Move to next slide
// Fade in the new slide
// GSAP Animation for the Half-Circle Section
delay: 1 // Delay to ensure it's not animating during page load