@media (max-width: 1199px) {
  #fh5co-sidebar {
    display: none !important;
  }
}
/* Floating Menu Styles for Mobile */
.floating-menu {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: none;
}

.floating-menu-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #5BC1AC;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.floating-menu-button:hover {
  background: #4aa892;
  transform: scale(1.05);
}

.floating-menu-button i {
  color: white;
  font-size: 24px;
  transition: transform 0.3s ease;
}

.floating-menu-button.active i {
  transform: rotate(90deg);
}

.floating-menu-content {
position: absolute;
bottom: 70px;
right: 0;
background: white;
border-radius: 10px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
width: 300px;
padding: 5px 0;
background-color: #5bc1ac;
opacity: 0;
visibility: hidden;
transform: translateY(10px);
transition: all 0.3s ease;
}

.floating-menu-content.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-menu-content a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.2s ease;
  font-size: 14px;
  font-weight: 500;
}

.floating-menu-content a:last-child {
  border-bottom: none;
}

.floating-menu-content a:hover {
  background: #f5f5f5;
  color: #5BC1AC;
  padding-left: 20px;
}

/* Show floating menu only on mobile */
@media (max-width: 768px) {
  .floating-menu {
    display: block;
  }
}

/* Animation for menu items */
.floating-menu-content a {
  transform: translateX(10px);
  opacity: 0;
  transition: all 0.3s ease;
}

.floating-menu-content.active a {
  transform: translateX(0);
  opacity: 1;
}

/* Staggered animation for menu items */
.floating-menu-content a:nth-child(1) { transition-delay: 0.05s; }
.floating-menu-content a:nth-child(2) { transition-delay: 0.1s; }
.floating-menu-content a:nth-child(3) { transition-delay: 0.15s; }
.floating-menu-content a:nth-child(4) { transition-delay: 0.2s; }
.floating-menu-content a:nth-child(5) { transition-delay: 0.25s; }
.floating-menu-content a:nth-child(6) { transition-delay: 0.3s; }
.floating-menu-content a:nth-child(7) { transition-delay: 0.35s; }
.floating-menu-content a:nth-child(8) { transition-delay: 0.4s; }
.floating-menu-content a:nth-child(9) { transition-delay: 0.45s; }
.floating-menu-content a:nth-child(10) { transition-delay: 0.5s; }
.floating-menu-content a:nth-child(11) { transition-delay: 0.55s; }
.floating-menu-content a:nth-child(12) { transition-delay: 0.6s; }
.floating-menu-content a:nth-child(13) { transition-delay: 0.65s; }
.floating-menu-content a:nth-child(14) { transition-delay: 0.7s; }
.floating-menu-content a:nth-child(15) { transition-delay: 0.75s; }
.floating-menu-content a:nth-child(16) { transition-delay: 0.80s; }
