.elementor-kit-6{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* ========================================
   JEX HEADER - ELEMENTOR STYLES
   ======================================== */

:root {
  --jex-navy: #0d1f3c;
  --jex-green: #2ec98e;
  --jex-green-dark: #27b87e;
  --jex-white: #ffffff;
  --jex-text-muted: rgba(255, 255, 255, 0.78);
  --jex-border: rgba(255, 255, 255, 0.25);
}

/* Header Container */
.jex-header {
  background: var(--jex-navy);
  padding: 0 40px;
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
}

.jex-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo */

.jex-logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.jex-logo-icon {
  width: 20px;
  height: 34px;
  background: var(--jex-green);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jex-logo-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--jex-white);
}

.jex-logo-text {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--jex-white);
}

.jex-logo-text em {
  color: var(--jex-green);
  font-style: normal;
}

/* Navigation */
.jex-nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.jex-nav-menu a {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--jex-text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.jex-nav-menu a:hover {
  color: var(--jex-green);
}

/* CTA Buttons */
.jex-header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.jex-btn-outline {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--jex-white);
  border: 1.5px solid var(--jex-border);
  padding: 7px 16px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
}

.jex-btn-outline:hover {
  border-color: var(--jex-green);
  color: var(--jex-green);
}

.jex-btn-primary {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--jex-white);
  background: var(--jex-green);
  padding: 8px 18px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s ease;
  display: inline-block;
}

.jex-btn-primary:hover {
  background: var(--jex-green-dark);
}

/* Mobile Menu Toggle */
.jex-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.jex-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--jex-white);
  transition: all 0.3s ease;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

@media (max-width: 1024px) {
  .jex-header {
    padding: 0 20px;
  }
  
  .jex-nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--jex-navy);
    padding: 20px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .jex-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .jex-nav-menu {
    flex-direction: column;
    gap: 15px;
  }
  
  .jex-header-cta {
    display: none;
  }
  
  .jex-mobile-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
  .jex-header-inner {
    height: 56px;
  }
  
  .jex-logo-icon {
    width: 30px;
    height: 30px;
  }
  
  .jex-logo-icon svg {
    width: 16px;
    height: 16px;
  }
  
  .jex-logo-text {
    font-size: 12px;
  }
}/* End custom CSS */