/*=========================================
Services
=========================================*/
.services-section{
    background:#fff;
    }
    .service-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:35px;
    height:100%;
    transition:.35s;
    box-shadow:var(--shadow-sm);
    }
    .service-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow);
    }
    .service-icon{
    width:72px;
    height:72px;
    border-radius:18px;
    background:#EEF5FF;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin-bottom:25px;
    }
    .service-card h3{
    margin-bottom:15px;
    font-size:1.3rem;
    }
    .service-card p{
    margin:0;
    color:var(--light-text);
    }
    @media(max-width:767px){
    .service-card{
    text-align:center;
    padding:30px;
    }
    .service-icon{
    margin:0 auto 20px;
    }
    }