.card.card-bordered {
    transition: all 0.25s ease-in-out;
    will-change: transform, box-shadow;
}
.card.card-bordered:hover {
    transform: translateY(-4px);
    border-color: #4f46e5;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    z-index: 3;
    background-color: #fafafa;
}
