.services-mini-carousel {
    margin: 20px 20px;
}

.services-carousel-container {
    margin: 20px 0;
}

.service-item {
    padding: 10px;
    text-align: center;
}

.service-link {
    display: flex;
    align-items: center;
    color: inherit;
    transition: transform 0.3s ease;
}

.service-link:hover {
    transform: translateY(-5px);
    text-decoration: none;
    color: inherit;
}

.service-image {
    overflow: hidden;
    border-radius: 8px;
    max-width: 80px;
    max-height: 80px;
    margin-left: 0px;
    margin-right: 20px;
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    max-width: 60px;
    max-height: 60px;
    object-fit: contain;
}

.service-link:hover .service-image img {
    /* transform: scale(1.05); */
}

.service-title h3 {
    margin: 0;
    font-size: 20px;
    color: var(--navy);
    font-weight: 700;
}

.service-link:hover .service-title h3 {
    color: var(--blue);
}

/* Owl Carousel custom styles */
.services-owl-carousel .owl-nav {
    margin-top: 20px;
    text-align: center;
}

.services-owl-carousel .owl-nav button {
    background: #f1f1f1;
    color: #333;
    border: none;
    padding: 10px 15px;
    margin: 0 5px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.services-owl-carousel .owl-nav button:hover {
    background: #0073aa;
    color: #fff;
}


.services-mini-carousel .owl-nav,
.services-mini-carousel .owl-dots{
    display: none !important;
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .service-title h3 {
        font-size: 14px;
    }
    
    .service-image {
        max-width: 60px;
        max-height: 60px;
    }
    
    .service-image img {
        max-width: 60px;
        max-height: 60px;
    }
}