::-webkit-scrollbar {
  width: 0;
  height: 0;
}

html {
  scrollbar-width: none;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #ffffff;
}

/* Hide scrollbar for Webkit (Chrome, Safari) */
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for Firefox */
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.hero-slide-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.swiper {
  width: 100%;
  height: 550px;
}

@media (max-width: 768px) {
  .swiper {
    height: 500px;
  }

  .hero-slide-bg {
    min-height: 400px;
  }
}

@media (max-width: 480px) {
  .swiper {
    height: 450px;
  }

  .hero-slide-bg {
    min-height: 350px;
  }
}

/* Mobile menu dropdown positioning */
#mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  z-index: 40;
}

main {
  margin-top: 0;
}

.swiper-pagination-bullet-active {
  width: 20px;
  border-radius: 9rem;
}

.swiper-button-next,
.swiper-button-prev {
  background-color: #facc15;
  color: #3b82f6;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 6px rgba(56, 56, 56, 0.1);
}

.swiper-navigation-icon {
  width: 10px !important;
  height: auto;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: #d4b126;
}

/* Offer section specific styles */
.offerSwiper {
  width: 100%;
  height: 400px; /* Adjust height as needed */
  border-radius: 12px;
  overflow: hidden;
}

.offer-slide img {
  width: 100%;
  height: 100%;
  display: block;
}

/* Responsive height adjustments */
@media (max-width: 768px) {
  .offerSwiper {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .offerSwiper {
    height: 250px;
  }
}
#services,
#pricing {
  scroll-margin-top: 2.5rem; /* adjust to header height */
}

/* Custom pagination for offer section */
.offer-swiper-pagination .swiper-pagination-bullet {
  background-color: #3b82f6;
  opacity: 0.5;
  width: 10px;
  height: 10px;
}

.offer-swiper-pagination .swiper-pagination-bullet-active {
  background-color: #3b82f6;
  opacity: 1;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-160px * 6)); /* 6 items * (32 width + 8 gap) */
  }
}

.animate-scroll {
  animation: scroll 30s linear infinite;
}

.brands-scroll-container:hover .animate-scroll {
  animation-play-state: paused;
}

.brand-item:hover {
  transform: scale(1.05);
  border-color: #3b82f6;
}
