body {
    margin: 0;
    padding: 0;
  }
  
  nav button {
    margin-right: 3.5rem;
  }
  
  .button-5 {
    margin-right: 20px;
    align-items: center;
    background-clip: padding-box;
    background-color: #e88b22;
    border: 1px solid transparent;
    border-radius: .25rem;
    box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-family: "Red Hat Display", sans-serif;
    font-size: 16px;
    font-weight: 600;
    justify-content: center;
    line-height: 1.25;
    margin: 0;
    min-height: 3rem;
    padding: calc(.875rem - 1px) calc(1.5rem - 1px);
    position: relative;
    text-decoration: none;
    transition: all 250ms;
    user-select: none;
    width: auto;
  }
  
  .button-5:hover,
  .button-5:focus {
    background-color: #e88b22;
    box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
  }
  
  .button-5:hover {
    transform: translateY(-1px);
  }
  
  .button-5:active {
    background-color: #e88b22;
    box-shadow: rgba(0, 0, 0, .06) 0 2px 4px;
    transform: translateY(0);
  }
  
  .navbar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to right, #303233, #303233);
    padding: 15px 20px;
    min-height: 110px;
  }
  
  .logo img {
    height: 60px;
    cursor: pointer;
  }
  
  .nav-group {
    display: flex;
    align-items: center;
    gap: 20px; /* space between menu and button */
  }
  
  .nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
  }
  
  
  .nav-links a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 10px;
    position: relative;
  }
  .nav-links a:hover{
  text-decoration: none;
  }
  /* Removed ::after underline effect */
  
  /* Dropdown */
  .dropdown-menu {
    display: none;
    position: absolute;
    background: white;
    list-style: none;
    top: 100%;
    left: 0;
    z-index: 9999;
    padding: 0;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  
  .dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }
  
  .dropdown-menu li {
    padding: 8px 16px;
  }
  
  .dropdown-menu li a {
    color: black;
    display: block;
    text-decoration: none;
  }
  
  .dropdown-menu li a:hover {
    color: #e88b22;
  }
  
  .contact-button a {
    background: black;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
  }
  
  .contact-button a:hover {
    background: white;
    color: #e88b22;
  }
  
  /* Sidebar */
  .p-sidebar {
    display: none;
    position: fixed;
    top: 0;
    left: -250px;
    width: 220px;
    height: 100%;
    background: #fff;
    box-shadow: 2px 0 5px rgba(0,0,0,0.2);
    transition: left 0.3s ease-in-out;
    z-index: 1000;
    padding-top: 80px;
  }
  
  .p-sidebar.active {
    left: 0;
    display: block;
  }
  
  .p-sidebar i {
    position: absolute;
    top: 30px;
    right: 10px;
    font-size: 20px;
    color: #232526;
  }
  
  .p-sidebar ul {
    list-style: none;
    padding: 0;
  }
  
  .p-sidebar li {
    padding: 15px 20px;
  }
  
  .p-sidebar li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
  }
  
  /* Mobile */
  .harmburg {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 28px;
  }
  
  .mat-drawer-container {
    display: none;
  }
  
  .carousel-item img {
    width: 100%;
    object-fit: cover;
  }
  
  @media (min-width: 768px) {
    .carousel-item img {
      height: 100vh;
    }
  }
  
  @media (max-width: 767px) {
    .carousel-item img {
      height: 70vh;
    }
  }
  
  @media (max-width: 768px) {
    .navbar {
      display: none;
    }
  
    .mat-drawer-container {
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(to right, #414345, #232526);
      height: 68px;
      position: relative;
    }
  
    .harmburg {
      color: white;
      position: absolute;
      left: 15px;
      top: 50%;
      transform: translateY(-50%);
    }
  
    .mat-drawer-container img {
      height: 40px;
      position: relative;
      z-index: 1;
    }
  }
  