:root {
    --jw-blue: #0b4fa3;
    --jw-orange: #f47b20;
    --dark: #111;
    --gray: #666;
    --light: #f7f9fc;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    background: #fff;
    line-height: 1.7;
}

/* ================= HERO ================= */
.services-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 700;
}

.services-hero p {
    max-width: 850px;
    margin: 20px auto 40px;
    font-size: 1.1rem;
    color: #0b2260;
}

.hero-actions a {
    display: inline-block;
    padding: 14px 34px;
    margin: 8px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
}

.btn-primary {
    background: var(--jw-orange);
    color: #0b2260;
}

.btn-primary:hover {
    background:#0b2260;
    color: #f47b20;
}

.btn-outline {
    border: 2px solid #0b2260;
    color: #f47b20;
}

.btn-outline:hover{
    border: 2px solid #f47b20;
    color: #0b2260;
}

/* ================= SECTIONS ================= */
.section {
    padding: 90px 5%;
}

.section.light {
    background: var(--light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.section-header span {
    color: var(--jw-orange);
    font-weight: 600;
}

/* ================= SERVICE GRID ================= */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 12px 30px #0b2260;
    transition: transform .3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
}

.service-card svg {
    width: 50px;
    height: 50px;
    fill: var(--jw-orange);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.service-card p {
    color: var(--gray);
}

/* ================= SPLIT SECTIONS ================= */
.split {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
}

.split img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px #0b2260;
}

.split h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.split p {
    color: var(--gray);
    margin-bottom: 20px;
}

.split ul {
    padding-left: 20px;
}

.split li {
    margin-bottom: 8px;
}

/* ================= FEATURED PROJECTS ================= */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.project-box {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.project-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.project-box:hover img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

/* ================= CTA ================= */
.cta {
    background: linear-gradient(135deg, var(--jw-blue), #082c5a);
    color: #fff;
    text-align: center;
    padding: 90px 5%;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta a {
    background: var(--jw-orange);
    color: #fff;
    padding: 15px 40px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .split {
        grid-template-columns: 1fr;
    }
}