/*==================================================
    SOLUTIONS SERVICES
==================================================*/

.solutions-services{

    padding:100px 0;

    background:#f8fafc;

}

/*====================================
    Section Heading
====================================*/

.solutions-services .section-heading{

    max-width:760px;

    margin:0 auto 60px;

}

.solutions-services .section-badge{

    display:inline-block;

    padding:10px 22px;

    background:#e8f8ef;

    color:#00A651;

    border-radius:40px;

    font-size:15px;

    font-weight:600;

    margin-bottom:20px;

}

.solutions-services h2{

    font-size:44px;

    font-weight:800;

    color:#111827;

    margin-bottom:20px;

}

.solutions-services .section-heading p{

    color:#6b7280;

    font-size:17px;

    line-height:1.9;

}

/*====================================
    Card
====================================*/

.solution-card{

    background:#ffffff;

    border-radius:20px;

    overflow:hidden;

    border:1px solid #e5e7eb;

    height:100%;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.solution-card:hover{

    transform:translateY(-8px);

    border-color:#00A651;

    box-shadow:0 20px 45px rgba(0,166,81,.12);

}

/*====================================
    Image
====================================*/

.solution-card img{

    width:100%;

    height:240px;

    object-fit:cover;

    transition:.5s;

}

.solution-card:hover img{

    transform:scale(1.06);

}

/*====================================
    Body
====================================*/

.solution-card-body{

    padding:30px;

}

.solution-card-body h3{

    font-size:26px;

    color:#111827;

    font-weight:700;

    margin-bottom:16px;

}

.solution-card-body p{

    color:#6b7280;

    font-size:16px;

    line-height:1.8;

    margin-bottom:25px;

}

/*====================================
    Link
====================================*/

.solution-card-body a{

    display:inline-flex;

    align-items:center;

    gap:8px;

    text-decoration:none;

    color:#00A651;

    font-weight:700;

    transition:.3s;

}

.solution-card-body a:hover{

    color:#008b45;

    transform:translateX(6px);

}

/*====================================
    Responsive
====================================*/

@media(max-width:992px){

    .solutions-services{

        padding:80px 0;

    }

    .solutions-services h2{

        font-size:36px;

    }

    .solution-card img{

        height:220px;

    }

}

@media(max-width:768px){

    .solutions-services{

        padding:70px 0;

    }

    .solutions-services h2{

        font-size:30px;

    }

    .solutions-services .section-heading{

        margin-bottom:45px;

    }

    .solutions-services .section-heading p{

        font-size:16px;

    }

    .solution-card-body{

        padding:25px;

    }

    .solution-card-body h3{

        font-size:22px;

    }

    .solution-card img{

        height:200px;

    }

}