/* office_cleaning.css */

/* Image container with fixed aspect ratio */
.image-container {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    overflow: hidden;
    border-radius: 0.75rem;
    transition: transform 0.3s ease;
}

.image-container:hover {
    transform: translateY(-5px);
}

.gallery-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-container:hover .gallery-img {
    transform: scale(1.05);
}

/* Image overlay effect */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 123, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 0.75rem;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content i {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* Text gradient effect */
.text-gradient {
    background: linear-gradient(45deg, #007bff, #6610f2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Service card styling */
.service-card {
    background: linear-gradient(to bottom right, #ffffff, #f8f9fa);
    border: none;
}

/* Feature highlight box */
.feature-highlight {
    background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
    border-left: 4px solid #007bff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .image-container {
        padding-bottom: 70%;
    }
}
