.elementor-11264 .elementor-element.elementor-element-8d82865{--display:flex;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS *//* ========= YOGI'S VPS – GLOBAL HEADER STYLES ========= */

.sby-header {
  width: 100%;
  background: radial-gradient(circle at top left, #101827 0%, #050814 55%, #020308 100%);
  color: #e5e7eb;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  position: sticky;
  top: 0;
  z-index: 9999;
}

.sby-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* Logo */
.sby-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.sby-logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #0ea5e9, #22c55e);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: #f9fafb;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.8);
}

.sby-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.sby-logo-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #f9fafb;
}

.sby-logo-subtitle {
  font-size: 0.75rem;
  color: #9ca3af;
}

/* Nav base */
.sby-nav {
  flex: 1;
}

.sby-nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sby-nav-list li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #e5e7eb;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, transform 0.12s ease;
}

.sby-nav-list li a:hover,
.sby-nav-list li a:focus {
  background: rgba(148, 163, 184, 0.14);
  color: #f9fafb;
  transform: translateY(-1px);
}

/* Right CTA button */
.sby-header-cta {
  display: flex;
  align-items: center;
}

.sby-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.7rem 1.3rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.12s ease,
    box-shadow 0.18s ease;
}

.sby-btn-primary {
  background: linear-gradient(135deg, #0ea5e9, #22c55e);
  color: #0b1120;
  box-shadow: 0 10px 22px rgba(34, 197, 94, 0.35);
}

.sby-btn-primary:hover,
.sby-btn-primary:focus {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(34, 197, 94, 0.45);
}

/* Mobile nav toggle */
.sby-nav-toggle {
  display: none;
}

.sby-nav-toggle-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  cursor: pointer;
  padding: 0 9px;
}

.sby-nav-toggle-btn span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

/* ========== MOBILE ========== */
@media (max-width: 991px) {
  .sby-header-inner {
    padding: 10px 16px;
  }

  .sby-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: radial-gradient(circle at top left, #020617 0%, #020308 60%, #020308 100%);
    border-bottom: 1px solid rgba(15, 23, 42, 0.9);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.25s ease, opacity 0.18s ease;
  }

  .sby-nav-list {
    flex-direction: column;
    align-items: stretch;
    padding: 10px 14px 16px;
    gap: 4px;
  }

  .sby-nav-list li a {
    justify-content: flex-start;
    padding: 0.85rem 1.1rem;
    font-size: 1rem; /* bigger tap targets on mobile */
    width: 100%;
  }

  .sby-header-cta {
    display: none; /* simplify mobile header; can show inside nav if you want */
  }

  .sby-nav-toggle-btn {
    display: inline-flex;
  }

  .sby-header-left {
    flex: 1;
  }

  .sby-header-inner {
    justify-content: space-between;
  }

  /* Toggle open state */
  .sby-nav-toggle:checked ~ .sby-nav {
    max-height: 340px; /* adjust if more items */
    opacity: 1;
    pointer-events: auto;
  }

  .sby-nav-toggle:checked + .sby-nav-toggle-btn span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .sby-nav-toggle:checked + .sby-nav-toggle-btn span:nth-child(2) {
    opacity: 0;
  }
  .sby-nav-toggle:checked + .sby-nav-toggle-btn span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* ========== TABLET / DESKTOP ========== */
@media (min-width: 992px) {
  .sby-header-inner {
    gap: 24px;
  }

  .sby-header-left {
    flex: 0 0 auto;
  }

  .sby-nav {
    flex: 1 1 auto;
  }

  .sby-header-cta {
    flex: 0 0 auto;
  }
}/* End custom CSS */