.why-feature-card2 {
    background: linear-gradient(145deg, #ffffff, #f5f7fa);
    border-radius: 18px;
    padding: 36px 32px;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}
.process-labels {
    font-size: 15px;
    color: #3599d7;
    background-color: #3599d8;
}
/* Hover Effect */
.why-feature-card2:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 45px rgba(13, 110, 253, 0.18);
}

/* Decorative gradient line */
.why-feature-card2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0d6efd, #3597d7, #fb5156);
}
.why-feature-card2 .box-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #0b2c4d;
    position: relative;
}

.why-feature-card2 .box-title::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: #0d6efd;
    margin-top: 8px;
    border-radius: 3px;
}
.why-feature-card2 .box-text {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}
.why-wrap2,
.why-feature-wrap,
.why-feature-card2 {
    height: 100%;
}
.why-feature-card2:hover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(13,110,253,0.15), transparent 60%);
    pointer-events: none;
}
.process-svg .step {
    transition: transform 0.4s ease, filter 0.4s ease;
    cursor: pointer;
}

.process-svg .step:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.2));
}

.process-svg text {
    fill: #fff;
    font-size: 26px;
    font-weight: 700;
    text-anchor: middle;
    dominant-baseline: middle;
}
.process-labels div {
    font-size: 15px;
    color: #ffffff;
    padding: 12px;
    position: relative;
    border: 1px solid #fff;
}

.process-labels div::before {
   
    width: 8px;
    height: 8px;
    background: #0d6efd;
    border-radius: 50%;
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
}
@media (max-width: 991px) {
    .process-svg {
        display: none;
    }

    .process-labels {
        gap: 20px;
    }

    .why-feature-card2 {
        padding: 28px;
    }
}
