
.service-slider .swiper-slide {
    height: auto;
}

.service-card-items {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-items:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-cotent {
    padding: 20px 20px 15px;
}

.service-cotent h3 {
    margin-bottom: 12px;
    font-size: 20px;
    color: #2c3e50;
    line-height: 1.3;
}

.service-cotent h3 a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-cotent h3 a:hover {
    color: #e74c3c;
}

.service-cotent p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 14px;
}

.service-image {
    padding: 0 15px;
    text-align: center;
    flex-shrink: 0;
}

.service-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.service-card-items:hover .service-image img {
    transform: scale(1.03);
}

.service-btn {
    padding: 15px 20px 20px;
}

.link-btn {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.link-btn i {
    margin-left: 6px;
    transition: transform 0.3s ease;
    font-size: 12px;
}

.link-btn:hover {
    color: #c0392b;
}

.link-btn:hover i {
    transform: translateX(4px);
}

/* Swiper navigation styles */
.service-slider .swiper-button-next,
.service-slider .swiper-button-prev {
    color: #fff;
    background: #e74c3c;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-slider .swiper-button-next:after,
.service-slider .swiper-button-prev:after {
    font-size: 16px;
    font-weight: bold;
}

.service-slider .swiper-button-next:hover,
.service-slider .swiper-button-prev:hover {
    background: #c0392b;
}

.service-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ccc;
    opacity: 1;
}

.service-slider .swiper-pagination-bullet-active {
    background: #e74c3c;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .service-cotent {
        padding: 18px 18px 12px;
    }
    
    .service-image {
        padding: 0 15px;
    }
    
    .service-image img {
        height: 160px;
    }
    
    .service-btn {
        padding: 12px 18px 18px;
    }
}

@media (max-width: 767px) {
    .service-cotent h3 {
        font-size: 18px;
    }
    
    .service-cotent p {
        font-size: 13px;
    }
    
    .service-image img {
        height: 140px;
    }
    
    .service-slider .swiper-button-next,
    .service-slider .swiper-button-prev {
        width: 35px;
        height: 35px;
    }
}
