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;
    
    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, #ffffff, #ffffff);
    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: black;
    font-weight: bold;
    padding: 10px;
    position: relative;
  }
  .nav-links a:hover{
  text-decoration: none;
  color: black;
  }
  /* Removed ::after underline effect */
  h2{
  color: black;
  }
  /* 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: black;
    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;
  }
  /* Header General */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 50;
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Top Bar */
.top-bar {
  background-color: #003629;
  color: white;
  padding: 8px 0;
}

.top-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}

.hide-md {
  display: none;
}

@media (min-width: 768px) {
  .hide-md {
    display: flex;
  }
}

/* Social Icons */
.social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Main Header */
.main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px;
}

.main-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 40px;
  cursor: pointer;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 30px;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a,
.nav-links button {
  font-weight: 500;
  color: #333;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links button:hover {
  color: #003629;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 190px;
  background: white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  border-radius: 6px;
  margin-top: 8px;
  z-index: 10;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  color: #444;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background-color: #f3f3f3;
}

/* Login Button */
.login-btn {
  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;
}

.login-btn:hover {
  background-color: #926c4f;
}

/* Menu Icon for Mobile */
.menu-btn {
  background: none;
  border: none;
  font-size: 22px;
  color: #555;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .menu-btn {
    display: none;
  }
}

  /* Mobile */
  .harmburg {
    background: white;
    color: black;
    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, #ffffff, #ffffff);
      height: 68px;
      position: relative;
    }
  
    .harmburg {
      color: black;
      position: absolute;
      left: 15px;
      top: 50%;
      transform: translateY(-50%);
    }
  
    .mat-drawer-container img {
      height: 40px;
      position: relative;
      z-index: 1;
    }
  }
  