/* Service Slider Improvements */

/* Enhanced hover effects for service slides */
.ht-box-images.style-03 {
    transition: all 0.3s ease;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.ht-box-images.style-03:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(8, 106, 216, 0.15);
}

/* Icon styling improvements */
.ht-box-images.style-03 .box-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    margin-bottom: 15px;
}

.ht-box-images.style-03 .box-image i {
    transition: all 0.3s ease;
    display: block;
}

.ht-box-images.style-03:hover .box-image i {
    transform: scale(1.1);
    color: #074a9a !important;
}

/* Content styling improvements */
.ht-box-images.style-03 .content {
    padding: 20px 15px 15px;
    text-align: center;
}

.ht-box-images.style-03 .heading {
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.ht-box-images.style-03:hover .heading {
    color: #086ad8;
}

.ht-box-images.style-03 .text {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin-top: 8px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.ht-box-images.style-03:hover .text {
    opacity: 1;
    color: #555;
}

/* Mobile optimizations */
@media only screen and (max-width: 767px) {
    .ht-box-images.style-03 {
        margin-bottom: 20px;
    }
    
    .ht-box-images.style-03 .svg-icon {
        width: 50px;
        height: 50px;
    }
    
    .ht-box-images.style-03 .heading {
        font-size: 16px;
    }
    
    .ht-box-images.style-03 .text {
        font-size: 13px;
    }
    
    .ht-box-images.style-03 .content {
        padding: 15px 10px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .ht-box-images.style-03 .svg-icon {
        width: 55px;
        height: 55px;
    }
    
    .ht-box-images.style-03 .heading {
        font-size: 17px;
    }
}

/* Swiper container improvements */
.service-slider__container {
    padding: 20px 0 20px;
}

.service-slider__container .swiper-slide {
    height: auto;
}

/* Swiper pagination improvements */
.swiper-pagination-service {
    position: relative;
    margin-top: 30px;
}

.swiper-pagination-service .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    margin: 0 8px;
    background: #d8d8d8;
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-service .swiper-pagination-bullet-active,
.swiper-pagination-service .swiper-pagination-bullet:hover {
    background: #086ad8;
    transform: scale(1.2);
}

/* Link styling improvements */
.ht-box-images.style-03 a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.ht-box-images.style-03 a:hover {
    text-decoration: none;
    color: inherit;
}

/* Animation improvements */
.ht-box-images.style-03.move-up {
    animation-duration: 0.6s;
    animation-fill-mode: both;
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .ht-box-images.style-03:hover {
        transform: none;
        box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    }
    
    .ht-box-images.style-03:active {
        transform: scale(0.98);
    }
}