.elementor-13 .elementor-element.elementor-element-7037865{--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 for html, class: .elementor-element-99ace39 *//* Liquid Glass – هم‌خوان با main.html */
:root {
  --lg-bg: rgba(255, 255, 255, 0.06);
  --lg-bg-strong: rgba(255, 255, 255, 0.1);
  --lg-border: rgba(255, 255, 255, 0.14);
  --lg-border-accent: rgba(28, 237, 112, 0.35);
  --lg-blur: 28px;
  --lg-radius: 22px;
  --liquid-ease: cubic-bezier(0.34, 1.2, 0.64, 1);
  --accent: #1ced70;
  --specular: rgba(255, 255, 255, 0.18);
  --specular-soft: rgba(255, 255, 255, 0.08);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  background: transparent;
  text-decoration: none;
}

.logo img {
  height: auto;
  max-width: 150px;
  display: block;
}

/* Navbar Wrapper – LTR: logo left, nav right */
.navbar-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 20px auto;
  position: relative;
  z-index: 100;
  direction: ltr;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  position: relative;
  gap: 24px;
  direction: ltr;
  width: 100%;
  max-width: 1200px;
}

.navbar-container .logo {
  position: relative;
  white-space: nowrap;
  order: 1;
  flex-shrink: 0;
}

.navbar-container .navbar {
  margin: 0;
  position: relative;
  order: 2;
}

/* Navbar – Liquid Glass panel (LTR) */
.navbar {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: var(--lg-bg);
  backdrop-filter: blur(var(--lg-blur)) saturate(140%);
  -webkit-backdrop-filter: blur(var(--lg-blur)) saturate(140%);
  padding: 12px 20px;
  border-radius: var(--lg-radius);
  width: fit-content;
  border: 1px solid var(--lg-border);
  box-shadow: 
    0 1px 0 var(--specular) inset,
    0 8px 28px -8px rgba(0, 0, 0, 0.3),
    0 4px 16px -4px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.45s var(--liquid-ease), border-color 0.3s ease;
  direction: ltr;
}

.navbar:hover {
  box-shadow: 
    0 1px 0 var(--specular) inset,
    0 12px 36px -8px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

.navbar nav {
  display: flex;
  justify-content: center;
}

.navbar nav ul {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
  gap: 8px;
  justify-content: center;
  direction: ltr;
}

.navbar nav ul li {
  margin: 0;
}

.navbar nav ul li a {
  color: #B0B0B0;
  font-size: 16px;
  padding: 10px 18px;
  text-decoration: none;
  transition: all 0.35s var(--liquid-ease);
  border-radius: 12px;
  display: block;
  text-align: center;
  direction: ltr;
}

/* Active nav item – Green Liquid Glass */
.navbar nav ul li a.is-active {
  position: relative;
  color: #ffffff;
  font-weight: 600;
  background: rgba(28, 237, 112, 0.12);
  border: 1px solid rgba(28, 237, 112, 0.35);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.16) inset,
    0 0 0 1px rgba(28, 237, 112, 0.18),
    0 10px 26px -12px rgba(28, 237, 112, 0.55),
    inset 0 0 22px rgba(28, 237, 112, 0.14);
}

.navbar nav ul li a.is-active::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 12px;
  background: linear-gradient(90deg, transparent, rgba(28, 237, 112, 0.55), transparent);
  background-size: 200% 100%;
  opacity: 0.55;
  pointer-events: none;
  animation: lgActiveShimmer 4s linear infinite;
}

@keyframes lgActiveShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.navbar nav ul li a:hover:not(.is-active):not(.contact) {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

/* Contact Button */
.navbar nav ul li a.contact {
  font-weight: 500;
  color: var(--accent);
}

.navbar nav ul li a.contact:hover {
  color: #00ff80;
  background: transparent;
}

/* Header Responsive – موبایل: لوگو بالا، ناو پایین؛ هر دو LTR */
@media (max-width: 768px) {
  .navbar-wrapper {
    padding: 0 12px;
    margin: 12px auto;
  }

  .navbar-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    direction: ltr;
  }

  .navbar-container .logo {
    margin: 0;
    order: 1;
  }

  .navbar-container .navbar {
    order: 2;
    width: 100%;
  }

  .logo img {
    max-width: 110px;
  }

  .navbar {
    flex-direction: row;
    align-items: center;
    padding: 6px 6px;
    width: 100%;
    max-width: 100%;
    border-radius: 10px;
  }

  .navbar nav ul {
    flex-direction: row;
    width: 100%;
    gap: 2px;
    flex-wrap: nowrap;
    justify-content: space-between;
    overflow-x: visible;
  }

  .navbar nav ul li {
    width: auto;
  }

  .navbar nav ul li a {
    text-align: center;
    font-size: 11px;
    padding: 6px 6px;
    border-radius: 8px;
  }

  .navbar nav ul li a.is-active::before {
    border-radius: 8px;
  }
}/* End custom CSS */