body.no-scroll {
  overflow: hidden;
  height: 100vh;
  position: relative;
}

.custom-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  z-index: 9999;
  border-bottom: 1px solid #e2e8f0;
  padding: 0.75rem 1rem;
  font-family: sans-serif;
}

.custom-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.custom-logo{
  display:flex;
  gap:10px;
}
.custom-logo img {
  max-height: 50px;
  height: auto;
  width: auto;
}
.beta-container{
  display:none;
  align-items:center;
  gap:5px
}
.beta-badge {
  font-size: 0.875rem; 
  font-weight: 600; 
  color: #16a34a;
  background-color: #f0fdf4;
  padding: 0.08rem 0.7rem; 
  border-radius: 9999px;
  border: 1px solid #bbf7d0;
}
.custom-nav {
  display: none;
}

.custom-menu {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-menu a {
  text-decoration: none;
  color: #1f2937;
  font-weight: 600;
  transition: color 0.3s ease;
   position: relative;
    padding-bottom: 4px;
}



.custom-menu  a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: #00a63e; /* your brand color */
  transition: width 0.3s ease;
}

.custom-menu li a:hover::after {
  width: 100%;
}


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

.custom-cta-btn {
background-image: linear-gradient(to right, #16a34a, #059669); 
  color: white;
  font-weight: 600;
  padding:0.3rem 1rem;
  border-radius: 0.75rem; 
  width: 100%;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); 
  transition: all 0.3s ease;
  display:flex;
  align-items:center;
  gap:2px;
  margin-left:10px;
}

.custom-cta-btn:hover {
  transform: scale(1.05);
  background-image: linear-gradient(to right, #15803d, #047857); 
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15); 
  color:#fff;
}

.menu-toggle {
  background: none;
  border: none;
  display: inline-block;
  cursor: pointer;
  padding:10px 15px;
  
}

.menu-toggle svg {
  stroke: #374151;
}

.menu-toggle:focus, 
.menu-toggle:hover{
  box-shadow:none !important;
  outline:none !important;
  border:none !important;
  background:none !important;
  color: #374151;
  
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  height: 100vh;
  background: #f4f5f5;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  padding: 0;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 10000;
}

.mobile-menu.open {
  right: 0;
}

.cutom-mobile-menu{ 
  display:flex;
  justify-content:space-between;
  align-items:center;
 background-color:#f8f8f8;
}
.close-menu {
  align-self: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  color: #374151;
  box-shadow:none !important;
}
.close-menu:focus,
.close-menu:hover {
  box-shadow: none !important;
  outline: none !important;
  border: none !important;
  color: #374151;
  background:none;
}
.custom-logo-mobile{
  display:flex;
  gap:10px;
  align-items:center;
  padding:15px 10px;
  border-bottom:1px solid #eff0f2;
}
.custom-logo-mobile img{
  max-width:100px;
  width:auto;
  height:auto;
}
.beta-container-mobile{
 display:flex;
  align-items:center;
  gap:5px
}
.mobile-menu-list {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-left:15px !important;
   position: relative;
    padding-bottom: 4px;
  transition: color 0.3s ease;
  
}

.mobile-menu-list a {
  color: #1f2937;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
}


.mobile-menu-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: #00a63e;
  transition: width 0.3s ease;
}

.mobile-menu-list li a:hover::after {
  width: 100%;
}

.mobile-menu-list a:hover {
  color: #10b981;
}

.mobile-cta-btn {
  width: 90%;
  background: linear-gradient(to right, #16a34a, #059669); /* from-green-600 to-emerald-600 */
  color: white;
  border: none;
  border-radius: 30px; /* rounded-xl */
  font-weight: 600; /* font-semibold */
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display:flex;
  justify-content:center;
  align-items:center;
  gap:3px;
  margin-left:10px;
}

.mobile-cta-btn:hover {
  transform: scale(1.05);
  color:#fff;
}

/* Responsive */
@media (min-width: 768px) {
  .custom-nav {
    display: flex;
    align-items:center;
    gap:20px;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-menu {
    display: none;
  }
  .beta-container{
    display:flex;
  }
  .custom-header{
    padding: 0.90rem 1rem;
  }
}
