
.card-scale {
    transition: all 0.3s ease;
}

.card-scale:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.card-scale .card-body a.cta-arrow {
    color: rgb(95, 95, 95) !important;
    transition: all 0.3s ease;
}

.card-scale:hover .card-body a.cta-arrow {
    transform: translateX(1rem);
}

.card-jump {
    transition: all 0.3s ease;
}

.card-jump:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}