*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, sans-serif;
  font-optical-sizing: auto;
  color: #0f0f0f;
}

.lang-en,
.lang-en button,
.lang-en input,
.lang-en select,
.lang-en textarea {
  font-family: 'Inter Tight', sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.lang-ar,
.lang-ar button,
.lang-ar input,
.lang-ar select,
.lang-ar textarea {
  font-family: 'Noto Sans Arabic', sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

a {
  text-decoration: none;
}

.site-main {
 
}

.app-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 16px 16px 0;
}

.app-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(3px);
  border: 1px solid #333;
}

.app-header-left,
.app-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.app-header-logo {
  height: 42px;
  min-width: 151px;
  width: auto;
  transition: opacity 0.25s ease;
}

.app-header-logo:hover {
  opacity: 0.9;
}

.app-header-nav {
  display: none;
}

.app-header-link {
  color: #fefefe;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.app-header-link:hover {
  opacity: 0.8;
}

.app-services-dropdown {
  position: relative;
}

.app-services-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  width: 280px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(3px);
  border: 1px solid #333;
  max-height: 400px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.2s ease;
}

.app-services-dropdown:hover .app-services-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.app-services-item {
  display: block;
  padding: 12px 16px;
  color: #fefefe;
  font-size: 16px;
  border-bottom: 1px solid #333;
}

.app-services-item:last-child {
  border-bottom: 0;
}

.app-services-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.app-language-switcher {
  position: relative;
}

.app-language-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: 0;
  color: #fefefe;
  font-size: 20px;
  cursor: pointer;
}

.app-language-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  width: 134px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  display: none;
}

.app-language-switcher.is-open .app-language-menu {
  display: block;
}

.app-language-option {
  display: block;
  padding: 8px 16px;
  font-size: 18px;
  background: linear-gradient(to right, #f8f8f8, #f6f8ff);
  color: #000;
}

.app-language-option.is-active {
  background: #222731;
  color: #fefefe;
}

.app-mobile-menu-btn {
  display: inline-flex;
  border: 0;
  background: transparent;
  color: #fefefe;
  padding: 8px;
}

.app-mobile-menu {
  display: none;
  margin: 16px auto 0;
  padding: 24px;
  border-radius: 28px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(3px);
  max-width: 1280px;
}

.app-mobile-menu.is-open {
  display: block;
}

.app-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.app-mobile-services-dropdown {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.app-mobile-services-toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.app-mobile-services-toggle svg {
  transition: transform 0.2s ease;
}

.app-mobile-services-panel {
  display: none;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #333;
  background: rgba(0, 0, 0, 0.75);
}

.app-mobile-services-dropdown.is-open .app-mobile-services-panel {
  display: block;
}

.app-mobile-services-dropdown.is-open .app-mobile-services-toggle svg {
  transform: rotate(180deg);
}

.services-dropdown-scroll::-webkit-scrollbar {
  width: 6px;
}
.services-dropdown-scroll::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.9);
  border-radius: 3px;
}
.services-dropdown-scroll::-webkit-scrollbar-thumb {
  background: #000;
  border-radius: 3px;
}
.services-dropdown-scroll {
  scrollbar-width: thin;
  scrollbar-color: #000 rgba(0, 0, 0, 0.9);
}

.service-card-hidden {
  display: none;
}

.services-expanded .service-card-hidden {
  display: block;
}

[data-services-toggle="true"].is-open [data-services-toggle-arrow="true"] {
  transform: rotate(180deg);
}

@media (min-width: 1024px) {
  .app-header {
    padding: 24px 80px 0;
  }

  .app-header-inner {
    padding: 12px 14px;
  }

  .app-header-left {
    gap: 34px;
  }
  
  .is-en .app-header-left {
    gap: 120px;
  }

  .app-header-nav {
    display: flex;
    align-items: center;
    gap: 28px;
  }

  .app-mobile-menu-btn {
    display: none;
  }

  
}

@media (max-width: 1024px) {
  .app-header-inner {
    width: 100%;
    justify-content: space-between;
  }
}

.app-header.is-ar .app-header-inner {
  direction: rtl;
  flex-direction: row-reverse;
}


.app-header.is-ar .app-header-inner .app-header-left {
   direction: rtl;
  flex-direction: row-reverse;
}


.app-header.is-ar .app-header-inner .app-header-left .app-header-nav 
{
  flex-direction: row;
}

.app-header.is-ar .app-header-nav {
  flex-direction: row-reverse;
}

@keyframes partners-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.animate-partners-scroll {
  animation: partners-scroll 45s linear infinite;
}

.bg_blue {
    background: url(../img/bg-blue.png) repeat-y top center white !important;
    background-size: cover !important;
    background-color: white;
}
.bg_black {
    background: url(../img/bg-black.jpg) repeat-y top center white !important;
    background-size: cover !important;
    background-color: black;
}

.btn-send {
padding-top: 0 !important;
}

