/* Global Styles */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #FAF9F6;
    position: relative;
}

.container {
    max-width: 1140px !important;
}

/* Override Tailwind's responsive container max-widths */
@media (min-width: 640px) {
    .container {
        max-width: 1140px !important;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 1140px !important;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1140px !important;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1140px !important;
    }
}

@media (min-width: 1536px) {
    .container {
        max-width: 1140px !important;
    }
}

/* Background Video */
.background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
}

/* Header Styles */
.logo-script {
    font-family: 'Dancing Script', cursive;
    font-weight: 600;
    color: #D4AF37;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

#mainHeader {
    position: relative;
    z-index: 1000;
}

/* Company Details Page - Dark Theme */
body.company-details-page {
    background-color: #000000;
    color: #ffffff;
}

.golden-text {
    color: #D4AF37;
}

.dark-bg {
    background-color: #1a1a1a;
}

/* Swiper Styles */
.swiper-button-next,
.swiper-button-prev {
    color: white;
}

.swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

