/* Start custom CSS for section, class: .elementor-element-97b9594 */body {
  margin: 0;
  font-family: 'Helvetica Neue', sans-serif;
}

.main-header {
  background: white;
  padding: 0px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.0);
  position: relative;
  z-index: 1000;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.logo img {
  height: 120px;
  width: auto;
  display: block;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle .bar {
  height: 3px;
  width: 100%;
  background-color: black;
  border-radius: 2px;
}

.nav-center {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
  min-width: 0;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.nav-item {
  position: relative;
}

.nav-menu a {
  text-decoration: none;
  color: black;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #000;
}

.dropdown:hover .mega-menu {
  display: flex;
}

.mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 16px;
  width: 700px;
  justify-content: space-between;
  gap: 40px;
  z-index: 99;
}

.mega-left a {
  display: block;
  margin-bottom: 18px;
  color: black;
  text-decoration: none;
}

.mega-left span {
  font-size: 14px;
  color: #555;
}

.mega-right {
  max-width: 200px;
}

.mega-right p {
  font-size: 14px;
  color: #555;
  margin: 10px 0;
}

.mega-right img {
  width: 100%;
  border-radius: 12px;
  margin-top: 10px;
}

.cta-btn {
  background-color: #FFDF00;
  color: black;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
  white-space: nowrap;
  margin-left: 20px;
}

.cta-btn:hover {
  background-color: black;
  color: white;
}

/* Mobile Styles */
@media (max-width: 991px) {
  .nav-toggle {
    display: flex;
  }

  .nav-center {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    background: white;
    padding: 20px 0;
  }

  .nav-center.active {
    display: flex;
  }

  .nav-menu {
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
    width: 100%;
  }

  .dropdown:hover .mega-menu {
    display: none;
  }

  .dropdown.open .mega-menu {
    display: flex;
    flex-direction: column;
    position: static;
    transform: none;
    box-shadow: none;
    border-top: 1px solid #eee;
    padding: 20px;
  }

  .desktop-cta {
    display: none;
  }

  .mobile-cta {
    display: block;
  }
}

@media (min-width: 992px) {
  .mobile-cta {
    display: none;
  }
}/* End custom CSS */