@font-face {
  font-family: "Cairo";
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
  src: url("../fonts/cairo-arabic.woff2") format("woff2");
  unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0897-08E1, U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE70-FE74, U+FE76-FEFC;
}

:root {
  --bg: #f5f7f2;
  --surface: #ffffff;
  --surface-soft: #eaf0e7;
  --ink: #0b211c;
  --muted: #60716c;
  --line: rgba(11, 33, 28, .13);
  --green: #0d5f46;
  --green-deep: #071b17;
  --lime: #c9f53b;
  --lime-soft: #e6ff91;
  --danger: #c2392f;
  --success: #18865c;
  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --shadow-sm: 0 1px 2px rgba(7, 27, 23, .04), 0 8px 24px rgba(7, 27, 23, .06);
  --shadow-lg: 0 30px 80px rgba(3, 23, 17, .18);
  --container: 1200px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

.theme-dark {
  --bg: #07120f;
  --surface: #0d1d18;
  --surface-soft: #13271f;
  --ink: #f4f7f3;
  --muted: #a8b5b0;
  --line: rgba(239, 248, 242, .13);
  --green: #65d5a4;
  --green-deep: #04100c;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.2), 0 8px 24px rgba(0,0,0,.2);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; transition: background .3s ease, color .3s ease; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 999; left: 20px; top: -80px; background: var(--lime); color: #071b17; padding: 12px 18px; border-radius: 8px; font-weight: 700; transition: top .2s; }
.skip-link:focus { top: 20px; }

.site-header { position: fixed; z-index: 100; inset: 0 0 auto; color: #fff; border-bottom: 1px solid transparent; transition: background .25s ease, border-color .25s ease, color .25s ease, box-shadow .25s ease; }
.site-header.scrolled, .site-header.menu-active { background: color-mix(in srgb, var(--surface) 94%, transparent); border-color: var(--line); color: var(--ink); box-shadow: 0 8px 30px rgba(7,27,23,.07); backdrop-filter: blur(16px); }
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand img { width: 150px; height: 50px; object-fit: contain; }
.desktop-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.nav-link { position: relative; font-size: 14px; font-weight: 600; color: currentColor; opacity: .8; padding: 30px 0; transition: opacity .2s; }
.nav-link i { font-size: 15px; vertical-align: -2px; }
.nav-link::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 20px; height: 2px; background: var(--lime); transition: right .25s var(--ease); }
.nav-link:hover, .nav-link.active { opacity: 1; }
.nav-link:hover::after, .nav-link.active::after { right: 0; }
.nav-dropdown { position: relative; }
.nav-dropdown-menu { position: absolute; top: calc(100% - 9px); left: 50%; min-width: 190px; padding: 8px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); color: var(--ink); box-shadow: var(--shadow-sm); opacity: 0; visibility: hidden; transform: translate(-50%, 8px); transition: opacity .2s, transform .2s, visibility .2s; }
.nav-dropdown-menu a { display: block; padding: 10px 12px; border-radius: 8px; color: var(--muted); font-size: 13px; font-weight: 600; white-space: nowrap; }
.nav-dropdown-menu a:hover, .nav-dropdown-menu a:focus-visible { background: var(--surface-soft); color: var(--ink); }
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.theme-toggle, .menu-toggle { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid currentColor; border-color: color-mix(in srgb, currentColor 24%, transparent); border-radius: 50%; background: transparent; cursor: pointer; transition: transform .2s, background .2s; }
.theme-toggle:hover { transform: rotate(-8deg); background: color-mix(in srgb, currentColor 10%, transparent); }
.theme-toggle i { font-size: 20px; }
.language-link { min-height: 42px; display: inline-flex; align-items: center; padding: 0 16px; border: 1px solid color-mix(in srgb, currentColor 24%, transparent); border-radius: 99px; font-weight: 600; font-size: 14px; }
.menu-toggle { display: none; gap: 5px; align-content: center; }
.menu-toggle span { display: block; width: 18px; height: 1.5px; background: currentColor; transition: transform .25s, translate .25s; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: rotate(45deg); translate: 0 3.25px; }
.menu-toggle[aria-expanded="true"] span:last-child { transform: rotate(-45deg); translate: 0 -3.25px; }
.mobile-menu { position: fixed; z-index: 99; inset: 82px 0 0; height: calc(100vh - 82px); height: calc(100dvh - 82px); padding: 36px 20px max(36px, env(safe-area-inset-bottom)); overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; background: var(--surface); color: var(--ink); }
.mobile-menu a { display: block; padding: 18px 0; border-bottom: 1px solid var(--line); font-family: inherit; font-size: clamp(24px, 8vw, 38px); font-weight: 600; }
.mobile-menu .mobile-sub-link { padding: 18px 0; color: inherit; font-size: clamp(24px, 8vw, 38px); font-weight: 600; }

.hero { position: relative; min-height: 880px; padding: 150px 0 0; color: #fff; background: #061712; overflow: hidden; }
.hero-media { position: absolute; inset: 0; background: url('../img/home-one/bannar-mainpage.jpg') center 40% / cover no-repeat; transform: scale(1.03); }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2,17,12,.95) 0%, rgba(4,25,18,.83) 48%, rgba(2,17,12,.24) 80%), linear-gradient(0deg, rgba(2,17,12,.72), transparent 45%); }
.hero-layout { min-height: 600px; position: relative; display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(260px, .55fr); gap: 80px; align-items: center; }
.hero-copy { max-width: 740px; }
.eyebrow, .section-kicker { display: flex; align-items: center; gap: 10px; color: var(--lime); font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { width: 26px; height: 1px; background: currentColor; }
.hero h1, .section-heading h2, .contact-copy h2 { margin: 20px 0 24px; font-family: inherit; font-size: clamp(52px, 6.4vw, 92px); line-height: .98; letter-spacing: -.055em; font-weight: 600; }
.hero h1 em { color: var(--lime); font-style: normal; }
.hero-title-line { display: block; overflow: hidden; padding-bottom: .05em; margin-bottom: -.05em; }
.hero-title-inner { display: block; }
.hero-char { display: inline-block; will-change: transform, opacity; }
.hero-copy > p { max-width: 660px; color: rgba(255,255,255,.72); font-size: 16px; line-height: 1.75; }
.hero-actions { margin-top: 34px; display: flex; gap: 12px; flex-wrap: wrap; }
.button { min-height: 52px; padding: 0 21px; border-radius: 99px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-size: 14px; font-weight: 700; transition: transform .22s var(--ease), background .22s, color .22s; }
.button i { font-size: 20px; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--lime); color: #071b17; }
.button-primary:hover { background: var(--lime-soft); }
.button-secondary { border: 1px solid rgba(255,255,255,.3); color: #fff; background: rgba(255,255,255,.06); backdrop-filter: blur(8px); }
.button-secondary:hover { background: rgba(255,255,255,.14); }
.hero-note { align-self: end; margin-bottom: 92px; padding: 26px; border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-md); background: rgba(7,27,23,.42); backdrop-filter: blur(14px); }
.hero-note-top { display: flex; align-items: baseline; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.18); }
.hero-note-top span { color: rgba(255,255,255,.6); text-transform: uppercase; font-size: 11px; letter-spacing: .15em; }
.hero-note-top strong { color: var(--lime); font-size: 26px; }
.hero-note p { margin: 20px 0; font-size: 15px; color: rgba(255,255,255,.8); }
.hero-note-bottom { display: flex; align-items: center; gap: 9px; font-size: 11px; text-transform: uppercase; letter-spacing: .13em; }
.dot { width: 4px; height: 4px; border-radius: 50%; background: var(--lime); }
.trust-bar { position: relative; min-height: 126px; display: grid; grid-template-columns: repeat(3, 1fr); background: var(--surface); color: var(--ink); border-radius: var(--radius-md) var(--radius-md) 0 0; box-shadow: var(--shadow-lg); }
.trust-item { display: flex; align-items: center; gap: 16px; padding: 28px 32px; border-right: 1px solid var(--line); }
.trust-item:last-child { border: 0; }
.trust-item > i { width: 46px; height: 46px; flex: 0 0 46px; display: grid; place-items: center; background: var(--surface-soft); color: var(--green); border-radius: 50%; font-size: 21px; }
.trust-item div { display: grid; gap: 2px; }
.trust-item span { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; }
.trust-item strong, .trust-item a { font-size: 14px; font-weight: 700; }

