* {
    margin: 0;
    padding: 0;
  }
  
  /* --------------- Navbar ------------- */
  header {
    color: #fff;
    padding: 1rem 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
  }
  
  /* ====== Logo ====== */
  header .logo {
    position: relative;
    flex: 1;
  }
  
  header .logo img {
    position: absolute;
    top: -25px;
    left: 0;
    height: 70px;
    object-fit: contain;
  }
  
  /* ====== Navigation Menu ====== */
  header nav {
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
  }
  
  header nav a {
    color: #000;
    text-decoration: none;
    font-family: 'Aboreto', cursive;
    font-size: 1rem;
    padding: 0.2rem 0.5rem;
    transition: color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
    /* Needed for transform to work properly */
  }
  
  header nav a:hover {
    background: blue;
    border-radius: 5px;
    color: white;
    transform: translateY(-3px);
    /* Elevates the link */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Adds soft shadow */
  }
  
  
  /* ====== Desktop Button (Right Aligned) ====== */
  header .btn {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  
  header .btn button {
    background: blue;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-family: 'Aboreto', cursive;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  header .btn button:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
  }
  
  .btn {
    display: flex;
    gap: 10px;
  }
  
  
  /* ====== Hamburger Menu ====== */
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    cursor: pointer;
    z-index: 1001;
  }
  
  .hamburger span {
    background: #000;
    height: 3px;
    width: 100%;
    border-radius: 2px;
    transition: 0.4s;
  }
  
  /* ====== Mobile Quotation Button (Inside Nav) ====== */
  .mobile-quote-btn {
    display: none;
    background: blue;
    color: #fff;
    border: none;
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    font-family: 'Aboreto', cursive;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .mobile-quote-btn:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
  }
  
  @media (max-width: 934px) {
    header {
      padding: 1rem 3rem;
    }
  
    header .btn {
      flex: 0.5;
    }
  }
  
  /* ====== Mobile Responsive ====== */
  @media (max-width: 882px) {
    header {
      flex-wrap: nowrap;
    }
  
    .hamburger {
      display: flex;
    }
  
    nav {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background: #fff;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1.5rem;
      padding: 2rem 0;
      transform: translateY(-200%);
      opacity: 0;
      pointer-events: none;
      transition: transform 0.3s ease, opacity 0.3s ease;
      z-index: 999;
    }
  
    nav.active {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }
  
    header .btn {
      display: none;
    }
  
    .mobile-quote-btn {
      display: block;
    }
  
    header .logo img {
      top: -22px;
      height: 60px;
    }
  
    /* Hamburger animation */
    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
  
    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }
  
    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }
  }
  
  @media (max-width: 567px) {
    header {
      padding: 1.5rem 2rem;
    }
  }