/* Virtus Construction - Global Styles */

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Background Overlays for readability over images/video */
.bg-overlay-dark {
    background: linear-gradient(to right, rgba(26, 28, 30, 0.95), rgba(26, 28, 30, 0.7));
}