.social-links {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 999;
}

.social-links a {
  display: block;
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  text-align: center;
  line-height: 50px;
  font-size: 25px;
  transition: transform 0.3s ease;
  color: #000; /* Set the color to black */
}

.social-links a:hover {
  transform: scale(1.1);
}

.fa {
  display: inline-block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
}

.fa-facebook {
  background-image: url('../images/facebook.jpg');
}

.fa-instagram {
  background-image: url('../images/instagram.jpg');
}

.fa-whatsapp {
  background-image: url('../images/whatsapp.jpg');
}

.fa-phone {
  background-image: url('../images/phone.jpg');
}

@media screen and (max-width: 768px) {
  .social-links {
    bottom: 10px;
    right: 10px;
    padding-bottom: 10px;
  }

  .social-links a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 480px) {
  .social-links {
    bottom: 0;
    right: 0;
    flex-direction: row;
  }

  .social-links a {
    margin-right: 10px;
  }
}
