.navbar {
  background: none;
  background-color: transparent !important;
}
.navbar-content {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 100px;
  position: relative;
  flex: 0 0 auto;
  background-color: rgba(238, 240, 244, 0.05);
  padding: 8px 20px;
  border-radius: 50px;
}

.navbar-content .logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-content .logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
}

.navbar-content .logo-text {
  font-family: "IBM Plex Sans-Bold", Helvetica;
  color: #fff;
  font-size: 1.5rem;
}

.navbar-content .logo-title {
  font-family: "IBM Plex Sans-Bold", Helvetica;
  font-weight: 700;
  color: #fff;
  font-size: 1.5rem;
}

.navigation-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style-type: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: "IBM Plex Sans-Regular", Helvetica;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  padding: 10px 0;
  text-align: center;
}
.nav-item .nav-link:hover,
.nav-item.active .nav-link {
  color: #ffffff;
}

.active-indicator {
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #8543ad;
  border-radius: 39px;
}

.search-and-github {
  display: flex;
  align-items: center;
  gap: 16px;
}

.search-form {
  display: flex;
  align-items: center;
  width: 231px;
  padding: 8px 16px;
  background-color: var(--collection-1-color);
  border-radius: 24px;
  border: 1px solid var(--collection-1-200-2);
}

.search-form input {
  flex-grow: 1;
  border: none;
  background: transparent;
  font-family: var(--body-3-font-family);
  font-weight: var(--body-3-font-weight);
  color: var(--collection-1-300-2);
  font-size: var(--body-3-font-size);
}

.search-form button {
  background: none;
  border: none;
  cursor: pointer;
}

.search-icon {
  width: 24px;
  height: 24px;
  object-fit: scale-down;
}

.github-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--collection-1-color);
  border-radius: 8px;
  border: 1px solid var(--collection-1-200-2);
}

.github-icon {
  width: 27px;
  height: 26.44px;
  background-size: 100% 100%;
}

.btn-search {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent !important;
  background: none;
}

.search-form {
  padding: 0px;
  overflow: hidden;
  border: 1px solid #9ca7bb;
}
.search-form input {
  outline: none !important;
  box-shadow: none !important;
}
.search-form input::placeholder {
  color: #9ca7bb;
}
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler {
  margin-inline-start: auto;
  padding: 0 !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.navbar-toggler-icon {
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30" fill="none"%3E%3Cg fill="white"%3E%3Crect width="30" height="3" rx="3"%3E%3C/rect%3E%3Crect y="12" width="30" height="3" rx="3"%3E%3C/rect%3E%3Crect y="24" width="30" height="3" rx="3"%3E%3C/rect%3E%3C/g%3E%3C/svg%3E') !important;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 30px;
  height: 30px;
}
@media (max-width: 1199.98px) {
  .navbar-collapse {
    position: absolute !important;
    top: 80px;
    left: 0;
    right: 0;
    max-width: 1200px;
    width: 100%;
    height: auto;
    background-color: rgba(255, 255, 255);
    padding-top: 60px;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
    margin: 0 auto;
    z-index: 1000;
    padding: 1rem;
    border-radius: 30px;
  }

  .navbar-collapse.show {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .navbar-nav {
    display: flex;
    flex-direction: column;
    align-items: start;
  }

  .nav-item {
    margin: 4px 0;
  }

  .nav-link {
    font-family: "IBM Plex Sans-Regular", Helvetica;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    padding: 4px 0;
    color: rgba(0, 0, 0, 0.7);
  }

  .nav-item .nav-link:hover,
  .nav-item.active .nav-link {
    color: #000000;
  }

  .search-form-container {
    margin-top: 1rem;
  }
}

@media (max-width: 767.98px) {
  .search-form {
    width: 100%;
  }
  .github-link {
    width: 40px;
    height: 40px;
  }
}
