@charset "UTF-8";
@font-face {
  font-family: "Cairo";
  src: url("fonts/Cairo-font/cairo-arabic-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0897-08E1, U+08E3-08FF, U+200C-200F, U+2066-2069, U+FB50-FDFF, U+FE70-FEFF;
}
@font-face {
  font-family: "Cairo";
  src: url("fonts/Cairo-font/cairo-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Cairo";
  src: url("fonts/Cairo-font/cairo-arabic-700-normal.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0897-08E1, U+08E3-08FF, U+200C-200F, U+2066-2069, U+FB50-FDFF, U+FE70-FEFF;
}
@font-face {
  font-family: "Cairo";
  src: url("fonts/Cairo-font/cairo-latin-700-normal.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --green: #17823c;
  --green-dark: #0f5c2a;
  --green-soft: #e7f6ec;
  --ink: #102418;
  --muted: #4a5c52;
  --line: #d7e4db;
  --bg: #f3f7f4;
  --white: #fff;
  --radius: 24px;
  --shadow: 0 18px 48px rgba(16, 36, 24, 0.1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 108px; }
html[dir="rtl"], html[dir="rtl"] body { direction: rtl; text-align: right; }
html[dir="ltr"], html[dir="ltr"] body { direction: ltr; text-align: left; }
body {
  font-family: "Cairo", Tahoma, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  text-align: start;
  line-height: 1.9;
  overflow-x: hidden;
  font-feature-settings: "kern", "liga";
}
img { max-width: 100%; display: block; }
img[src=""], img:not([src]) { display: none !important; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { width: min(1180px, calc(100% - 32px)); margin-inline: auto; }
.page-loading { display: none !important; }

.topbar {
  background: var(--green-dark);
  color: #e8f3ea;
  font-size: 13px;
  font-weight: 700;
}
.topbar-flex {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 42px; flex-wrap: nowrap;
}
.topbar-contacts { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.topbar-contacts a {
  display: inline-flex; align-items: center; gap: 8px;
  direction: ltr; unicode-bidi: isolate;
  background: rgba(255,255,255,.1);
  border-radius: 999px; padding: 5px 12px;
  white-space: nowrap;
}
.topbar-contacts i { font-size: 12px; opacity: .95; }
.topbar a:hover { color: #fff; background: rgba(255,255,255,.16); }
.topbar-regions { opacity: .9; white-space: nowrap; }

.up, .whatsapp-float {
  position: fixed; z-index: 45;
  width: 50px; height: 50px; border-radius: 50%;
  display: grid; place-items: center;
  color: #fff; box-shadow: var(--shadow);
}
.up {
  inset-inline-end: 18px; bottom: 78px;
  background: var(--green);
  opacity: 0; pointer-events: none; transition: .2s;
}
.up.show { opacity: 1; pointer-events: auto; }
.whatsapp-float {
  inset-inline-end: 18px; bottom: 18px;
  background: #1fad4f; font-size: 24px;
}
.whatsapp-float:hover { background: #178a3e; color: #fff; }

.nav-bar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}
.nav-bar.scrolled { border-bottom-color: var(--line); box-shadow: 0 8px 24px rgba(16,36,24,.06); }
.nav-flex, .navbar-mobile .nav-flex {
  display: flex; align-items: center; gap: 20px;
  min-height: 78px;
}
.navbar-brand img { height: 52px; width: auto; }
.navbar-links {
  display: flex; align-items: center; gap: 6px;
  margin-inline-start: auto;
  flex-wrap: wrap;
}
.navbar-links a {
  display: block; padding: 8px 14px; border-radius: 999px;
  font-weight: 700; font-size: 15px;
}
.navbar-links .current-menu-item a,
.navbar-links a:hover { background: var(--green-soft); color: var(--green-dark); }
.languages {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line); border-radius: 999px;
  padding: 6px 14px; font-weight: 700;
}
.languages img { width: 18px; height: 18px; border-radius: 50%; object-fit: cover; }
.toggle-btn {
  display: none; width: 42px; height: 42px; border: 0; background: transparent;
}
.toggle-btn .bar {
  display: block; height: 2px; background: var(--ink); margin: 6px 0; border-radius: 2px;
}
.navbar-mobile {
  position: fixed; inset: 0; background: #fff; z-index: 60;
  transform: translateX(110%); transition: .25s ease; padding: 18px;
}
.navbar-mobile.open { transform: none; }
.mobile-links a { display: block; padding: 14px 8px; border-bottom: 1px solid var(--line); font-weight: 700; }
.close-btn { margin-inline-start: auto; font-size: 22px; }

.home-header { position: relative; overflow: hidden; }
.home-header .item { position: relative; }
.home-header .image-wrap {
  position: absolute; inset: 0; z-index: 0;
}
.home-header img, .home-header video {
  width: 100%; height: 100%; object-fit: cover; object-position: center center;
}
.home-header video {
  display: block; pointer-events: none; background: #102418;
}
.home-header video::-webkit-media-controls { display: none !important; }
.home-header .overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(8,28,16,.2) 0%, rgba(8,28,16,.28) 45%, rgba(8,28,16,.62) 100%);
}
.home-header .info {
  position: absolute; inset-inline-start: 8%; bottom: 12%; z-index: 2;
  color: #fff; max-width: 680px;
}
html[dir="ltr"] .home-header .info { inset-inline-start: 8%; text-align: left; }
.hero-kicker {
  display: inline-block; margin-bottom: 12px;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px; padding: 6px 14px; font-size: 13px; font-weight: 700;
}
.home-header h2 { font-size: clamp(30px, 5vw, 54px); line-height: 1.3; margin-bottom: 12px; }
.home-header h2:empty { display: none; }
.home-header .text { font-size: 18px; opacity: .94; margin-bottom: 22px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.ghost-btn {
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.55); color: #fff !important;
  border-radius: 999px; padding: 11px 22px; font-weight: 700;
}
.ghost-btn:hover { background: rgba(255,255,255,.12); }
.home-header .owl-nav button {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.18) !important; color: #fff !important;
  font-size: 18px;
}
.home-header .owl-nav .owl-prev { inset-inline-start: 18px; }
.home-header .owl-nav .owl-next { inset-inline-end: 18px; }

.about, .services-section, .testimonials, .contact-section, .contact-page, .careers-page, .complains-page, .services-page, .single-page, .another-pages {
  padding: 80px 0;
}
.section-kicker {
  color: var(--green); font-weight: 700; font-size: 13px;
  letter-spacing: .04em; margin-bottom: 6px;
}
.logo-head, .page-head, .another-pages h3, .head h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  margin-bottom: 14px;
  color: var(--green-dark);
}
.about .logo-head {
  font-size: 24px;
  margin-bottom: 10px;
  line-height: 1.4;
}
.head, .about .content { margin-bottom: 28px; }
.head .text, .single-page .text, .another-pages .text { color: var(--muted); font-size: 17px; }
.about .text {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
  font-weight: 400;
  max-width: 540px;
}
.about .text h1, .about .text h2, .about .text h3, .about .text h4,
.about .text p, .about .text b, .about .text strong {
  font-size: 15px !important;
  font-weight: 400 !important;
  color: var(--muted) !important;
  text-align: start !important;
  line-height: 1.85;
  margin: 0 0 12px;
}
.about .images { display: grid; grid-template-columns: 1.2fr .8fr; gap: 14px; }
.about .image-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about .image-wrap img { width: 100%; height: 100%; object-fit: cover; min-height: 160px; }
.about .image1-wrap { grid-row: span 2; min-height: 100%; }

.stats-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  margin-top: 22px;
}
.stat {
  background: var(--white); border-radius: 14px; padding: 12px 10px;
  box-shadow: var(--shadow); text-align: center;
}
.stat b { display: block; font-size: 18px; color: var(--green-dark); }
.stat span { color: var(--muted); font-size: 12px; font-weight: 700; }

.services-section .wrapper, .services-page .wrapper, .gallery.wrapper {
  display: grid; gap: 18px;
}
.services-section .wrapper, .services-page .wrapper {
  grid-template-columns: repeat(3, 1fr);
}
.box {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  min-height: 360px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.box:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(16,36,24,.14); }
.box .image-wrap { overflow: hidden; }
.box .image-wrap img { width: 100%; height: 200px; object-fit: cover; transition: transform .35s ease; }
.box:hover .image-wrap img { transform: scale(1.06); }
.box .body { padding: 20px 18px 22px; display: flex; flex-direction: column; flex: 1; }
.box h4 { font-size: 20px; margin-bottom: 8px; }
.box .text {
  color: var(--muted); font-size: 14px; line-height: 1.75; font-weight: 400;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
  min-height: 5.2em;
}
.box video, .box iframe, .box .wp-video, .box img.alignnone { display: none; }
.more-link {
  margin-top: auto; padding-top: 14px;
  color: var(--green) !important; font-weight: 700;
}
.main-btn, .wpcf7-submit, button[type=submit], .wpcf7 input[type=submit] {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--green) !important; color: #fff !important; border: 0 !important;
  border-radius: 999px; padding: 12px 28px; font-weight: 700; cursor: pointer;
  font-family: inherit; width: auto !important; min-width: 150px;
}
.main-btn:hover, .wpcf7-submit:hover, .wpcf7 input[type=submit]:hover {
  background: var(--green-dark) !important; color: #fff !important;
}

.our-works-gallery { padding: 80px 0; background-size: cover; background-position: center; position: relative; }
.our-works-gallery::before {
  content: ""; position: absolute; inset: 0; background: rgba(10,28,16,.55);
}
.our-works-gallery .container { position: relative; z-index: 1; }
.our-works-gallery .head { color: #fff; }
.our-works-gallery .logo-head, .our-works-gallery .text, .our-works-gallery .section-kicker { color: #fff; }
.gallery.wrapper { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.gallery .image-wrap { border-radius: 18px; overflow: hidden; }
.gallery img { width: 100%; height: 180px; object-fit: cover; transition: transform .3s; }
.gallery .image-wrap:hover img { transform: scale(1.05); }

.testimonials { background: var(--white); }
.testimonials-slider .item {
  background: var(--bg); border-radius: var(--radius); padding: 22px;
  border: 1px solid var(--line); min-height: 210px;
}
.item-head { display: flex; gap: 12px; align-items: center; margin-bottom: 10px; }
.item-head .image-wrap img, .avatar-fallback {
  width: 56px; height: 56px; border-radius: 50%; object-fit: cover;
}
.avatar-fallback {
  display: grid; place-items: center;
  background: var(--green-soft); color: var(--green-dark); font-weight: 700;
}
.rate .colored { color: #e0b100; }
.rate .fa-star:not(.colored) { color: #d5ddd8; }

.contact-section .links { margin-top: 18px; display: grid; gap: 10px; }
.contact-section .links a, .contact-section .links li {
  display: flex; gap: 10px; align-items: center;
  background: var(--white); border-radius: 16px; padding: 14px 16px;
  box-shadow: 0 8px 20px rgba(16,36,24,.04);
}
.contact-section .links i { color: var(--green); width: 18px; }
.form-wrapper {
  background: var(--white); border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow);
}
.wpcf7 form { display: grid; gap: 12px; border: 0; }
.wpcf7 fieldset { border: 0; margin: 0; padding: 0; min-width: 0; }
.wpcf7 .hidden-fields-container { display: none; }
.wpcf7 .input-wrap p { margin: 0; }
.wpcf7 br { display: none; }
.wpcf7 label {
  display: block; font-size: 13px; font-weight: 700;
  color: var(--green-dark); margin-bottom: 6px;
}
.wpcf7 input:not([type=submit]):not([type=button]):not([type=checkbox]):not([type=hidden]),
.wpcf7 textarea, .wpcf7 select {
  width: 100%; border: 1px solid var(--line); border-radius: 14px;
  padding: 12px 14px; font-family: inherit; background: #f7faf8;
  color: var(--ink); margin: 0;
}
.wpcf7 textarea { min-height: 130px; resize: vertical; }
.wpcf7 input:focus, .wpcf7 textarea:focus, .wpcf7 select:focus {
  outline: 2px solid var(--green-soft); border-color: var(--green);
  background: #fff;
}
.wpcf7 .wpcf7-not-valid-tip { font-size: 12px; color: #c0392b; margin-top: 4px; }
.wpcf7-response-output { margin: 8px 0 0; border-radius: 12px; }
.map iframe { width: 100%; max-width: 100%; min-height: 240px; border: 0; border-radius: 18px; }

.footer { background: #102418; color: #e7eee8; padding: 42px 0 18px; }
.footer-menu { display: flex; flex-wrap: wrap; gap: 14px 22px; margin-bottom: 22px; }
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-links a {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
}
.social-links i { font-family: "Font Awesome 6 Brands"; font-weight: 400; line-height: 1; }
.social-links .whatsapp a { background: #67D449; }
.social-links .instagram a { background: linear-gradient(135deg, #fae100 0%, #ff1c74 45%, #6c1cd1 100%); }
.social-links .twitter a { background: #41A1F2; }
.social-links .linkedin a { background: #007AB9; }
.social-links .facebook a { background: #1877F2; }
.social-links .snapchat a { background: #FFFC01; color: #111; }
.social-links .telegram a { background: #039BE5; }
.social-links a:hover { transform: translateY(-2px); }
.flex-wraaper, .flex-wrapper {
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
}
.footer .logo img, .footer .vision img { height: 54px; width: auto; }
.copyright { background: #0c1c13; color: #c4d2c8; padding: 14px 0; }
.copyright .container { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; align-items: center; }
.aait { display: inline-flex; align-items: center; gap: 8px; }

.single-page .row, .about .row, .contact-section .row { display: flex; flex-wrap: wrap; gap: 22px; }
.single-page .image-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.col-sm-12 { width: 100%; }
@media (min-width: 768px) {
  .col-md-6, .col-lg-6 { width: calc(50% - 11px); }
}
.owl-dots { margin-top: 12px; text-align: center; }
.owl-dot span { width: 9px; height: 9px; background: #c5d5ca; display: block; border-radius: 50%; margin: 0 4px; }
.owl-dot.active span { background: var(--green); }

@media (max-width: 900px) {
  .navbar-links { display: none; }
  .toggle-btn { display: block; margin-inline-start: auto; }
  .about .images { grid-template-columns: 1fr 1fr; }
  .stats-strip { grid-template-columns: 1fr; }
  .topbar-regions { display: none; }
  .topbar-flex { justify-content: center; }
  .home-header .info { inset-inline-start: 6%; inset-inline-end: 6%; bottom: 10%; }
  .home-header .owl-nav { display: none; }
}
.gallery .image-wrap { cursor: zoom-in; }
.lg-container { direction: ltr; z-index: 10000 !important; }
.chaty-widget, #chaty-widget, .cht-widget, .chaty { display: none !important; }

@media (max-width: 900px) {
  .services-section .wrapper, .services-page .wrapper, .related-services .wrapper {
    grid-template-columns: 1fr;
  }
}
.page-hero {
  background: linear-gradient(180deg, #0f5c2a, #17823c);
  color: #fff; padding: 34px 0 28px; margin-bottom: 0;
}
.page-hero .section-kicker { color: #d7f0de; }
.page-hero h1 {
  color: #fff; font-size: clamp(22px, 3vw, 32px);
  margin: 0; font-weight: 700;
}
.inner-form-page, .another-pages, .single-page, .services-page, .contact-page {
  padding: 40px 0 64px;
}
.inner-content { font-size: 15px; line-height: 1.85; color: var(--muted); }
.inner-content h2, .inner-content h3 {
  font-size: 20px; color: var(--green-dark); margin: 18px 0 8px; font-weight: 700;
}
.inner-content p { margin-bottom: 12px; }
.inner-content img { border-radius: 16px; margin: 12px 0; }
.inner-content ul, .inner-content ol { padding-inline-start: 1.4em; margin: 10px 0 16px; }
.inner-content li { margin-bottom: 6px; list-style: disc; }
.inner-content video, .inner-content .wp-video {
  width: 100%; border-radius: 16px; margin: 12px 0;
}
.featured { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.related-services { margin-top: 48px; }
.related-services .wrapper { display: grid; gap: 18px; grid-template-columns: repeat(3, 1fr); }
.inner-form-page .form-wrapper { max-width: 720px; margin-inline: auto; }

.service-gallery { margin-top: 28px; }
.related-services .wrapper { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important; }
.single-page .featured img { width: 100%; height: auto; max-height: 420px; object-fit: cover; display: block; }

.wrap-flex { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 700px) {
  .wrap-flex { grid-template-columns: 1fr; }
}
.wpcf7 input[type=file] {
  width: 100%; border: 1px dashed var(--line); border-radius: 14px;
  padding: 12px; background: #f8fbf8; font-family: inherit;
}

.home-header .owl-carousel,
.home-header .owl-stage-outer,
.home-header .owl-stage,
.home-header .owl-item,
.home-header .item {
  height: clamp(340px, 48vw, 600px) !important;
  min-height: 0 !important;
}
.home-header .owl-item { display: flex; }
.home-header .item { width: 100%; }
.home-header .image-wrap {
  position: absolute; inset: 0; overflow: hidden;
}
.home-header img, .home-header video, .home-header .hero-video {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center center;
  display: block;
}
@media (max-width: 700px) {
  .home-header .owl-carousel,
  .home-header .owl-stage-outer,
  .home-header .owl-stage,
  .home-header .owl-item,
  .home-header .item {
    height: clamp(260px, 78vw, 420px) !important;
  }
}

.service-videos { margin: 28px 0 8px; display: grid; gap: 16px; }
.video-frame,
.inner-content .wp-video,
.wp-video {
  position: relative;
  width: 100% !important;
  max-width: 100% !important;
  aspect-ratio: 16 / 9;
  height: auto !important;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #0c1c13;
  box-shadow: var(--shadow);
}
.video-frame video,
.video-frame .wp-video,
.inner-content video,
.inner-content .wp-video,
.wp-video video,
.mejs-container,
.mejs-container .mejs-inner,
.mejs-container .mejs-mediaelement,
.mejs-overlay,
.mejs-poster {
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
}
.video-frame video,
.inner-content video,
.wp-video video,
.mejs-container video {
  position: absolute;
  inset: 0;
  object-fit: contain;
  background: #0c1c13;
}
.mejs-container { position: absolute !important; inset: 0; }
.mejs-controls { z-index: 3; }

.inner-content .wp-video:empty { display: none !important; height: 0 !important; aspect-ratio: auto; margin: 0; }

.page-404 { text-align: center; }
.page-404 p { max-width: 520px; margin: 0 auto 22px; }
button.up {
  border: 0; font: inherit; cursor: pointer;
}
.close-btn { cursor: pointer; background: transparent; border: 0; }

.wpml-ls-statics-footer { display: none !important; }

html[dir="ltr"] .navbar-links { flex-wrap: nowrap; gap: 6px; }
html[dir="ltr"] .navbar-links a { padding: 8px 12px; font-size: 14px; white-space: nowrap; }
@media (max-width: 1100px) {
  html[dir="ltr"] .navbar-links { display: none; }
  html[dir="ltr"] .toggle-btn { display: block; }
}
