::selection {
  background-color: #2563eb;
  color: #ffffff;
}
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Interactive Menu Button Line Animations */
#menu-btn.active #menu-line-1 {
  transform: translateY(3.5px) rotate(45deg);
}
#menu-btn.active #menu-line-2 {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* Mobile Menu Fade & Slide Animation */
#mobile-menu {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
#mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
}
#mobile-menu a {
  transform: translateY(24px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
#mobile-menu.active a {
  transform: translateY(0);
  opacity: 1;
}
/* Staggered delay for navigation items */
#mobile-menu.active a:nth-child(1) { transition-delay: 0.05s; }
#mobile-menu.active a:nth-child(2) { transition-delay: 0.10s; }
#mobile-menu.active a:nth-child(3) { transition-delay: 0.15s; }
#mobile-menu.active a:nth-child(4) { transition-delay: 0.20s; }
#mobile-menu.active a:nth-child(5) { transition-delay: 0.25s; }

/* Custom Contact Form Styles */
#contact-service option {
  background-color: #1a1a1a;
  color: #f8fafc;
}
