/* Industries Page Specific Styles */

.ind-hero {
    height: 300px;
    background: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1600&q=80') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ind-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.ind-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
}

.ind-hero-content h1 {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
}

.ind-content-section {
    padding: 60px 0;
}

.ind-item {
    margin-bottom: 60px;
}

.ind-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: flex-start;
}

.ind-text h2 {
    font-size: 1.8rem;
    color: #1a3c5a;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.ind-text p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.ind-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.ind-full-text {
    margin-top: 25px;
    line-height: 1.8;
    color: #555;
}

/* Alternate sections */
.ind-item:nth-child(even) .ind-grid {
    grid-template-columns: 0.8fr 1.2fr;
}

.ind-item:nth-child(even) .ind-text {
    order: 2;
}

.ind-item:nth-child(even) .ind-image {
    order: 1;
}

@media (max-width: 991px) {

    .ind-grid,
    .ind-item:nth-child(even) .ind-grid {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    /* Reset desktop ordering for mobile stacking */
    .ind-item:nth-child(even) .ind-text,
    .ind-item:nth-child(even) .ind-image,
    .ind-text,
    .ind-image {
        order: unset;
    }

    /* Ensure Text appears above Image on mobile */
    .ind-text {
        order: 1;
    }

    .ind-image {
        order: 2;
    }

    .ind-text h2 {
        font-size: 1.5rem;
    }

    .ind-item {
        margin-bottom: 40px;
    }
}