* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  background-color: #ffffff;
  color: #4c4c4c;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
}

.header .nav-links li a:hover,
.header .nav-links li a:active {
  color: #f2a548;
}

.slider-container {
  overflow: hidden;
}
.slider {
  width: 100%;
  touch-action: pan-y;
}
.slide-track {
  display: flex;
  width: calc(300px * 6);
  transition: transform 0.5s ease;
}
.slide {
  min-width: 300px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1024px) {
  .slide-track {
    width: calc(100% * 6);
  }
  .slide {
    min-width: 100%;
  }
  .slider-container {
    max-width: 100%;
  }
}
@media (min-width: 1025px) {
  .slider-container {
    max-width: 900px;
  }
  .slide-track {
    width: calc(300px * 6);
  }
  .slide {
    min-width: 300px;
  }
}

/* scollbar */

.custom-scrollbar {
  overflow-y: auto;
}

.custom-scrollbar::-webkit-scrollbar {
  width: 2px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: #a45f0b; /* Match the div background */
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #a45f0b; /* A contrasting but related color (like your accent) */
  border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #f7b954; /* Lighter on hover */
}

/* For Firefox */
.custom-scrollbar {
  scrollbar-width: thin;
  scrollbar-color: #f2a54866 #a45f0b;
}
