/*======================================
    CATEGORIES
======================================*/

.categories-section{
    padding:100px 0;
    background:#f7fbff;
}

.section-heading{
    max-width:700px;
    margin:0 auto 60px;
}

.section-tag{
    display:inline-block;
    padding:8px 18px;
    background:#eaf4ff;
    color:#0a6bff;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
}

.section-heading h2{
    font-size:42px;
    font-weight:800;
    color:#0d1b3d;
    margin-bottom:18px;
    line-height:1.2;
}

.section-heading p{
    color:#667085;
    font-size:17px;
    line-height:30px;
}

.category-card{

    display:block;

    background:#fff;

    border-radius:24px;

    padding:40px 35px;

    text-decoration:none;

    transition:.35s;

    position:relative;

    overflow:hidden;

    border:1px solid #edf2f7;

    height:100%;

    box-shadow:0 15px 40px rgba(0,0,0,.05);

}

.category-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(0,105,255,.15);

    border-color:#0a6bff;

}

.category-card::before{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    background:rgba(10,107,255,.05);

    border-radius:50%;

    top:-80px;

    right:-80px;

    transition:.4s;

}

.category-card:hover::before{

    transform:scale(1.4);

}

.category-icon{

    width:78px;

    height:78px;

    border-radius:22px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(135deg,#0a6bff,#39a6ff);

    color:#fff;

    font-size:32px;

    margin-bottom:28px;

    box-shadow:0 12px 30px rgba(10,107,255,.30);

}

.category-card h4{

    font-size:24px;

    font-weight:700;

    color:#12284c;

    margin-bottom:15px;

}

.category-card p{

    color:#667085;

    line-height:28px;

    margin-bottom:35px;

    min-height:84px;

}

.category-arrow{

    width:48px;

    height:48px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#f1f7ff;

    color:#0a6bff;

    transition:.35s;

}

.category-card:hover .category-arrow{

    background:#0a6bff;

    color:#fff;

    transform:translateX(8px);

}

@media(max-width:991px){

.section-heading h2{

font-size:34px;

}

.category-card{

padding:30px;

}

}

@media(max-width:576px){

.categories-section{

padding:70px 0;

}

.section-heading h2{

font-size:28px;

}

.section-heading p{

font-size:15px;

line-height:26px;

}

.category-card{

padding:28px;

}

.category-card h4{

font-size:22px;

}

}


.category-arrow{

    width:48px;

    height:48px;

    margin:30px auto 0;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#eef5ff;

    color:#0d6efd;

    transition:.35s;

}

.category-card:hover .category-arrow{

    background:#0d6efd;

    color:#fff;

    transform:translateX(6px);

}