/* style.css */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* You can add more custom styles here */
/* style.css */
/* style.css */

/* Scrollbar styling for project slider */
#project-slider::-webkit-scrollbar {
  height: 10px;
}
#project-slider::-webkit-scrollbar-track {
  background: #1f2937; /* gray-800 */
}
#project-slider::-webkit-scrollbar-thumb {
  background: #3b82f6; /* blue-500 */
  border-radius: 5px;
}

/* Custom smooth scroll for anchor links */
html {
  scroll-behavior: smooth;
}
