
.floating-icons {
  position: fixed;
  bottom: 22px; 
  left: 20px; 
  display: flex;
  flex-direction: column;
  gap: 10px; 
  z-index: 1000; 
}

.floating-icons a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--primaryColor); 
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  overflow: hidden;
  /* border: 3px solid var(--white); */

}

.floating-icons .fa-whatsapp{
 font-size: 35px;
}
.floating-icons .phone-icon {
 font-size: 25px;
}
.floating-icons .phone-icon {
  background-color: var(--primaryColor); 
  color: var(--white);
  /* border: 3px solid var(--white); */
}

.floating-icons a:hover {
  transform: scale(1.1);
}