/* Menu Area */
.infotech-net-bd-menu-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  padding: 5px 200px;
  box-shadow: 0px 2px 10px #f00;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

/* Logo */
.infotech-net-bd-logo img {
  height: 50px;
}

/* Menu Bar */
.infotech-net-bd-menu-bar {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

/* Menu Items */
.infotech-net-bd-main-menu-list {
  position: relative;
  margin: 0 15px;
}

.infotech-net-bd-main-menu {
  text-decoration: none;
  color: #f00;
  font-size: 16px;
  padding: 15px 15px;
  display: block;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.infotech-net-bd-main-menu:hover {
  color: #00f;
}

/* Dropdown Symbol - Bigger on desktop and mobile */
.infotech-net-bd-dropdown-symbol {
  margin-left: 5px;
  font-size: 18px; /* Increased size */
  display: inline-block;
  transition: transform 0.3s ease;
}

/* Dropdown Menu */
.infotech-net-bd-dropdown-menu {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 200px;
  list-style: none;
  top: 100%;
  left: 0;
  padding: 5px 0;
  border-radius: 5px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
}

.infotech-net-bd-dropdown-menu .infotech-net-bd-main-menu-list {
  margin: 0;
  text-align: left;
}

/* Sub-menu styles */
.infotech-net-bd-sub-menu-list {
  margin: 0;
}

.infotech-net-bd-sub-menu {
  text-decoration: none;
  color: #f00;
  font-size: 16px;
  padding: 15px 15px 15px 35px;
  display: block;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.infotech-net-bd-sub-menu:hover {
  color: #00f;
  background-color: transparent;
}

/* Show dropdown on hover (desktop) */
.infotech-net-bd-main-menu-list.main-menu-has-sub-menu:hover > .infotech-net-bd-dropdown-menu,
.infotech-net-bd-main-menu-list.main-menu-has-sub-menu:focus-within > .infotech-net-bd-dropdown-menu {
  display: block;
}

/* Mobile Menu Toggle */
.infotech-net-bd-menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 30px;
  padding: 10px 0;
  color: #f00;
}

/* Portal Area */
.infotech-net-bd-menu-portal-area {
  display: flex;
  justify-content: flex-end;
  padding-right: 0;
  margin-left: auto;
}

.infotech-net-bd-menu-portal-button {
  text-decoration: none;
  padding: 10px 20px;
  background-color: #f00;
  color: #fff;
  margin: 5px;
  border-radius: 5px;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.infotech-net-bd-menu-portal-button:hover {
  background-color: #00f;
}

/* Responsive Design */
@media (max-width: 768px) {
  .infotech-net-bd-menu-area {
    padding: 10px 20px;
    flex-wrap: wrap;
  }

  .infotech-net-bd-menu-toggle {
    display: block;
  }

  .infotech-net-bd-menu-bar {
    display: none;
    flex-direction: column;
    background-color: #fff;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    padding: 10px 0;
    z-index: 999;
    margin: 0;
  }

  .infotech-net-bd-menu-bar.active {
    display: flex;
  }

  .infotech-net-bd-main-menu-list {
    width: 100%;
    margin: 0;
    padding-left: 20px;
  }

  .infotech-net-bd-main-menu {
    font-size: 18px;
    padding: 15px 20px;
    color: #f00;
  }

  .infotech-net-bd-main-menu:hover {
    color: #00f;
  }

  .infotech-net-bd-sub-menu {
    font-size: 18px;
    padding: 15px 20px 15px 40px;
    color: #f00;
  }

  .infotech-net-bd-sub-menu:hover {
    color: #00f;
    background-color: transparent;
  }

  .infotech-net-bd-dropdown-menu {
    display: none !important;
    position: static;
    background-color: transparent;
    box-shadow: none;
    padding: 0;
  }

  .main-menu-has-sub-menu.open > .infotech-net-bd-dropdown-menu {
    display: block !important;
  }

  .main-menu-has-sub-menu.open > .infotech-net-bd-main-menu .infotech-net-bd-dropdown-symbol {
    transform: rotate(180deg);
  }

  /* Bigger dropdown symbol on mobile */
  .infotech-net-bd-dropdown-symbol {
    font-size: 22px;
  }

  /* Portal area aligned right on mobile */
  .infotech-net-bd-menu-portal-area {
    padding-right: 20px;
    margin-left: auto;          /* Push to right */
    justify-content: flex-end;  /* Align buttons right */
    width: 100%;                /* Optional, full width */
    display: flex;
  }
}