.industry-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    min-height: 420px;
    display: block;
}

.industry-image {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
    transition: transform .7s ease;
}

.industry-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, .15) 0%,
            rgba(0, 0, 0, .35) 50%,
            rgba(0, 0, 0, .85) 100%);
}

.industry-card:hover .industry-image {
    transform: scale(1.08);
}

.industry-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

.industry-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(12px);
    color: white;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.industry-title {
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
}

.industry-description {
    color: rgba(255, 255, 255, .85);
    margin-top: .75rem;
    line-height: 1.7;
}

.industry-arrow {
    margin-top: 1.5rem;
    color: white;
    transition: transform .3s ease;
}

.industry-card:hover .industry-arrow {
    transform: translateX(8px);
}