:root {
    --primary: #0096C7;
    --secondary: #0061B0;
    --navy: #03045E;
    --light-gray: #f4f7fa;
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Archivo', sans-serif;
    color: #333;
    overflow-x: hidden; /* Prevents unwanted horizontal scrolling */
}

/* --- Common Utilities --- */
.fw-800 { font-weight: 800; }
.text-blue { color: var(--primary); }
.section-spacer { padding: 100px 0; }
.bg-light-gray { background-color: var(--light-gray); }
.bg-navy { background-color: var(--navy); }







/* --- Header Logic --- */
.main-header {
    transition: var(--transition);
    padding: 25px 0;
    z-index: 9999;
}

.main-header.scrolled {
    background: var(--white);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* --- Logo Control --- */
.main-header img {
    max-width: 180px;
    transition: var(--transition);
    filter: brightness(0) invert(1);
}

.main-header.scrolled img {
    filter: none;
}

/* --- Navigation & Active States --- */
.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 600;
    margin: 0 15px;
    font-size: 0.85rem; /* Slightly smaller for premium look */
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: var(--transition);
    position: relative;
}

/* Underline Logic for Hover & Active */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:not(.dropdown-toggle):hover::after, 
.nav-link.active:not(.dropdown-toggle)::after {
    width: 100%;
}

.nav-link:hover, 
.nav-link.active {
    color: var(--white) !important;
}

/* Scrolled link colors */
.main-header.scrolled .nav-link {
    color: var(--navy) !important;
}

.main-header.scrolled .nav-link.active,
.main-header.scrolled .nav-link:hover {
    color: var(--primary) !important;
}

/* --- Dropdown God Level UI --- */
.dropdown-toggle:after{
    display: none;
}
.dropdown-menu {
    border: none;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    padding: 10px;
    margin-top: 15px !important;
    animation: slideIn 0.3s ease forwards;
}

.dropdown-item {
    font-size: 0.85rem;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 8px;
    color: var(--navy);
    transition: var(--transition);
}

.dropdown-item:hover {
    background: var(--light-gray);
    color: var(--primary);
    transform: translateX(5px);
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Toggler */
.navbar-toggler {
    border: none;
    filter: brightness(0) invert(1);
}

.main-header.scrolled .navbar-toggler {
    filter: none;
}




#internal-banner{
    position: relative;
    height: 400px;
    overflow: hidden;
    .hero-overlay{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1;
    }
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .hero-inner{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
        h1{
            font-size: 2.5rem;
            margin-bottom: 10px;
            text-transform: uppercase;
            font-weight: 600;
        }
    }
}





/* Footer Styling */
.footer-dark {
    font-family: 'Archivo', sans-serif;
}

footer .logo {
    max-width: 250px;
    filter: brightness(0) contrast(1) invert(1);
    padding-bottom: 20px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}
.footer-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.footer-input:focus {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
    color: #fff;
}

.btn-primary-custom {
    background: var(--primary);
    color: white;
    border-radius: 50px;
    padding: 12px 35px;
    border: none;
    font-weight: 600;
}

.btn-primary-custom:hover {
    background: var(--secondary);
    color: white;
}

@media (max-width: 768px) {
    .section-spacer {
        padding: 60px 0;
    }
}