.hero-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.4); /* default (inactive) */
  opacity: 1; /* keep them fully visible */
  margin: 0 6px !important;
}

/* Active bullet = yellow */
.hero-pagination .swiper-pagination-bullet-active {
  background: #facc15; /* Tailwind yellow-400 */
  box-shadow: 0 0 0 2px rgba(116, 116, 116, 0.25);
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

/* Header scroll styles */
#site-header {
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

#site-header.scrolled {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Menu item colors (desktop) */
#site-header:not(.scrolled) .nav-link {
  color: #f9fafb;
}

#site-header.scrolled .nav-link {
  color: #0f172a;
}

#site-header:not(.scrolled) .nav-link:hover {
  color: #e5e7eb;
}

#site-header.scrolled .nav-link:hover {
  color: #ff1720;
}

/* Agent Login button behavior */
#site-header:not(.scrolled) .nav-login {
  border-color: #f9fafb;
  color: #f9fafb;
  background-color: transparent;
}

#site-header.scrolled .nav-login {
  border-color: #ff1720;
  color: #ff1720;
  background-color: transparent;
}

#site-header.scrolled .nav-login:hover {
  background-color: #ff1720;
  color: #ffffff;
}

/* Mobile hamburger icon */
#site-header:not(.scrolled) .nav-icon {
  border-color: #e5e7eb;
  background-color: transparent;
  color: #f9fafb;
}

#site-header.scrolled .nav-icon {
  border-color: #d1d5db;
  background-color: #ffffff;
  color: #0f172a;
}
.nav-link {
  padding-bottom: 0.4rem;
  border-bottom: 2px solid transparent;
  color: #020617 !important; /* slate-950-ish / black */
  transition: color 150ms ease, border-color 150ms ease;
}

.nav-link:hover {
  color: #111827 !important; /* slightly darker on hover */
}

/* Active tab-style link on desktop */
.nav-link-active {
  border-bottom-color: #ff1720; /* accent red */
  color: #ff1720; /* red text */
  font-weight: 600;
}
.service-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(148, 163, 184, 0.7); /* slate-400 */
  background-color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0f172a; /* slate-900 */
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12); /* soft shadow */
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease,
    background-color 150ms ease;
}

.service-nav:hover {
  background-color: #f8fafc; /* slate-50 */
  transform: translateY(-50%) translateY(-1px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
}

.service-prev {
  left: -0.75rem;
}

.service-next {
  right: -0.75rem;
}

/* Hide arrows on very small screens if you want only swipe there */
@media (max-width: 640px) {
  .service-prev,
  .service-next {
    display: none;
  }
}
