.categories{

    padding:100px 0;

    background:#111827;

}

.category-card{

    background:#1E293B;

    border:1px solid rgba(255,255,255,.06);

    border-radius:20px;

    padding:40px 30px;

    height:100%;

    text-align:center;

    transition:.3s;

}

.category-card:hover{

    transform:translateY(-10px);

    border-color:#0891B2;

    box-shadow:0 20px 45px rgba(8,145,178,.20);

}

.category-icon{

    width:90px;

    height:90px;

    margin:0 auto 25px;

    border-radius:50%;

    background:#0891B2;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.3s;

}

.category-card:hover .category-icon{

    transform:scale(1.08) rotate(8deg);

}

.category-icon i{

    color:#FFFFFF;

    font-size:42px;

}

.category-card h3{

    font-size:26px;

    font-weight:700;

    margin-bottom:15px;

}

.category-card p{

    color:#94A3B8;

    line-height:1.7;

    min-height:55px;

    margin-bottom:25px;

}

.category-footer{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    color:#67E8F9;

    font-weight:600;

    transition:.3s;

}

.category-footer i{

    transition:.3s;

}

.category-card:hover .category-footer{

    color:#93C5FD;

}

.category-card:hover .category-footer i{

    transform:translateX(8px);

}

@media(max-width:992px){

    .categories{

        padding:70px 0;

    }

}