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

/* Ensure smooth transitions for all interactive elements */
a, button, input, select, textarea, .transition-all {
    transition: all 0.3s ease-in-out;
}

/* Page Load Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Custom AOS Overrides for even smoother feel */
[data-aos] {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Modern hover effects for cards */
.premium-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

/* Custom Scrollbar for a premium look */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #1e3a8a; /* brand-blue */
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3b82f6; /* brand-accent */
}
