/*====================================
    SERVICES SECTION
====================================*/

.sm-services-section{

    padding:80px 0;

    background:#f8fbff;

}

.sm-container{

    width:92%;
    max-width:1320px;
    margin:auto;

}

/*====================================
    Heading
====================================*/

.sm-heading{

    text-align:center;
    margin-bottom:60px;

}

.sm-heading h2{

    font-size:42px;
    font-weight:700;
    color:#003366;
    margin-bottom:10px;

}

.sm-heading h3{

    font-size:22px;
    color:#0A6DB7;
    font-weight:600;
    margin-bottom:18px;

}

.sm-heading p{

    max-width:760px;
    margin:auto;
    color:#666;
    line-height:1.9;
    font-size:17px;

}

/*====================================
    Grid
====================================*/

.sm-services-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,320px));

    justify-content:center;

    gap:35px;

}

/*====================================
    Card
====================================*/

.sm-service-card{

    background:#fff;

    border-radius:18px;

    padding:35px;

    text-align:center;

    text-decoration:none;

    transition:.35s;

    box-shadow:0 12px 35px rgba(0,0,0,.07);

    border-top:5px solid #0A6DB7;

    display:flex;

    flex-direction:column;

    justify-content:space-between;

    min-height:390px;

}

.sm-service-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 45px rgba(0,0,0,.15);

}

/*====================================
    Icon
====================================*/

.sm-icon{

    width:90px;
    height:90px;

    margin:0 auto 25px;

    background:#eef6ff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.35s;

}

.sm-icon img{

    width:52px;
    height:52px;
    object-fit:contain;

}

.sm-service-card:hover .sm-icon{

    background:#0A6DB7;

    transform:scale(1.08);

}

.sm-service-card:hover .sm-icon img{

    filter:brightness(0) invert(1);

}

/*====================================
    Title
====================================*/

.sm-service-card h4{

    color:#003366;

    font-size:24px;

    margin-bottom:18px;

    font-weight:700;

    line-height:1.4;

}

/*====================================
    Description
====================================*/

.sm-service-card p{

    color:#666;

    line-height:1.9;

    font-size:16px;

    margin-bottom:30px;

}

/*====================================
    Button
====================================*/

.sm-button{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    color:#0A6DB7;

    font-weight:700;

    transition:.3s;

}

.sm-service-card:hover .sm-button{

    gap:14px;

    color:#003366;

}

/*====================================
    Responsive
====================================*/

@media(max-width:1024px){

.sm-heading h2{

    font-size:34px;

}

.sm-services-grid{

    grid-template-columns:repeat(2,minmax(280px,1fr));

}

}

@media(max-width:768px){

.sm-services-grid{

    grid-template-columns:1fr;

}

.sm-service-card{

    min-height:auto;

}

.sm-heading h2{

    font-size:30px;

}

.sm-heading h3{

    font-size:20px;

}

}



/*=====================================
SINGLE SERVICE
=====================================*/

.sm-banner-image img{

    width:100%;
    display:block;
    max-height:520px;
    object-fit:cover;

}

.sm-single-service{

    padding:80px 0;

}

.sm-service-box{

    max-width:950px;

    margin:auto;

    background:#fff;

    border-radius:20px;

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

    padding:60px;

}

.sm-single-icon{

    width:90px;

    height:90px;

    background:#eef6ff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0 auto 30px;

}

.sm-single-icon img{

    width:50px;

}

.sm-service-box h1{

    text-align:center;

    color:#003366;

    font-size:42px;

    margin-bottom:30px;

}

.sm-content{

    line-height:2;

    color:#555;

    font-size:17px;

}

.sm-service-btn{

    margin-top:40px;

    text-align:center;

}

.sm-service-btn a{

    display:inline-block;

    background:#0A6DB7;

    color:#fff;

    padding:15px 35px;

    border-radius:40px;

    text-decoration:none;

    font-weight:700;

}

.sm-service-btn a:hover{

    background:#003366;

}

.sm-related-services{

    background:#f8fbff;

    padding:80px 0;

}

.sm-related-services h2{

    text-align:center;

    font-size:36px;

    margin-bottom:50px;

    color:#003366;

}