/* Navbar Styles */
.navbar {
  font-family: 'Inter', Arial, sans-serif;
  background: transparent;
  transition: box-shadow 0.3s, background 0.3s;
}
.navbar-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(34,211,238,0.10) 0%, rgba(59,130,246,0.10) 100%);
  backdrop-filter: blur(12px);
  opacity: 1;
  pointer-events: none;
}
.container-navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  position: relative;
}
.navbar-logo-img {
  width: 128px;
  height: 40px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(34,211,238,0.15);
  background: #fff;
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-link {
  position: relative;
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  cursor: pointer;
  background: transparent;
  outline: none;
}
.nav-link.hovered, .nav-link:hover {
  color: #A5F3FC;
  background: rgba(30,41,59,0.3);
  box-shadow: 0 0 10px rgba(34,211,238,0.2);
}
.nav-link::after {
  content: '';
  display: block;
  position: absolute;
  left: 20%;
  right: 20%;
  bottom: 6px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #22d3ee, #3b82f6);
  opacity: 0;
  transform: scaleX(0);
  transition: opacity 0.2s, transform 0.2s;
}
.nav-link.hovered::after, .nav-link:hover::after {
  opacity: 1;
  transform: scaleX(1);
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 0.3em;
  background: none;
  border: none;
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.nav-dropdown-btn .chevron {
  display: inline-block;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  padding: 3px;
  margin-left: 4px;
  transform: rotate(45deg);
  transition: transform 0.2s;
}
.nav-dropdown.open .chevron, .nav-dropdown-btn:focus .chevron {
  transform: rotate(-135deg);
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  min-width: 180px;
  background: rgba(15,23,42,0.98);
  border: 1px solid rgba(34,211,238,0.15);
  border-radius: 0.75rem;
  box-shadow: 0 8px 32px rgba(34,211,238,0.10);
  z-index: 10;
  padding: 0.5rem 0;
  animation: dropdownIn 0.25s;
}
.dropdown-menu.open {
  display: block;
}
@keyframes dropdownIn {
  from { opacity: 0; transform: translateY(-10px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.dropdown-item {
  display: block;
  color: #fff;
  padding: 0.5rem 1.25rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.dropdown-item:hover {
  background: #3b82f6;
  color: #fff;
}
.gradient-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.5rem 1.5rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #22d3ee, #3b82f6);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 2px 12px rgba(34,211,238,0.15);
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  position: relative;
  overflow: hidden;
}
.gradient-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(34,211,238,0.25);
}
.sparkle {
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  background: radial-gradient(circle at 60% 40%, #fff 60%, #22d3ee 100%);
  border-radius: 50%;
  margin-right: 0.5em;
  box-shadow: 0 0 8px #22d3ee88;
}
.navbar-mobile-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(30,41,59,0.5);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 20;
  transition: background 0.2s, color 0.2s;
}
.menu-icon {
  display: block;
  width: 24px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  position: relative;
  transition: all 0.3s;
}
.menu-icon::before, .menu-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 24px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.menu-icon::before { top: -8px; }
.menu-icon::after { top: 8px; }
.navbar-mobile-btn.open .menu-icon {
  background: transparent;
}
.navbar-mobile-btn.open .menu-icon::before {
  transform: translateY(8px) rotate(45deg);
}
.navbar-mobile-btn.open .menu-icon::after {
  transform: translateY(-8px) rotate(-45deg);
}
.navbar-mobile-menu {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.97);
  z-index: 100;
  padding-top: 100px;
  gap: 1.5rem;
  transition: opacity 0.3s, transform 0.3s;
  opacity: 0;
  pointer-events: none;
}
.navbar-mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}
.mobile-link {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 0.75rem 2rem;
  border-radius: 0.75rem;
  transition: background 0.2s, color 0.2s;
  text-align: center;
  width: 100%;
}
.mobile-link:hover {
  background: #3b82f6;
  color: #fff;
}
.mobile-contact-btn {
  margin-top: 1.5rem;
  width: 80vw;
  max-width: 320px;
  justify-content: center;
}
.navbar-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, #22d3ee, #3b82f6);
  border-radius: 2px;
  width: 0%;
  z-index: 30;
  transition: width 0.2s;
}
.navbar.scrolled {
  box-shadow: 0 0 20px rgba(34,211,238,0.4);
  background: rgba(15,23,42,0.97);
}
@media (max-width: 900px) {
  .navbar-links { display: none; }
  .navbar-mobile-btn { display: flex; }
}
@media (min-width: 901px) {
  .navbar-links { display: flex; }
  .navbar-mobile-btn { display: none; }
  .navbar-mobile-menu { display: none !important; }
}

/* Custom Navbar Styles */
.custom-navbar {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  background: linear-gradient(90deg, #f8fff6 0%, #e8fbe8 100%);
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.03);
  font-family: 'Inter', Arial, sans-serif;
}
.custom-navbar-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 2rem;
}
.custom-navbar-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.custom-navbar-logo-bg {
  background: transparent;
  border-radius: 16px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}
