/* industries.css - Modern, Premium Aesthetic */

body {
    background-color: #E8E6D6;
    color: #000;
    overflow-x: hidden;
}

.industries-hero {
    min-height: 50vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/img3.jpg');
    /* Using existing asset */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
    border-bottom: 2px solid #000;
}

.industries-hero h1 {
    font-family: 'Reem Kufi', sans-serif;
    font-size: 5rem;
    color: #E8E6D6;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
}

.industries-hero p {
    font-size: 1.8rem;
    color: #E8E6D6;
    max-width: 800px;
    margin: 0 auto;
}

.industries-content {
    padding: 100px 0;
    background-color: #E8E6D6;
}

.industry-item {
    padding: 60px 0;
}

.industry-text h3 {
    font-family: 'Reem Kufi', sans-serif;
    color: #000;
    font-size: 3.5rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.industry-text p {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #222;
    margin-bottom: 30px;
}

.industry-text h4 {
    color: #000;
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.industry-text ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.industry-text ul li {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #444;
    display: flex;
    align-items: center;
}

.industry-text ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #000;
    margin-right: 15px;
    font-size: 1.2rem;
}

.industry-img img {
    width: 100%;
    border-radius: 15px;
    border: 1px solid #333;
    box-shadow: 0 15px 35px rgba(209, 190, 48, 0.1);
    transition: transform 0.5s ease;
    height: 400px;
    object-fit: cover;
}

.industry-img img:hover {
    transform: scale(1.02);
}

.industry-divider {
    border-top: 1px solid #333;
    margin: 40px auto;
    width: 80%;
}

@media (max-width: 768px) {
    .industries-hero h1 {
        font-size: 3.5rem;
    }

    .industry-img {
        margin-top: 40px;
    }

    /* --- Standardized Mobile Menu Fixes --- */
    .header .fa-bars {
        display: block !important;
        color: #d1be30 !important;
        font-size: 3rem;
        cursor: pointer;
    }

    .header .navbar {
        position: fixed;
        top: 60px;
        left: -120%;
        /* Hidden by default */
        width: 100%;
        height: auto;
        background-color: #111 !important;
        border-top: .1rem solid rgba(232, 230, 214, .3);
        z-index: 1000;
        padding-bottom: 2rem;
        transition: all .3s linear;
        display: block !important;
        /* Ensure block but hidden via left */
    }

    /* This class is toggled by main.js */
    .header .navbar.nav-toggle {
        left: 0;
    }

    .header .navbar ul {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 0;
    }

    .header .navbar ul li {
        margin: 1.5rem 0;
        text-align: center;
    }

    .header .navbar ul li a {
        font-size: 2.4rem;
        color: #E8E6D6 !important;
        display: block;
    }

    /* Breadcrumb/Hero adjustments for mobile center */
    .industries-hero h1 {
        font-size: 3rem;
    }
}