:root {
    --navy: #0B1C2D;
    --teal: #0F766E;
    --gold: #C6A75E;
    --light-grey: #F8F9FA;
}

html,
body {
    font-family: 'Inter', sans-serif;
    color: #333;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Fix for possible AOS overflow */
body {
    overflow-x: hidden !important;
}

.navbar {
    background-color: var(--navy);
    border-bottom: 3px solid var(--gold);
}

.btn-primary {
    background-color: var(--teal);
    border: none;
}

.btn-outline-gold {
    border: 2px solid var(--gold);
    color: var(--gold);
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: white;
}

.navbar-dark .navbar-nav .nav-link.active {
    color: #C6A75E !important;
    /* Gold text for active page */
    font-weight: 600;
    border-bottom: 2px solid #C6A75E;
}

/* Subtle gold underline */

.hero-section {
    background: linear-gradient(rgba(11, 28, 45, 0.8), rgba(11, 28, 45, 0.8)), url('../images/industrial.jpg');
    background-size: cover;
    padding: 120px 0;
    color: white;
}

.service-card {
    transition: transform 0.3s ease;
    border: none;
    border-top: 5px solid var(--teal);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
}

.bg-navy {
    background-color: #0B1C2D !important;
}

.btn-outline-navy {
    border-color: #0B1C2D;
    color: #0B1C2D;
}

.btn-outline-navy:hover {
    background-color: #0B1C2D;
    color: white;
}

/* Gold Button */
.btn-gold {
    background-color: #C6A75E !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-gold:hover {
    background-color: #b3934d !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(198, 167, 94, 0.4);
}

/* Mobile Responsiveness Fixes */
@media (max-width: 767.98px) {
    .display-3 {
        font-size: 2.5rem !important;
    }

    .hero-section {
        padding: 80px 0;
    }

    .container {
        max-width: 100vw;
        overflow-x: hidden;
    }
}