@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-8px);
    }
    60% {
      transform: translateY(-4px);
    }
  }

  @keyframes rotate {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  .icon-container {
    position: fixed;
    top: 70%;
    right: 10px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
  }

  .icon-container a {
    background-color: #ca912c;
    padding: 12px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s, background-color 0.3s;
    animation: bounce 2s infinite;
  }

  .icon-container a:hover {
    transform: scale(1.2);
    background-color: #b07923;
    animation: rotate 0.8s linear forwards;
     
  }

  .icon-container i {
    font-size: 24px;
    color: #ffffff; /* Default white icons */
    transition: color 0.3s;
  }

  .icon-container a:hover i {
    color: #ffffff; /* Black icons on hover */
  }