/* ============================================
   PREMIUM NAVBAR
   ============================================ */

.header {
  top: 0;
  z-index: 999;
  width: 100%;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-bg {
  position: absolute;
  bottom: -14%;
  left: 0;
  width: 30%;
  z-index: 11111;
}
.navBar {
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  position: absolute;
  
}

.navBar__inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.navBar__logo {
  width: 168px;
  height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
}

.navBar__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.navBar__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  margin: 0;
}

.navBar__links li {
  display: block;
}

.navBar__links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  color: var(--color-white) !important;
  font-family: "font_main";
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  position: relative;
  transform: translateY(0) scale(1);
  transform-origin: center;
  will-change: transform;
  transition:
    transform 650ms cubic-bezier(0.16, 1, 0.3, 1),
    text-shadow 650ms cubic-bezier(0.16, 1, 0.3, 1),
    color 350ms ease;
}

.navBar__links a::before {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-family: "font_bold";
  font-size: inherit;
  font-weight: 700;
  line-height: inherit;
  white-space: nowrap;
  opacity: 0;
  filter: blur(2px);
  transform: translateY(3px) scale(0.88);
  pointer-events: none;
  transition:
    opacity 420ms ease,
    filter 520ms ease,
    transform 650ms cubic-bezier(0.16, 1, 0.3, 1),
    text-shadow 650ms cubic-bezier(0.16, 1, 0.3, 1);
}

.navBar__links a[href="index.html"]::before {
  content: "الرئيسية";
}

.navBar__links a[href="about.html"]::before {
  content: "من نحن";
}

.navBar__links a[href="services.html"]::before {
  content: "خدماتنا";
}

.navBar__links a[href$="#sectors-roadmap"]::before {
  content: "القطاعات";
}

.navBar__links a[href="blog.html"]::before {
  content: "الأخبار";
}

.navBar__links a[href$="#slider-services"]::before,
.navBar__links a[href="gallary.html"]::before {
  content: "المعرض";
}

.navBar__links a[href="contactus.html"]::before {
  content: "تواصل معنا";
}

.navBar__links a:hover,
.navBar__links a:focus-visible,
.navBar__links a.active {
  z-index: 2;
  color: transparent !important;
  transform: translateY(-1px) scale(1.14);
}

.navBar__links a:hover::before,
.navBar__links a:focus-visible::before,
.navBar__links a.active::before {
  opacity: 1;
  filter: blur(0);
  text-shadow: 0 8px 24px rgba(255, 255, 255, 0.24);
  transform: translateY(0) scale(1);
}

.navBar__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.navBar__cta,
.ctm-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid rgba(0, 250, 206, 0.7);
  background: linear-gradient(135deg, #00FACE 0%, #00FACE 100%);
  color: #172436 !important;
  font-family: "font_bold";
  font-size: 15px;
  box-shadow: 0 16px 35px rgba(0, 250, 206, 0.2);
  white-space: nowrap;
}

.navBar__cta:hover,
.ctm-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(0, 250, 206, 0.3);
}

.navBar__toggle {
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.navBar__toggle .navicon {
  position: relative;
}

.logo-menu {
  width: 100%;
  text-align: center;
  padding: 10px 24px 0;
}

.logo-menu img {
  max-width: 165px;
  height: auto;
}

.btn-nav-res {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 24px;
}

@media (max-width: 1200px) {
  .navBar__inner {
    min-height: 82px;
  }

  .navBar__logo {
    width: 142px;
    height: 58px;
  }

  .navBar__links {
    display: none;
  }

  .navBar__toggle {
    display: inline-flex;
  }
}

@media (max-width: 576px) {
  .navBar__inner {
    min-height: 76px;
    width: 92%;
  }

  .navBar__logo {
    width: 124px;
    height: 52px;
  }

  .navBar__cta {
    min-height: 42px;
    padding: 0 14px;
    font-size: 13px;
  }

  .navBar__toggle {
    width: 42px;
    height: 42px;
  }

  .menu_responsive {
    width: min(330px, 88vw);
  }
}
