* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Titillium Web', sans-serif;
  scroll-behavior: smooth;
}

html {
  font-size: 62.5%; /* 1rem = 10px */
  overflow-x: hidden;
}
      body {
  width: 100%;
  height: 100vh;
  background-color: #ffffff;
}
/* Base navbar styles */
.nav-two {
  padding: 0 7.8rem;
  height: 8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-two .logo {
  height: 5rem;
}

.navbar {
  display: flex;
  align-items: center;
}

.navbar-list {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.navbar-list li a {
    
    text-decoration: none;
    
  }
.navbar-link {
  font-size: 1.5rem;
  font-weight: 500;
  color: #000000;
  text-decoration: none;
  transition: color 0.3s;
}

.navbar-link:hover,
.drop-one:hover {
  color: #333333;
}

/* Button inside navbar */
.navbar-button .custom-button {
  padding: 6px 16px;
  color: #fff;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  font-size: 1.5rem;
  text-decoration: none;
  margin-left: 20px;
}

.navbar-button .custom-button p {
  font-size: 1.5rem;
  display: inline;
  margin-left: 2px;
}

/* Mobile menu icons */
.mobile-navbar-btn {
  display: none;
  background: transparent;
  cursor: pointer;
  z-index: 101;
}

.mobile-nav-icon {
  font-size: 3rem;
  color: #000000;
  display: none;
}

/* Show/hide icons based on menu state */
.mobile-navbar-btn.open .mobile-nav-icon[name="menu-outline"] {
  display: none;
}
.mobile-navbar-btn.open .mobile-nav-icon[name="close-outline"] {
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-two {
    padding: 0 2.4rem;
  }

  .nav-two .logo {
    height: 4rem;
  }

  .navbar {
    position: absolute;
    top: 7.5rem;
    left: 0;
    width: 100%;
    background-color: #f5f5f5;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1rem;
    display: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .navbar-list {
    flex-direction: column;
    gap: 0.1rem;
    width: 100%;
  }

  .navbar-list li {
    width: 100%;
    text-align: left;
  }

  .navbar-list li a {
    display: block;
    width: 100%;
    font-size: 1.8rem;
    padding: 1rem;
    color: #000000;
    text-decoration: none;
    
  }

  .navbar-list li a:hover,
  .navbar-list li a.active {
    color: #000000;
    border-bottom: 0.4rem solid #000000;
    border-radius: 0.5rem;
  }

  .mobile-navbar-btn {
    display: block;
  }

  .mobile-nav-icon[name="menu-outline"] {
    display: block;
  }

  .mobile-nav-icon[name="close-outline"] {
    display: none;
  }

  .active .navbar {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .navbar-button .custom-button {
    font-size: 2rem;
    margin-top: 1rem;
  }

  .navbar-button .custom-button p {
    font-size: 2rem;
  }
}

/* Reset anchor styles */
a {
  text-decoration: none;
  
}