.process-section{
    padding:100px 5%;
}

.section-heading{
    text-align:center;
    margin-bottom:80px;
}

.section-heading h2{
    font-size:42px;
    color:#111827;
    margin-bottom:15px;
}

.section-heading p{
    max-width:700px;
    margin:auto;
    color:#6b7280;
    line-height:1.7;
}

.process-wrapper{
    display:flex;
    justify-content:center;
    align-items:stretch;
    gap:0;
    flex-wrap:nowrap;
}

.process-card{
    position:relative;
    flex:1;
    min-height:260px;
    background:#fff;
    padding:70px 30px 35px;
    transition:.4s ease;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    z-index:1;
}

/* Arrow Shape */
.process-card:not(:last-child)::after{
    content:"";
    position:absolute;
    top:0;
    right:-40px;
    width:40px;
    height:100%;
    background:#fff;
    clip-path:polygon(0 0,100% 50%,0 100%);
    z-index:5;
    transition:.4s ease;
}

/* Number Circle */
.step-number{
    position:absolute;
    top:-28px;
    left:50%;
    transform:translateX(-50%);
    width:65px;
    height:65px;
    border-radius:50%;
    background:#fff;
    color:#0d6efd;
    font-size:22px;
    font-weight:700;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:
        0 10px 25px rgba(0,0,0,.15),
        inset 0 2px 5px rgba(255,255,255,.8);
    z-index:100;
}

.process-card h3{
    text-align:center;
    margin-bottom:15px;
    font-size:22px;
    color:#111827;
}

.process-card p{
    text-align:center;
    color:#6b7280;
    line-height:1.8;
    font-size:15px;
}

/* Hover Effect */

.process-card:hover{
    background:linear-gradient(
        135deg,
        #0d6efd,
        #0052cc
    );
    transform:translateY(-12px);
    box-shadow:
        0 25px 40px rgba(13,110,253,.35);
    z-index:20;
}

.process-card:hover::after{
    background:#0052cc;
}

.process-card:hover h3,
.process-card:hover p{
    color:#fff;
}

.process-card:hover .step-number{
    transform:translateX(-50%) scale(1.08);
}

/* Tablet */

@media(max-width:1100px){

    .process-wrapper{
        flex-wrap:wrap;
        gap:25px;
    }

    .process-card{
        flex:0 0 calc(50% - 15px);
    }

    .process-card::after{
        display:none;
    }
}

/* Mobile */

@media(max-width:768px){

    .section-heading h2{
        font-size:32px;
    }

    .process-wrapper{
        flex-direction:column;
    }

    .process-card{
        width:100%;
        min-height:auto;
        border-radius:20px;
        margin-top:35px;
    }

    .process-card::after{
        display:none;
    }

    .step-number{
        top:-32px;
    }
}