* { box-sizing: border-box; }
body { margin: 0; }

@keyframes fadeup {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fadeup {
  animation: fadeup 0.6s ease both;
}

::selection { background: #A7D2F0; color: #2E6DA4; }

/* Smooth scrollbar in blue tone */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #E8F4FB; }
::-webkit-scrollbar-thumb { background: #A7D2F0; border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: #5B9BD5; }

input, textarea { font-family: 'Vazirmatn', Tahoma, sans-serif; }