html {
  scroll-behavior: smooth;
}

/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
body {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

#heroSection {
  background-image: url("/assets/img/background/desktop/background.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#mission {
  background-image: url("/assets/img/background/desktop/mission.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#aboutus {
  background-image: url("/assets/img/background/desktop/aboutUs.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#ssPolicySection {
  background-image: url("/assets/img/background/desktop/security.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.filter-green {
  filter: brightness(0) saturate(100%) invert(67%) sepia(12%) saturate(950%)
    hue-rotate(100deg) brightness(95%) contrast(92%);
}

.filter-white {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%)
    hue-rotate(0deg) brightness(100%) contrast(100%);
}

@keyframes arrowMove {
  0%,
  20%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-0.5rem);
  }
}
.animated-arrow {
  animation: arrowMove 1.5s infinite;
}

/* Scroll-triggered animations */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.scroll-animate.in-view {
  opacity: 1;
  transform: translateY(0);
}

.stagger-child {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.scroll-animate.in-view .stagger-child {
  opacity: 1;
  transform: translateY(0);
}

#mobilePagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
#mobilePagination .page-num {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: #e5e7eb;
  color: #0055ff;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
#mobilePagination .page-num.active {
  background: #0055ff;
  color: #fff;
}
@media (min-width: 768px) {
  #mobilePagination {
    display: none;
  }
}

/* Back to Top Button */
#backToTopBtn {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

#backToTopBtn.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.arrow-list {
  list-style: none;
  padding: 0;
}
.arrow-list li::before {
  content: ">";
  margin-right: 8px;
  color: #333;
  font-weight: bold;
}
