/* Floating Social Sidebar */
.social-sidebar {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.social-icon {
  width: 35px;     /* smaller circle */
  height: 35px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 16px; /* smaller icon inside */
  text-decoration: none;
  transition: all 0.3s ease;
}


.social-icon.whatsapp { background: #25d366; }
.social-icon.facebook { background: #1877f2; }
.social-icon.instagram { background: #e1306c; }
.social-icon.linkedin { background: #0077b5; }
.social-icon.twitter { background: #000; }

.social-icon:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

/* @media (max-width: 768px) {
  .social-sidebar {
    top: auto;
    bottom: 20px;
    transform: none;
    flex-direction: row;
    right: 50%;
    transform: translateX(50%);
  }
} */
