.topnav-container {
    height:60px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    position:fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color:rgba(165, 70, 41, 0.6);
    backdrop-filter: blur(8px);
    border-bottom: rgba(0, 0, 0, 0.1) 2px solid;
}
@media screen and (max-width: 1024px) {
    .site-logo {
        margin-left: 20px;
    }
}
@media screen and (min-width: 1024px) {
    .site-logo {
        margin-left: 0;
    }
}
/* Styling adjustments for small screen logo */
.site-logo {
    height: 50px;
    margin-top: 5px;
    
    transition: margin-left 0.5s ease;
}
/* Customizing the offcanvas drawer to appear on top */
.offcanvas-custom {
    height: 100vh; /* Full screen height */
    width: 100vw; /* Full screen width */
    background-color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); /* Border on the bottom */
    position: fixed; /* Fixed position at the top */
    top: 0; /* Align to the top of the screen */
    right: 0; /* Align to the left of the screen */
    z-index: 1050; /* Ensure it sits on top of other elements */
    overflow-y: auto; /* Allow scrolling if content overflows */
  }

  /* Optional: Adjust the offcanvas body padding if needed */
  .offcanvas-body {
    padding-top: 60px; /* Padding to ensure the content is not hidden behind any fixed navbar or container */
  }

  /* Styling for menu button */
  .menu-button {
    top: 8px; /* Space from the top */
    right: 10px; /* Space from the right */
    z-index: 1040; /* Ensure the button stays above the offcanvas */
    height: 45px;
  }
  /* Accordion Styling */
  .accordion-button {
    background-color: #f8f9fa;
    color: #000;
  }
  .accordion-item {
    border: none;
  }
  .accordion-button:not(.collapsed) {
    color: #0d6efd;
  }
  .accordion-body a {
    display: flex;
    align-items: center;
    padding: 5px 15px;
    text-decoration: none;
    color: #000;
  }
  .accordion-body i {
    font-size: 20px;
    margin-right: 10px;
  }
.navbar a {
    color: aliceblue;
}
.navbar {
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .navbar-nav {
    display: flex;
    gap: 20px;
  }

  /* Dropdown menu styling */
  .dropdown-menu {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: none;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  }

  .dropdown-item i {
    color:black;
    font-size: 20px;
    vertical-align: middle;
    margin-right: 10px;
  }
  .dropdown-menu a {
    color: black;
  }

  /* Hover effect for dropdowns */
  .nav-item:hover .dropdown-menu {
    display: block;
    transition: all 0.3s ease-in-out;
  }

  /* Hide navbar on small screens */
  @media (max-width: 992px) {
    .navbar {
      display: none;
    }
  }