/* Apply Poppins to body and headings */
body,
h1,
h2,
h3,
h4,
h5,
h6,
.card,
.card-body,
.card-title,
.navmenu a {
    font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, sans-serif;
}
/* Card hover effect */
.card-hover {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    will-change: transform;
}
.card-hover:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 30px 30px rgba(0, 0, 0, 0.12);
}
