/* Custom Styles for LV Engineering Website */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Image Carousel Styles */
.carousel-slide {
    transition: opacity 1.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1 !important;
    z-index: 10;
}

.carousel-indicator {
    cursor: pointer;
}

.carousel-indicator.active {
    background-color: white !important;
    transform: scale(1.2);
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

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

::-webkit-scrollbar-thumb:hover {
    background: #9a1829;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #C41E3A;
    outline-offset: 2px;
}

/* Ensure images don't overflow */
img {
    max-width: 100%;
    height: auto;
}

/* Print styles */
@media print {
    nav,
    footer {
        display: none;
    }
}