.elementor-589 .elementor-element.elementor-element-011c068{--display:flex;}/* Start custom CSS for html, class: .elementor-element-8ee7f81 *//* ========== HEADER BASE ========== */
.avc-header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: radial-gradient(circle at top, rgba(34,197,94,0.18), #020617);
  border-bottom: 1px solid rgba(15,23,42,0.9);
  box-shadow: 0 10px 35px rgba(0,0,0,0.85);
  backdrop-filter: blur(16px);
  border-radius: 0 0 18px 18px;   /* NEW ROUNDED HEADER EDGE */
}

.avc-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* ========== LOGO ========== */
.avc-header-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  transform: translateY(4px);
  animation: header-logo-float 6s ease-in-out infinite;
}

.avc-header-logo img {
  height: 42px;
  width: auto;
  display: block;
}

@keyframes header-logo-float {
  0%, 100% { transform: translateY(4px); }
  50%      { transform: translateY(0); }
}

/* ========== NAVIGATION ========== */
.avc-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.avc-nav ul {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.avc-nav li {
  position: relative;
}

/* CTA inside mobile menu */
.avc-nav-cta-mobile {
  display: none;
}

/* ========== BLACK TEXT + WHITE UNDERLINE ========== */
.avc-nav a {
  font-size: 14px;
  text-decoration: none;
  color: #000000 !important;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 4px 0;
  position: relative;
  font-weight: 700;
  transition: color 0.2s ease;
}

.avc-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: #ffffff !important;
  border-radius: 999px;
  transition: width 0.25s ease;
}

.avc-nav a:hover {
  color: #000000 !important;
}

.avc-nav a:hover::after {
  width: 100%;
}

/* ========== CTA BUTTON ========== */
.avc-header-cta {
  flex-shrink: 0;
}

.avc-header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 20px;
  border-radius: 16px; /* NEW ROUNDED BUTTON */
  border: 1px solid rgba(34,197,94,0.9);
  background: radial-gradient(circle at top, rgba(34,197,94,0.3), rgba(6,95,70,0.9));
  color: #ecfdf5;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(22,163,74,0.7);
  transition: 0.2s ease;
  white-space: nowrap;
}

.avc-header-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(22,163,74,0.9);
  background: rgba(34,197,94,0.95);
  color: #022c22;
}

/* ========== MOBILE TOGGLE ========== */
.avc-nav-toggle {
  display: none;
}

.avc-nav-toggle-label {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 34px;
  height: 34px;
  border-radius: 14px; /* NEW */
  border: 1px solid rgba(55,65,81,1);
  cursor: pointer;
  background: rgba(15,23,42,0.95);
  box-shadow: 0 10px 25px rgba(0,0,0,0.8);
}

.avc-nav-toggle-label span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
  transition: 0.25s ease;
}

.avc-nav-toggle:checked + .avc-nav-toggle-label span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.avc-nav-toggle:checked + .avc-nav-toggle-label span:nth-child(2) {
  opacity: 0;
}

.avc-nav-toggle:checked + .avc-nav-toggle-label span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ========== RESPONSIVE ========== */

@media (max-width: 992px) {
  .avc-header-inner {
    padding: 10px 14px;
  }
  .avc-header-logo img {
    height: 38px;
  }
}

/* MOBILE DROPDOWN FIX */
@media (max-width: 768px) {

  .avc-header-cta {
    display: none;
  }

  .avc-nav-toggle-label {
    display: inline-flex;
  }

  .avc-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;

    background: linear-gradient(
      to bottom,
      rgba(30, 41, 59, 0.98),
      rgba(15, 23, 42, 0.98)
    );
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(55,65,81,0.8);
    box-shadow: 0 22px 40px rgba(0,0,0,0.85);
    transform-origin: top;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s ease-in-out;

    border-radius: 0 0 22px 22px; /* NEW ROUNDED DROPDOWN */
  }

  .avc-nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 16px 14px;
    gap: 10px;
  }

  .avc-nav a {
    width: 100%;
    padding: 10px 6px;
    font-size: 15px;
    color: #000000 !important;
    background: rgba(255,255,255,0.06);
    border-radius: 14px; /* NEW ROUNDED MENU ITEMS */
  }

  .avc-nav a::after {
    background: #ffffff !important;
  }

  .avc-nav-toggle:checked ~ .avc-nav {
    max-height: 450px;
  }

  .avc-nav-cta-mobile {
    display: block;
    width: 100%;
  }

  .avc-nav-cta-mobile .avc-header-btn {
    width: 100%;
    margin-top: 8px;
  }
}

@media (max-width: 480px) {
  .avc-header-logo img {
    height: 34px;
  }
}/* End custom CSS */