/* ==========================================
   SERVICES PAGE
========================================== */

/* Banner */

.service-banner{

    position:relative;
    height:420px;

    background:
    linear-gradient(rgba(5,20,45,.75),
    rgba(5,20,45,.75)),
    url("../images/services/services-banner.jpg");

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;
    color:#fff;
}

.service-banner .container{

    position:relative;
    z-index:2;
}

.service-banner h1{

    font-size:60px;
    margin-bottom:20px;
}

.service-banner p{

    font-size:22px;
    color:#ddd;
}

/* ==========================================
SECTION TITLE
========================================== */

.section-title{

    text-align:center;

    margin-bottom:70px;
}

.section-title h5{

    color:#0066ff;

    letter-spacing:3px;

    margin-bottom:10px;
}

.section-title h2{

    font-size:42px;

    color:#0B1F3A;

    margin-bottom:20px;
}

.section-title p{

    max-width:700px;

    margin:auto;

    color:#666;
}

/* ==========================================
SERVICE GRID
========================================== */

.services{

    padding:100px 0;

    background:#f8fafc;
}

.service-grid{

    display:grid;

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

    gap:35px;
}

/* ==========================================
SERVICE CARD
========================================== */

.service-card{

    background:#fff;

    padding:45px 35px;

    border-radius:15px;

    transition:.4s;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    border-top:4px solid transparent;
}

.service-card:hover{

    transform:translateY(-10px);

    border-top:4px solid #0077ff;

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

.service-card i{

    font-size:55px;

    color:#0077ff;

    margin-bottom:25px;
}

.service-card h3{

    color:#0B1F3A;

    margin-bottom:18px;

    font-size:24px;
}

.service-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:25px;
}

.service-card a{

    color:#0077ff;

    font-weight:600;

    text-decoration:none;
}

.service-card a:hover{

    color:#0048b5;
}

/* ==========================================
WHY CHOOSE US
========================================== */

.why-services{

    padding:100px 0;

    background:#fff;
}

.why-services .container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;
}

.why-services h2{

    font-size:42px;

    color:#0B1F3A;

    margin-bottom:25px;
}

.why-services p{

    color:#666;

    line-height:1.8;

    margin-bottom:30px;
}

.why-services ul{

    list-style:none;
}

.why-services ul li{

    margin-bottom:18px;

    font-size:18px;

    color:#333;
}

.why-services img{

    width:100%;

    border-radius:15px;

    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

/* ==========================================
RESPONSIVE
========================================== */

@media(max-width:992px){

.service-banner h1{

font-size:45px;

}

.why-services .container{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.service-banner{

height:320px;

}

.service-banner h1{

font-size:34px;

}

.section-title h2{

font-size:30px;

}

.services{

padding:70px 0;

}

.why-services{

padding:70px 0;

}

.service-card{

padding:35px 25px;

}

}