
/* =========================
   SERVICES HERO BANNER
========================= */

.services-hero{
    position:relative;
    width:100%;
    height:550px;

    background-image:
   linear-gradient(to top,
    rgba(0,37,70,0.95) 0%,
    rgba(12, 14, 15, 0.15)),
    url('../images/service-banner.jpg');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:flex;
    align-items:center;
}


/* OVERLAY */

.services-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}

/* CONTENT */

.services-content{
    position:relative;
    z-index:2;
    width:120%;
    max-width:1200px;
    margin:auto;
}

/* TITLE */

.services-content h2{
    font-size:50px;
    color:#fff;
    font-weight:50%;
    line-height:1;
    margin-bottom:25px;
    text-transform:uppercase;
}

/* LINE */

.hero-line{
    width:60px;
    height:3px;
    background:#ffffff;
    margin-bottom:30px;
}

/* TEXT */

.services-content p{
    max-width:520px;
    color:#fff;
    font-size:24px;
    line-height:1.7;
    font-weight:400;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

    .services-hero{
        height:450px;
    }

    .services-content h1{
        font-size:65px;
    }

    .services-content p{
        font-size:20px;
    }

}

@media(max-width:768px){

    .services-hero{
        height:380px;
        padding:40px 0;
        background-position:center;
    }

    .services-content h1{
        font-size:42px;
    }

    .hero-line{
        width:60px;
        height:3px;
    }

    .services-content p{
        font-size:16px;
        max-width:100%;
        line-height:1.6;
    }

}
/* CONTENT */

.service-content{
    position:relative;
    z-index:2;
    max-width:900px;
    padding:20px;
}

/* SMALL TITLE */

.small-title{
    color:#0d6efd;
    font-size:18px;
    font-weight:700;
    letter-spacing:2px;
    position:relative;
}

.small-title::before,
.small-title::after{
    content:'';
    position:absolute;
    top:50%;
    width:70px;
    height:2px;
    background:#b7d4ff;
}

.small-title::before{
    left:-90px;
}

.small-title::after{
    right:-90px;
}

/* MAIN TITLE */

.service-hero h1{
    font-size:20px;
    font-weight:100;
    color:#000;
    margin-top:10px;
    margin-bottom:10px;
    line-height:1.1;
}

.service-hero h1 span{
    color:#0d6efd;
}

/* TAGLINE */

.tagline{
    font-size:22px;
    color:#111;
    font-weight:500;
    margin-bottom:25px;
}

/* CENTER LINE */

.line{
    width:140px;
    height:2px;
    background:#0d6efd;
    margin:25px auto;
    position:relative;
}

.line::after{
    content:'';
    position:absolute;
    width:10px;
    height:10px;
    background:#0d6efd;
    border-radius:50%;
    top:-4px;
    left:50%;
    transform:translateX(-50%);
}

/* TEXT */

.intro-text{
    max-width:760px;
    margin:auto;
    color:#111;
    font-size:18px;
    line-height:1.8;
}

/* RESPONSIVE */

@media(max-width:768px){

    .service-hero{
        height:420px;
        padding:40px 20px;
    }

    .service-hero h1{
        font-size:38px;
    }

    .tagline{
        font-size:16px;
    }

    .intro-text{
        font-size:14px;
    }

    .small-title::before,
    .small-title::after{
        width:35px;
    }

    .small-title::before{
        left:-45px;
    }

    .small-title::after{
        right:-45px;
    }

}
/* SERVICES SECTION */

.services-section{
    padding:90px 0;
    background:#f8fbff;
}

.section-heading{
    text-align:center;
    margin-bottom:60px;
}

.section-heading span{
    color:#0077cc;
    font-size:20px;
    font-weight:600;
    letter-spacing:2px;
}

.section-heading h2{
    font-size:45px;
    margin-top:10px;
    color:#111;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(5,250px);
    gap:10px;
}

.service-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    position:relative;
    transition:0.4s;
    box-shadow:0 5px 20px rgba(0,0,0,0.06);
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

.service-image{
    height:250px;
    overflow:hidden;
}

.service-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s;
}

.service-card:hover .service-image img{
    transform:scale(1.08);
}

.service-icon{
    width:85px;
    height:85px;
    background:#0077cc;
    border-radius:50%;
    border:5px solid #fff;
    display:flex;
    align-items:center;
    justify-content:center;
    position:absolute;
    top:205px;
    left:50%;
    transform:translateX(-50%);
    z-index:10;
}

.service-icon i{
    color:#fff;
    font-size:34px;
}

.service-content{
    padding:70px 28px 35px;
    text-align:center;
}

.service-content h3{
    font-size:22px;
    margin-bottom:20px;
    color:#111;
    font-weight:700;
}

.service-content p{
    color:#444;
    line-height:1.9;
    font-size:16px;
}

.service-line{
    width:60px;
    height:4px;
    background:#0077cc;
    margin:25px auto 0;
    border-radius:20px;
}

/* RESPONSIVE */

@media(max-width:1400px){

    .services-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

@media(max-width:992px){

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .services-grid{
        grid-template-columns:1fr;
    }

    .section-heading h2{
        font-size:32px;
    }

}









              
