.elementor-kit-6{--e-global-color-primary:#FFFFFF;--e-global-color-secondary:#FF8200;--e-global-color-text:#676767;--e-global-color-accent:#02CFF2;--e-global-typography-primary-font-family:"Cairo";--e-global-typography-primary-font-weight:600;--e-global-typography-primary-letter-spacing:0px;--e-global-typography-secondary-font-family:"Cairo";--e-global-typography-secondary-font-weight:400;--e-global-typography-secondary-letter-spacing:0px;--e-global-typography-text-font-family:"Cairo";--e-global-typography-text-font-weight:400;--e-global-typography-text-letter-spacing:0px;--e-global-typography-accent-font-family:"Cairo";--e-global-typography-accent-font-weight:500;--e-global-typography-accent-letter-spacing:0px;letter-spacing:0px;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-kit-6 h1{letter-spacing:0px;}.elementor-kit-6 h2{letter-spacing:0px;}.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 */<script>
(function(){
  // 1) remove zero-width joiner / non-joiner that sometimes يسببوا مشاكل
  function cleanZW(text){
    return text.replace(/[\u200B\u200C\u200D\uFEFF]/g,'');
  }

  // scan headings and counters and remove ZW chars if found
  var .elementor-kit-6s = [
    '.elementor-heading-title',
    '.elementor-counter-title',
    '.elementor-widget-text-editor p',
    'h1','h2','h3','h4','h5','h6'
  ];

  .elementor-kit-6s.forEach(function(sel){
    document.querySelectorAll(sel).forEach(function(el){
      // if element contains many child spans (split), unwrap them
      var spans = el.querySelectorAll('span');
      if(spans.length > 6){ // likely split text
        var txt = Array.from(spans).map(s => s.textContent).join('');
        el.textContent = cleanZW(txt);
      } else {
        // normal text: clean ZW characters only
        el.textContent = cleanZW(el.textContent || '');
      }
    });
  });

  // 2) remove pseudo-content injected via data-text attributes (used by some effects)
  document.querySelectorAll('[data-text]').forEach(function(el){
    el.removeAttribute('data-text');
  });

  // 3) safety: remove inline letter-spacing styles set directly on elements
  document.querySelectorAll('[style]').forEach(function(el){
    var st = el.getAttribute('style') || '';
    if(/letter-spacing\s*:/i.test(st) || /word-spacing\s*:/i.test(st)){
      // remove those properties
      var newSt = st.replace(/letter-spacing\s*:\s*[^;]+;?/ig,'').replace(/word-spacing\s*:\s*[^;]+;?/ig,'');
      el.setAttribute('style', newSt);
    }
  });

  // run again when new content loads (for SPA or lazy)
  var observer = new MutationObserver(function(m){
    m.forEach(function(){
      // re-run quick clean
      document.querySelectorAll('.elementor-heading-title, .elementor-counter-title').forEach(function(el){
        el.textContent = cleanZW(el.textContent || '');
      });
    });
  });

  observer.observe(document.body, {childList:true, subtree:true, characterData:true});
})();
</script>/* End custom CSS */