.custom-navbar-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}
.custom-navbar-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #22c55e;
  letter-spacing: 0.01em;
  margin-left: 0.25rem;
}
.custom-navbar-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.custom-navbar-link {
  color: #374151;
  font-size: 1.08rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.18s;
  position: relative;
}
.custom-navbar-link:hover {
  color: #22c55e;
}
.custom-navbar-demo-btn {
  background: linear-gradient(90deg, #a8ff78 0%, #22c55e 100%);
  color: #0f172a;
  font-weight: 700;
  font-size: 1.08rem;
  border-radius: 999px;
  padding: 0.6rem 2.2rem;
  box-shadow: 0 2px 16px 0 #6efb6e33;
  text-decoration: none;
  margin-left: 2rem;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  display: inline-block;
}
.custom-navbar-demo-btn:hover {
  background: linear-gradient(90deg, #22c55e 0%, #a8ff78 100%);
  color: #000;
  box-shadow: 0 4px 24px 0 #22c55e44;
}
.custom-navbar-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  width: 0%;
  background: linear-gradient(90deg, #a8ff78 0%, #22c55e 100%);
  border-radius: 0 0 8px 8px;
  transition: width 0.2s;
  z-index: 100;
}
.custom-navbar-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 1.5rem;
  z-index: 110;
  transition: background 0.2s;
}
.hamburger-bar {
  width: 28px;
  height: 3.5px;
  background: #22c55e;
  border-radius: 2px;
  margin: 3px 0;
  transition: all 0.3s cubic-bezier(.4,2,.6,1);
}
.custom-navbar-hamburger.open .hamburger-bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.custom-navbar-hamburger.open .hamburger-bar:nth-child(2) {
  opacity: 0;
}
.custom-navbar-hamburger.open .hamburger-bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
.custom-navbar-mobile-menu {
  display: none;
  flex-direction: column;
  align-items: center;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 8px 32px 0 #22c55e22;
  z-index: 105;
  padding: 2rem 0 1.5rem 0;
  gap: 1.2rem;
  transition: opacity 0.2s, transform 0.2s;
  opacity: 0;
  pointer-events: none;
}
.custom-navbar-mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: auto;
  animation: fadeInDown 0.25s;
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
.custom-navbar-mobile-link {
  color: #22c55e;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.7rem 2.5rem;
  border-radius: 12px;
  transition: background 0.18s, color 0.18s;
  text-align: center;
  width: 100%;
}
.custom-navbar-mobile-link:hover {
  background: #e8fbe8;
  color: #0f172a;
}
.custom-navbar-mobile-demo-btn {
  background: linear-gradient(90deg, #a8ff78 0%, #22c55e 100%);
  color: #0f172a;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 999px;
  padding: 0.7rem 2.5rem;
  box-shadow: 0 2px 16px 0 #6efb6e33;
  text-decoration: none;
  margin-top: 0.5rem;
  width: 80vw;
  max-width: 320px;
  text-align: center;
  display: inline-block;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.custom-navbar-mobile-demo-btn:hover {
  background: linear-gradient(90deg, #22c55e 0%, #a8ff78 100%);
  color: #000;
  box-shadow: 0 4px 24px 0 #22c55e44;
}
@media (max-width: 900px) {
  .custom-navbar-inner {
    flex-direction: row;
    height: 64px;
    padding: 0 1rem;
    gap: 0;
    align-items: center;
    justify-content: space-between;
  }
  .custom-navbar-links {
    display: none !important;
  }
  .custom-navbar-demo-btn {
    display: none !important;
  }
  .custom-navbar-hamburger {
    display: flex;
    margin-left: 0;
  }
  .custom-navbar-mobile-menu {
    display: none;
  }
  .custom-navbar-mobile-menu.open {
    display: flex;
  }
}
@media (min-width: 901px) {
  .custom-navbar-hamburger {
    display: none !important;
  }
  .custom-navbar-mobile-menu {
    display: none !important;
  }
} 

