    .step-circle {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 25px rgba(0, 0, 0, .1);
    }

    .industry-card {
    height: 100%;
    border-radius: 1.25rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all .3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,.05);
}
.industry-card h6 {
    font-weight: 700;
    margin-top: 1rem;
    color: #212529;
}
.industry-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,.12);
}

.icon-pill {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto;
}

/* Soft Backgrounds */
.bg-soft-primary { background: #eef4ff; }
.bg-soft-danger { background: #ffecec; }
.bg-soft-success { background: #e9f9f0; }
.bg-soft-warning { background: #fff7e6; }
.bg-soft-info { background: #e9f7fb; }
.bg-soft-secondary { background: #f1f3f5; }
.bg-soft-dark { background: #f4f4f4; }
.bg-soft-indigo { background: #eef2ff; }