/* =========================
   INDUSTRIES SECTION (COMPONENT)
========================= */

.industries-section {
    background: transparent;
}

/* Grid layout */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Card */
.industry-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    padding: 35px 20px;
    border-radius: 22px;

    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(6px);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.05),
        0 2px 8px rgba(0, 0, 0, 0.03);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

/* Icons */
.industry-card img {
    width: 110px;
    margin-bottom: 16px;
    transition:
        transform 0.4s ease,
        filter 0.4s ease;
}

/* Text */
.industry-card span {
    font-weight: 600;
    font-size: 17px;
    color: #222;
}

/* Hover */
.industry-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.12),
        0 10px 25px rgba(0, 0, 0, 0.08);
}

.industry-card:hover img {
    transform: translateY(-6px) scale(1.05);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.25));
}

/* Responsive */
@media (max-width: 992px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }
}
