.floating-follow-us {
  position: fixed;
  top: 50%;                  /* Middle of the viewport */
  left: 10px;                /* Left side, 10px from the edge */
  transform: translateY(-50%); /* Vertically center the element */
  z-index: 1000;
  display: flex;
  flex-direction: column;    /* Stack icons vertically */
  gap: 10px;                 /* Space between icons */
}

.floating-follow-us a {
  color: white;
  border-radius: 50%;        /* Make the icons round */
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: transform 0.3s ease;
  text-decoration: none;     /* Remove underline */
}

.floating-follow-us a.facebook {
  background-color: #3b5998;
}

.floating-follow-us a.twitter {
  background-color: #1da1f2;
}

.floating-follow-us a.whatsapp {
  background-color: #25d366;
}

.floating-follow-us a.linkedin {
  background-color: #0077b5;
}

.floating-follow-us a.youtube {
  background-color: #ff0000;
}

.floating-follow-us a:hover {
  transform: scale(1.1);     /* Hover effect to make the icons grow slightly */
  text-decoration: none;     /* Ensure no underline on hover */
}
