body {
  font-family: Arial, sans-serif;
}

.top-bar {
  background-color: #052c49;
}


a {
  text-decoration: none !important;
  transition: color 0.3s ease;
}

a:hover {
  color: #93c73f !important;
}

header {
  border-bottom: 1px solid #f0f0f0;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.05);
}

.side-drawer {
  position: fixed;
  top: 0;
  left: -250px;
  height: 100%;
  width: 250px;
  background: #fff;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
  z-index: 1050;
  transition: left 0.3s ease;
  padding: 20px;
}

.side-drawer.open {
  left: 0;
}

.side-drawer a {
  display: block;
  padding: 10px 0;
  font-size: 1rem;
  color: #000;
}

.side-drawer a:hover {
  color: #93c73f;
}

.dropdown-menu a {
  font-size: 0.9rem;
  padding: 5px 15px;
}

.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1049;
  display: none;
}

.backdrop.show {
  display: block;
}

.bottom-nav {
  display: none;
  background: #f8f9fa;
  border-top: 1px solid #e0e0e0;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
}

.bottom-nav a {
  flex: 1;
  text-align: center;
  padding: 10px 0;
  color: #000;
  font-size: 1rem;
}

.bottom-nav a.active {
  color: #93c73f;
}

@media (max-width: 992px) {
  .top-bar {
    display: none;
  }

  nav {
    display: none;
  }

  .bottom-nav {
    display: flex;
  }

  .side-drawer {
    display: block;
  }
}

@media (min-width: 992px) {
  .bottom-nav {
    display: none;
  }

  nav a {
    margin-right: 20px;
  }

  nav .dropdown-menu {
    padding: 10px 20px;
  }
}


.logo {
  max-height: 50px; 
  height: auto; 
  width: auto;
  margin-right: 1rem;
}


@media (max-width: 768px) {
  .logo {
    max-height: 30px; 
    margin-right: 0.5rem; 
  }
}
