/* ==========================================================
   SERVICES
========================================================== */

.services-home{

    background:var(--light);

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.service-card{

    background:#fff;

    border-radius:20px;

    padding:45px 35px;

    text-align:center;

    transition:.4s;

    box-shadow:var(--shadow-sm);

}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:var(--shadow-lg);

}

.service-icon{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    background:#EAF3FF;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:25px;

}

.service-icon i{

    font-size:36px;

    color:var(--primary);

}

.service-card h3{

    font-size:26px;

    color:var(--navy);

    margin-bottom:18px;

}

.service-card p{

    color:var(--gray);

    line-height:1.8;

}
/* ==========================================================
   SERVICES HERO
========================================================== */

.page-hero{

    position: relative;

    padding: 140px 0 100px;

    text-align: center;

    background: linear-gradient(135deg,#07264d,#0b4ea2);

    color: #fff;

    overflow: hidden;

}

/* Decorative Circle */

.page-hero::before{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    top:-200px;
    right:-150px;

    border-radius:50%;

    background:rgba(255,255,255,.06);

}

.page-hero .container{

    position:relative;

    z-index:2;

}

.page-subtitle{

    display:inline-block;

    padding:10px 22px;

    border-radius:50px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(10px);

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:25px;

}

.page-hero h1{

    font-size:54px;

    font-weight:700;

    margin-bottom:25px;

    line-height:1.2;

}

.page-hero p{

    max-width:760px;

    margin:0 auto;

    font-size:18px;

    line-height:1.9;

    color:rgba(255,255,255,.9);

}
@media(max-width:992px){

.page-hero{

    padding:120px 0 80px;

}

.page-hero h1{

    font-size:42px;

}

}

@media(max-width:768px){

.page-hero{

    padding:100px 0 70px;

}

.page-hero h1{

    font-size:34px;

}

.page-hero p{

    font-size:16px;

}

.page-subtitle{

    font-size:12px;

}

}