.industries-section{

    padding:140px 0;

}

.industry-scroll{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

@media (max-width:768px){

    .industry-scroll{

        display:flex;

        gap:18px;

        overflow-x:auto;

        overflow-y:hidden;

        scroll-snap-type:x mandatory;

        -webkit-overflow-scrolling:touch;

        padding-bottom:12px;

    }

    .industry-scroll::-webkit-scrollbar{

        display:none;

    }

    .industry-card{

        flex:0 0 82%;

        max-width:280px;

        scroll-snap-align:start;

    }

}

.industry-card{

    background:#10231C;

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    padding:32px;

    transition:.3s ease;

}

.industry-card:hover{

    transform:translateY(-8px);

    border-color:#22C36A;

}

.industry-card h3{

    margin-bottom:16px;

}

.industry-card p{

    color:#B8C4BE;

    line-height:1.7;

}

@media (max-width:991px){

    .industries-grid{

        grid-template-columns:1fr;

    }

}