/* Navbar section start here */
#sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
}


.top-bar {
  background: linear-gradient(135deg, rgb(3, 196, 254), rgb(246, 78, 183));
  color: #fff;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  text-align: center;
}

.navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  height: 45px;
  width: auto;
  margin-right: 10px;
}

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

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23091e3e' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(9,30,62,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-nav .nav-link {
  position: relative;
  color: #091e3e;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  margin-left: 1rem;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  background: linear-gradient(135deg, rgb(3, 196, 254), rgb(246, 78, 183));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(135deg, rgb(3, 196, 254), rgb(246, 78, 183));
  border-radius: 10px;
  transition: width 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

@media (max-width: 991.98px) {
  .navbar-nav {
    margin-top: 1rem;
  }

  .navbar-nav .nav-link {
    margin-left: 0;
  }
}

@media (max-width: 576px) {
  .navbar-brand img {
    height: 40px;
  }

  .navbar-toggler {
    padding: 0.25rem 0.5rem;
  }

  .navbar-nav .nav-link {
    font-size: 0.95rem;
  }
}
/* Navbar section end here */
