/* Custom Animations & Utilities */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0; /* Initial state before animation */
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #2C2C2C;
}

::-webkit-scrollbar-thumb {
    background: #E86A54;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #C9503B;
}

/* Input Placeholder Styling */
input::placeholder, textarea::placeholder {
    color: #777;
    opacity: 0.7;
}

/* Date Input styling fix */
input[type="date"] {
    color-scheme: light;
}
