.categories-section{

    padding:120px 0;

    background:#f8fafc;

}


.category-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    transition:.35s;

    box-shadow:0 8px 25px rgba(0,0,0,.05);

    height:100%;

}


.category-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(37,99,235,.15);

}


.category-image{

    height:220px;

    overflow:hidden;

}


.category-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}


.category-card:hover img{

    transform:scale(1.08);

}


.category-content{

    padding:30px;

}


.category-content h4{

    font-size:24px;

    font-weight:700;

    margin-bottom:15px;

}


.category-content p{

    color:#64748b;

    line-height:2;

    min-height:70px;

}


.category-footer{

    margin-top:25px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}


.category-footer span{

    background:#eff6ff;

    color:#2563eb;

    padding:8px 16px;

    border-radius:30px;

    font-size:14px;

}


.category-footer a{

    text-decoration:none;

    color:#2563eb;

    font-weight:700;

}


.category-footer a:hover{

    color:#1d4ed8;

}