﻿/* ==================================
SERVICES PAGE
================================== */

.service-banner{
padding:120px 0;
background:
linear-gradient(
135deg,
#0b4d61,
#18c08f
);
color:#fff;
text-align:center;
}

.banner-content{
max-width:850px;
margin:auto;
}

.banner-content span{
letter-spacing:2px;
font-weight:600;
}

.banner-content h1{
font-size:60px;
font-weight:800;
margin:20px 0;
}

.banner-content p{
font-size:20px;
opacity:.9;
}

/* ================================== */

.service-overview{
padding:100px 0;
}

.section-heading{
text-align:center;
margin-bottom:60px;
}

.section-heading span{
color:#18c08f;
font-weight:600;
}

.section-heading h2{
font-size:46px;
margin-top:10px;
color:#072b36;
}

.service-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.service-card{
background:#fff;
padding:40px;
border-radius:25px;
box-shadow:
0 15px 35px rgba(0,0,0,.08);
text-align:center;
transition:.4s;
}

.service-card:hover{
transform:translateY(-10px);
}

.service-card i{
font-size:55px;
color:#18c08f;
margin-bottom:20px;
}

.service-card h3{
margin-bottom:15px;
}

.service-card p{
margin-bottom:20px;
color:#666;
}

.service-card a{
color:#18c08f;
font-weight:600;
}

/* ================================== */

.process-section{
background:#f7fbfc;
padding:100px 0;
}

.process-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.process-box{
background:#fff;
padding:35px;
border-radius:25px;
text-align:center;
box-shadow:
0 10px 30px rgba(0,0,0,.08);
}

.step-no{
width:70px;
height:70px;
background:#18c08f;
color:#fff;
font-size:24px;
font-weight:700;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
margin:auto auto 20px;
}

/* ================================== */

.choose-section{
padding:100px 0;
}

.choose-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.choose-grid div{
background:#fff;
padding:35px;
border-radius:25px;
box-shadow:
0 10px 30px rgba(0,0,0,.08);
text-align:center;
}

.choose-grid h3{
color:#0b4d61;
margin-bottom:15px;
}

/* ================================== */

@media(max-width:991px){

.service-grid,
.process-grid,
.choose-grid{
grid-template-columns:1fr;
}

.banner-content h1{
font-size:38px;
}

.section-heading h2{
font-size:34px;
}

}

@media(max-width:576px){

.service-banner{
padding:80px 0;
}

.banner-content h1{
font-size:30px;
}

.banner-content p{
font-size:16px;
}

.section-heading h2{
font-size:28px;
}

.service-card{
padding:25px;
}

}