.floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
  }
  
  .floating-button a {
    display: block;
    width: 60px;
    height: 60px;
    background-color: #0b80d0;
    opacity:0.9;
    color: #fff;
    text-align: center;
    line-height: 60px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
  }
  
  .floating-button a:hover {
    background-color: #0b80d0;
  }
  /* New floating button */
.second-floating-button {
  position: fixed;
  bottom: 90px; 
  right: 20px;
  z-index: 9999;
}

.second-floating-button a {
  display: block;
  width: 60px;
  height: 60px;
  background-color: #0b80d0; 
  background-image: url(https://www.computer-talk.com/images/default-source/icons/connect-chat.svg);
  background-size: 33px;
  background-repeat: no-repeat;
  background-position: 50%;
  opacity: 0.9;
  color: #fff;
  text-align: center;
  line-height: 60px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.second-floating-button a:hover {
  background-color: #0b80d0; 
}