html {
    overflow-y: scroll;
    /* always reserve scrollbar */
}

body {
    font-family: "Inter", sans-serif;
    /* margin-top: 50px; */
    overflow-x: hidden;
}

.navbar {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    background-color: transparent !important;
    box-shadow: none !important;
    z-index: 1050;
}

/* SCROLLED STATE */
.navbar.scrolled {
    background-color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
}

/* HERO */
.hero-section {
    position: relative;
    margin-top: 0;
}

.hero-desktop {
    height: 100vh;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

/* NAV TEXT WHITE ON HERO */
.navbar:not(.scrolled) .nav-link {
    color: #ffffff;
}

.navbar:not(.scrolled) .nav-separator {
    color: #ffffff;
}

/* Scrolled state → BLACK */
.navbar.scrolled .nav-separator {
    color: #000000;
}

.navbar:not(.scrolled) .navbar-brand img {
    filter: brightness(0) invert(1);
    /* optional if logo is dark */
}

/* SCROLLED TEXT DARK */
.navbar.scrolled .nav-link {
    color: #000 !important;
}

/* Theme Colors */
.text-orange {
    color: #e36414;
}

.bg-bright {
    background-color: #f9fafc;
}

/* Navbar */
.nav-link {
    color: #ffff !important;
    font-weight: 500;
}

.nav-link:hover {
    color: #ffff !important;
}

.nav-link.active {
    color: #ffff !important;
    /* Orange color when active */
}

/* Hero */
.hero-section img {
    width: 100%;
    /* height: auto;              ✅ keeps ratio */
    max-height: 107vh;
    /* optional safety */
    object-fit: cover;
    /* ✅ NEVER CUT */
    object-position: center;
    display: block;
    background-color: #f8f9fa;
    /* optional side space */
}

/* Capabilities */
.capability-item {
    background: transparent;
    transition: all 0.3s;
}

.capability-item:hover {
    transform: scale(1.05);
}

/* Industries */
.industry-img {
    /* border: 2px solid #000; */
    border-radius: 6px;
    height: 180px;
    object-fit: cover;
}

/* Social Follow Cards */
.social-card {
    background-color: #fff;
    border: 1.5px solid #ccc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Footer Social Icons */
.footer-section img {
    transition: 0.3s ease;
}

.footer-section img:hover {
    transform: scale(1.2);
}

/* --- Contact Page Styling --- */

.custom-form-field {
    height: 60px;
    background-color: #f0f0f0;
    font-size: 1.1rem;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    font-weight: 500;
}

.custom-textarea {
    height: 150px !important;
    resize: none;
}

.custom-form-field:focus {
    background-color: #fff;
    border-color: #008080;
    box-shadow: 0 0 0 0.25rem rgba(0, 128, 128, 0.25);
}

/* Custom "Send Now" Button Style */
.custom-send-btn {
    background-color: #e0e0e0;
    color: #333;
    border: 1px solid #ccc;
    font-weight: bold;
    padding: 0.75rem 2.5rem;
    transition: background-color 0.3s;
    border-radius: 50px;
}

.custom-send-btn:hover {
    background-color: #d0d0d0;
    color: #333;
}

.contact-form-info-section .fa-2x {
    font-size: 1.75em;
}

.map-container {
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
}

#capabilityModal .btn-close {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    padding: 0.5rem;
    z-index: 2;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}

#capabilityModal .btn-close:hover {
    background-color: rgba(255, 255, 255, 1);
}

#industryModal .btn-close {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    padding: 0.5rem;
    z-index: 2;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}

#industryModal .btn-close:hover {
    background-color: rgba(255, 255, 255, 1);
}

.about-banner-img {
    max-width: 100%;
    height: auto;
    /* ✅ keeps 1900×600 ratio */
    display: block;
}

/* Optional: limit height on very large screens */
@media (min-width: 1400px) {
    .about-banner-img {
        max-height: 600px;
    }
}

@media (max-width: 991px) {
    .navbar-toggler {
        background-color: #ffffff !important;
        border-radius: 6px;
        padding: 6px 10px;
        border: none;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    /* Hamburger icon color */
    .navbar-toggler-icon {
        filter: invert(0);
        /* keeps icon dark */
    }

    /* Mobile menu background */
    .navbar-collapse {
        background-color: #ffffff;
        padding: 15px 20px;
        margin-top: 10px;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    /* Mobile nav links */
    .navbar-collapse .nav-link {
        color: #000 !important;
        padding: 10px 0;
        font-weight: 600;
    }

    /* Language switch inside menu */
    .navbar-collapse .nav-item span {
        color: #000;
    }
}