/* Floating Home Button */
.floating-home-btn {
  position: fixed;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #4e8cff, #0d46a8);
  border: none;
  color: white;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 9999;
}

.floating-home-btn:hover {
  transform: scale(1.1);
  background: linear-gradient(135deg, #498efd, #2a7af0);
}

.floating-home-btn i {
  width: 22px;
  height: 22px;
}
