.floating-icons {
  position: fixed;
  right: 20px;
  top: 40%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

/* Individual Icon */
.floating-icons a {
  width: 55px;
  height: 55px;
  background: #007bff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, background 0.3s ease;
  animation: bounce 2s infinite;
}

/* Hover Effect */
.floating-icons a:hover {
  transform: scale(1.15);
  background: #0056b3;
}

/* Bounce Animation */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .floating-icons a {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .floating-icons {
    right: 10px;
    gap: 12px;
  }
  .floating-icons a {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}