* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #fff;
    color: #333;
    min-height: 80px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    
  }
  
  header .logo img {
    max-width: 150px;
    height: auto;
  }
  
  header nav {
    display: flex;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
  }
  
  .nav-links li {
    margin: 0 15px;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    transition: color 0.3s;
  }
  
  .nav-links a:hover {
    color: #00bcd4;
  }
  
  /* Hamburger Menu Styles */
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
   
  }
  
  .hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    border-radius: 3px;
    transition: 0.3s;
    
  }

  /* Mobile (max-width: 768px) */
  @media (max-width: 768px) {
    /* Navigation Links (Hidden Initially) */
    .nav-links {
      display: none;
      flex-direction: column;
      width: 100%;
      position: absolute;
      top: 70px; /* Adjust based on header height */
      left: 0;
      background: #fff;
      padding: 1rem 0;
      box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
      z-index: 100;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .nav-links li {
      margin: 10px 0;
      text-align: center;
    }
  
    /* Hamburger Menu Styles */
    .hamburger {
      display: flex;
      flex-direction: column;
      cursor: pointer;
      gap: 4px;
      position: absolute;
      right: 20px; /* Position hamburger on the right side */
      top: 35px; /* Align with header height */
      z-index: 110; /* Ensure it’s above other elements */
    }
  
    .hamburger span {
      width: 25px;
      height: 3px;
      background-color: #333;
      border-radius: 3px;
      transition: 0.3s;
    }
  
    /* Header Adjustments for Mobile */
    header {
      flex-direction: row;
      justify-content: space-between; /* Ensure spacing between logo and hamburger */
      align-items: center;
      padding: 1rem;
    }
  
    /* Align navigation links below header */
    header nav ul {
      flex-direction: column;
      align-items: flex-start;
      margin-top: 1rem;
    }
  
    header nav ul li {
      margin: 0.5rem 0;
    }
  }