/* Scroll-down button (bottom arrow) */ */

.hero-section {
  position: relative;
  /* other styles */
}

.scroll-down {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
    /* color: #21A373;  */
  font-size: 2rem;
  animation: bounce 2s infinite;
  cursor: pointer;
  z-index: 1050; /* above navbar */
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.scroll-down:hover {
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.scroll-down i {
  transform: rotate(135deg); /* Pointing down */
}



/* Scroll-to-top button (green location arrow) */
.btn-scroll-top {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 40px;
  right: 30px;
  z-index: 1050;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 2rem;
  color: #21A373; /* Lighter green */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  /* border-radius: 50%; */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-scroll-top:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.btn-scroll-top i {
  transform: rotate(-45deg);
  transition: transform 0.3s ease;
}



