    .float {
        position: fixed;
        width: 60px;
        height: 60px;
        bottom: 40px;
        right: 40px;
        background-color: #25d366;
        color: #FFF;
        border-radius: 50px;
        text-align: center;
        font-size: 30px;
        box-shadow: 2px 2px 3px #999;
        z-index: 1000;
        animation: pulseScale 2s ease-in-out infinite;
    }

    .my-float {
        margin-top: 16px;
    }


    @keyframes pulseScale {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.15);
        }

        100% {
            transform: scale(1);
        }
    }


    .go-to-top {
  position: fixed;
  bottom: 110px;
  right: 40px;
  width: 50px;
  height: 50px;
  background-color: #e3342f;
  color: white;
  font-size: 20px;
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  cursor: pointer;
  z-index: 1000;
  display: none;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.go-to-top:hover {
  transform: scale(1.1);
}