
.hmd-social-container {
  position: fixed;
  top: 40%;
  left: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 5px;
}
.hmd-social-container a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}
.hmd-social-container a:hover {
  transform: scale(1.1);
}
.hmd-social-container img {
  width: 60%;
  height: auto;
}
