/* ------------------------------
   GLOBAL SETTINGS
------------------------------ */
html {
    font-size: 16px;
}

body {
    background-color: #f2f4f8;
    font-family: "Segoe UI", sans-serif;
    margin: 0;
    padding: 0;
    padding-top: 70px;
}

/* ------------------------------
   METALLIC BLUE THEME COLORS
------------------------------ */
:root {
    --metal-blue: #0A3D62;
    --metal-blue-light: #1B5F8C;
    --metal-blue-xlight: #4aa3ff;
    --metal-blue-dark: #062942;
    --metal-highlight: #7EC8FF;
}

/* ------------------------------
   METALLIC NAVBAR
------------------------------ */
.navbar {
    background: linear-gradient(135deg, var(--metal-blue), var(--metal-blue-dark));
    padding: 18px 25px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

    /* Navbar links */
    .navbar .nav-link {
        color: #e8f1ff !important;
        font-weight: 500;
        margin-right: 18px;
        transition: 0.2s;
        letter-spacing: 0.3px;
    }

        .navbar .nav-link:hover {
            color: var(--metal-highlight) !important;
            text-shadow: 0 0 6px rgba(126, 200, 255, 0.8);
        }

/* ------------------------------
   BRAND LOGO STYLING
------------------------------ */
.brand-logo {
    font-family: 'Cinzel Decorative', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff !important;
    letter-spacing: 1px;
}

/* Red artistic "O" */
.logo-o {
    color: #ff2d2d !important;
    text-shadow: 0 0 8px rgba(255,0,0,0.6);
    font-size: 2.1rem;
}

/* ------------------------------
   BUTTONS (Metallic)
------------------------------ */
.btn-primary {
    background: linear-gradient(135deg, var(--metal-blue-light), var(--metal-blue));
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    color: #fff;
    transition: 0.25s ease-in-out;
    box-shadow: 0 6px 15px rgba(10, 61, 98, 0.3);
}

    .btn-primary:hover {
        background: linear-gradient(135deg, var(--metal-blue-xlight), var(--metal-blue-light));
        transform: translateY(-2px);
        box-shadow: 0 10px 26px rgba(10, 61, 98, 0.45);
    }

/* ------------------------------
   CAROUSEL IMAGE FIX
------------------------------ */
.hero-img,
.carousel-item img {
    width: 100%;
    height: 90vh;
    object-fit: cover;
    object-position: center;
}

/* Remove any white space around carousel */
.carousel {
    margin: 0;
    padding: 0;
}

/* ------------------------------
   FOOTER
------------------------------ */
.footer {
    background: linear-gradient(135deg, var(--metal-blue-dark), var(--metal-blue));
    color: #d7e6f5;
    padding: 20px 0;
    text-align: center;
    font-size: 0.95rem;
}

    .footer a {
        color: var(--metal-highlight);
    }

        .footer a:hover {
            text-decoration: underline;
        }
/* ===== Strategy Page Styling (Improved Readability) ===== */

.strategy-section {
    background: #0d233e;
    min-height: 100vh;
    padding: 120px 20px 60px;
    display: flex;
    justify-content: center;
}

.strategy-container {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px);
    padding: 40px;
    border-radius: 18px;
    max-width: 900px;
    width: 100%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    color: #ffffff;
}

    .strategy-container h1 {
        font-size: 2.4rem;
        font-weight: 700;
        margin-bottom: 20px;
        color: #ffffff;
    }

    .strategy-container p {
        font-size: 1.15rem;
        line-height: 1.9rem;
        color: #f2f4f7;
        margin-bottom: 18px;
    }

/* Fix navbar overlap */
/*body {
    padding-top: 100px;
}*/

/* ===== Hero Overlay Fix for About Page ===== */

.hero-section {
    position: relative;
}

    .hero-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.55); /* Dark overlay */
        z-index: 1;
    }

    .hero-section .container {
        position: relative;
        z-index: 2;
    }

    .hero-section h1,
    .hero-section p {
        text-shadow: 0px 2px 6px rgba(0,0,0,0.85);
    }

.mission-section {
    position: relative;
    color: #fff;
}

    .mission-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(6, 23, 43, 0.85); /* dark overlay */
        z-index: 1;
        border-radius: 20px;
    }

.mission-content {
    position: relative;
    z-index: 2;
}
@media (max-width: 991px) {
    body {
        padding-top: 90px;
    }
}