/* Global Styles */
body {
    background-color: #e6f2ff !important; /* More opaque light blue background */
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a202c;
    overflow-x: hidden;
}

/* Ensure all containers are full width */
.container, .container-fluid {
    max-width: 100% !important;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}

/* Ensure all sections are full width */
section {
    width: 100%;
    max-width: 100% !important;
}

/* Override Bootstrap's container max-width */
@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 100% !important;
    }
}

/* Hero Section */
.hero-section {
    min-height: 300px;
    padding: 1rem 0 !important;
    position: relative;
    overflow: hidden;
}

/* Carousel */
.carousel {
    display: block !important;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .hero-section {
        min-height: 400px;
    }
}

@media (min-width: 992px) {
    .hero-section {
        min-height: 500px;
    }
}

/* Utility Classes */
.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.transition-all {
    transition: all 0.3s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Focus States */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #4361ee;
    outline-offset: 2px;
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.3);
}

/* Print Styles */
@media print {
    body {
        background: white !important;
        color: black !important;
        font-size: 12pt;
    }
    
    .no-print {
        display: none !important;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
}
