/*=========================================================
SERVICES OVERVIEW
=========================================================*/

.services-overview{

    padding:120px 0;

    background:#F8FAFC;

}

.service-link{

    text-decoration:none;

}

.service-overview-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.service-overview-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 60px rgba(0,0,0,.15);

}

.service-overview-card img{

    width:100%;

    height:240px;

    object-fit:cover;

    transition:.5s;

}

.service-overview-card:hover img{

    transform:scale(1.08);

}

.service-content{

    padding:30px;

}

.service-content h4{

    color:var(--secondary);

    font-weight:700;

    margin-bottom:15px;

}

.service-content p{

    color:#666;

    line-height:1.8;

    margin-bottom:25px;

}

.service-content span{

    color:var(--primary);

    font-weight:700;

}

.service-content span i{

    margin-left:8px;

    transition:.3s;

}

.service-overview-card:hover span i{

    margin-left:14px;

}

/*=========================================================
SERVICE CTA
=========================================================*/

.service-cta{

    background:linear-gradient(135deg,var(--primary),var(--secondary));

}

.service-cta .service-content h4,
.service-cta .service-content p,
.service-cta .service-content span{

    color:#fff;

}

.service-cta img{

    opacity:.9;

}

/*=========================================================
SERVICE DETAIL
=========================================================*/

.service-detail{

    padding:120px 0;

}

.service-detail:nth-child(even){

    background:#F8FAFC;

}

.service-image img{

    width:100%;

    border-radius:24px;

    display:block;

    box-shadow:0 20px 50px rgba(0,0,0,.12);

}

.service-list{

    margin:35px 0;

    padding:0;

    list-style:none;

}

.service-list li{

    margin-bottom:18px;

    display:flex;

    align-items:center;

    gap:12px;

    font-weight:500;

}

.service-list i{

    color:var(--primary);

    font-size:20px;

}

/*=========================================================
SERVICE ICON
=========================================================*/

.service-icon{

    width:80px;

    height:80px;

    border-radius:50%;

    background:linear-gradient(135deg,var(--primary),var(--secondary));

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:34px;

    margin-bottom:25px;

    box-shadow:0 15px 35px rgba(14,78,166,.30);

}

/*=========================================================
PROCESSUS
=========================================================*/

.process-section{

    padding:120px 0;

    background:#F7F9FC;

}

.process-card{

    position:relative;

    background:#fff;

    border-radius:20px;

    padding:45px 30px;

    text-align:center;

    height:100%;

    box-shadow:0 15px 45px rgba(0,0,0,.08);

    transition:.35s;

}

.process-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(0,0,0,.15);

}

.process-number{

    position:absolute;

    top:20px;

    right:20px;

    font-size:42px;

    font-weight:800;

    color:rgba(14,78,166,.08);

}

.process-icon{

    width:90px;

    height:90px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:linear-gradient(135deg,var(--primary),var(--secondary));

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:36px;

}

.process-card h4{

    margin-bottom:18px;

    color:var(--secondary);

    font-weight:700;

}

.process-card p{

    color:#666;

    line-height:1.8;

}

/*=========================================================
CTA FINAL
=========================================================*/

.services-cta{

    position:relative;

    padding:140px 0;

    background:url("../images/services/service-cta.jpg") center center;

    background-size:cover;

    background-attachment:fixed;

    overflow:hidden;

}

.cta-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        135deg,
        rgba(10,47,107,.92),
        rgba(14,78,166,.82)
    );

}

.cta-content{

    position:relative;

    z-index:2;

}

.badge-light{

    background:rgba(255,255,255,.15);

    color:#fff;

    border:1px solid rgba(255,255,255,.25);

}

.cta-content h2{

    color:#fff;

    font-size:52px;

    font-weight:800;

    line-height:1.25;

    margin:30px 0;

}

.cta-content p{

    color:rgba(255,255,255,.92);

    font-size:18px;

    line-height:1.9;

    margin-bottom:45px;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.btn-light-custom{

    background:#fff;

    color:var(--primary);

    padding:16px 36px;

    border-radius:60px;

    font-weight:700;

    transition:.35s;

    text-decoration:none;

}

.btn-light-custom:hover{

    transform:translateY(-5px);

    color:var(--primary);

}

.btn-outline-light-custom{

    border:2px solid #fff;

    color:#fff;

    padding:16px 36px;

    border-radius:60px;

    font-weight:700;

    transition:.35s;

    text-decoration:none;

}

.btn-outline-light-custom:hover{

    background:#fff;

    color:var(--primary);

}