/* Button Animation */
.hover-button {
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.hover-button:hover {
    transform: scale(1.05); /* Expands by 5% */
    box-shadow: 0px 8px 15px rgba(0,0,0,0.3) !important;
}

/* Image Card Animation */
.hover-card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hover-card:hover {
    transform: scale(1.03);
    z-index: 10;
}