/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Custom selection color to match your brand */
::selection {
    background-color: #2563eb; /* Blue 600 */
    color: white;
}

/* Subtle fade-in animation for all pages */
body {
    animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}