body {
  font-family: 'Cairo', 'Inter', sans-serif;
  scroll-behavior: smooth;
}

.bg-custom-primary {
  background-color: #1a1a1a;
}

.text-custom-primary {
  color: #1a1a1a;
}

.border-custom-primary {
  border-color: #1a1a1a;
}

/* Custom Scrollbar Styles */
/* Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #1a1a1a;
  border-radius: 10px;
  border: 2px solid #f1f5f9;
}

::-webkit-scrollbar-thumb:hover {
  background: #2d2d2d;
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #1a1a1a #f1f5f9;
}