.section { padding: 130px 0; }
.section-heading { display: grid; grid-template-columns: 1.45fr .65fr; align-items: end; gap: 80px; margin-bottom: 64px; }
.section-kicker { color: var(--green); }
.section-heading h2 { max-width: 800px; margin-bottom: 0; font-size: clamp(42px, 5vw, 70px); color: var(--ink); }
.section-heading > p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.services { background: var(--surface); }
.services-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.service-card { grid-column: span 2; min-height: 300px; position: relative; padding: 28px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--bg); transition: transform .28s var(--ease), border-color .28s, box-shadow .28s; overflow: hidden; }
.service-card:hover { transform: translateY(-5px); border-color: color-mix(in srgb, var(--green) 45%, transparent); box-shadow: var(--shadow-sm); }
.service-card::after { content: ""; position: absolute; width: 150px; height: 150px; border: 1px solid var(--line); border-radius: 50%; top: -75px; right: -70px; transition: transform .35s var(--ease); }
.service-card:hover::after { transform: scale(1.2); }
.service-number { color: var(--muted); font-size: 11px; letter-spacing: .1em; }
.service-card > i { margin-top: auto; color: var(--green); font-size: 37px; }
.service-card h3 { margin: 18px 0 8px; font-family: inherit; font-size: 21px; letter-spacing: -.03em; line-height: 1.2; }
.service-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.service-feature { grid-column: span 2; grid-row: span 2; position: relative; min-height: 616px; display: flex; align-items: center; justify-content: center; padding: 20px; border-radius: var(--radius-md); background: var(--green-deep); overflow: hidden; }
.service-feature img { position: relative; z-index: 1; width: 115%; max-width: none; filter: drop-shadow(0 30px 24px rgba(0,0,0,.35)); transform: rotate(-4deg); transition: transform .5s var(--ease); }
.service-feature:hover img { transform: rotate(-1deg) scale(1.04); }
.service-feature > span { position: absolute; z-index: 2; left: 24px; bottom: 22px; color: #fff; font-weight: 600; line-height: 1.3; }
.feature-orbit { position: absolute; width: 400px; height: 400px; border: 1px solid rgba(201,245,59,.24); border-radius: 50%; }
.service-card:nth-child(4), .service-card:nth-child(5) { grid-column: span 2; }

.products { background: var(--bg); }
.products-heading { align-items: center; }
.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.product-card { min-height: 330px; display: grid; grid-template-columns: 43% 57%; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); overflow: hidden; transition: transform .28s var(--ease), box-shadow .28s; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.product-image { position: relative; display: grid; place-items: center; padding: 28px; background: var(--surface-soft); overflow: hidden; }
.product-image::before { content: ""; position: absolute; inset: 18px; border: 1px solid var(--line); border-radius: 50%; transform: scale(1.25); }
.product-image span { position: absolute; z-index: 2; left: 16px; top: 16px; padding: 6px 10px; border-radius: 99px; background: var(--surface); color: var(--muted); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.product-image img { position: relative; z-index: 1; width: 100%; max-height: 220px; object-fit: contain; transition: transform .35s var(--ease); }
.product-card:hover img { transform: scale(1.05); }
.product-content { padding: 28px 28px 30px; display: flex; flex-direction: column; justify-content: flex-end; }
.product-content h3 { margin: 0 0 14px; font-family: inherit; font-size: 18px; line-height: 1.38; letter-spacing: -.025em; }
.product-content p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.62; }
.product-content h3, .product-content p { unicode-bidi: plaintext; }

.contact-section { padding: 0 0 120px; background: var(--bg); }
.contact-panel { padding: 60px; display: grid; grid-template-columns: 1fr .8fr; gap: 80px; align-items: center; border-radius: var(--radius-lg); background: var(--green-deep); color: #fff; overflow: hidden; position: relative; }
.contact-panel::after { content: ""; position: absolute; width: 430px; height: 430px; border: 1px solid rgba(201,245,59,.15); border-radius: 50%; right: -200px; top: -240px; }
.contact-copy h2 { margin: 18px 0 14px; color: #fff; font-size: clamp(38px, 4vw, 57px); }
.contact-copy p { margin: 0; color: rgba(255,255,255,.62); }
.newsletter-form { position: relative; z-index: 1; }
.newsletter-form label { display: block; margin-bottom: 9px; color: rgba(255,255,255,.7); font-size: 12px; font-weight: 700; }
.form-row { display: flex; padding: 6px; border: 1px solid rgba(255,255,255,.2); border-radius: 99px; background: rgba(255,255,255,.08); }
.form-row:focus-within { border-color: var(--lime); box-shadow: 0 0 0 3px rgba(201,245,59,.16); }
.form-row input { min-width: 0; flex: 1; border: 0; padding: 0 15px; color: #fff; background: transparent; outline: 0; }
.form-row input::placeholder { color: rgba(255,255,255,.42); }
.form-row button { min-height: 48px; border: 0; padding: 0 20px; border-radius: 99px; background: var(--lime); color: #071b17; font-size: 13px; font-weight: 700; cursor: pointer; transition: background .2s, transform .2s; }
.form-row button:hover { background: var(--lime-soft); transform: translateX(2px); }
.form-result { min-height: 24px; padding: 8px 14px 0; font-size: 13px; }
.validation-success { color: #a9f0cb; }
.validation-danger { color: #ffaaa3; }

.site-footer { padding: 82px 0 26px; background: #04100d; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(3, 1fr); gap: 60px; padding-bottom: 64px; }
.footer-brand img { width: 150px; height: 50px; object-fit: contain; }
.footer-brand > p { color: rgba(255,255,255,.52); font-size: 12px; letter-spacing: .12em; }
.socials { display: flex; gap: 8px; margin-top: 28px; }
.socials a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; transition: background .2s, color .2s; }
.socials a:hover { background: var(--lime); color: #071b17; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-column h3 { margin: 0 0 10px; font-size: 13px; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.55); }
.footer-column a, .footer-column p { margin: 0; color: rgba(255,255,255,.76); font-size: 14px; transition: color .2s; }
.footer-column a:hover { color: var(--lime); }
.footer-contact a, .footer-contact p { display: flex; gap: 9px; align-items: flex-start; }
.footer-contact i { margin-top: 3px; color: var(--lime); font-size: 17px; }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.48); font-size: 12px; }
.footer-bottom p { margin: 0; }
.footer-bottom a:hover { color: #fff; }
.back-to-top { position: fixed; z-index: 80; right: 22px; bottom: 22px; width: 46px; height: 46px; border: 0; border-radius: 50%; background: var(--lime); color: #071b17; box-shadow: var(--shadow-sm); cursor: pointer; opacity: 0; pointer-events: none; transform: translateY(10px); transition: opacity .2s, transform .2s; }
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: none; }
.back-to-top i { font-size: 21px; }

.reveal { opacity: 1; transform: none; }

html[dir="rtl"] body, :lang(ar) { font-family: "Cairo", Tahoma, Arial, sans-serif; }
html[dir="rtl"] .desktop-nav { margin-left: 0; margin-right: auto; }
html[dir="rtl"] .hero-shade { background: linear-gradient(270deg, rgba(2,17,12,.95) 0%, rgba(4,25,18,.83) 48%, rgba(2,17,12,.24) 80%), linear-gradient(0deg, rgba(2,17,12,.72), transparent 45%); }
html[dir="rtl"] .service-card::after { right: auto; left: -70px; }
html[dir="rtl"] .service-feature > span { left: auto; right: 24px; }
html[dir="rtl"] .product-image span { left: auto; right: 16px; }
html[dir="rtl"] .contact-panel::after { right: auto; left: -200px; }
html[dir="rtl"] .footer-contact a,
html[dir="rtl"] .footer-contact p { text-align: right; }
html[dir="rtl"] .mobile-menu .mobile-sub-link { padding: 18px 0; }
html[dir="rtl"] a[href^="tel:"], html[dir="rtl"] a[href^="mailto:"] { direction: ltr; unicode-bidi: isolate; }

@media (max-width: 991px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: grid; }
  .hero { min-height: auto; padding-top: 118px; }
  .hero-layout { min-height: 650px; grid-template-columns: 1fr; gap: 30px; padding-bottom: 50px; }
  .hero-copy { align-self: end; }
  .hero-note { max-width: 440px; margin: 0; align-self: start; }
  .trust-bar { grid-template-columns: 1fr; border-radius: 0; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .section-heading { grid-template-columns: 1fr; gap: 28px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card, .service-feature, .service-card:nth-child(4), .service-card:nth-child(5) { grid-column: span 1; }
  .service-feature { grid-row: span 2; }
  .product-card { grid-template-columns: 1fr; }
  .product-image { min-height: 260px; }
  .contact-panel { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .header-inner { min-height: 72px; }
  .brand img { width: 126px; }
  .language-link { min-height: 40px; padding-inline: 11px; font-size: 12px; }
  .mobile-menu { top: 72px; height: calc(100vh - 72px); height: calc(100dvh - 72px); }
  .hero { padding-top: 100px; }
  .hero-media { background-position: 62% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(2,17,12,.95), rgba(2,17,12,.68)), linear-gradient(0deg, rgba(2,17,12,.7), transparent); }
  .hero-layout { min-height: 680px; }
  .hero h1 { font-size: clamp(45px, 15vw, 66px); }
  .hero-copy > p { font-size: 14px; line-height: 1.7; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-note { display: none; }
  .trust-item { padding: 22px 20px; }
  .section { padding: 88px 0; }
  .section-heading { margin-bottom: 42px; }
  .section-heading h2 { font-size: 41px; }
  .services-grid, .product-grid { grid-template-columns: 1fr; }
  .service-feature { grid-row: auto; min-height: 420px; }
  .service-card { min-height: 260px; }
  .product-card { min-height: 0; }
  .product-image { min-height: 230px; }
  .contact-section { padding-bottom: 72px; }
  .contact-panel { padding: 38px 22px; border-radius: var(--radius-md); }
  .form-row { display: grid; border-radius: var(--radius-sm); }
  .form-row input { min-height: 50px; }
  .form-row button { border-radius: 8px; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-char, .hero-title-inner { transform: none !important; opacity: 1 !important; }
}
