.navbar-logo img {
  width: 150px;
  height: auto;
}

.navbar-nav .nav-link {
  color: #f2f2f2 !important;
  font-size: 16px;
  font-weight: 500;
  padding: 20px 15px;
  position: relative;
}

.navbar-nav .nav-item .nav-link::after {
  content: '';
  position: absolute;
  left: 11px;
  bottom: 5px;
  height: 2px;
  background: #f59505d7;
  width: 0;
  transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover::after {
  width: 50%;
}

.navbar-nav .nav-link:hover {
  color: #f59505d7 !important;
}

/* Dropdown Menu for About Us */
.dropdown {
  position: relative;
}

.about-dropdown .dropdown-menu {
  background: #b36300;
  border: none;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  visibility: hidden;
  position: absolute;
  top: 0%;
  left: 0;
  z-index: 1000;
}

.dropdown-mega-menu {
  background: #35241c;
  border: none;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  visibility: hidden;
  position: absolute;
  top: 85%;
  left: 0;
  z-index: 1000;
}

.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
}

.dropdown-item {
  color: #d9d9d9;
  font-size: 15px;
  padding: 10px 20px;
}

/* Mega Menu for Other Nav Items */
.mega-menu {
  position: static !important;
}

.mega-menu .dropdown-mega-menu {
  width: 100%;
  padding: 40px 0px 20px 0px;
  background: #b36300;
  border: none;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  visibility: hidden;
}

.mega-menu .dropdown-mega-menu .container {
  justify-content: center;
}

.mega-menu:hover .dropdown-mega-menu,
.mega-menu .dropdown-mega-menu:hover {
  display: block;
  opacity: 1;
  visibility: visible;
}

.mega-menu .dropdown-mega-menu .col-3 {
  margin-bottom: 20px;
}

.mega-menu .dropdown-mega-menu header {
  color: #f2f2f2;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

.mega-menu .dropdown-mega-menu hr {
  border-top: 1px solid #f1f1f170;
  margin: 10px 0;
  width: 30%;
}

.mega-menu .dropdown-mega-menu .mega-links li {
  position: relative;
  padding-left: 20px;
}

.mega-menu .dropdown-mega-menu .mega-links li i {
  position: absolute;
  left: 0;
  color: #f59505d7;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.mega-menu .dropdown-mega-menu .mega-links li:hover i {
  opacity: 1;
}

.mega-menu .dropdown-mega-menu .mega-links li a {
  color: #d9d9d9;
  font-size: 15px;
  text-decoration: none;
  line-height: 30px;
}

.mega-menu .dropdown-mega-menu .mega-links li a:hover {
  color: #f2f2f2;
}

/* Contact Button */
.btn-header {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background-color: transparent;
  padding: 10px 25px;
  border: 0.5px solid;
  border-radius: 5px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

.btn-header:hover {
  background-color: #f59505d7;
  color: #fff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
}


/* Mobile Menu Styles */

.mobile-menu {
  position: fixed;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
  overflow-y: auto;
  transform: translateX(-100%);
  transition:
    transform 0.3s ease-in-out,
    top 0.3s ease,
    height 0.3s ease;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  box-sizing: border-box;
  display: none;
}

/* Default position when navbar is not at top (normal state) */
.mobile-menu {
  top: 180px;
  height: calc(100vh - 180px);
}

/* Position when navbar is at top (sticky state) */
.navbar-at-top .mobile-menu {
  top: 70px;
  height: calc(100vh - 70px);
}

/* Active state */
.mobile-menu.is-active {
  transform: translateX(0);
  display: block;
}

/* Burger menu styles */
.burger {
  display: none;
  position: relative;
  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 1100;
}

@media (max-width: 991px) {
  .burger {
    display: block;
  }

  .desktop-menu {
    display: none;
  }

  .mobile-menu {
    display: block;
    transform: translateX(-100%);
  }

  .mobile-menu.is-active {
    transform: translateX(0);
  }
}


/* Menu Items */
.mobile-menu .menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu .menu-item {
  margin-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.mobile-menu .menu-link {
  display: block;
  padding: 12px 0;
  color: #333;
  text-decoration: none;
  font-size: 16px;
}

/* Dropdown Toggles */
.mobile-menu .dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  cursor: pointer;
  padding: 12px 0;
  color: #333;
  text-decoration: none;
}

.mobile-menu .dropdown-toggle i {
  transition: transform 0.3s ease;
  font-size: 1.2rem;
}

/* Dropdown Content */
.mobile-menu .dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  padding-left: 15px;
}

.mobile-menu .dropdown.show .dropdown-content {
  max-height: 2000px;
  /* Adjust based on your content */
}

.mobile-menu .dropdown.show .dropdown-toggle i {
  transform: rotate(180deg);
}

/* Nested Dropdown Styles */
.mobile-menu .dropdown-column {
  padding: 10px 0;
}

.mobile-menu .dropdown-group {
  margin-bottom: 15px;
}

.mobile-menu .dropdown-title {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-weight: 600;
  color: #444;
  padding: 8px 0;
}

.mobile-menu .dropdown-icon {
  margin-right: 10px;
  color: #666;
  font-size: 1.2rem;
}

.mobile-menu .dropdown-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu .dropdown-link {
  display: block;
  padding: 8px 0 8px 20px;
  color: #555;
  text-decoration: none;
  font-size: 14px;
  position: relative;
}

.mobile-menu .dropdown-link:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #f59505d7;
}

.mobile-menu .dropdown-block {
  display: flex;
  margin-bottom: 15px;
  align-items: flex-start;
}

.mobile-menu .dropdown-inner {
  flex: 1;
}

.mobile-menu .dropdown-inner p {
  margin: 5px 0 0;
  font-size: 13px;
  color: #777;
}



.burger-line {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}

.burger-line:nth-child(1) {
  top: 0;
}

.burger-line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.burger-line:nth-child(3) {
  bottom: 0;
}

.burger.is-active .burger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.burger.is-active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger.is-active .burger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile dropdown styles */
.mobile-menu .dropdown.show .dropdown-content {
  max-height: 2000px;
  display: block;
}

.mobile-menu .dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  display: none;
}

.mobile-menu .dropdown.show .dropdown-toggle i {
  transform: rotate(180deg);
}