/*=========================================
        INDUSTRY BANNER
=========================================*/

.industry-banner {

    height: 420px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;

    background: url("../images/industries/banner.jpg") center center/cover no-repeat;

}

.industry-banner .overlay {

    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #081C3A, #143A5E, #205072);

}

.industry-banner .container {

    position: relative;
    z-index: 2;

}

.industry-banner h1 {

    font-size: 58px;
    font-weight: 700;
    margin-bottom: 15px;

}

.industry-banner p {

    font-size: 18px;
    letter-spacing: 1px;

}

/*=========================================
        INTRO
=========================================*/

.industry-intro {

    padding: 100px 0;
    text-align: center;

}

.intro-text {

    max-width: 900px;
    margin: auto;
    font-size: 18px;
    color: #666;
    line-height: 1.8;

}

/*=========================================
        INDUSTRY SECTION
=========================================*/

.industry-section {

    padding: 48px 0;

}

.light-bg {

    background: #f8f9fc;

}

.industry-section .grid {

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;

}

.reverse {

    direction: rtl;

}

.reverse>* {

    direction: ltr;

}

.industry-section img {

    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
    transition: .4s;

}

.industry-section img:hover {

    transform: scale(1.04);

}

.industry-section h2 {

    font-size: 37px;
    margin: 20px 0;
    color: #0E1A2B;

}

.industry-section p {

    font-size: 16px;
    margin-bottom: 25px;
    color: #666;
    line-height: 1.8;

}

.industry-section ul {

    list-style: none;

}

.industry-section li {
    font-size: 14px;
    padding-left: 30px;
    margin-bottom: 15px;
    position: relative;

}

.industry-section li::before {

    content: "✔";
    position: absolute;
    left: 0;
    color: #00C897;
    font-weight: bold;

}

/*=========================================
        MANUFACTURING
=========================================*/

.manufacturing {

    padding: 110px 0;
    background: #0A4D68;

}

.manufacturing .title span,
.manufacturing .title h2 {

    color: #fff;

}

.industry-cards {

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;

}

.industry-card {

    background: #fff;
    border-radius: 12px;
    padding: 45px 25px;
    text-align: center;
    transition: .4s;

}

.industry-card:hover {

    transform: translateY(-10px);

}

.industry-card i {

    font-size: 60px;
    color: #00C897;
    margin-bottom: 20px;

}

.industry-card h3 {

    color: #0E1A2B;
    font-size: 22px;

}

/*=========================================
        ANIMATION
=========================================*/

@keyframes fadeIndustry {

    from {

        opacity: 0;
        transform: translateY(50px);

    }

    to {

        opacity: 1;
        transform: translateY(0);

    }

}

.industry-section,
.industry-card {

    animation: fadeIndustry .8s ease;

}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:992px) {

    .industry-section .grid {

        grid-template-columns: 1fr;

    }

    .industry-cards {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:768px) {

    .industry-banner {

        height: 300px;

    }

    .industry-banner h1 {

        font-size: 42px;

    }

    .industry-section {

        padding: 80px 0;

    }

    .industry-section h2 {

        font-size: 34px;

    }

    .industry-cards {

        grid-template-columns: 1fr;

    }

}

@media(max-width:480px) {

    .industry-banner h1 {

        font-size: 32px;

    }

    .intro-text {

        font-size: 16px;

    }

}