/* Floating Share Window */
.floating-share {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  padding: 15px 20px;
  width: 200px;
  z-index: 1000;
  animation: fadeInUp 0.8s ease;
}

.share-content h4 {
  font-size: 16px;
  text-align: center;
  color: #333;
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  justify-content: space-around;
}

.social-icons a {
  text-decoration: none;
  color: #555;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: #007bff;
  transform: scale(1.2);
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
