/* Service Hover Overlay Styles - Add to your existing main.css */

.service-link {
    position: relative;
    display: block;
}

/*.service-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 1.5rem;
}*/

.service-link:hover .service-hover-overlay {
    opacity: 1;
}

.service-hover-overlay .service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: white;
    text-align: left;
}

.service-hover-overlay .service-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
    line-height: 1.4;
}

.service-hover-overlay .service-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a919e;
    font-weight: bold;
}

/* Center the bottom two service cards - IDENTICAL size to top cards */
.services-grid-bottom {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 66.666%;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive adjustments for bottom cards */
@media (max-width: 768px) {
    .services-grid-bottom {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}
