.services-section {
    background: #f8f9fa;
}

/* CARD */
.service-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* IMAGE */
.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* CONTENT */
.service-content {
    padding: 25px;
}

.service-content h5 {
    font-weight: 600;
    margin-bottom: 20px;
}

/* BUTTON */
.btn-orange {
    background: #ff5a1f !important;
    color: #fff !important;
    padding: 10px 20px !important;
    border-radius: 6px !important;
    transition: 0.3s !important;
}

.btn-orange:hover {
    background: #e04a12 !important;
    color: #fff !important;
}

/* HOVER EFFECT */
.service-card:hover {
    transform: translateY(-10px);
}

/* SECTION */
.split-services {
    padding: 80px 0;
    background: #f8fafc;
}

/* ROW SPACING */
.service-row {
    margin-bottom: 80px;
}

/* IMAGE */
.service-img {
    border-radius: 20px;
    transition: 0.4s;
}

/* TEXT */
.service-row h2 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #0f172a;
}

.service-row p {
    color: #475569;
    font-size: 16px;
    line-height: 1.7;
}

/* LIST */
.service-row ul {
    padding-left: 0;
    list-style: none;
    margin-top: 15px;
}

.service-row ul li {
    margin-bottom: 8px;
    font-size: 15px;
}

/* HOVER EFFECT */
.service-row:hover .service-img {
    transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .service-row {
        text-align: center;
    }
}

/* =========================
   LARGE DEVICES (≤1199px)
========================= */
@media (max-width: 1199px) {


    .services-section h2 {
        font-size: 26px;
        line-height: 1.4;
    }

    .service-content {
        padding: 20px;
    }

    .service-card img {
        height: 200px;
    }
}


/* =========================
   TABLETS (≤991px)
========================= */
@media (max-width: 991px) {


    .services-section h2 {
        font-size: 22px;
    }

    .service-card img {
        height: 180px;
    }

}


/* =========================
   MOBILE (≤768px)
========================= */
@media (max-width: 768px) {


    .services-section h2 {
        font-size: 18px;
    }

    .service-card img {
        height: 200px;
    }

    .service-content h5 {
        font-size: 18px;
    }

    .btn-orange {
        padding: 8px 16px !important;
        font-size: 14px;
    }

}


/* =========================
   SMALL MOBILE (≤576px)
========================= */
@media (max-width: 576px) {

    .company-title {
        font-size: 32px;
    }

    .services-section h2 {
        font-size: 16px;
    }

    .service-content {
        padding: 15px;
    }

    .service-content h5 {
        font-size: 16px;
    }

    .service-card img {
        height: 170px;
    }

}