@import url('navbar.css?v=1.0');
@import url('footer.css?v=1.0');
@import url('sub-header.css?v=1.0');
@import url('companies.css?v=1.0');

:root {
    --color-primary: #001522;
    --color-secondary: #2f4d5f;
    --color-secondary-accent: #2f4d5f59;
    --color-tertiary: #2f4d5f8c;
    --color-white: #FBFBFB;
    --color-gray: #374151;
    --color-gray-light: #f3f4f6;
    --color-gray-lighter: #f8fafc;
    --font-primary: "Montserrat", sans-serif;
    --font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --navbar-height: 110px;
}

/* Global Styles */
html, body {
    margin: 0;
    padding: 0;
    font-family: var(--font-primary);
    color: var(--color-white);
    background: var(--color-primary);
    line-height: 1.5;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    font: inherit;
}

/* Screen Reader Only - Hidden text for SEO and accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Containers */

.container {
    max-width: 1500px;
    height: 100%;
    margin: 0 auto;
    padding: 0 100px;
}

.page-section {
    padding: 80px 0;
    position: relative;
    background: transparent;
    z-index: 1;
}

.flex-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

@media (max-width: 1400px) {
    .container {
        padding: 0 50px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
}