.social-media-buttons { 
    position: fixed; /* Sticks the buttons to the screen */
    top: 50%; /* Vertically centers the buttons */
    right: 20px; /* Distance from the right side */
    transform: translateY(-50%); /* Ensures proper vertical alignment */
    z-index: 1000; /* Keeps buttons above other content */
  }
  
  .ftco-footer-social {
    display: flex;
    flex-direction: column; /* Stacks the icons vertically */
    gap: 20px; /* Adds spacing between icons */
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .ftco-footer-social li {
    margin: 0;
  }
  
  .ftco-footer-social li a {
    display: inline-block;
    color: #fff; /* Icon color */
    background-color: #333; /* Default button background */
    padding: 12px;
    border-radius: 50%; /* Circular buttons */
    width: 50px; /* Set fixed size for the circle */
    height: 50px; /* Set fixed size for the circle */
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transition for hover effect */
  }
  
  /* Individual Hover Effects */
  .ftco-footer-social li .icon-twitter:hover /*{
    background-color: #1da1f2; /* Twitter blue 
  }
  */
  .ftco-footer-social li .icon-facebook:hover /* {
    background-color: #1877f2; /* Facebook blue 
  }*/
  
  .ftco-footer-social li .icon-instagram:hover /* {
    background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf); /* Instagram gradient 
  }
  */
  .ftco-footer-social li .icon-github:hover /* {
    background-color: #333; /* GitHub black 
  }
  */
  .icon-twitter,
  .icon-facebook,
  .icon-instagram,
  .icon-github {
    font-size: 20px; /* Adjust icon size */
  }
  