
#scroll_top {
  display: inline-block;
  background-color: #a9c743;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 50%;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, 
  opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#scroll_top::after {
  font-size: 1em;
  line-height: 50px;
  color: #fff;
}
#scroll_top:hover {
  cursor: pointer;
  background-color: #333;
}
#scroll_top:active {
  background-color: #555;
}
#scroll_top.show {
  opacity: 1;
  visibility: visible;
}
/* Hide the default cursor */
body {
    cursor: none;
}

/* Container for the custom cursor */
.custom-cursor {
    position: fixed; /* Fixed to viewport, not affected by scrolling */
    pointer-events: none; /* So it doesn't block interactions */
    width: 40px;
    height: 40px;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

/* Inner filled circle */
.inner-circle {
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: rgb(169 199 67); /* Fill color */
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Outer border */
.outer-border {
    position: absolute;
    width:40px;
    height:40px;
    border:2px solid rgb(169 199 67); /* Border color */
    border-radius: 50%; /* Makes it a circle */
    top: 0;
    left: 0;
}

/* Pulse animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}



