.elementor-407 .elementor-element.elementor-element-15b04f3:not(.elementor-motion-effects-element-type-background), .elementor-407 .elementor-element.elementor-element-15b04f3 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-407 .elementor-element.elementor-element-15b04f3{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-407 .elementor-element.elementor-element-15b04f3 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-18a98e3 *//* Entire section background */
.service-section {
    background: #000;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 45px;
}

/* Service row design */
.service-box {
    display: flex;
    align-items: stretch;
    width: 90%;
    margin: auto;
    background: #3d4444;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 0 8px rgba(0,0,0,0.4);
    transition: 0.3s ease;
}

/* PHOTO */
.service-box img {
    width: 50%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* TEXT AREA */
.service-content {
    width: 50%;
    padding: 30px;
    color: #fff;
}

.service-content h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #d4d4d4;
}

/* Hover zoom animation */
.service-box:hover img {
    transform: scale(1.08);
}

/* Center the last row */
.center-row {
    width: 60%;
}

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
    .service-box {
        flex-direction: column;
        width: 95%;
    }

    .service-box img {
        width: 100%;
        height: 220px;
    }

    .service-content {
        width: 100%;
    }

    .center-row {
        width: 95%;
    }
}

@media (max-width: 480px) {
    .service-content h3 {
        font-size: 22px;
    }
    .service-content p {
        font-size: 14px;
    }
}/* End custom CSS */