* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
  }
  
  body {
    /* min-height: 100vh; */
    background-color: #f5f5f5;
  }
  
  .navSection{
  
  }
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #014221;
    color: white;
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 97;
    max-width: 1800px;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    position: relative;
    top: -8px;
  }
  
  .nav-links {
    display: flex;
    list-style: none;
  }
  
  .nav-links li {
    margin-left: 2rem;
  }
  
  .nav-links a {
    text-decoration: none;
    color: white;
    font-size: 1.1rem;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #2ad400;
  }
  
  .hamburger {
    display: none;
    cursor: pointer;
    z-index: 100;
  }
  
  .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: white;
    transition: all 0.3s ease;
  }
  
  /* Mobile Navigation */
  .mobile-nav {
    position: fixed;
    top: 0;
    right: -80%;
    width: 80%;
    height: 100%;
    background-color: #014221;
    padding: 4rem 2rem;
    transition: all 0.5s ease;
    z-index: 99;
  }
  
  .mobile-nav.active {
    right: 0;
  }
  
  .mobile-nav-links {
    list-style: none;
  }
  
  .mobile-nav-links li {
    margin: 2rem 0;
  }
  
  .mobile-nav-links a {
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
  }
  
  .mobile-nav-links a:hover {
    color: #00bcd4;
  }
  
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 1800px;
    background-color: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 98;
  }
  
  .overlay.active {
    visibility: visible;
    opacity: 1;
  }
  
  /* Section Styles
  section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
  }
  
  section:first-of-type {
    padding-top: 5rem;
  }
  
  section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  section p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
  } */
  
  #home {
    background-color: ;
  }
  
  #products {
    background-color: ;
  }
  
  #contact {
    background-color: ;
  }
  
  /* Media Queries */
  @media screen and (max-width: 768px) {
    .nav-links {
      display: none;
    }
    .nav-links{
      display: none !important;
    }
    
    .hamburger {
      display: block;
    }
    
    .hamburger.active .bar:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(2) {
      opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }

    .logo {
      font-size: 1.5rem;
      font-weight: bold;
      position: relative;
      top: 15px;
    }
  }