/* Navbar  */

.down-arrow {
  display: inline-block;
  transform: rotate(90deg);
  margin-left: 7px;
  font-size: 1.5rem !important;
}

.dropdown-content {
  display: none; /* Hidden by default */
  position: absolute;
  top: 84%;
  left: 145px;
  background-color: white;
  border: 1px solid #ccc;
  z-index: 1;
  width: 200px;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
}

.dropdown-content ul {
  list-style: none; /* Remove bullets */
  padding: 0; /* Remove padding */
  margin: 0; /* Remove margin */
}

.dropdown-content li {
  width: 100%;
  display: flex;
  padding: 0px 0px;
}

.dropdown-content div:hover {
  background-color: #f0f0f0;
}

.navbar {
  width: 100%;
  position: relative;
  z-index: 1;
}

.navbar-inner {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 127px;
}

/* Styling for the menu */

.menu {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.menu a {
  text-decoration: none;
  padding: 0px 10px;
}

.contact-us-btn {
  width: 108px;
  height: 37px;
  border-radius: 8px;
  border: 1px solid #eca906;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
  background-color: #eca906;
  font-size: 1.4rem !important;
}

.contact-btn:hover .contact-us-btn {
  background-color: #b88401;
  border: 1px solid #b88401;
  color: white;
}

/* footer  */

/* Basic footer styling */

.footer {
  padding: 20px 0px;
  margin-top: 50px;
  z-index: 2;
  position: relative;
}

.footer-container {
  display: flex;
  /* flex-wrap: wrap; */
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 20px;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-column h3 {
  margin-bottom: 20px;
}

.footer-column ul li {
  padding: 5px 0px;
  transition: all 0.5s ease;
}

.footer-column ul li:hover {
  transform: scale(1.1);
}

.linkdien-icon {
  transition: all 0.5s ease;
}

.linkdien-icon:hover {
  transform: scale(1.1);
}

/* Logo styling */
.logo-column .footer-logo {
  width: 150px;
}

/* Bottom footer styling */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.footer-right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.mobile-alignment {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex: 1 1 auto;
  margin: 50px 0px 0px 0px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0px;
}

.logo-column {
  justify-content: space-between;
  display: flex;
  flex-direction: column;
}

.hamburger {
  display: none;
}

.menu-item {
  position: relative;
  color: white;
}

.menu-item.active::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%; /* Keep the underline full width */
  height: 3px;
  background: #eca906;
}

.menu-item:hover::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%; /* Expand on hover */
  height: 3px;
  background: #eca906;
  transition: width 0.3s ease-in-out;
}

.menu-item::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0; /* Start hidden */
  height: 3px;
  background: #eca906;
  transition: width 0.3s ease-in-out;
}

.div {
  height: 50px;
  align-items: center;
  display: flex;
  justify-content: center;
}

.div a {
  width: 100%;
  height: 100%;
  align-items: center;
  display: flex;
}

.address {
  max-width: 285px !important;
  width: 280px !important;
  font-size: 1.9rem !important;
}

.dropdown-content li {
  padding: 15px 0px 15px 15px;
}

@media (max-width: 992px) {
  /* this styling is for menu and footer  */

  .navbar {
    overflow: visible;
  }

  .menu {
    flex-direction: column;
    top: 65px;
    right: 0px;
    position: absolute;
    background: #e4d9c5;
    width: 100% /*vw*/;
    padding-top: 20px;
    transform: translateX(100%);
    transition: transform 0.5s ease;
    overflow: hidden;
  }

  .menu.open {
    transform: translateX(0%);
  }

  .menu a {
    font-size: 1.8rem !important;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 20px;
  }

  .remove-padding {
    padding-bottom: 0px !important;
  }

  .hamburger {
    display: block;
    width: 30px;
  }

  .menu-item.active::before {
    bottom: -3px;
  }

  .menu-item:hover::before {
    bottom: -3px;
  }

  .menu-item::before {
    bottom: -3px;
  }

  .drop-down-div {
    width: 100%;
  }

  .dropdown-content {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30%);
    width: 80%;
  }

  .menu-item-service:hover::before {
    width: 0;
    height: 0px;
  }

  .down-arrow {
    margin-left: 7px;
  }
  .dropdown-content li {
    padding: 15px 0px 15px 15px;
  }

  .div-1 {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  /* this styling is for menu adn footer */

  .footer-container {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
  }

  .logo-column {
    gap: 20px;
  }

  .footer-column h3 {
    margin-top: 20px;
  }
}

@media (max-width: 556px) {
  .footer-column {
    min-width: 130px;
  }
  .hamburger {
    width: 20px;
  }
  .navbar {
    padding: 5px 0px 0px 0px;
  }
  .logo {
    height: auto;
    width: 40%;
  }

  .menu {
    top: 42px;
  }

  .mobile-hide {
    display: none;
  }
}
