/* INDUSTRY SECTION */
.industries {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    padding: 100px 40px;
    background: white;
    position: relative;
    gap: 60px;
}

.industry-left {
    flex: 1 1 300px;
    max-width: 400px;
    margin-right: 40px;
}

    .industry-left h2 span {
        color: #0040ff;
        font-size: 1.8rem;
        font-weight: 700;
    }

    .industry-left p {
        margin-top: 12px;
        font-size: 1rem;
        color: #444;
        line-height: 1.5;
    }

    .industry-left a {
        color: #0040ff;
        font-weight: 500;
        text-decoration: underline;
    }

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 40px;
    flex: 2 1 600px;
    max-width: 700px;
}

.industry-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

    .industry-card img {
        width: 100%;
        max-width: 140px;
        height: 140px;
        object-fit: cover;
        border-radius: 25px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .industry-card label {
        margin-top: 10px;
        font-size: 0.95rem;
        font-weight: 500;
        color: #222;
    }

/* ---------------- DARK MODE OVERRIDES ----------------- */
body.dark-mode .industries {
    background: #181c2a;
    color: #f1f5fa;
}

body.dark-mode .industry-left h2 span {
    color: #44aaff;
}

body.dark-mode .industry-left p {
    color: #b5d6ff;
}

body.dark-mode .industry-left a {
    color: #44aaff;
}

body.dark-mode .industry-card {
    background: #223;
    color: #f1f5fa;
}

body.dark-mode .industry-card label {
    color: #44aaff;
}

body.dark-mode .industry-card img {
    box-shadow: 0 4px 16px rgba(68,170,255,0.10);
    filter: brightness(0.92) contrast(1.08);
}
