/* Bottom border animation for all service cards */
@keyframes borderSlide {
    from {
        width: 0;
        left: 50%;
    }
    to {
        width: 100%;
        left: 0;
    }
}

.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    height: 3px;
    background-color: #3d8b40;
    width: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease-in-out;
}

.service-card:hover::after {
    width: 100%;
    left: 0;
    transform: translateX(0);
    animation: borderSlide 0.3s ease-in-out forwards;
} 