/* Navbar */
/* ===== Navbar Base ===== */
.navbar {
  width: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 80px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Logo */
.logo img {
  height: 45px;
}

/* Center Menu */
.nav-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 40px;
}

.nav-menu a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  transition: 0.3s;
}

.nav-menu a:hover {
  color: #155dfc;
}

/* Right Section */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Call Button */
.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #155dfc;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.call-btn:hover {
  background: #0f4dc4;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    gap: 25px;
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .call-btn {
    display: none;
  }
}
