/*
|--------------------------------------------------------------------------
| How It Works
|--------------------------------------------------------------------------
*/

.how-section{

    padding:50px 0;

    background:#f7f9fc;

}

.section-heading{

    max-width:700px;

    margin:auto;

}

.section-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:rgba(255,122,0,.10);

    color:#FF7A00;

    padding:10px 22px;

    border-radius:50px;

    font-weight:700;

    margin-bottom:20px;

}

.section-heading h2{

    font-size:42px;

    font-weight:800;

    color:#16213E;

    margin-bottom:18px;

}

.section-heading p{

    font-size:18px;

    color:#6b7280;

}

.work-card{

    position:relative;

    background:#fff;

    border-radius:24px;

    padding:40px 30px;

    text-align:center;

    transition:.35s;

    box-shadow:0 20px 45px rgba(0,0,0,.06);

    height:100%;

}

.work-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 60px rgba(0,0,0,.12);

}

.work-number{

    position:absolute;

    top:20px;

    right:25px;

    font-size:48px;

    font-weight:800;

    color:rgba(22,33,62,.06);

}

.work-icon{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    background:linear-gradient(135deg,#FF7A00,#FF9A1F);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    margin-bottom:30px;

    box-shadow:0 15px 35px rgba(255,122,0,.35);

}

.work-card h4{

    font-size:24px;

    font-weight:700;

    margin-bottom:18px;

    color:#16213E;

}

.work-card p{

    color:#6b7280;

    line-height:1.8;

}