/*
Floating Menu Styles 
*/
.floating-menu {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.menu-toggle {
  background-color: #007bff;
  color: #fff;
  font-size: 24px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.menu-toggle:hover {
  transform: rotate(90deg);
}

.menu-items {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: none;
  flex-direction: column;
  align-items: flex-end;
}

.menu-items li {
  margin: 5px 0;
}

.menu-items a {
  background-color: #007bff;
  color: #fff;
  padding: 10px 14px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  display: inline-block;
  transition: background 0.3s ease;
}

.menu-items a:hover {
  background-color: #0056b3;
}

/* Show menu when active */
.floating-menu.active .menu-items {
  display: flex;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .menu-toggle {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
  .menu-items a {
    font-size: 13px;
    padding: 8px 12px;
  }
}
