/* Custom animations and background patterns */
.pattern-dots {
    background-image: radial-gradient(#3b82f6 1px, transparent 1px);
    background-size: 20px 20px;
}

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

/* Form inputs focus styles */
input:focus, textarea:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9; 
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8; 
}
