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

/* Custom Scrollbar */
::-webkit-scrollbar { 
    width: 8px; 
}
::-webkit-scrollbar-track { 
    background: #f1f1f1; 
}
::-webkit-scrollbar-thumb { 
    background: #0067FF; 
    border-radius: 4px; 
}
::-webkit-scrollbar-thumb:hover { 
    background: #005EE9; 
}

/* Animations */
.fade-in-up { 
    animation: fadeInUp 0.5s ease-out; 
}

@keyframes fadeInUp { 
    from { opacity: 0; transform: translateY(20px); } 
    to { opacity: 1; transform: translateY(0); } 
}

/* Lightbox specific styles */
.lightbox-open { 
    overflow: hidden; 
}

/* Slider specific styles */
.slider-container {
    direction: ltr; /* Ensure slider works left-to-right logically */
}