/* Custom styles for jhakkas look */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

.animate-fade-in {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Enhanced button styling */
button, a.bg-blue-600 {
    transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover, a.bg-blue-600:hover {
    transform: scale(1.05);
}