/* ====================================
   Services Hero
==================================== */

.services-hero{
    background:#214f99;
    color:#fff;
    text-align:center;
    padding:140px 0;
}

.services-hero h1{
    font-size:60px;
    font-weight:800;
    margin:20px 0;
    line-height:1.2;
}

.services-hero p{
    max-width:800px;
    margin:auto;
    font-size:20px;
    line-height:1.8;
}

/* ====================================
   Layout
==================================== */

.services-content{
    padding:120px 0;
}

.services-layout{
    display:grid;
    grid-template-columns:280px 1fr;
    gap:50px;
    align-items:start;
}

.left-sidebar{
    position:sticky;
    top:120px;
}

/* ====================================
   Sidebar
==================================== */

.company-sidebar{
    width:100%;
}

.sidebar-widget{
    background:#fff;
    border-radius:16px;
    padding:25px;
    margin-bottom:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.sidebar-widget h3{
    margin-bottom:20px;
    color:#214f99;
}

.sidebar-widget ul{
    list-style:none;
    padding:0;
    margin:0;
}

.sidebar-widget li{
    margin-bottom:12px;
}

.sidebar-widget a{
    display:block;
    padding:10px 15px;
    border-radius:8px;
    text-decoration:none;
    color:#333;
    transition:.3s;
}

.sidebar-widget a:hover{
    background:#214f99;
    color:#fff;
}

.sidebar-btn{
    display:block;
    text-align:center;
    background:#214f99;
    color:#fff !important;
    padding:14px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
}

/* ====================================
   Services Main
==================================== */

.services-main{
    width:100%;
}

.service-block{
    background:#fff;
    border-radius:20px;
    padding:40px;
    margin-bottom:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    border-left:5px solid #214f99;
    transition:.3s;
}

.service-block:hover{
    transform:translateY(-6px);
}

.service-icon{
    width:80px;
    height:80px;
    background:#214f99;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    margin-bottom:20px;
}

.service-block h2{
    font-size:32px;
    margin-bottom:15px;
}

.service-block p{
    color:#666;
    line-height:1.8;
    margin:0;
}

/* ====================================
   Industries
==================================== */

.industries-served{
    background:#f8f9fa;
    padding:120px 0;
}

.section-title{
    text-align:center;
    font-size:46px;
    margin-bottom:50px;
}

.industry-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.industry-card{
    background:#fff;
    color:#222;
    padding:15px;
    text-align:center;
    border-radius:16px;
    font-weight:600;
    font-size:22px;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
    transition:.3s;
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:140px;
}

.industry-card:hover{
    background:#5e832a;
    color:#fff;
    transform:translateY(-5px);
}

/* ====================================
   CTA
==================================== */

.services-cta{
    background:#214f99;
    color:#fff;
    text-align:center;
    padding:120px 0;
}

.services-cta h2{
    font-size:48px;
    margin-bottom:20px;
}

.services-cta p{
    font-size:20px;
    margin-bottom:30px;
}

.primary-btn{
    display:inline-block;
    background:#fff;
    color:#214f99;
    padding:15px 35px;
    border-radius:8px;
    text-decoration:none;
    font-weight:700;
}

/* ====================================
   Responsive
==================================== */

@media(max-width:991px){

    .services-layout{
        grid-template-columns:1fr;
    }

    .left-sidebar{
        position:relative;
        top:auto;
    }

    .industry-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .services-hero h1{
        font-size:40px;
    }

    .service-block{
        padding:30px;
    }

    .service-block h2{
        font-size:26px;
    }

    .industry-grid{
        grid-template-columns:1fr;
    }

    .services-cta h2{
        font-size:34px;
    }

}