/* GRID */
.industry-section{
    padding:50px 0;
}

.industry-grid{
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    gap:30px;
}

/* CARD */
.industry-card{
    height:120px;
    border-radius:20px;
    padding:18px;
    position:relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    overflow:hidden;
    transition:.3s;
    cursor: pointer;
}
.industry-card {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    padding: 30px;
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
span.industry-label a {
    color: #000;
    text-decoration: none;
}
.industry-card:hover{
    transform: translateY(-5px);
}

/* CARD COLOR THEMES */
.bg1{ background: linear-gradient(135deg,#d9f1f3,#eefdfd); }
.bg2{ background: linear-gradient(135deg,#dfe4fc,#f4f4ff); }
.bg3{ background: linear-gradient(135deg,#e9f7ef,#f6fff6); }
.bg4{ background: linear-gradient(135deg,#f8eaff,#fff4ff); }

/* ICON IMAGE */
.industry-card img{
    position:absolute;
    right:10px;
    top:10px;
    height:70px;
}

/* LABEL */
.industry-label{
    background:white;
    display:inline-block;
    padding:6px 16px;
    border-radius:20px;
    font-size:12px;
    font-weight:600;
    position:absolute;
    bottom:14px;
    left:14px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}


/* RESPONSIVE */
@media(max-width:992px){
    .industry-grid{ grid-template-columns: repeat(3,1fr); }
}
@media(max-width:576px){
    .industry-grid{ grid-template-columns: repeat(2,1fr); }
}