/* left side image with link style */
.sticky-left-link {
  position: fixed;
  left: 0;
  top: 90%;
  transform: translateY(-50%);
  z-index: 9999;

  display: flex;
  align-items: center;

  background: #ffffff; /* Light background */
  padding: 10px 16px 10px 10px;
  border-radius: 0 30px 30px 0;

  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border-left: 4px solid #007bff; /* Blue accent line */
  transition: all 0.3s ease;
}

/* Image */
.sticky-left-link img {
  width: 100px;
  height: auto;
  margin-right: 10px;
}

/* Text */
.sticky-text {
  color: #007bff; /* Same blue as image */
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
}

/* Hover effect */
.sticky-left-link:hover {
  transform: translateY(-50%) translateX(5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
