/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #1a1a1a;
}
::-webkit-scrollbar-thumb {
    background: #D4AF37; 
    border-radius: 4px;
}

/* Fade In Animation classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth Image Hover */
.img-zoom-container {
    overflow: hidden;
}
.img-zoom {
    transition: transform 0.5s ease;
}
.img-zoom:hover {
    transform: scale(1.05);
}
