.section{
    padding:100px 0;
}

.section-inner{
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
}

.industries-inner{
    background:linear-gradient(135deg,#1A2F2B 0%,#2F5D50 100%);
    border-radius:28px;
    padding:70px;
    position:relative;
    overflow:hidden;
}

.industries-inner::before{
    content:'';
    position:absolute;
    top:-100px;
    right:-100px;
    width:400px;
    height:400px;
    background:rgba(244,180,0,.08);
    border-radius:50%;
    filter:blur(60px);
}

.ind-header{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    margin-bottom:50px;
    align-items:end;
}

.ind-header .section-tag{
    display:inline-flex;
    padding:8px 14px;
    border-radius:999px;
    background:rgba(244,180,0,.15);
    color:#F4B400;
    border:1px solid rgba(244,180,0,.3);
    font-size:14px;
    font-weight:600;
}

.ind-header .section-title{
    font-size:52px;
    line-height:1.1;
    font-weight:800;
    color:#ffffff;
    margin-top:20px;
    margin-bottom:0;
}

.ind-header .section-desc{
    color:rgba(255,255,255,.65);
    font-size:17px;
    line-height:1.8;
}

.industries-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;
}

.industry-card{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.1);
    border-radius:16px;
    padding:28px 24px;
    position:relative;
    overflow:hidden;
    transition:.3s;
    cursor:pointer;
}

.industry-card:hover{
    background:rgba(255,255,255,.12);
    border-color:rgba(244,180,0,.4);
    transform:translateY(-4px);
}

.industry-card .icon{
    font-size:32px;
    display:block;
    margin-bottom:14px;
}

.industry-card h4{
    font-size:16px;
    font-weight:700;
    color:#ffffff;
    margin-bottom:8px;
}

.industry-card p{
    font-size:13px;
    line-height:1.7;
    color:rgba(255,255,255,.55);
}

.industry-card .arrow{
    position:absolute;
    top:20px;
    right:20px;
    font-size:16px;
    color:rgba(255,255,255,.3);
    transition:.3s;
}

.industry-card:hover .arrow{
    color:#F4B400;
    transform:translate(2px,-2px);
}

@media(max-width:991px){

    .ind-header{
        grid-template-columns:1fr;
    }

    .industries-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .ind-header .section-title{
        font-size:42px;
    }

}

@media(max-width:767px){

    .industries-inner{
        padding:40px 24px;
    }

    .industries-grid{
        grid-template-columns:1fr;
    }

    .ind-header .section-title{
        font-size:32px;
    }

}

.arrow i{
    font-size:16px;
}

.industry-card .arrow{
    transform:rotate(-45deg);
}

.industry-card:hover .arrow{
    transform:rotate(-45deg) translate(2px,-2px);
}