/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* Navbar */
.navbar {
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.4); /* Slightly transparent */
  border: 1px solid #008dd230;
  display: flex;
  height: 120px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  position: fixed !important;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  backdrop-filter: blur(20px) saturate(180%);
  width: 95%;

  transition: background 0.3s ease-in-out;
}

.logo-container .logo {
  height: 50px;
  margin-left: 10px;
}

.hamburger {
  font-size: 24px;
  background: none;
  border: none;
  color: #007BFF;
  cursor: pointer;
  display: none;
  margin-right: 10px;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100%;
  background: #01e3b67a;
  backdrop-filter: blur(20px) saturate(180%);
  padding-top: 60px;
  z-index: 2000;
  transition: left 0.3s ease-in-out;
}

.sidebar.active {
  left: 0;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

.nav-links {
  list-style: none;
  padding: 0;
}

.nav-links li {
  padding: 15px 20px;
}

.nav-links li a {
  color: rgb(8, 8, 8);
  text-decoration: none;
  display: block;
  transition: background 0.3s;
}

.nav-links li a:hover {
  background: #e0e1e1;
}
/* Top Navigation */



.sidebar-buttons {
  margin-top: 20px;
  text-align: center;
}

.nav-buttons{
  display: flex;
  gap: 1rem;
  
}
.nav-buttons button{
  display: flex;
color: white;
  
}
.nav-buttons a{
 text-decoration: none;
  
}



/* Responsive Styles */
@media (max-width: 768px) {
  .hamburger {
      display: block;
      color: rgb(6, 43, 178);
  }

}

@media (max-width: 1080px) {
  .hamburger {
      display: block;
      color: rgb(6, 43, 178);
  }

}

@media (max-width: 480px) {
  .hamburger {
      display: block;
      color: rgb(6, 43, 178);
  }

}



/* Topbar */
.topbar {
  font-size: 1.25rem;
  font-weight: 300;
  display: flex;

  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  padding-right: 16px;
 

}

/* Navigation Links */
.topnav-links {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(27, 27, 27);
  margin: auto;
}

.topnav-links li {
  margin: 0 10px;
  color: rgb(27, 27, 27);
}

.topnav-links li a {
  color: rgb(27, 27, 27);
  text-decoration: none;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.topnav-links li a:hover {
  color: #1abc9c;
}

/* Buttons */
.nav-buttons {
  display: flex;
  align-items: center;
}



/* Responsive Styles */
@media (max-width: 1100px) {
  .topbar {
     display: none;
  }

  
}
/* Responsive Styles */
@media (max-width: 480px) {
  .topbar {
     display: none;
  }

  
}
