.scroll-progress-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  cursor: pointer;
}

.scroll-progress-circle {
  position: relative;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.progress-circle-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.3);
}

.progress-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(#333 0%, transparent 0%);
  transition: all 0.1s ease;
}

.scroll-arrow {
  position: relative;
  z-index: 2;
  color: white;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.scroll-arrow i {
  transition: transform 0.3s ease;
}

.scroll-arrow.down i {
  transform: rotate(180deg);
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.scroll-progress-circle:hover .scroll-arrow {
  animation: bounce 1s infinite;
}
