/* C-Advertisements Custom Styles */

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

/* Animations and reveals */
.reveal-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Scrollbar styling for premium feel */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f9fafb; 
}
::-webkit-scrollbar-thumb {
    background: #e5e7eb; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #d1d5db; 
}
