/* Custom Styles */
.transition-all {
    transition: all 0.3s ease;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Custom Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fadeIn {
    animation: fadeIn 0.5s ease-in;
}

/* Custom Hover Effects */
.hover-transform {
    transition: transform 0.3s ease;
}

.hover-transform:hover {
    transform: translateY(-2px);
}

/* Custom Shadows */
.custom-shadow {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 
                0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.custom-shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 
                0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Gradient Backgrounds */
.bg-gradient-primary {
    background: linear-gradient(135deg, #4f46e5 0%, #3b82f6 100%);
}

/* Custom Button Styles */
.btn-primary {
    @apply bg-indigo-600 hover:bg-indigo-700 text-white font-semibold py-2 px-4 rounded-lg 
    transition-all duration-300 ease-in-out transform hover:-translate-y-0.5;
}

.btn-secondary {
    @apply bg-gray-600 hover:bg-gray-700 text-white font-semibold py-2 px-4 rounded-lg 
    transition-all duration-300 ease-in-out transform hover:-translate-y-0.5;
}