.elementor-524 .elementor-element.elementor-element-4375bcb{--display:flex;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;--align-items:center;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-524 .elementor-element.elementor-element-4636af2{width:100%;max-width:100%;margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 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 *//* ═══════════════════════════════════════════════════
   CREDEX — GLOBAL HEADER STYLES
   Namespace: cx-nav-*
   Pure CSS — no JS needed
   ═══════════════════════════════════════════════════ */

/* ── Base Nav ── */
.cx-nav {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  padding: 1.5rem 0;
  background: transparent;
  color: #fff;
}

.cx-nav-inner {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* ── Brand ── */
.cx-nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
}

.cx-nav-logo-svg {
  height: 80px;
  width: auto;
  display: block;
}

/* ── Logo Animations ── */
@keyframes cx-orbit-cw {
  to { stroke-dashoffset: -400; }
}
@keyframes cx-orbit-ccw {
  to { stroke-dashoffset: 400; }
}
@keyframes cx-pulse-flare {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.cx-orbit-cw {
  animation: cx-orbit-cw 12s linear infinite;
}
.cx-orbit-ccw {
  animation: cx-orbit-ccw 18s linear infinite;
}
.cx-orbit-fast {
  animation: cx-orbit-cw 8s linear infinite;
}
.cx-pulse-flare {
  animation: cx-pulse-flare 3s ease-in-out infinite alternate;
}

/* ── Nav Links (desktop) ── */
.cx-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex: 1 1 auto;
}

.cx-nav-link {
  color: inherit;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.25s ease;
}

.cx-nav-link:hover {
  transform: scale(1.05);
}

/* ── Actions ── */
.cx-nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 0 0 auto;
}

.cx-nav-apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.95rem 2rem;
  border-radius: 999px;
  background: #34D399;
  color: #0D3B31;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cx-nav-apply:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(52, 211, 153, 0.3);
}

/* ── Hidden Checkbox ── */
.cx-menu-checkbox {
  display: none;
}

/* ── Hamburger (hidden on desktop) ── */
.cx-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  cursor: pointer;
}

.cx-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburger → X when checked */
.cx-menu-checkbox:checked ~ .cx-hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.cx-menu-checkbox:checked ~ .cx-hamburger span:nth-child(2) {
  opacity: 0;
}
.cx-menu-checkbox:checked ~ .cx-hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile Drawer (hidden by default) ── */
.cx-mobile-nav {
  display: none;
}

.cx-mobile-link {
  display: block;
  padding: 0.9rem 0;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.25s ease;
}

.cx-mobile-link:last-child {
  border-bottom: none;
}

.cx-mobile-link:hover {
  color: #34D399;
}

/* ── Mobile ── */
@media (max-width: 767px) {
  .cx-nav {
    background: transparent;
    padding: 1rem 0 0;
  }

  .cx-nav-inner {
    padding-left: 1rem;
    padding-right: 1rem;
    gap: 1rem;
  }

  .cx-nav-links {
    display: none !important;
  }

  .cx-hamburger {
    display: flex;
  }

  .cx-nav-logo-svg {
    height: 50px;
  }

  .cx-nav-apply {
    min-height: 38px;
    padding: 0.6rem 1rem;
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  /* Drawer — collapsed by default */
  .cx-mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 0 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
  }

  /* Open drawer when checkbox is checked */
  .cx-menu-checkbox:checked ~ .cx-nav-inner ~ .cx-mobile-nav,
  .cx-nav:has(.cx-menu-checkbox:checked) .cx-mobile-nav {
    max-height: 400px;
    padding: 1rem 1rem 1.5rem;
    background: rgba(13, 59, 49, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
}/* End custom CSS */