/* Service Gallery Styles */
.service-gallery {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-gallery .swiper {
    width: 100%;
    height: 250px;
}

.service-gallery .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.service-gallery .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-gallery .swiper-slide:hover img {
    transform: scale(1.05);
}

.service-gallery .swiper-pagination {
    bottom: 10px;
}

.service-gallery .swiper-pagination-bullet {
    background: var(--thm-primary);
    opacity: 0.7;
}

.service-gallery .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--thm-primary);
}

/* Make service cards taller to accommodate gallery */
.service-two__single {
    height: auto;
    min-height: 550px;
    display: flex;
    flex-direction: column;
}

.service-two__single-text {
    flex: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-gallery .swiper {
        height: 200px;
    }

    .service-two__single {
        min-height: auto;
    }
}