/* nav.css - Sleek new navigation and top bar styles */

/* Reset and base styles */
.sleek-header, .sleek-top-bar, .sleek-nav {
  font-family: 'Inter', Arial, sans-serif;
  box-sizing: border-box;
}

.sleek-top-bar {
  background: #1B612F;
  border-bottom: 1px solid #eee;
  color: #222;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  color: #fff;

}
.sleek-top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sleek-top-bar .top-contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.sleek-top-bar .top-contact .phone {
  font-weight: 500;
  letter-spacing: 0.5px;
  font-size: 12px;
}
.sleek-top-bar .top-contact .date {
  font-weight: 500;
  letter-spacing: 0.5px;
  font-size: 12px;
}
.sleek-top-bar .top-social {
  display: flex;
  gap: 0.7rem;


}
.sleek-top-bar .top-social a {
 color: #fff;
  font-size: 1.1rem;
  transition: color 0.2s;
  font-size: 18px;
}
.sleek-top-bar .top-social a:hover {
  color: #007bff;
}

.sleek-header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  position: sticky;
  top: 0;
  z-index: 100;
}
.sleek-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
  position: relative;
}
.sleek-logo {
  display: flex;
  align-items: center;
}
.sleek-logo img {
  height: 100px;
  width: auto;
  display: block;
}

.sleek-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  position: relative;
}
.sleek-nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.sleek-nav ul li {
  position: relative;
}
.nav-menu li a{
text-decoration: none;
  color: #222;
  font-weight: 500;
  padding: 0.3rem 0.7rem;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
}
.sleek-nav ul li a {
  color: #222;
  text-decoration: none;
  font-weight: 500;
  padding: 0.3rem 0.9rem;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
  font-size: 1.35rem;
}
.sleek-nav ul li a:hover, .sleek-nav ul li.active a {
  background: #f2f2f2;
  color: #007bff;
  text-decoration: none;
}
.sleek-nav .nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.7rem;
  cursor: pointer;
  margin-left: 1.5rem;
  color: #222;
}
.sleek-nav .nav-search {
  display: flex;
  align-items: center;
  margin-left: 1.2rem;
  font-size: 1.4rem;
  color: #222;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.2s;
}
.sleek-nav .nav-search:hover {
  color: #007bff;
}

/* Dropdown */
.sleek-nav ul li .dropdown {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background: #fff;
  min-width: 210px;
  max-width: 90vw;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  border-radius: 5px;
  z-index: 10;
  flex-direction: column;
  padding: 0.5rem 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.18s;
  font-size: 1.15rem;
  max-height: 60vh;
  overflow-y: auto;
  align-items: start;
}
.sleek-nav ul li:hover > .dropdown,
.sleek-nav ul li:focus-within > .dropdown {
  display: flex;
  pointer-events: auto;
  opacity: 1;
  text-decoration: none;
}
.sleek-nav ul li .dropdown li a {
  padding: 0.6rem 1.2rem;
  font-size: 1.15rem;

}

/* Responsive */
@media (max-width: 991px) {
  .sleek-header .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .sleek-logo {
    flex: 1 1 auto;
    justify-content: flex-start;
  }
  .sleek-nav {
    flex: 1 1 auto;
    justify-content: flex-end;
    align-items: center;
    gap: 0.5rem;
  }
  .sleek-nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    z-index: 99;
    padding: 0.5rem 0;
  }
  .sleek-nav.open ul {
    display: flex;
  }
  .sleek-nav .nav-toggle {
    display: block;
    order: 2;
    margin-left: 0.7rem;
  }
  .sleek-nav .nav-search {
    display: block;
    order: 1;
    margin-left: 0.7rem;
    font-size: 1.7rem;
  }
  .sleek-nav ul li a {
    font-size: 1.25rem;
    padding: 0.7rem 1.2rem;
  }
}
@media (max-width: 600px) {
  .sleek-top-bar .container, .sleek-header .container {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
  }
  .sleek-logo img {
    height: 80px;
  }

  .sleek-nav ul li a {
    font-size: 1.28rem;
    padding: 0.9rem 1.3rem;
  }
  .sleek-nav .nav-toggle, .sleek-nav .nav-search {
    font-size: 2rem;
  }
}
