.social-icons {
      position: fixed;
      top: 25%;
      right: 0;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      z-index: 9999;
      transition: right 0.5s ease;
    }

    .social-icons.hidden {
      right: -60px; /* Hide off screen */
    }

    .social-icons a {
      width: 45px;
      height: 45px;
      margin: 5px 0;
      background-color: #333;
      color: white;
      font-size: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      border-radius: 6px 0 0 6px;
      transition: background-color 0.1s ease;
    }

    .social-icons a.facebook   { background-color: #ecb61c; }
    .social-icons a.instagram  { background-color: #ecb61c; }
    .social-icons a.linkedin   { background-color: #ecb61c; }
    .social-icons a.youtube    { background-color: #ecb61c; }

    .social-icons a:hover {
      opacity: 0.85;
    }