/*
====================================================
SECTION SERVICES
====================================================
*/

.services{

    padding:120px 0;

    background:#f8fbff;

}

.services-header{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.services-header h2{

    font-size:46px;

    color:#222;

    margin:20px 0;

}

.services-header p{

    font-size:18px;

    color:#666;

    line-height:1.8;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.service-card{

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

    transition:.35s;

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 60px rgba(0,0,0,.12);

}

.service-image{

    overflow:hidden;

}

.service-image img{

    width:100%;

    height:240px;

    object-fit:cover;

    transition:.4s;

}

.service-card:hover .service-image img{

    transform:scale(1.08);

}

.service-content{

    padding:35px;

}

.service-content h3{

    font-size:24px;

    color:#222;

    margin-bottom:18px;

}

.service-content p{

    color:#666;

    line-height:1.8;

    margin-bottom:30px;

}

.service-meta{

    display:flex;

    justify-content:space-between;

    margin-bottom:30px;

    font-size:15px;

    color:#0057B8;

    font-weight:600;

}

.service-meta span{

    display:flex;

    align-items:center;

    gap:8px;

}

.service-link{

    display:inline-flex;

    align-items:center;

    gap:10px;

    text-decoration:none;

    color:#0057B8;

    font-weight:700;

    transition:.3s;

}

.service-link:hover{

    gap:16px;

}

.services-footer{

    text-align:center;

    margin-top:70px;

}

.services-footer .btn{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    padding:18px 36px;

    background:#0057B8;

    color:#fff;

    border-radius:40px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.services-footer .btn:hover{

    background:#003F88;

    transform:translateY(-3px);

}

/*
====================================================
RESPONSIVE
====================================================
*/

@media(max-width:992px){

    .services-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .services{

        padding:80px 0;

    }

    .services-header h2{

        font-size:34px;

    }

    .services-header p{

        font-size:16px;

    }

    .services-footer .btn{

        width:100%;

    }

}