.process{
    padding:100px 20px;
    background:#ffffff;
}

.container{
    max-width:1200px;
    margin:auto;
}

.section-header{
    text-align:center;
    margin-bottom:60px;
}

.section-header h2{
    font-size:42px;
    font-family:'Poppins',sans-serif;
    font-weight:800;
    color:#111;
}

.section-header h2 span{
    color:#1f5eff;
}

.section-header p{
    margin-top:12px;
    font-size:18px;
    color:#666;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.process-card{
    background:#f9fbff;
    border:1px solid #e8f0ff;
    border-radius:18px;
    padding:30px 20px;
    text-align:center;

    transition:.3s ease;
    position:relative;
    overflow:hidden;
}

.process-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(31,94,255,0.12);
}

.step{
    width:70px;
    height:70px;
    margin:0 auto 18px;

    background:#1f5eff;
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:18px;

    font-size:28px;
    font-weight:800;
}

.process-card h3{
    font-size:20px;
    font-weight:700;
    margin-bottom:10px;
    color:#111;
    font-family:'Poppins',sans-serif;
}

.process-card p{
    font-size:15px;
    color:#666;
    line-height:1.6;
}

.fade-up{
    opacity:0;
    transform:translateY(40px);
    transition:all .8s ease;
}

.fade-up.active{
    opacity:1;
    transform:translateY(0);
}

@media(max-width:992px){
    .process-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .process-grid{
        grid-template-columns:1fr;
    }

    .section-header h2{
        font-size:30px;
    }
}