/* style.css - Additional styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Ensure no conflicts with navbar */
.navbarbox {
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Prevent horizontal scroll */
.container {
  max-width: 100%;
  overflow-x: hidden;
}

/* Mobile menu force fixes */
@media (max-width: 768px) {
  .nav-menu {
      display: flex !important;
  }
  
  .nav-menu:not(.active) {
      left: -100% !important;
  }
  
  .nav-menu.active {
      left: 0 !important;
      display: flex !important;
  }
}