/* src/custom.css */

/* Global font family */
* {
  font-family: "Noto Sans Devanagari", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue",
    Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-optical-sizing: auto;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* Parallax stability */
.parallax-bg {
  will-change: transform;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}
@media (prefers-reduced-motion: reduce) {
  .parallax-bg {
    transform: none !important;
  }
}
/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px; /* Width of the scrollbar */
  height: 8px; /* Height of the scrollbar */
}
::-webkit-scrollbar-thumb {
  background-color: #888; /* Color of the scrollbar thumb */
  border-radius: 4px; /* Rounded corners for the scrollbar thumb */
}
::-webkit-scrollbar-thumb:hover {
  background-color: #555; /* Darker color on hover */
}
::-webkit-scrollbar-track {
  background-color: #f1f1f1; /* Color of the scrollbar track */
  border-radius: 4px; /* Rounded corners for the scrollbar track */
}
