
.zigzag-services{
    padding:25px 0;
    background:#f5f7fb;
}


.section-title{
    text-align:center;
    margin-bottom:33px;
}

.section-title h2{
    font-size:44px;
    color:#0f172a;
    margin-bottom:15px;
}

.section-title p{
    max-width:1000px;
    margin:auto;
    color:#64748b;
    line-height:28px;
}

.service-box{
    display:flex;
    align-items:center;
    gap:28px;
    margin-bottom:48px;
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);
    transition:0.4s;
}

.service-box:hover{
    transform:translateY(-8px);
}

.service-box.reverse{
    flex-direction:row-reverse;
}

.service-image{
    width:50%;
    overflow:hidden;
}

.service-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s;
}

.service-box:hover .service-image img{
    transform:scale(1.08);
}

.service-content{
    width:50%;
    padding:13px;
}

.service-content span{
    display:inline-block;
    width:60px;
    height:60px;
    line-height:60px;
    text-align:center;
    background:linear-gradient(135deg,#2563eb,#06b6d4);
    color:#fff;
    border-radius:50%;
    font-size:22px;
    font-weight:bold;
    margin-bottom:20px;
}

.service-content h3{
    font-size:32px;
    color:#393a3a;
    margin-bottom:20px;
    font-weight: 600 !important;
}

.service-content p{
    color:#64748b;
    line-height:30px;
    margin-bottom:30px;
}

.service-btn{
    display:inline-block;
    padding:14px 30px;
    background:linear-gradient(135deg, #fe6100, #b24d0f);
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    transition:0.4s;
    font-weight:600;
}

.service-btn:hover{
    background:#0f172a;
}

/* =========================
   RESPONSIVE CSS
========================= */

@media(max-width:991px){

    .service-box,
    .service-box.reverse{
        flex-direction:column;
    }

    .service-image,
    .service-content{
        width:100%;
    }

    .service-content{
        padding:35px;
    }

    .section-title h2{
        font-size:34px;
    }

    .service-content h3{
        font-size:26px;
    }
}

@media(max-width:576px){

    .zigzag-services{
        padding:70px 0;
    }

    .service-content{
        padding:25px;
    }

    .service-content h3{
        font-size:22px;
    }
}
