/* Floating Social Icons - Left Side */
.social-floating {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 1000;
}

.social-floating a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  margin: 5px 0;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 0 5px 5px 0;
}

/* Brand Colors */
.facebook { background: #3b5998; }
.twitter { background: #1da1f2; }
.instagram { background: #e4405f; }
.linkedin { background: #0077b5; }
.youtube { background: #ff0000; }

/* Hover Effect */
.social-floating a:hover {
  width: 60px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

/* Optional: Mobile Responsive */
@media (max-width: 768px) {
  .social-floating {
    top: auto;
    bottom: 10px;
    left: 10px;
    flex-direction: row;
    transform: none;
  }
  .social-floating a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
  }
  .social-floating a:hover {
    width: 45px;
  }
}
