.work-section{


    width:min(1450px,92%);


    margin:130px auto 140px;


}





/* Same heading style */

.features-heading{


    text-align:center;

    margin-bottom:65px;


}



.features-heading span{


    color:#2563eb;


    font-size:14px;


    font-weight:700;


    letter-spacing:3px;


}




.features-heading h2{


    margin-top:18px;


    font-size:48px;


    line-height:1.2;


    font-weight:800;


    color:#0f172a;


}







/* Steps Grid */


.work-grid{


    display:grid;


    grid-template-columns:repeat(3,1fr);


    gap:32px;


}







/* Cards */


.work-card{


    background:#ffffff;


    padding:40px;


    border-radius:30px;


    text-align:center;


    border:1px solid #dbeafe;


    box-shadow:


    0 18px 45px rgba(37,99,235,.08);


    transition:.35s ease;


}




.work-card:hover{


    transform:translateY(-10px);


    box-shadow:


    0 30px 65px rgba(37,99,235,.16);


}







/* Number */


.number{


    width:75px;


    height:75px;


    border-radius:50%;


    background:linear-gradient(
        135deg,
        #2563eb,
        #60a5fa
    );


    color:white;


    display:flex;


    align-items:center;


    justify-content:center;


    font-size:25px;


    font-weight:700;


    margin:0 auto 25px;


}







.work-card h3{


    color:#0f172a;


    margin-bottom:15px;


    font-size:23px;


}





.work-card p{


    color:#64748b;


    line-height:1.7;


    font-size:16px;


}







@media(max-width:900px){


.work-grid{


    grid-template-columns:1fr;


}



.features-heading h2{


    font-size:34px;


}


}