/* commercial.css */

/* Image container and overlay */
.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
}

.gallery-img {
    width: 100%;
    height: 250px; /* fixed height for uniform images */
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.feature-highlight {
    background-color: #f8f9fa;
}

.service-card h3 {
    font-weight: 600;
}

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