.contact-cf7 {
  color: #5a5a5a;
  font-family: "Inter Tight", sans-serif;
}

.contact-cf7 .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-cf7 .wpcf7-form p {
  margin: 0;
}

.contact-cf7 label {
  display: block;
  margin-bottom: 12px;
  color: #5a5a5a;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
}

.contact-cf7 input[type="text"],
.contact-cf7 input[type="email"],
.contact-cf7 input[type="tel"],
.contact-cf7 input[type="number"],
.contact-cf7 input[type="date"],
.contact-cf7 textarea,
.contact-cf7 select {
  width: 100%;
  border: 1px solid #5a5a5a;
  background: transparent;
  color: #5a5a5a;
  font-family: "Inter Tight", sans-serif;
  font-size: 18px;
  font-weight: 500;
  box-shadow: 0 -1px 7.2px 0 #d9daf7;
  outline: none;
}

.contact-cf7 input[type="text"],
.contact-cf7 input[type="email"],
.contact-cf7 input[type="tel"],
.contact-cf7 input[type="number"],
.contact-cf7 input[type="date"],
.contact-cf7 select {
  border-radius: 9999px;
  padding: 12px 32px;
}

.contact-cf7 textarea {
  border-radius: 28px;
  padding: 12px 32px;
  resize: none;
  min-height: 140px;
}

.contact-cf7 input::placeholder,
.contact-cf7 textarea::placeholder {
  color: #5a5a5a;
  opacity: 1;
}

.contact-cf7 input:focus,
.contact-cf7 textarea:focus,
.contact-cf7 select:focus {
  box-shadow:
    0 0 0 2px rgba(59, 130, 246, 0.5),
    0 -1px 7.2px 0 #d9daf7;
}

.contact-cf7 .wpcf7-not-valid-tip {
  margin-top: 6px;
  font-size: 14px;
}

.contact-cf7 .wpcf7-response-output {
  margin: 0 !important;
  font-size: 16px;
  border-radius: 14px;
}

.contact-cf7 .wpcf7-form-control.wpcf7-submit.has-spinner.btn.btn-full-dark {
  padding-top: 0 !important;
}

.contact-cf7 input[type="date"]::-webkit-datetime-edit {
  color: #5a5a5a;
}

@media (max-width: 767px) {
  .contact-cf7 label {
    font-size: 18px;
  }
}

.unilaman-cf-inline-editor-enabled .cf-inline-wrap {
  display: contents;
}

.unilaman-cf-inline-editor-enabled .cf-inline-target {
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  border-radius: 4px;
  cursor: text;
}

.unilaman-cf-inline-editor-enabled .cf-inline-target:hover {
  background-color: #fff7cc;
  color: #0f0f0f !important;
  -webkit-text-fill-color: #0f0f0f !important;
}

.unilaman-cf-inline-editor-enabled .cf-inline-target.cf-inline-active {
  background-color: #fff1a8;
  box-shadow: 0 0 0 2px #f2cf67;
  outline: none;
  color: #0f0f0f !important;
  -webkit-text-fill-color: #0f0f0f !important;
}

.unilaman-cf-inline-editor-enabled .cf-inline-actions {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 100000;
  display: flex;
  gap: 8px;
}

.unilaman-cf-inline-editor-enabled .cf-inline-save-btn {
  border: 1px solid #0f0f0f;
  background: #ffffff;
  color: #0f0f0f;
  border-radius: 9999px;
  padding: 6px 14px;
  font-size: 14px;
  line-height: 1.2;
  cursor: pointer;
}

.unilaman-cf-inline-editor-enabled .cf-inline-save-btn:disabled {
  opacity: 0.6;
  cursor: wait;
}

.unilaman-cf-inline-editor-enabled .cf-inline-cancel-btn {
  border: 1px solid #98a2b3;
  background: #ffffff;
  color: #344054;
  border-radius: 9999px;
  padding: 6px 14px;
  font-size: 14px;
  line-height: 1.2;
  cursor: pointer;
}

.unilaman-cf-inline-editor-enabled .cf-inline-cancel-btn:disabled {
  opacity: 0.6;
  cursor: wait;
}

.unilaman-cf-inline-editor-enabled .cf-inline-status {
  position: fixed;
  right: 16px;
  bottom: 56px;
  z-index: 100000;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 8px;
  padding: 4px 8px;
  box-shadow: 0 4px 16px rgba(15, 15, 15, 0.1);
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.unilaman-cf-inline-editor-enabled .cf-inline-status.is-success {
  color: #0f7a2c;
  opacity: 1;
  transform: translateY(0);
}

.unilaman-cf-inline-editor-enabled .cf-inline-status.is-error {
  color: #b42318;
  opacity: 1;
  transform: translateY(0);
}

.unilaman-cf-inline-editor-enabled .cf-inline-status.is-saving {
  color: #475467;
  opacity: 1;
  transform: translateY(0);
}