body {
  margin: 0;
  font-family: 'Ubuntu', sans-serif;
  background-color: #fff;
}


.navbar {
  position: fixed;
  top: 20px; 
  max-width: 360px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1200px;
  padding: 10px 10px;
  background-color: rgba(7, 7, 7, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);         
  border: 1px solid rgba(128, 128, 128, 0.4);   
  border-radius: 20px;                        
  transition: top 0.3s ease-in-out;
  z-index: 1000; 
}

.brand-badge {
  background: linear-gradient(
    15deg,
    #2f3f22,
    #40552b,
    #516b34,
    #628f3d,
    #74a945,
    #628f3d,
    #516b34,
    #40552b,
    #2f3f22
  ) no-repeat;
  color: #fff !important;    
  background-size: 300%;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 30px 10px -25px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}

.brand-badge:hover {
  background-position: right center;
  transform: translateY(-2px);
  color: #fff;
}

.container-fluid {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}

.navbar-brand {
  color: #16191c;
  font-weight: 700;
  font-size: 1.5rem;
  text-decoration: none;
}


.navbar-nav {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  justify-content: center;
  align-items: center;
}

.nav-item {
  margin-left: 1rem;
}

.nav-link {
  font-size: 1.1rem;
  display: block;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
  text-align: center;
}

.nav-link:hover{
  color: #f0f0f0;
}


.btn-gradient {
  background: linear-gradient(15deg, #880088, #aa2068, #cc3f47, #de6f3d, #f09f33, #de6f3d, #cc3f47, #aa2068, #880088) no-repeat;
  background-size: 300%;
  color: #fff;
  font-weight: bold;
  border: none;
  text-decoration: none;
  padding: 15px 20px;
  border-radius: 50px;
  text-shadow: 2px 2px 3px rgba(136, 0, 136, 0.5);
  box-shadow: 0 30px 10px -20px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease, transform 0.3s ease;
  text-align: right;
}

.collapse {
  text-align: right;
}

.btn-gradient:hover {
  background-position: right center;
  transform: translateY(-2px);
  color: #fff;
}

@media (max-width: 992px) {
  .btn-gradient {
    margin-top: 1rem;
  }

  .navbar {
    max-width: 450px;
    width: 90%;
  }
}

.navbar-toggler {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  padding: 0;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler:hover {
  background-color: #404040;
}

.navbar-toggler-icon {
  background-image: none;
  width: 25px;
  height: 4px;
  background-color: #fff;
  position: relative;
  transition: background-color 0.3s ease, height 0.3s ease;
  border-radius: 2px;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 25px;
  height: 4px;
  background-color: #fff;
  transition: background-color 0.3s ease, height 0.3s ease;
  border-radius: 2px;
}

.navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler-icon::after {
  top: 8px;
}

.navbar-toggler:hover .navbar-toggler-icon,
.navbar-toggler:hover .navbar-toggler-icon::before,
.navbar-toggler:hover .navbar-toggler-icon::after {
  background-color: #fff;
}

@media (max-width: 425px) {
  .navbar {
    padding: 10px;
    width: 90%;
  }
}
