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

::-webkit-scrollbar-track {
    background: #0a192f; 
}

::-webkit-scrollbar-thumb {
    background: #c5a059; 
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #d4af37; 
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-in-up {
    animation-name: fadeInUp;
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

/* Image Hover Effects */
.hover-zoom-img {
    transition: transform 0.5s ease;
}

.group:hover .hover-zoom-img {
    transform: scale(1.05);
}

/* Selection Color */
::selection {
    background: #c5a059;
    color: #0a192f;
}
