/* === Navbar Container === */
.navBar {
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 100px 30px 100px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0.1px 16px;
  
}

/* === Logo === */

.nav-logo img {
  height: 40px;
}

/* === Hamburger === */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  height: 2px;
  width: 25px;
  background: #333;
  margin: 2.6px;
  border-radius: 2px;
  transition: all 0.3s;
}

/* === Menu === */
.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0px 20px;
  margin-left: auto;
}

.nav-menu li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
  text-align: center;
}

.nav-menu li a:hover {
  color: #009d61;
}

/* === Dropdown === */
.dropdown {
  position: relative;
  width: auto;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 10px;
  font-weight: 500;
  white-space: nowrap;
  justify-content: space-between;
  cursor: pointer;
}

.dropdown-toggle p {
  margin: 0;
}

.dropdown-toggle img {
  transition: transform 0.3s ease;
}

.dropdown.open .dropdown-toggle img{
  transform: rotate(180deg);
}

.dropdown-menu {
  display: none;
  background: white;
  border: 1px solid #eee;
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 180px;
  padding: 8px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 10;
  list-style: none;
}

.dropdown-menu li {
  padding: 5px 10px;
  text-align: left;

}

.dropdown-menu li a {
  color: #444;
}


/* ✅ CORRECT — our JS toggles the .open class */
.dropdown.open>.dropdown-menu {
  display: block;
}


/* === App store images === */
.app-links img {
  width: 110px;
  margin-left: 10px;
}

/* === Mobile View === */
@media (max-width: 768px) {
  .nav-container{
    padding: 10px 16px 10px 20px;
  }
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 59px;
    left: -100%;
    flex-direction: column;
    background: #fff;
    width: 100%;
    transition: all 0.3s ease-in-out;
    border-top: 1px solid #ddd;
    gap: 0;
    margin-left: 0;
    align-items: stretch;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    padding: 14px 0;
    text-align: left;
    border-bottom: 1px solid #eee;
    list-style: none;
  }

  .nav-menu .last-border{
    border-bottom: none;
    padding-bottom: 8px;
  }

  #contactUs-last-border{
    border-bottom: none;
    padding-bottom: 0;
  }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    display: none;
    /* right: 100%;
    left: auto;
    top: 0; */
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .app-links img {
    width: 140px;
    margin: 8px 0;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* === Download Button === */
.download-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #eafbf3;
  color: #009d61;
  border: 1px solid #009d61;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
}



/* Ensure the image inside the button is sized correctly */
.download-btn img {
  width: 16px !important;
  height: 16px !important;
  margin: 0 !important;
  display: block;
}