/* Custom animations and styles */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* Header scroll effects */
.header-scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.header-scrolled .nav-link {
    color: #374151 !important;
}

.header-scrolled #logo-text {
    color: #1e3a8a !important;
}

.header-scrolled #mobile-menu-btn {
    color: #374151 !important;
}

/* Custom hover effects */
.hover-lift:hover {
    transform: translateY(-4px);
}

/* Animation delays */
.animation-delay-2000 {
    animation-delay: 2s;
}

/* Form focus states */
input:focus, textarea:focus, select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Button hover effects */
button:hover, .btn:hover {
    transform: translateY(-1px);
}

/* Card hover effects */
.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Responsive text sizing */
@media (max-width: 640px) {
    .text-5xl {
        font-size: 2.5rem;
    }
    .text-7xl {
        font-size: 3.5rem;
    }
}