body {
  
  overflow-x: hidden; /* Prevent horizontal scroll */
}

nav a {
  text-decoration: none;
  color: inherit;
  font-size: 15px;
}
nav a:focus{
  outline: none;
}
.top-menu-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 200, 200, 0.5);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  width: 100%;
}

.gradient-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #ecfdf5, white, #d1fae5);
  opacity: 0.3;
  z-index: 0;
}

.container-top-header {
  max-width: 1300px;
  margin: auto;
  padding: 16px 70px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.container-top-header p {
  display: none;
}

.mobile-menu-button-container{
    display: none;
}

.logo-container {
  display: flex;
  align-items: center;
  gap:5px;
}

.logo {
  display: flex;
  align-items: center;
 
}

.badge {
  font-size: 12px;
  font-weight: 600;
  color: #047857;
  background: #ecfdf5;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid #bbf7d0;
}
.mobile-badge{
    display: flex;
    gap: 3px;
    align-items: center;
}

nav.desktop {
  display: flex;
  gap: 15px;
  align-items: center;
}

nav.desktop a {
  position: relative;
  font-weight: 500;
  color: #374151;
  font-size: 15px;
}

nav.desktop a:hover {
  color: #047857;
}

nav.desktop a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: linear-gradient(to right, #10b981, #34d399);
  transition: width 0.3s;
}

nav.desktop a:hover::after {
  width: 100%;
}

/* Remove ::after from CTA button */
nav.desktop a.cta-button::after {
  content: none !important;
}

.cta-button {
  background: linear-gradient(to right, #00a445, #009b60);
  color: white;
  padding: 8px 24px;
  border-radius: 4.6rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 15px;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(16, 185, 129, 0.3);
}

#ctaLink {
  color: #fff;
}
.mobile-top-header{
    display: flex;
    justify-content: space-between;
    align-items: center
}

.mobile-menu-button {
  display: none;
  cursor: pointer;
  border: none;
  padding: 8px;
  border-radius: 6px;
  background: none;
}
.mobile-menu-button:focus {
  outline: none;
}
.mobile-sheet {
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  width: 80%;
  height: 100vh;
  background: white;
  box-shadow: -2px 0 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: transform 0.3s ease;
  z-index: 100;
 
}

.mobile-sheet.open {
  transform: translateX(0);
}

.primary-menu {
  display: flex;
  gap: 20px;
}

.mobile-menu {
  display: block;
  
}
.mobile-menu  li {
  list-style: none;
}
  
.primary-menu li {
  list-style: none;
}

.primary-menu li a {
  color: #374151;
  font-weight: 500;
  transition: color 0.3s;
}

.primary-menu li a:hover {
  color: #10b981;
}

@media (max-width: 768px) {
  nav.desktop {
    display: none;
  }

  .mobile-menu-button {
    display: inline-block;
  }

  .container-top-header {
    padding: 1px 20px;
  }
  .mobile-badge{
    display: none;
  }
  .logo{
    margin-left: -3px;
  }
  nav a{
    font-weight: 500;
    
  }
  .mobile-menu-button-container{
  display: block;
}

}
