/* Floating Icons Container */
.floating-icons {
  position: fixed;
  top: 45%;
  right: 0;
  display: flex;
  flex-direction: column;
  z-index: 10000;
  visibility: visible;
}

/* Feedback Icon (Always visible) */
.floating-icons .feedback-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 85px;
  height: 30px;
  background-color: rgb(0, 117, 181);
  color: white;
  rotate: 270deg;
  transform-origin: center;
  text-decoration: none;
  font-size: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s, transform 0.3s;
  margin-right: -18px; /* Adjusts visual alignment */
}

.floating-icons .feedback-icon:hover {
  background-color: rgb(0, 90, 140);
  transform: scale(1.1);
}

/* Phone Icon (Hidden by default) */
.floating-icons .phone-icon {
  display: none;
}

/* Mobile styles */
@media (max-width: 768px) {
  .floating-icons {
    top: 40%;
    gap: 20px;
  }

  .floating-icons .phone-icon {
    position: fixed;
    bottom: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background-color: rgb(0, 117, 181);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 24px;
    z-index: 10001;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, transform 0.3s;
  }

  .floating-icons .phone-icon:hover {
    background-color: rgb(0, 90, 140);
    transform: scale(1.1);
  }
}
