/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Tajawal', 'Segoe UI', Arial, sans-serif;
  /*background: #0b0b0b;*/
  color: #fff;
  line-height: 1.7;
}



.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Right side container for menu + button */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Menu */
.menu {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

/* Enquire button */
.nav-enquire img {
  height: 50px;
  width: auto;
}

/* Responsive */
@media (max-width: 992px) {
  .nav-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .nav-right {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .menu {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .nav-enquire {
    margin-top: 10px;
  }

  .nav-enquire img {
    height: 45px;
  }
}


/* Menu items hidden by default on mobile */
.menu-items {
  display: flex;
  gap: 25px;
}

@media (max-width: 768px) {
  .menu-items {
    display: none;      /* hide by default */
    flex-direction: column;
    width: 100%;
    gap: 15px;
    margin-top: 10px;
  }

  /* Clicking Home adds 'active' to show items */
  .menu-items.active {
    display: flex;
  }

  .menu a {
    width: 100%;
    text-align: center;
  }
}


