/*
|--------------------------------------------------------------------------
| VALORABANK
| SERVICES PAGE
|--------------------------------------------------------------------------
*/

.services-hero{
    min-height:70vh;
    background:
    linear-gradient(
        rgba(8,31,77,.85),
        rgba(8,31,77,.75)
    ),
    url('../images/services/services-hero.jpg');

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;
}

.services-hero h1{
    color:#fff;
    font-size:4rem;
    font-weight:800;
}

.services-hero p{
    color:#e5e7eb;
    font-size:1.15rem;
    line-height:2;
}

.services-section{
    padding:110px 0;
}

.service-box{

    background:#fff;

    border-radius:30px;

    padding:40px;

    height:100%;

    transition:.4s;

    box-shadow:
    0 15px 40px rgba(0,0,0,.06);

}

.service-box:hover{

    transform:translateY(-12px);

    box-shadow:
    0 30px 70px rgba(0,0,0,.10);

}

.service-icon{

    width:90px;
    height:90px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:25px;

    background:
    linear-gradient(
        135deg,
        #081F4D,
        #103A8C
    );

    color:#FFD447;

    font-size:34px;

}

.service-box h3{

    color:#081F4D;
    font-weight:700;
    margin-bottom:20px;

}

.service-box p{

    color:#64748B;
    line-height:1.9;

}

.feature-item{

    display:flex;

    gap:15px;

    margin-bottom:20px;

}

.feature-item i{

    color:#FFD447;
    margin-top:5px;

}

.glass-card{

    background:
    rgba(255,255,255,.15);

    backdrop-filter:blur(12px);

    border:
    1px solid rgba(255,255,255,.2);

    border-radius:30px;

    padding:40px;

}

.process-card{

    text-align:center;

    background:#fff;

    border-radius:25px;

    padding:40px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.06);

}

.process-number{

    width:70px;
    height:70px;

    border-radius:50%;

    margin:auto auto 20px;

    background:
    linear-gradient(
        135deg,
        #FFD447,
        #FFB56A
    );

    display:flex;

    align-items:center;
    justify-content:center;

    font-weight:800;

    color:#081F4D;

    font-size:24px;

}

.compare-card{

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    box-shadow:
    0 15px 40px rgba(0,0,0,.06);

}

.compare-header{

    background:
    linear-gradient(
        135deg,
        #081F4D,
        #103A8C
    );

    color:#fff;

    padding:25px;

    text-align:center;

}

.compare-body{

    padding:35px;

}

.compare-body ul{

    list-style:none;
    padding:0;

}

.compare-body li{

    padding:10px 0;

    border-bottom:
    1px solid #eee;

}

.compare-body i{

    color:#16a34a;

    margin-right:10px;

}

.cta-services{

    background:
    linear-gradient(
        135deg,
        #081F4D,
        #103A8C
    );

    color:#fff;

    border-radius:35px;

    padding:80px 40px;

    text-align:center;

}

.cta-services h2{

    font-size:3rem;
    font-weight:800;

}

@media(max-width:991px){

    .services-hero h1{

        font-size:3rem;

    }

}

@media(max-width:576px){

    .services-hero{

        min-height:60vh;

    }

    .services-hero h1{

        font-size:2.3rem;

    }

    .cta-services h2{

        font-size:2rem;

    }

}