@tailwind base;
@tailwind components;
@tailwind utilities;

/* Custom styles for animations and gradients */
.gradient-bg {
    background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
}
.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.fade-in {
    animation: fadeIn 1s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
} 