/* Animated border for service cards (borrowed from home-styles.css) */
.service-card-animated {
    position: relative;
    overflow: hidden;
}
.service-card-animated .stat-border-animation {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 24px;
    background: linear-gradient(45deg, #081B31, #AA8338, #081B31, #AA8338, #081B31);
    background-size: 400% 400%;
    z-index: 1;
    opacity: 1;
    transition: opacity 0.3s ease;
    animation: borderGlow 8s ease infinite;
    pointer-events: none;
}
@keyframes borderGlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
