.messenger-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;  /* Adjust the size here */
  height: 60px;
  background-color: #0084FF;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  z-index: 9999;
}

.messenger-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0,0,0,0.4);
}

.messenger-icon img {
  width: 50px;  /* Adjust icon image size here */
  height: 50px;
}
