/*=========================================================
PAGE BANNER
=========================================================*/

.page-banner{

    background:linear-gradient(135deg,#003366,#0056b3);

    color:#fff;

    padding:80px 20px;

    text-align:center;

}

.page-banner h1{

    font-size:42px;

    font-weight:700;

    margin-bottom:10px;

}

.page-banner p{

    font-size:17px;

    opacity:.95;

}


/*=========================================================
SERVICES
=========================================================*/

.services-section{

    padding:80px 0;

    background:#f7f9fc;

}

.section-title{

    text-align:center;

    margin-bottom:50px;

}

.section-title h2{

    font-size:36px;

    color:#003366;

    margin-bottom:10px;

}

.section-title p{

    color:#666;

    max-width:650px;

    margin:auto;

    line-height:28px;

}


/*=========================================================
GRID
=========================================================*/

.services-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

}


/*=========================================================
CARD
=========================================================*/

.service-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}


/*=========================================================
IMAGE
=========================================================*/

.service-image{

    height:220px;

    overflow:hidden;

}

.service-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.service-card:hover img{

    transform:scale(1.08);

}


/*=========================================================
CONTENT
=========================================================*/

.service-content{

    padding:25px;

}

.service-icon{

    width:70px;

    height:70px;

    border-radius:50%;

    background:#0056b3;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    margin-top:-60px;

    margin-bottom:20px;

    border:5px solid #fff;

    position:relative;

}

.service-content h3{

    font-size:24px;

    color:#003366;

    margin-bottom:15px;

}

.service-content p{

    color:#666;

    line-height:28px;

    margin-bottom:20px;

}


/*=========================================================
INFO
=========================================================*/

.service-info{

    list-style:none;

    padding:0;

    margin:0 0 25px;

}

.service-info li{

    display:flex;

    align-items:center;

    gap:10px;

    margin-bottom:12px;

    color:#444;

    font-size:15px;

}

.service-info i{

    color:#0056b3;

    width:20px;

}


/*=========================================================
BUTTON
=========================================================*/

.service-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:13px 28px;

    background:#0056b3;

    color:#fff;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.service-btn:hover{

    background:#003366;

    transform:translateX(5px);

}


/*=========================================================
NO DATA
=========================================================*/

.no-service{

    grid-column:1/-1;

    background:#fff;

    padding:70px 20px;

    border-radius:15px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.no-service i{

    font-size:60px;

    color:#0056b3;

    margin-bottom:20px;

}

.no-service h3{

    color:#003366;

}


/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:992px){

.page-banner{

padding:60px 20px;

}

.page-banner h1{

font-size:34px;

}

.section-title h2{

font-size:30px;


}

.service-image{

height:200px;

}

}


@media(max-width:768px){

.services-section{

padding:60px 0;

}

.services-grid{

grid-template-columns:1fr;

gap:25px;

}

.service-content{

padding:22px;

}

.service-content h3{

font-size:22px;

}

.service-btn{

width:100%;

justify-content:center;

}

}


@media(max-width:480px){

.page-banner{

padding:45px 15px;

}

.page-banner h1{

font-size:28px;

}

.page-banner p{

font-size:15px;

}

.service-image{

height:180px;

}

.service-icon{

width:60px;

height:60px;

font-size:24px;

}

.service-content h3{

font-size:20px;

}

.service-content p{

font-size:14px;

line-height:24px;

}

}


/*=========================================================
HOME SERVICES
=========================================================*/

.home-services{

padding:90px 0;

background:#f8fbff;

}

.home-services .section-title{

text-align:center;

margin-bottom:60px;

}

.home-services .section-title span{

display:inline-block;

background:#E56A08;

color:white;

padding:8px 18px;

border-radius:30px;

font-size:14px;

font-weight:600;

margin-bottom:15px;

}

.home-services .section-title h2{

font-size:40px;

color:#003366;

margin-bottom:15px;

}

.home-services .section-title p{

max-width:700px;

margin:auto;

color:#666;

line-height:28px;

}

.home-services-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

gap:30px;

}

.home-service-card{

background:#fff;

border-radius:20px;

overflow:hidden;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.35s;

}

.home-service-card:hover{

transform:translateY(-10px);

}

.home-service-image{

height:220px;

overflow:hidden;

}

.home-service-image img{

width:100%;

height:100%;

object-fit:cover;

transition:.5s;

}

.home-service-card:hover img{

transform:scale(1.08);

}

.home-service-content{

padding:25px;

position:relative;

}

.home-service-icon{

width:70px;

height:70px;

border-radius:50%;

background:#E56A08;

color:#fff;

display:flex;

align-items:center;

justify-content:center;

font-size:28px;

border:5px solid #fff;

margin-top:-60px;

position:relative;

margin-bottom:20px;

}

.home-service-content h3{

font-size:24px;

margin-bottom:12px;

color:#003366;

}

.home-service-content p{

color:#666;

line-height:28px;

margin-bottom:20px;

height:84px;

overflow:hidden;

}

.home-service-footer{

display:flex;

justify-content:space-between;

align-items:center;

margin-top:20px;

padding-top:18px;

border-top:1px solid #eee;

}

.home-service-footer span{

font-size:14px;

font-weight:600;

color:#E56A08;

}

.home-service-btn{

display:inline-flex;

align-items:center;

gap:8px;

text-decoration:none;

font-weight:600;

color:#E56A08;

transition:.3s;

}

.home-service-btn:hover{

gap:14px;

}

.home-services-more{

text-align:center;

margin-top:50px;

}

.home-services-more a{

display:inline-block;

padding:15px 35px;

background:#E56A08;

color:#fff;

text-decoration:none;

border-radius:50px;

font-weight:600;

transition:.3s;

}

.home-services-more a:hover{

background:#003366;

}

@media(max-width:768px){

.home-services{

padding:70px 0;

}

.home-services .section-title h2{

font-size:30px;

}

.home-service-image{

height:190px;

}

.home-service-content h3{

font-size:21px;

}

.home-service-footer{

flex-direction:column;

align-items:flex-start;

gap:12px;

}

}