/* Service Content Image Styling */

.strThumb {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.strThumb img {
    width: 100%;
    max-width: 570px;
    height: 630px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.strThumb img:hover {
    transform: scale(1.02);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .strThumb img {
        max-width: 100%;
        height: 500px;
    }
}

@media (max-width: 767px) {
    .strThumb img {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .strThumb img {
        height: 300px;
    }
}

/* Ensure proper spacing in service content */
.serviceContent .strThumb {
    margin-bottom: 40px;
}
