/* =========================
   INDUSTRIES WE SERVE
========================= */

.industries-section {
    padding: 60px 2%;
    max-width: 1400px;
    margin: 0 auto;
}

.industries-section h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--color-orange);
}

.industries-section p {
    margin: 16px auto 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
}

/* INDUSTRY LIST GRID */
.industries-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

/* INDUSTRY ROW CARD */
.industry-row {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 20px;
    align-items: center;
    padding: 22px 26px;
    border-left: 4px solid rgba(255, 122, 25, 0.4);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(6px);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.industry-row::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-orange), var(--color-accent));
    opacity: 0.4;
    transition: opacity 0.35s ease;
}

.industry-row:hover::before {
    opacity: 1;
}

.industry-row:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

/* INDUSTRY ICON */
.industry-row img {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 0 10px rgba(255, 122, 25, 0.5));
    transition: transform 0.35s ease, filter 0.35s ease;
}

.industry-row:hover img {
    transform: scale(1.1);
    filter: drop-shadow(0 0 18px rgba(255, 122, 25, 0.8));
}

/* INDUSTRY TEXT */
.industry-row h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--color-orange);
}

.industry-row p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
    .industry-row {
        grid-template-columns: 60px 1fr;
        padding: 20px;
    }

    .industry-row img {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 600px) {
    .industry-row {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 18px 16px;
    }

    .industry-row img {
        margin: 0 auto 12px;
    }
}
