/* =================================
   SERVICES PAGE
================================= */


/* Hero */

.services-hero{

    padding:120px 20px 70px;

    background:
    radial-gradient(
        circle at top right,
        rgba(13,110,253,.12),
        transparent 35%
    ),
    linear-gradient(
        135deg,
        #ffffff,
        #eef6ff
    );

}


.services-container{

    max-width:1200px;

    margin:auto;

}



.services-hero .services-container{

    display:grid;

    grid-template-columns:1fr 450px;

    gap:50px;

    align-items:center;

}



.services-content h1{

    font-size:42px;

    color:#003b73;

    margin-bottom:15px;

}



.services-content h2{

    font-size:28px;

    color:#0d6efd;

    margin-bottom:20px;

}



.services-content p{

    font-size:17px;

    color:#4b5563;

    line-height:2;

}



.services-image img{

    width:100%;

    border-radius:25px;

    box-shadow:0 20px 45px rgba(0,87,184,.18);

}




/* Main Button */


.services-btn{

    display:inline-block;

    margin-top:25px;

    background:#ff7a00;

    color:#fff;

    padding:12px 35px;

    border-radius:30px;

    font-weight:bold;

    transition:.3s;

}



.services-btn:hover{

    transform:translateY(-3px);

}





/* =================================
   SERVICES CARDS
================================= */


.services-list{

    padding:80px 20px;

}



.services-list h2{

    text-align:center;

    color:#0057B8;

    font-size:32px;

    margin-bottom:40px;

}



.services-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}



.service-card{

    background:#fff;

    padding:30px 20px;

    border-radius:22px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    border:1px solid #edf2f7;

    transition:.3s;

}



.service-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,87,184,.15);

}



.service-icon{

    width:70px;

    height:70px;

    margin:0 auto 20px;

    background:#eef6ff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

}



.service-icon img{

    width:45px;

    height:45px;

    object-fit:contain;

}



.service-card h3{

    color:#0057B8;

    margin-bottom:12px;

}



.service-card p{

    color:#6b7280;

    font-size:14px;

}





/* =================================
   PROCESS
================================= */


.service-process{

    background:#f5f8fc;

    padding:80px 20px;

}



.service-process h2{

    text-align:center;

    color:#0057B8;

    font-size:32px;

    margin-bottom:40px;

}



.process-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}



.process-grid > div{

    background:#fff;

    text-align:center;

    padding:30px 20px;

    border-radius:20px;

    box-shadow:0 10px 25px rgba(0,0,0,.07);

}



.process-grid span{

    display:flex;

    width:55px;

    height:55px;

    margin:0 auto 15px;

    background:#0d6efd;

    color:#fff;

    border-radius:50%;

    justify-content:center;

    align-items:center;

    font-size:24px;

    font-weight:bold;

}



.process-grid h3{

    color:#0057B8;

}



.process-grid p{

    color:#6b7280;

    font-size:14px;

}





/* =================================
   CTA
================================= */


.services-cta{

    margin:70px 20px;

    padding:45px;

    background:
    linear-gradient(
        135deg,
        #0B2E59,
        #0d6efd
    );

    border-radius:25px;

    text-align:center;

    color:#fff;

}



.services-cta h2{

    color:#fff;

    margin-bottom:20px;

}



.services-cta a{

    display:inline-block;

    background:#ff7a00;

    color:#fff;

    padding:12px 35px;

    border-radius:30px;

}





/* =================================
   MOBILE
================================= */


@media(max-width:900px){


.services-hero{

    padding:90px 15px 40px;

}



.services-hero .services-container{

    display:flex;

    flex-direction:column;

    gap:30px;

}



.services-image{

    order:-1;

}



.services-content{

    text-align:center;

}



.services-content h1{

    font-size:30px;

}



.services-content h2{

    font-size:22px;

}



.services-content p{

    font-size:15px;

}



.services-btn{

    width:100%;

    text-align:center;

}



.services-list{

    padding:50px 15px;

}



.services-list h2{

    font-size:26px;

}



.services-grid{

    grid-template-columns:1fr;

}



.service-card{

    padding:25px 20px;

}



.service-process{

    padding:50px 15px;

}



.process-grid{

    grid-template-columns:1fr;

}



.services-cta{

    margin:40px 15px;

    padding:30px 20px;

}



.services-cta h2{

    font-size:22px;

}


}

body{
background:red !important;
}