
/* Custom styles that extend Tailwind */
.step-card {
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

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

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

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

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Form elements */
input:focus, textarea:focus {
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pathway-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}