.navbar-custom {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #ff79bc, #0047AB);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  padding: 16px 12px;
  /*    background-color: $gradient-primary;
  */
}

.navbar-custom.scrolled {
  background: linear-gradient(135deg, #ff79bc, #0047AB);
  border-bottom: 1px solid rgba(68, 97, 242, 0.3);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0;
}

.nav-logo {
  font-size: 1.8rem;
  font-weight: 800;
  background-color: linear-gradient(135deg, #4461f2, #3b52d9);
  background-color: linear-gradient(135deg, #4461f2, #3b52d9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.nav-logo img {
  width: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 576px) {
  .nav-logo img {
    width: 160px;
  }
}
.nav-logo::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: linear-gradient(135deg, #4461f2, #3b52d9);
  transition: width 0.3s ease;
}

.nav-logo:hover::after {
  width: 100%;
}

.menu-toggle {
  position: relative;
  width: 55px;
  height: 55px;
  background-color: linear-gradient(135deg, #4461f2, #3b52d9);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(68, 97, 242, 0.3);
  z-index: 1111 !important;
}

.menu-toggle::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.menu-toggle:hover::before {
  transform: scale(1);
}

.menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(68, 97, 242, 0.5);
}

.hamburger {
  position: relative;
  z-index: 2;
  width: 28px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
  transform-origin: center;
  border-radius: 1px;
}

.menu-toggle.active .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active .hamburger span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.menu-toggle.active .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  visibility: hidden;
  z-index: 999;
}

.nav-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(20, 20, 30, 0.98) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}

.nav-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.5s ease;
}

.nav-menu.active {
  visibility: visible;
}

.nav-menu.active .nav-overlay {
  opacity: 1;
}

.nav-menu.active .nav-content {
  transform: translateY(0);
  opacity: 1;
}

.nav-links {
  list-style: none;
  text-align: center;
  margin-bottom: 1rem;
  padding-left: 0 !important;
}

.nav-links li {
  margin: 1rem 0;
  overflow: hidden;
  position: relative;
}

.nav-link {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 2.8rem;
  font-weight: 700;
  display: inline-block;
  position: relative;
  transition: all 0.3s ease;
  letter-spacing: -1px;
}
@media (max-width: 767px) {
  .nav-link {
    font-size: 1.8rem !important;
  }
}

.nav-link::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0;
  height: 4px;
  background-color: linear-gradient(135deg, #4461f2, #3b52d9);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-link:hover::before {
  width: 100%;
}

.nav-link:hover {
  -webkit-background-clip: text;
          background-clip: text;
  transform: translateY(-10px) scale(1.01);
  color: #3c54dc !important;
}

.btn-cta {
  padding: 1.5rem 3rem;
  background-color: linear-gradient(135deg, #4461f2, #3b52d9);
  background: linear-gradient(135deg, #4461f2, #0047AB);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}
@media (min-width: 280px) and (max-width: 576px) {
  .btn-cta {
    font-size: 1rem;
    padding: 1rem 2rem;
  }
}

.btn-cta::before {
  /* content: ''; */
  position: absolute;
  inset: 0;
  background: var(--gradient-secondary);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.btn-cta:hover::before {
  transform: translateX(0);
}

.btn-cta:hover {
  color: white;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 40px rgba(68, 97, 242, 0.4);
}

.nav-link.active {
  color: #5864f1 !important;
  font-weight: bold;
}/*# sourceMappingURL=navigation.css.map */