@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css");

.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  left: 40px;  /* Change from right: 40px to left: 40px */
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.float:hover {
  transform: scale(1.05); /* Optional hover effect */
}

.my-float {
  color: inherit; /* Inherit color from the .float class */
}
