/* =================Industries Section================= */
.industries-section {
    margin: 100px auto;
    max-width: 1094px;
    width: 100%;
    height: 450px;
    text-align: center;
    position: relative;
    margin-bottom: -40px;
}

.industries-section .section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.219em;
    letter-spacing: 1%;
    text-transform: none;
    color: #0A2F2F;
    width: 661px;
    height: 68px;
    margin: 0 auto 32px;
    text-align: center;
    margin-bottom: 20px;
}

.industries-list {
    gap: 10px;
    display: flex;
    max-width: 520px;
    margin: 0 auto;
    flex-direction: column;
    align-items: center;
}

.industry-item {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.8em;
    letter-spacing: 1%;
    text-transform: none;
    color: #3F5F5F;
    width: fit-content;
}/* =================Industries Section================= */
.industries-section {
    margin: 100px auto;
    max-width: 1094px;
    width: 100%;
    height: 450px;
    text-align: center;
    position: relative;
    margin-bottom: -40px;
}

.industries-section .section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.219em;
    letter-spacing: 1%;
    text-transform: none;
    color: #0A2F2F;
    width: 661px;
    height: 68px;
    margin: 0 auto 32px;
    text-align: center;
    margin-bottom: 20px;
}

.industries-list {
    gap: 10px;
    display: flex;
    max-width: 520px;
    margin: 0 auto;
    flex-direction: column;
    align-items: center;
}

.industry-item {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.8em;
    letter-spacing: 1%;
    text-transform: none;
    color: #3F5F5F;
    width: fit-content;
}
/* Fade-up animation */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

/* ========== Tablet (≤ 768px) ========== */
@media (max-width: 768px) {
    .industries-section {
        margin: 60px auto;
        height: auto;
        padding: 0 20px;
    }

    .industries-section .section-title {
        width: 100%;
        font-size: 32px;
        line-height: 1.3em;
        margin-bottom: 16px;
    }

    .industries-list {
        max-width: 100%;
        gap: 8px;
    }

    .industry-item {
        font-size: 20px;
        line-height: 1.6em;
        text-align: center;
    }
}

/* ========== Mobile (≤ 400px) ========== */
@media (max-width: 400px) {
    .industries-section {
        margin: 40px auto;
        padding: 0 16px;
    }

    .industries-section .section-title {
        font-size: 24px;
        line-height: 1.25em;
    }

    .industry-item {
        font-size: 16px;
        line-height: 1.5em;
    }
}
