/* Enhanced Services Images Styles */

/* Make images larger and clearer */
.service-icon {
    margin-bottom: 25px;
    position: relative;
    display: flex;
    justify-content: center;
}

.service-img {
    width: 120px !important;
    height: 120px !important;
    border-radius: 10px !important; /* Square with rounded corners instead of circle */
    object-fit: cover;
    transition: all 0.4s ease;
    border: 3px solid var(--secondary-color) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Add zoom effect on hover */
.service-item:hover .service-img {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Improve service item container for better image presentation */
.service-item {
    padding: 25px 20px 35px !important;
    position: relative;
    overflow: hidden;
}

/* Add subtle gradient background */
.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

/* Add more space around service items */
.services-wrapper {
    gap: 35px !important;
    padding: 10px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .service-img {
        width: 100px !important;
        height: 100px !important;
    }
}

@media (max-width: 767px) {
    .service-img {
        width: 100px !important; 
        height: 100px !important;
    }
    
    .services-wrapper {
        gap: 25px !important;
    }
}