/* ===== Header Base ===== */
.main-header {
  width: 100%;
  min-width: 800px; /* your requirement */
  padding: 18px 0 0 0;
  /* background: #fff; */
  display: flex;
  justify-content: center;
  z-index: 10000;
  background-color: none !important;
}
.nav-arrows {
    display: none !important;
}
.header-container {
  width: 100%;
  max-width: 1248px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
}

/* ===== Logo ===== */
.header-logo img {
  width: 150px;
  /* height: 65px; */
}

/* ===== Nav Menu ===== */
.header-nav ul {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
      display: flex;
    justify-content: center;
    align-items: center;
}
.header-nav {
    padding: 3px 14px 3px 4px;
    border: 1px solid #2E2E2E;
    border-radius: 48px;
}

.header-nav ul li {
  font-family: Inter, sans-serif;
  font-size: 19px;
  color: black;
  cursor: pointer;
}

/* Active "Home" with green gradient background */
.header-nav ul li.active {
  background: linear-gradient(172deg, #10EEC3 0%, #045D4C 100%);
  color: #fff;
  padding: 10px 25px;
  border-radius: 28px;
  box-shadow: 0 4px 49px rgba(0,0,0,0.15);
}

/* ===== Contact Button ===== */
.header-btn a {
  padding: 14px 25px;
  border-radius: 30px;
  border: 1px solid #045D4C;
  font-family: Inter, sans-serif;
  font-size: 17px;
  color: #010101;
  text-decoration: none;
  display: inline-block;
}

/* ============================= */
/*       RESPONSIVE BREAKPOINTS  */
/* ============================= */

/* ===== Tablet (≤1140px) ===== */
@media (max-width: 1140px) {
  .main-header {
    min-width: unset;
  }

  .header-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .header-nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ===== Mobile (≤480px) ===== */
@media (max-width: 480px) {
  .header-container {
    flex-direction: column;
    gap: 20px;
  }

  .header-nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .header-btn a {
    padding: 12px 20px;
  }
}



/* ========================== */
/*        MOBILE HEADER       */
/* ========================== */

.hamburger {
  display: none;
  font-size: 30px;
  cursor: pointer;
  user-select: none;
}

/* Mobile dropdown */
.mobile-menu {
  display: none;
  background: #fff;
  width: 100%;
  padding: 15px 0;
  border-top: 1px solid #ccc;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu ul li {
  padding: 14px 20px;
  font-size: 18px;
  /* border-bottom: 1px solid #e6e6e6; */
}

.mobile-menu ul li a {
  text-decoration: none;
  color: black;
}

.mobile-contact a {
  border: 1px solid #045D4C;
  padding: 10px 18px;
  border-radius: 25px;
  display: inline-block;
}

/* ========================== */
/*       MOBILE ONLY          */
/* ========================== */

@media (max-width: 768px) {

  /* Hide desktop nav on mobile */
  .desktop-nav {
    display: none !important;
  }

  .hamburger {
    display: block;
  }

  .header-container {
    padding: 10px 18px;
            display: flex;
        flex-direction: row;
        justify-content: space-between;
  }
  nav#mobileMenu {
    position: absolute;
    z-index: 100000;
    top: 104px;
    height: 100%;
}
.plusrevolve {
    display: none !important;
}

  .header-logo img {
    width: 130px;
  }



      .hero-buttons {
        flex-direction: row !important;
        gap: 12px;
    }
    .hero-sub {
        font-size: 15px !important;
        line-height: 30px;
    }
}
