.elementor-1931 .elementor-element.elementor-element-71b07d2{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-1931 .elementor-element.elementor-element-dbdad5e{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}.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-dbdad5e *//* ===== DIGIFYRACE HEADER NAVIGATION ===== */

.digify-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #000;
  border-bottom: 1px solid rgba(255, 102, 0, 0.25);
  font-family: "Poppins", sans-serif;
  height: 64px; /* increased height for balance */
  display: flex;
  align-items: center;
}

/* Container */
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem; /* more breathing room horizontally */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* --- Logo --- */
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 170px; /* allow more visual space */
  height: 64px;
  overflow: hidden;
}

.logo-img {
  height: 32px; /* visible logo size */
  width: auto;
  transform: scale(1); /* normal size now */
  transform-origin: center center;
  display: block;
}

/* --- Menu --- */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.8rem; /* more space between menu items */
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item a {
  position: relative;
  color: #d1d1d1;
  font-size: 0.95rem; /* slightly larger text */
  font-weight: 500;
  text-decoration: none;
  padding: 0.45rem 0.9rem; /* comfortable padding */
  border-radius: 6px;
  transition: all 0.3s ease;
}

/* Hover effect - orange text + underline */
.nav-item a:hover {
  color: #ff6600;
}

.nav-item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #ff6600;
  border-radius: 1px;
  transition: width 0.3s ease;
}

.nav-item a:hover::after {
  width: 100%;
}

/* --- Active State --- */
.nav-item.active a {
  color: #ff6600;
  background: rgba(255, 102, 0, 0.12);
  border: 1px solid rgba(255, 102, 0, 0.25);
  box-shadow: 0 0 5px rgba(255, 102, 0, 0.25);
  padding: 0.42rem 0.9rem;
}

.nav-item.active a::after {
  display: none;
}

/* Hover Glow */
.nav-item a:hover {
  text-shadow: 0 0 6px rgba(255, 102, 0, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
}
.nav-menu {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Floating pill indicator */
.nav-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 28px;
  background: rgba(255, 102, 0, 0.15);
  border: 1px solid rgba(255, 102, 0, 0.25);
  border-radius: 6px;
  box-shadow: 0 0 6px rgba(255, 102, 0, 0.25);
  transition: all 0.3s ease;
  z-index: 0;
}

/* Ensure links appear above indicator */
.nav-item {
  position: relative;
  z-index: 1;
}

/* Active item text */
.nav-item.active a {
  color: #ff6600;
}

/* Hover glow */
.nav-item a:hover {
  color: #ff6600;
  text-shadow: 0 0 6px rgba(255, 102, 0, 0.4);
}

.nav-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 28px;
  background: rgba(255, 102, 0, 0.15);
  border: 1px solid rgba(255, 102, 0, 0.25);
  border-radius: 6px;
  box-shadow: 0 0 6px rgba(255, 102, 0, 0.25);
  transition: all 0.3s ease;
  z-index: 0;
}

.nav-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 28px;
  background: rgba(255, 102, 0, 0.15);
  border: 1px solid rgba(255, 102, 0, 0.25);
  border-radius: 6px;
  box-shadow: 0 0 6px rgba(255, 102, 0, 0.25);
  transition: all 0.3s ease;
  z-index: 0;
  opacity: 0;              /* added */
}
.nav-menu.ready .nav-indicator {
  opacity: 1;              /* fade-in once positioned */
}

/* ===== HAMBURGER MENU ===== */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 100;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #ff6600;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* When active */
.nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ===== MOBILE MENU ===== */
@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 64px;
    right: 0;
    width: 100%;
    height: calc(100vh - 64px);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.5rem;
    gap: 0.8rem;
    background: rgba(10, 10, 10, 0.97);
    border-top: 1px solid rgba(255, 102, 0, 0.25);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s ease;
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-item a {
    font-size: 1rem;
    width: 100%;
    display: block;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    background: rgba(255, 102, 0, 0.1);
    border: 1px solid rgba(255, 102, 0, 0.2);
  }

  .nav-indicator {
    display: none;
  }
}/* End custom CSS */