/* Enable RTL */
html[dir="rtl"] body {
  direction: rtl;
  text-align: right;
  font-family: "Cairo", sans-serif;
}
/* Header Background */
.main-header {
  background: #000d1d;
  padding: 0px 0;
}

/* Main Layout */
.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ---------------- LOGO ---------------- */

.nav-logo img {
  height: 42px; /* FIXES giant logo issue */
  width: auto;
  display: block;
}

/* ---------------- CENTER MENU ---------------- */

.nav-menu {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-menu ul {
  display: flex;
  gap: 50px; /* Same spacing as original theme */
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu ul li a {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  transition: 0.3s ease;
}

/* Hover Style Same as Original */
.nav-menu ul li a:hover {
  color: #ff3c2f;
}

/* Optional subtle underline animation */
.nav-menu ul li a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  right: 0;
  width: 0;
  height: 2px;
  background: #ff3c2f;
  transition: 0.3s ease;
}

.nav-menu ul li a:hover::after {
  width: 100%;
}

/* ---------------- LEFT SIDE ---------------- */

.nav-left {
  display: flex;
  align-items: center;
  gap: 35px;
}

/* Language */
.lang-switch {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.lang-switch:hover {
  color: #ff3c2f;
}

/* Phone */
.nav-phone {
  color: #ffffff;
  font-weight: 700;
}

.nav-phone i {
  color: #ff3c2f;
  margin-left: 8px; /* Correct spacing for RTL */
}

/* Hero RTL Alignment */
.hero__caption {
  text-align: right;
}

.hero__caption h1 {
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.hero__caption h1 span {
  color: #ff3c2f;
}

/* Search Box */
.search-box {
  display: flex;
  margin-top: 30px;
  max-width: 550px;
}

/* Input */
.input-form input {
  height: 60px;
  border: none;
  padding: 0 20px;
  font-size: 16px;
  border-radius: 12px 0 0 12px;
  outline: none;
}

/* Button */
.search-form button {
  height: 60px;
  background: #ff6a00;
  color: #fff;
  border: none;
  padding: 0 35px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 0 12px 12px 0; /* Rounded only on button side */
  transition: 0.3s ease;
}

.search-form button:hover {
  background: #e65c00;
}

/* Paragraph */
.hero-pera p {
  color: #ccc;
  margin-top: 15px;
}

/* RTL support */
html[dir="rtl"] body {
  direction: rtl;
}

/* Section spacing same as theme */
.our-info-area {
  background: #f9f9f9; /* or keep your original bg */
}

/* Icon */
.info-icon span {
  font-size: 45px;
  color: #ff6a00; /* your orange */
}

/* Text */
.info-caption p {
  margin: 0;
  font-size: 15px;
  color: #6c757d;
}

.info-caption span {
  font-size: 18px;
  font-weight: 600;
  color: #0b1c39; /* same dark navy from theme */
}

/* Hero RTL Fix */
.hero-content {
  text-align: right;
}

/* Headline */
.hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.4;
  color: #0b1c39;
}

/* Paragraph */
.hero-content p {
  margin-top: 20px;
  color: #6c757d;
  font-size: 16px;
}

/* Feature List */
.hero-features {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.hero-features li {
  margin-bottom: 10px;
  position: relative;
  padding-right: 20px;
}

.hero-features li::before {
  content: "✓";
  position: absolute;
  right: 0;
  color: #ff6a00;
  font-weight: bold;
}

/* Container spacing */
.hero-buttons {
  display: flex;
  gap: 20px;
}
/* ===== HERO BUTTONS (Force override theme + bootstrap) ===== */
html[dir="rtl"] .hero-buttons {
  display: flex !important;
  gap: 20px !important;
  flex-wrap: wrap !important;
  max-width: 100%;
}

html[dir="rtl"] .hero-buttons a.btn {
  font-size: 16px !important;
  font-weight: 700 !important;
  padding: 18px 52px !important;
  height: 60px !important;
  line-height: 24px !important;
  border-radius: 6px !important;
  text-align: center !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  /* IMPORTANT: remove fixed min-width that breaks small screens */
  min-width: 0 !important;

  /* Better: responsive width */
  width: auto !important;
  max-width: 100% !important;
}

/* Make them equal width ONLY on large screens (safe) */
@media (min-width: 992px) {
  html[dir="rtl"] .hero-buttons a.btn {
    min-width: 200px !important;
  }
}
/* Solid Orange */
html[dir="rtl"] .hero-buttons a.btn.btn-primary {
  background: #ff6a00 !important;
  border: 2px solid #ff6a00 !important;
  color: #fff !important;
}

html[dir="rtl"] .hero-buttons a.btn.btn-primary:hover {
  background: #e65c00 !important;
  border-color: #e65c00 !important;
}

/* Outline Orange (remove any blue) */
html[dir="rtl"] .hero-buttons a.btn.btn-outline-primary {
  background: transparent !important;
  border: 2px solid #ff6a00 !important;
  color: #ff6a00 !important;
}

html[dir="rtl"] .hero-buttons a.btn.btn-outline-primary:hover {
  background: #ff6a00 !important;
  color: #fff !important;
}

/* Kill bootstrap focus blue */
html[dir="rtl"] .hero-buttons a.btn:focus,
html[dir="rtl"] .hero-buttons a.btn:active,
html[dir="rtl"] .hero-buttons a.btn:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

/* ===== TRUST / STATS RTL ===== */
html[dir="rtl"] .trust-section {
  padding: 70px 0;
  background: #fff;
}

html[dir="rtl"] .trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
  width: 100%;
}

html[dir="rtl"] .trust-item {
  position: relative;
  padding: 10px 15px;
}

html[dir="rtl"] .trust-item h2 {
  margin: 0 0 10px;
  font-size: 46px;
  font-weight: 800;
  color: #ff6a00;
  line-height: 1;
}

html[dir="rtl"] .trust-item p {
  margin: 0;
  font-size: 16px;
  color: #555;
}

/* Vertical dividers (safe, no overflow) */
@media (min-width: 992px) {
  html[dir="rtl"] .trust-item:not(:first-child)::before {
    content: "";
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: #eee;
  }
}

/* Responsive */
@media (max-width: 992px) {
  html[dir="rtl"] .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 25px;
  }
  html[dir="rtl"] .trust-item:not(:first-child)::before {
    display: none;
  }
}

@media (max-width: 576px) {
  html[dir="rtl"] .trust-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== GLOBAL FIX: prevent horizontal overflow ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

/* Make media never overflow */
img,
video,
canvas,
svg {
  max-width: 100%;
  height: auto;
}

/* Fix Bootstrap row overflow issues (common in RTL) */
.row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* ==============================
   OUR STRENGTH SECTION (RTL SAME AS EN)
================================ */

html[dir="rtl"] .our-strength {
  background-color: #f9fafc;
}

html[dir="rtl"] .section-padding {
  padding: 50px 0;
}

html[dir="rtl"] .section-title .subtitle {
  color: #ff6a00;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
}

/* Keep header centered like EN */
html[dir="rtl"] .our-strength .section-tittle,
html[dir="rtl"] .our-strength .section-tittle h2,
html[dir="rtl"] .our-strength .section-tittle span {
  text-align: center !important;
}

html[dir="rtl"] .section-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 10px 0;
}

html[dir="rtl"] .section-title p {
  max-width: 600px;
  margin: 0 auto;
  color: #666;
}

/* Strength Card */
html[dir="rtl"] .strength-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  height: 100%;
  transition: all 0.35s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

/* Top accent (RTL safe) */
html[dir="rtl"] .strength-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0; /* RTL */
  left: 0; /* keep full width */
  height: 4px;
  width: 100%;
  background-color: #ff6a00;
  transform: scaleX(0);
  transform-origin: center; /* start from right in RTL */
  transition: transform 0.35s ease;
}

html[dir="rtl"] .strength-card:hover::before {
  transform: scaleX(1);
}

html[dir="rtl"] .strength-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(255, 106, 0, 0.18);
}

/* Icon */
html[dir="rtl"] .strength-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background-color: rgba(255, 106, 0, 0.1);
  color: #ff6a00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: all 0.35s ease;
}

html[dir="rtl"] .strength-card:hover .strength-icon {
  background-color: #ff6a00;
  color: #fff;
}

/* Text */
html[dir="rtl"] .strength-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

html[dir="rtl"] .strength-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* ==============================
   MOBILE OPTIMIZATION
================================ */
@media (max-width: 768px) {
  html[dir="rtl"] .section-title h2 {
    font-size: 28px;
  }

  html[dir="rtl"] .strength-card {
    padding: 30px 22px;
  }
}

/* Why text */
html[dir="rtl"] .why-text {
  max-width: 820px;
  margin: 40px auto 0;
  text-align: center;
}

html[dir="rtl"] .why-text p {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
  font-weight: 400;
}

/* =====================================================
   NEW ABOUT RTL (No conflict with theme)
===================================================== */

.rtl-about {
  direction: rtl;
  padding: 80px 0;
  background: #fff;
}

.rtl-about__row {
  align-items: stretch;
}

/* TEXT RIGHT */
.rtl-about__text-col {
  order: 2; /* right side in RTL layout */
}

.rtl-about__text {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: right;
  padding-left: 40px; /* space between text and image */
}

/* Small tag */
.rtl-about__tag {
  display: inline-block;
  color: #ff6a00;
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 14px;
}

/* Title */
.rtl-about__title {
  font-size: 44px;
  line-height: 1.25;
  font-weight: 800;
  color: #0b1c39;
  margin: 0 0 18px;
}

/* Subtitle */
.rtl-about__subtitle {
  font-size: 20px;
  line-height: 1.6;
  font-weight: 700;
  color: #0b1c39;
  margin: 0 0 16px;
}

/* Description */
.rtl-about__desc {
  font-size: 15px;
  line-height: 1.9;
  color: #666;
  max-width: 560px;
  margin: 0 0 26px;
}

/* IMAGE LEFT */
.rtl-about__img-col {
  order: 1;
}

.rtl-about__imgWrap {
  height: 100%;
  min-height: 560px; /* makes image near text height */
  border-radius: 12px;
  overflow: hidden;
}

.rtl-about__imgWrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Button: keep theme btn but ensure good width */
.rtl-about__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  min-width: 220px;
  border-radius: 6px;
}

/* Responsive */
@media (max-width: 991px) {
  .rtl-about__text {
    padding-left: 0;
    margin-top: 18px;
  }

  .rtl-about__imgWrap {
    min-height: 320px;
  }

  .rtl-about__title {
    font-size: 34px;
  }
}

/* ABOUT SECTION RTL ONLY */

.about-low-area {
  direction: rtl;
}

.about-low-area .about-caption,
.about-low-area .section-tittle,
.about-low-area h2,
.about-low-area h3,
.about-low-area p {
  text-align: right;
}

/* Keep images normal */
.about-low-area .about-img {
  text-align: center;
}

.about-caption .btn {
  padding: 30px 38px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
}

.about-caption .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 106, 0, 0.25);
}

.about-caption p {
  line-height: 1.9;
  margin-top: 18px;
}

.about-img img {
  border-radius: 10px;
}
.section-tittle span {
  font-weight: 700;
  letter-spacing: 1px;
}

/* ================= Technical Solutions RTL ================= */

.tech-solutions {
  background: #f9fafc;
}

.tech-solutions[dir="rtl"] {
  direction: rtl;
}

.tech-solutions .tech-content {
  text-align: right;
}

.tech-solutions .section-tag {
  display: inline-block;
  color: #ff6a00;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  margin-bottom: 12px;
}

.tech-solutions .section-heading {
  font-size: 42px;
  line-height: 1.25;
  font-weight: 800;
  color: #0b1c39;
  margin-bottom: 18px;
}

.tech-solutions .section-text {
  color: #666;
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 16px;
  max-width: 560px;
}

/* Card */
.tech-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 26px;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  text-align: right; /* RTL */
}

/* top accent bar (hidden) */
.tech-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0; /* RTL */
  width: 100%;
  height: 4px;
  background: #ff6a00;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}

.tech-card i {
  font-size: 32px;
  color: #ff6a00;
  margin-bottom: 14px;
  display: inline-block;
}

.tech-card h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #1b1b3a;
}

.tech-card p {
  margin: 0;
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}

/* Hover like screenshot */
.tech-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(255, 106, 0, 0.18);
}

.tech-card:hover::before {
  transform: scaleX(1);
}

/* Responsive */
@media (max-width: 992px) {
  .tech-solutions .section-heading {
    font-size: 32px;
  }
  .tech-card {
    text-align: right;
  }
}
.tech-content {
  direction: rtl;
  text-align: right;
}

.tech-content .section-heading {
  line-height: 1.4;
}

.tech-content .section-text {
  line-height: 1.9;
}

/* ================= RTL FONT SYSTEM ================= */

/* Base font */
html[dir="rtl"] body {
  font-family: "Cairo", sans-serif !important;
}

/* Headings */
html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3 {
  font-family: "Cairo", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0;
}

/* Sub-headings */
html[dir="rtl"] h4,
html[dir="rtl"] h5,
html[dir="rtl"] h6 {
  font-family: "Cairo", sans-serif !important;
  font-weight: 400;
}

/* Paragraphs & UI text */
html[dir="rtl"] p,
html[dir="rtl"] a,
html[dir="rtl"] li,
html[dir="rtl"] span,
html[dir="rtl"] button,
html[dir="rtl"] input,
html[dir="rtl"] textarea {
  font-family: "Cairo", sans-serif !important;
  font-weight: 600;
}

/* Make Arabic more readable */
html[dir="rtl"] p {
  line-height: 1.9;
  font-size: 15.5px;
}

/* Titles stronger */
html[dir="rtl"] .section-tittle h2 {
  font-weight: 800;
}

/* Small orange tags like "خدماتنا" */
html[dir="rtl"] .section-tag,
html[dir="rtl"] .section-tittle span {
  font-weight: 600;
  font-size: 14px;
}

/* ================= DO NOT TOUCH ICONS ================= */

/* Keep icons from switching to Cairo */
html[dir="rtl"] i,
html[dir="rtl"] .fa,
html[dir="rtl"] .fas,
html[dir="rtl"] .far,
html[dir="rtl"] .fal,
html[dir="rtl"] .fab,
html[dir="rtl"] [class^="fa-"],
html[dir="rtl"] [class*=" fa-"] {
  font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands" !important;
}

/* Flaticon */
html[dir="rtl"] [class^="flaticon-"],
html[dir="rtl"] [class*=" flaticon-"] {
  font-family: "flaticon" !important;
}

/* ===============================
   HOW WE WORK (RTL)
================================ */

html[dir="rtl"] .process-section {
  background: #ffffff;
  padding: 80px 0;
}

html[dir="rtl"] .process-section .section-tittle span {
  color: #ff6a00;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 13px;
}

html[dir="rtl"] .process-section .section-tittle h2 {
  margin-top: 12px;
  font-size: 44px;
  font-weight: 800;
  color: #0b1c39;
  line-height: 1.2;
}

html[dir="rtl"] .process-section .section-tittle p {
  max-width: 760px;
  margin: 16px auto 0;
  color: #6c757d;
  font-size: 16px;
  line-height: 1.9;
}

/* Grid */
html[dir="rtl"] .process-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card */
html[dir="rtl"] .process-step {
  position: relative;
  background: #fff;
  border: 1px solid #eef1f5;
  border-radius: 18px;
  padding: 38px 36px;
  text-align: center;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

/* Big number (light) */
html[dir="rtl"] .process-step .step-number {
  position: absolute;
  top: 28px;
  left: 28px; /* في RTL نخليه يسار مثل الصورة */
  font-size: 30px;
  font-weight: 800;
  color: rgba(255, 106, 0, 0.15);
  line-height: 1;
  pointer-events: none;
}

/* Title */
html[dir="rtl"] .process-step h4 {
  margin: 6px 0 14px;
  font-size: 18px;
  font-weight: 800;
  color: #0b1c39;
}

/* Text */
html[dir="rtl"] .process-step p {
  margin: 0;
  color: #6c757d;
  font-size: 15px;
  line-height: 1.9;
}

/* Responsive */
@media (max-width: 992px) {
  html[dir="rtl"] .process-grid {
    grid-template-columns: 1fr;
  }
  html[dir="rtl"] .process-step {
    padding: 40px 28px;
  }
}
/* Hover Effect */
html[dir="rtl"] .process-step {
  transition: all 0.35s ease;
}

/* Move up slightly */
html[dir="rtl"] .process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 45px rgba(255, 106, 0, 0.15);
  border-color: #ffe2cf;
}

/* Number glow on hover */
html[dir="rtl"] .process-step:hover .step-number {
  color: rgba(255, 106, 0, 0.35);
  transform: scale(1.1);
  transition: 0.3s;
}

/* Partners section */
html[dir="rtl"] .partners-area {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

html[dir="rtl"] .partners-padding {
  padding: 90px 0;
}

/* Use original theme background without dark overlay */
html[dir="rtl"] .partners-area.section-bg::before {
  background: transparent !important;
}

html[dir="rtl"] .partners-area .container {
  position: relative;
  z-index: 2;
}

/* Make text white */
html[dir="rtl"] .partners-area .section-tittle2 h2 {
  color: #fff;
}
html[dir="rtl"] .partners-area .section-tittle2 span {
  color: #ff6a00;
}

/* Card look */
html[dir="rtl"] .partners-area .single-testimonial {
  padding: 0 18px;
}
html[dir="rtl"] .partners-area .testimonial-caption {
  background: transparent;
}
html[dir="rtl"] .partners-area .founder-img img {
  max-height: 90px;
  width: auto;
  display: inline-block;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.25));
}
html[dir="rtl"] .partners-area .founder-text span {
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.4px;
}
html[dir="rtl"] .partners-area .founder-text p {
  color: rgba(255, 255, 255, 0.75);
  margin: 6px 0 0;
}
html[dir="rtl"] .partners-area .testimonial-top-cap p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-top: 10px;
}
/* =========================
   FOOTER RTL (FULL)
========================= */

.footer-area.footer-bg {
  background: #0b0b0b; /* same dark */
  color: #fff;
  padding-top: 70px;
}

.footer-area[dir="rtl"] {
  direction: rtl;
  text-align: right;
}

/* top heading row */
.footer-heading-row {
  flex-direction: row;
}

.wantToWork-caption h2 {
  color: #fff;
  font-weight: 800;
  font-size: 34px;
  line-height: 1.25;
  margin: 0;
}

.contact-number {
  color: #ff6a00;
  font-weight: 800;
  font-size: 34px;
  display: inline-block;
}

/* divider line */
.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 28px 0 40px;
}

/* titles */
.footer-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 18px;
  color: #fff;
}

/* links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: 0.25s ease;
}

.footer-links a:hover {
  color: #ff6a00;
  padding-right: 6px;
}

/* extra list spacing */
.footer-tittle-extra {
  margin-top: 42px;
}

/* brand */
.footer-brand .info1 {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 18px;
  line-height: 1.8;
  font-size: 14.5px;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.footer-logo-img {
  height: 34px;
  width: auto;
  display: block;
}

.footer-brand-text {
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.5px;
}

/* contact */
.footer-contact {
  margin-top: 10px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14.5px;
  line-height: 1.7;
  text-align: right;
}

.footer-contact-item i {
  color: #ff3c2f; /* red-ish icon like theme */
  font-size: 14px;
  min-width: 18px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.footer-contact a:hover {
  color: #ff6a00;
}

/* social */
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  margin-left: 8px;
  text-decoration: none;
  transition: 0.25s ease;
}

.footer-social a:hover {
  background: #ff6a00;
  color: #fff;
  transform: translateY(-2px);
}

/* bottom */
.footer-bottom {
  padding: 28px 0 40px;
}

.footer-copy-right p {
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  font-size: 14px;
}

.footer-copy-right strong {
  color: #fff;
}

.license-text {
  margin-top: 8px !important;
}

.license-text a {
  color: #ff6a00;
  text-decoration: none;
}

.license-text a:hover {
  text-decoration: underline;
}

/* Make numbers/emails/urls LTR */
html[dir="rtl"] .ltr {
  direction: ltr;
  unicode-bidi: plaintext;
  text-align: right;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .wantToWork-caption h2,
  .contact-number {
    font-size: 26px;
    text-align: center;
  }

  .footer-heading-row {
    text-align: center;
  }

  .footer-tittle-extra {
    margin-top: 0;
  }

  .footer-social {
    margin-bottom: 10px;
  }
}

/* تصغير شعار IPS في الهيدر */
.rtl-header .logo-navbar img {
  height: 38px; /* عدّل الرقم حسب الحجم اللي يعجبك */
  width: auto;
}

/* إجبار محتوى الهيرو يكون يمين */
.rtl-hero .hero-cap {
  text-align: right !important;
  direction: rtl;
}

/* العنوان */
.rtl-hero .hero-cap h2 {
  font-size: 46px; /* أصغر وأجمل */
  margin-bottom: 10px;
}

/* breadcrumb يمين بالكامل */
.rtl-hero .breadcrumb {
  justify-content: flex-end !important;
  direction: rtl;
  text-align: right;
}

/* ترتيب عناصر breadcrumb RTL */
.rtl-hero .breadcrumb-item + .breadcrumb-item::before {
  float: right;
  padding: 0 8px;
}

/* اجعل حاوية الهيرو RTL */
.rtl-hero {
  direction: rtl;
}

/* إجبار صندوق النص على اليمين */
.rtl-hero-cap {
  position: absolute;
  right: 0 !important;
  left: auto !important;
  text-align: right;
}

/* العنوان */
.rtl-hero-cap h2 {
  font-size: 42px;
  text-align: right;
}

/* breadcrumb */
.rtl-breadcrumb {
  display: flex;
  justify-content: flex-end;
  direction: rtl;
  text-align: right;
  padding-right: 0;
}

/* عناصر breadcrumb */
.rtl-breadcrumb li {
  float: none !important;
}

/* علامة / */
.rtl-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  float: right;
  padding: 0 6px;
}

/* ===== RTL Who We Are ===== */
.rtl-who {
  direction: rtl;
}

/* خليك محافظ على التصميم: النص يمين */
.rtl-who .about-content {
  text-align: right;
}

/* تصغير بسيط لكل النص العربي داخل السكشن */
.rtl-who,
.rtl-who p,
.rtl-who span,
.rtl-who strong,
.rtl-who a,
.rtl-who .sub-title,
.rtl-who .cert-item span {
  font-size: 0.95em;
}

/* العنوان */
.rtl-who .title {
  font-size: 34px; /* لو تبي أصغر: 30px */
  line-height: 1.25;
  margin-bottom: 18px;
}

/* ترتيب عناصر الاعتمادات RTL (الأيقونة يمين والنص يسارها) */
.rtl-who .cert-item {
  display: flex;
  flex-direction: row-reverse; /* الأيقونة تصير يمين */
  align-items: flex-start;
  gap: 12px;
  text-align: right;
}

/* الأيقونة */
.rtl-who .cert-item i {
  margin: 0 !important; /* يلغي أي margin قديم */
}

/* مسافة بين عناصر الاعتمادات */
.rtl-who .about-certifications .cert-item + .cert-item {
  margin-top: 12px;
}

/* صندوق الصورة */
.about-img-box {
  overflow: hidden; /* مهم للـ zoom */
  border-radius: 18px; /* حواف دائرية */
}

/* الصورة نفسها */
.about-img-box img {
  width: 100%;
  border-radius: 18px;
  transition: all 0.4s ease;
  display: block;
}

/* Hover Effect */
.about-img-box:hover img {
  transform: scale(1.08) rotate(0.5deg);
  filter: brightness(1.05);
}

/* ظل احترافي عند المرور */
.about-img-box:hover {
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
  transition: 0.4s;
}

/* ===== Match Original Layout (About IPS) ===== */
.rtl-about-ips {
  direction: rtl;
}

.rtl-about-ips .about-ips-content {
  text-align: center;
}

/* Sub title مثل ABOUT IPS */
.rtl-about-ips .sub-title {
  display: inline-block;
  font-size: 13px; /* أصغر */
  margin-bottom: 14px;
  letter-spacing: 1px;
}

/* العنوان الرئيسي */
.rtl-about-ips .title {
  font-size: 52px; /* قريب جداً من الأصل */
  line-height: 1.1;
  margin-bottom: 18px;
}

/* السطر البرتقالي الصغير تحت العنوان */
.rtl-about-ips .title-tagline {
  display: block;
  font-size: 12px;
  letter-spacing: 1.5px;
  margin-bottom: 34px; /* فراغ مثل الأصل */
  font-weight: 700;
  color: #ff6600; /* نفس لون القالب البرتقالي */
}

/* الفقرات بعرض محدود مثل الأصل */
.rtl-about-ips .lead {
  max-width: 820px;
  margin: 0 auto 18px auto;
  line-height: 2.1;
  font-size: 16px; /* عربي أصغر شوي */
  opacity: 0.9; /* خفيف مثل الأصل */
}

/* SPS تبقى LTR داخل العربي */
.rtl-about-ips strong[dir="ltr"] {
  unicode-bidi: bidi-override;
}

/* موبايل */
@media (max-width: 768px) {
  .rtl-about-ips .title {
    font-size: 34px;
  }
  .rtl-about-ips .lead {
    font-size: 15px;
    line-height: 2;
  }
}
/* ===== GVM Section Base ===== */
.gvm-section {
  position: relative;
}

.gvm-section .row {
  display: flex;
  align-items: stretch;
}

/* ===== Card Style ===== */
.gvm-card {
  background: #f2f3f5; /* رمادي فاتح مثل الصورة */
  border-radius: 16px;
  padding: 45px 35px;
  text-align: center;
  transition: all 0.35s ease;
  height: 100%;
  position: relative;
}

/* أيقونة داخل دائرة */
.gvm-icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(255, 102, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px auto;
  transition: all 0.35s ease;
}

.gvm-icon i {
  font-size: 24px;
  color: #ff6600;
}

/* العنوان */
.gvm-card h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 18px;
}

/* النص */
.gvm-card p {
  font-size: 15px;
  line-height: 2;
  color: #6c757d;
  margin: 0;
}

/* ===== Hover Main Effect ===== */
.gvm-card:hover {
  background: #ffffff;
  transform: scale(1.04);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
  z-index: 2;
}

/* تكبير الأيقونة قليلاً */
.gvm-card:hover .gvm-icon {
  background: #ff6600;
}

.gvm-card:hover .gvm-icon i {
  color: #ffffff;
}

/* ===== Fade Other Cards When One Hovered ===== */
.gvm-section:hover .gvm-card {
  opacity: 0.5;
  transform: scale(0.98);
}

/* الكرت اللي عليه hover يرجع طبيعي */
.gvm-section .gvm-card:hover {
  opacity: 1;
  transform: scale(1.05) translateY(-8px);
}

/* ===== Smooth Feel ===== */
.gvm-card,
.gvm-icon {
  will-change: transform;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .gvm-section:hover .gvm-card {
    opacity: 1;
    transform: none;
  }
}

/* ===== Core Values Section ===== */
.rtl-values {
  direction: rtl;
}

.core-values {
  background: #f7f8fa;
}

/* ===== Card ===== */
.value-card {
  background: #f2f3f5;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.35s ease;
  height: 100%;
  position: relative;
}

/* الكرت الأول برتقالي الأيقونة */
.value-card.active .value-icon {
  background: #ff6600;
}

.value-card.active .value-icon i {
  color: #ffffff;
}

/* ===== Icon ===== */
.value-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 102, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px auto;
  transition: all 0.35s ease;
}

.value-icon i {
  font-size: 22px;
  color: #ff6600;
}

/* ===== Title ===== */
.value-card h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 18px;
}

/* ===== Text ===== */
.value-card p {
  font-size: 15px;
  line-height: 2;
  color: #6c757d;
  margin: 0;
}

/* ===== Hover Effect ===== */
.value-card:hover {
  background: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
  z-index: 2;
}

/* تكبير الأيقونة عند hover */
.value-card:hover .value-icon {
  background: #ff6600;
}

.value-card:hover .value-icon i {
  color: #ffffff;
}

/* Responsive */
@media (max-width: 991px) {
  .core-values:hover .value-card {
    opacity: 1;
    transform: none;
  }
}

/* Hover فقط للكرت نفسه بدون ما يأثر على البقية */
.value-card:hover {
  background: #ffffff;
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
  z-index: 2;
}

/* ===== Scroll Fade Up (Staggered) ===== */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
  will-change: opacity, transform;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Why IPS RTL ===== */
.rtl-why-ips {
  direction: rtl;
}

/* خل النص مرتب (في هذا السكشن مافيه مشكلة لو كان left/center حسب القالب) */
.rtl-why-ips .choose-content {
  text-align: left; /* لأنك تريد نفس الصورة (النص يسار) */
}

/* عنوان عربي أصغر شوي */
.rtl-why-ips .title {
  font-size: 38px; /* عدّلها إذا تبي أصغر: 34px */
  line-height: 1.2;
}

/* القائمة */
.rtl-why-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0 0;
}

/* كل سطر */
.rtl-why-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 15px; /* تصغير بسيط للعربي */
  line-height: 1.9;
  color: #6c757d;
}

/* الأيقونة */
.rtl-why-list li i {
  color: #ff6600;
  font-size: 18px;
  margin-top: 4px;
  flex: 0 0 22px;
}

/* ===== Image Style + Rounded + Shadow ===== */
.why-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.why-image img {
  width: 100%;
  display: block;
  border-radius: 16px;
}

/* ===== Floating Animation (Up & Down) ===== */
.float-y {
  animation: floatY 3.2s ease-in-out infinite;
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

/* موبايل: خفّف حجم العنوان */
@media (max-width: 768px) {
  .rtl-why-ips .choose-content {
    text-align: center;
  }
  .rtl-why-ips .title {
    font-size: 30px;
  }
}

/* إصلاح اتجاه العنوان في Why IPS */
.rtl-why-ips .choose-content {
  direction: rtl;
  text-align: right;
}

/* السطر الصغير */
.rtl-why-ips .sub-title {
  display: block;
  text-align: right;
  direction: rtl;
}

/* العنوان الرئيسي */
.rtl-why-ips .title {
  text-align: right;
  direction: rtl;
}

/* ===== Stats Section ===== */
.rtl-stats {
  direction: rtl;
}

/* الكرت */
.stat-card {
  background: #f2f3f5; /* رمادي فاتح */
  border-radius: 16px;
  padding: 45px 25px;
  text-align: center;
  transition: all 0.35s ease;
  height: 100%;
}

/* الرقم */
.stat-card h3 {
  font-size: 48px;
  font-weight: 900;
  color: #ff6600; /* برتقالي */
  margin-bottom: 14px;
}

/* النص */
.stat-card p {
  font-size: 16px;
  color: #6c757d;
  margin: 0;
}

/* Hover Effect */
.stat-card:hover {
  background: #ffffff;
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.12);
}

/* Responsive */
@media (max-width: 991px) {
  .stat-card {
    padding: 35px 20px;
  }
  .stat-card h3 {
    font-size: 40px;
  }
}

/* ===== Coverage Section Colors ===== */

/* النص كله رمادي مثل باقي الموقع */
.coverage {
  color: #6c757d; /* نفس لون النص المستخدم عندك */
}

/* العنوان يبقى غامق مثل باقي العناوين */
.coverage .title {
  color: #2c2f4a; /* أو اللون الأساسي لعناوينك */
}

/* أيقونات القائمة برتقالية */
.coverage-list li i {
  color: #ff6600;
  margin-left: 8px; /* مسافة بسيطة بعد الأيقونة */
  font-size: 16px;
}

/* إزالة لون افتراضي قديم */
.coverage-list li {
  color: #6c757d;
}

/* ===== Industries Section ===== */
.industries {
  background: #f7f8fa;
}

/* ===== Industry Card Base ===== */
.industry-card {
  background: #f2f3f5;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.35s ease;
  height: 100%;
  border: 2px solid transparent;
}

/* الأيقونة */
.industry-card i {
  font-size: 28px;
  color: #ff6600;
  margin-bottom: 18px;
  display: block;
}

/* العنوان */
.industry-card h4 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 14px;
  color: #2c2f4a;
}

/* النص */
.industry-card p {
  font-size: 15px;
  line-height: 1.9;
  color: #6c757d;
  margin: 0;
}

/* ===== Hover Effect (مثل الصورة) ===== */
.industry-card:hover {
  background: #ffffff;
  border-color: #ff6600; /* إطار برتقالي */
  transform: translateY(-8px);
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.12);
}

/* حركة الأيقونة عند hover */
.industry-card:hover i {
  transform: scale(1.1);
  transition: 0.3s;
}

/* Responsive */
@media (max-width: 991px) {
  .industry-card {
    padding: 35px 20px;
  }
}
/* =========================================
   CLIENTS CAROUSEL — TRUE SEAMLESS LOOP CSS
   (Works with your duplicated HTML)
========================================= */

.clients-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 26px 0; /* space for hover scale/shadow */
  direction: ltr; /* IMPORTANT: stabilize scrolling */
}

/* Track */
.carousel-track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
  animation: scrollClients 40s linear infinite;
  gap: 12px; /* spacing between cards */
}

/* IMPORTANT: kill Bootstrap m-1 margins that break the -50% loop */
.client-logo.m-1 {
  margin: 0 !important;
}

/* Never shrink items */
.client-logo {
  flex: 0 0 auto;

  width: 220px;
  height: 95px;
  background: #f8f9fc;
  border-radius: 12px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 15px;
  box-sizing: border-box;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
  position: relative;
  z-index: 1;
}

/* Logo image */
.client-logo img {
  max-height: 45px;
  width: auto;
  object-fit: contain;

  filter: grayscale(100%);
  opacity: 0.75;
  transition: all 0.35s ease;
}

/* Client Name hidden by default */
.client-name {
  font-size: 12px;
  color: #ff6600;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s ease;
  margin-top: 6px;
  height: 16px;
  overflow: hidden;
  white-space: nowrap;
}

/* Hover */
.client-logo:hover {
  background: #ffffff;
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.client-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.client-logo:hover .client-name {
  opacity: 1;
  transform: translateY(0);
}

/* Animation — move exactly half track width (because you duplicated) */
@keyframes scrollClients {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* Pause on hover */
.clients-carousel:hover .carousel-track {
  animation-play-state: paused;
}

/* Mobile speed */
@media (max-width: 768px) {
  .carousel-track {
    animation-duration: 26s;
  }
  .client-logo {
    width: 190px;
    height: 90px;
  }
}

/* ===============================
   CTA SECTION
================================= */

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fc, #eef1f6);
}

.cta-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 60px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

/* Optional subtle accent shape */
.cta-box::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 102, 0, 0.05);
  border-radius: 50%;
  top: -120px;
  right: -120px;
}

/* Text */
.cta-content h2 {
  font-size: 34px;
  font-weight: 800;
  color: #2c2f4a;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 16px;
  color: #6c757d;
  max-width: 520px;
  margin: 0;
}

/* Buttons */
.cta-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s ease;
  display: inline-block;
}

/* Primary */
.cta-btn.primary {
  background: #ff6600;
  color: #fff;
  box-shadow: 0 15px 35px rgba(255, 102, 0, 0.35);
}

.cta-btn.primary:hover {
  background: #e65c00;
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(255, 102, 0, 0.45);
}

/* Secondary */
.cta-btn.secondary {
  background: transparent;
  border: 2px solid #ff6600;
  color: #ff6600;
}

.cta-btn.secondary:hover {
  background: #ff6600;
  color: #fff;
  transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 992px) {
  .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 50px 30px;
  }

  .cta-content p {
    margin: 0 auto 20px auto;
  }

  .cta-actions {
    justify-content: center;
  }
}

.service-hero {
  padding: 90px 0;
  position: relative;
  color: #fff;
  background: linear-gradient(
    135deg,
    rgba(10, 15, 25, 0.95),
    rgba(10, 15, 25, 0.65)
  );
}
.service-hero--mailroom {
  /* إذا عندك صورة خلفية في القالب استبدل المسار */
  background:
    linear-gradient(135deg, rgba(10, 15, 25, 0.92), rgba(10, 15, 25, 0.65)),
    url("assets/img/hero/mailroom.jpg") center/cover no-repeat;
}
.service-hero__tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  font-size: 14px;
  margin-bottom: 12px;
}
.service-hero__title {
  font-size: 44px;
  line-height: 1.2;
  margin: 0 0 12px;
}
.service-hero__text {
  opacity: 0.95;
  font-size: 18px;
  margin: 0 0 18px;
}

.service-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.service-hero__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-hero__bullets li {
  position: relative;
  padding-right: 26px; /* RTL */
  margin: 10px 0;
  opacity: 0.95;
}
.service-hero__bullets li::before {
  content: "✓";
  position: absolute;
  right: 0;
  top: 0;
  font-weight: 700;
}

.service-hero__card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 18px;
  backdrop-filter: blur(8px);
}
.service-hero__card-title {
  font-weight: 700;
  margin-bottom: 14px;
}
.service-hero__card-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.service-hero__card-item:last-child {
  border-bottom: 0;
}
/* ===================== */

/* ===== HERO (force override) ===== */
.mm-hero {
  position: relative !important;
  padding: 90px 0 !important;
  min-height: 560px !important;
  display: flex !important;
  align-items: center !important;
  overflow: hidden !important;
  color: #fff !important;
  background: linear-gradient(
    135deg,
    rgba(11, 18, 32, 0.94),
    rgba(11, 18, 32, 0.55)
  ) !important;
}

/* Optional background image */
.mm-hero--mailroom {
  background:
    linear-gradient(135deg, rgba(11, 18, 32, 0.92), rgba(11, 18, 32, 0.55)),
    url("../img/gallery/mailroom.png") center/cover no-repeat !important;
  /* انتبه: المسار هنا من داخل assets/css/rtl.css */
}

.mm-hero__overlay {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.35)
  ) !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

.mm-hero .container {
  position: relative !important;
  z-index: 1 !important;
}

/* grid */
.mm-hero__grid {
  display: grid !important;
  grid-template-columns: 1.25fr 0.85fr !important;
  gap: 28px !important;
  align-items: center !important;
}

/* content */
.mm-hero__pill {
  display: inline-flex !important;
  padding: 7px 14px !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  font-size: 14px !important;
  font-weight: 800 !important;
}

.mm-hero__title {
  margin: 14px 0 10px !important;
  font-size: 44px !important;
  line-height: 1.15 !important;
  color: #fff !important;
}
.mm-hero__title span {
  opacity: 0.9 !important;
}

.mm-hero__desc {
  margin: 0 0 18px !important;
  font-size: 17px !important;
  line-height: 1.9 !important;
  color: rgba(255, 255, 255, 0.82) !important;
  max-width: 58ch !important;
}

.mm-hero__actions {
  display: flex !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
  margin: 0 0 18px !important;
}

/* buttons */
.mm-btn {
  height: 46px !important;
  padding: 0 18px !important;
  border-radius: 12px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition:
    transform 0.15s ease,
    opacity 0.15s ease !important;
}

.mm-btn--primary {
  background: #ff5a1f !important;
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(255, 90, 31, 0.22) !important;
}
.mm-btn--primary:hover {
  transform: translateY(-1px) !important;
}

.mm-btn--ghost {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  color: #fff !important;
}
.mm-btn--ghost:hover {
  transform: translateY(-1px) !important;
  opacity: 0.95 !important;
}

/* checklist */
.mm-hero__checks {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: grid !important;
  gap: 10px !important;
}
.mm-hero__checks li {
  position: relative !important;
  padding-right: 28px !important;
  line-height: 1.7 !important;
  color: rgba(255, 255, 255, 0.92) !important;
}
.mm-hero__checks li::before {
  content: "✓" !important;
  position: absolute !important;
  right: 0 !important;
  top: 0 !important;
  width: 20px !important;
  height: 20px !important;
  border-radius: 6px !important;
  background: rgba(255, 255, 255, 0.14) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-weight: 900 !important;
}

/* card */
.mm-hero__card {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 18px !important;
  padding: 18px 18px 12px !important;
  backdrop-filter: blur(10px) !important;
}
.mm-hero__cardTitle {
  margin: 0 0 14px !important;
  font-size: 18px !important;
  font-weight: 900 !important;
  color: #fff !important;
}
.mm-hero__cardRow {
  display: flex !important;
  justify-content: space-between !important;
  padding: 12px 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
}
.mm-hero__cardRow--last {
  border-bottom: 0 !important;
}
.mm-hero__cardRow span {
  color: rgba(255, 255, 255, 0.85) !important;
}
.mm-hero__cardRow strong {
  color: #fff !important;
  font-weight: 900 !important;
}

/* responsive */
@media (max-width: 991px) {
  .mm-hero {
    padding: 70px 0 !important;
    min-height: auto !important;
  }
  .mm-hero__grid {
    grid-template-columns: 1fr !important;
  }
  .mm-hero__title {
    font-size: 34px !important;
  }
  .mm-hero__desc {
    max-width: 100% !important;
  }
}

.mm-hero--separate {
  margin-top: 24px !important;
  border-radius: 26px !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2) !important;
  overflow: hidden !important;
}

/* يخليه داخل حدود الصفحة مثل باقي الأقسام */
@media (min-width: 1200px) {
  .mm-hero--separate {
    width: calc(100% - 48px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* ===== Divider between slider and service hero ===== */
.mm-divider {
  height: 34px;
  background: #fff;
  position: relative;
  z-index: 2;
}

/* يعطي قوس بسيط (اختياري) */
.mm-divider::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 22px;
  background: #fff;
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
}

/* ============ TRUST SECTION ============ */
.service-trust {
  padding: 44px 0 !important;
  background: #ffffff !important;
  position: relative;
  z-index: 2;
}

/* ممكن تخليه أفتح شوي لو تبغى */
.service-trust {
  background: #f7f9fc !important;
}

.service-trust .trust-item {
  height: 100%;
  padding: 22px 20px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #e9eef6;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
  position: relative;
  overflow: hidden;
}

/* شريط لون بسيط يعطي هوية (نفس برتقالي زر الهيرو) */
.service-trust .trust-item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0; /* RTL */
  width: 54px;
  height: 54px;
  border-bottom-left-radius: 18px;
  background: rgba(255, 90, 31, 0.12);
}

/* عنوان */
.service-trust .trust-item h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: 0.2px;
}

/* وصف */
.service-trust .trust-item p {
  margin: 0;
  color: #475569;
  line-height: 1.9;
  font-size: 15px;
}

/* Hover لطيف */
.service-trust .trust-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
}

/* مسافات وقراءة ممتازة على الموبايل */
@media (max-width: 767px) {
  .service-trust {
    padding: 34px 0 !important;
  }
  .service-trust .trust-item {
    padding: 18px 16px;
    border-radius: 16px;
  }
}

/* ============ SERVICE DETAILS SECTION ============ */

/* ===== SERVICE DETAILS with professional grid pattern ===== */
.service-details {
  padding: 80px 0 !important;
  position: relative;
  z-index: 2;
  background: #f8fafc !important;
  overflow: hidden;
}

/* Subtle grid overlay */
.service-details::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(15, 23, 42, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.025) 1px, transparent 1px);

  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

.service-details::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.service-details .container {
  position: relative;
  z-index: 1;
}

/* Title */
.service-details .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.service-details .section-title h2 {
  font-size: 32px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 10px;
  position: relative;
}

.service-details .section-title p {
  color: #64748b;
  font-size: 16px;
  margin: 0;
}

/* underline accent */
.service-details .section-title h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #ff5a1f;
  margin: 14px auto 0;
  border-radius: 2px;
}

/* Boxes */
.service-details .details-box {
  background: #ffffff;
  border: 1px solid #e8edf4;
  border-radius: 20px;
  padding: 28px 26px;
  height: 100%;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.service-details .details-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

/* Box heading */
.service-details .details-box h3 {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 18px;
  color: #0f172a;
  position: relative;
  padding-right: 18px; /* RTL */
}

.service-details .details-box h3::before {
  content: "";
  position: absolute;
  right: 0;
  top: 8px;
  width: 6px;
  height: 22px;
  background: #ff5a1f;
  border-radius: 4px;
}

/* List */
.service-details .details-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.service-details .details-list li {
  position: relative;
  padding-right: 28px; /* RTL spacing */
  line-height: 1.9;
  color: #334155;
  font-size: 15px;
}

/* Check icon */
.service-details .details-list li::before {
  content: "✓";
  position: absolute;
  right: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background: rgba(255, 90, 31, 0.12);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  color: #ff5a1f;
}

/* Responsive */
@media (max-width: 991px) {
  .service-details {
    padding: 55px 0 !important;
  }
  .service-details .section-title h2 {
    font-size: 26px;
  }
}

/* ============ PROCESS SECTION ============ */

.service-process {
  padding: 90px 0 !important;
  background: #ffffff !important;
  position: relative;
  z-index: 2;
}

/* Title */
.service-process .section-title {
  text-align: center;
  margin-bottom: 60px;
}

.service-process .section-title h2 {
  font-size: 32px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 10px;
}

.service-process .section-title p {
  color: #64748b;
  font-size: 16px;
  margin: 0;
}

/* Process line (horizontal) */
.process-wrapper {
  position: relative;
}

@media (min-width: 768px) {
  .process-wrapper::before {
    content: "";
    position: absolute;
    top: 32px;
    right: 5%;
    left: 5%;
    height: 2px;
    background: linear-gradient(to left, #ff5a1f, #f1f5f9);
    z-index: 0;
  }
}

/* Step card */
.step-card {
  background: #ffffff;
  border: 1px solid #e8edf4;
  border-radius: 20px;
  padding: 28px 22px;
  text-align: center;
  height: 100%;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  position: relative;
  z-index: 1;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

/* Step number */
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, #ff5a1f, #ff7a45);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(255, 90, 31, 0.25);
  position: relative;
}

/* White inner circle effect */
.step-num::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
}

/* Heading */
.step-card h3 {
  font-size: 18px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 10px;
}

/* Description */
.step-card p {
  font-size: 15px;
  color: #475569;
  margin: 0;
  line-height: 1.8;
}

/* Mobile stacking */
@media (max-width: 767px) {
  .service-process {
    padding: 70px 0 !important;
  }

  .process-wrapper::before {
    display: none;
  }

  .step-card {
    text-align: right;
  }

  .step-num {
    margin-right: 0;
    margin-left: auto;
  }
}

/* ============ FAQ SECTION ============ */

.service-faq {
  padding: 90px 0 !important;
  background: #f8fafc !important;
  position: relative;
  z-index: 2;
}

/* Title */
.service-faq .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.service-faq .section-title h2 {
  font-size: 32px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 10px;
}

.service-faq .section-title p {
  color: #64748b;
  margin: 0;
}

/* FAQ Items */
.faq-wrapper {
  max-width: 850px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.faq-item {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e8edf4;
  padding: 18px 22px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
  transition: box-shadow 0.2s ease;
}

.faq-item:hover {
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
}

/* Summary (question) */
.faq-item summary {
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  position: relative;
  list-style: none;
  padding-left: 26px; /* space for icon */
}

/* Remove default arrow */
.faq-item summary::-webkit-details-marker {
  display: none;
}

/* Custom plus icon */
.faq-item summary::after {
  content: "+";
  position: absolute;
  left: 0; /* RTL: نخليها يسار */
  top: 0;
  font-size: 20px;
  font-weight: 900;
  color: #ff5a1f;
  transition: transform 0.2s ease;
}

/* Rotate icon when open */
.faq-item[open] summary::after {
  content: "−";
}

/* Answer */
.faq-content {
  margin-top: 12px;
  color: #475569;
  font-size: 15px;
  line-height: 1.9;
  animation: fadeIn 0.3s ease;
}

/* Smooth fade */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .service-faq {
    padding: 70px 0 !important;
  }
}

/* ============ SECURITY & COMPLIANCE SECTION ============ */

.service-security {
  padding: 100px 0 !important;
  background: linear-gradient(to bottom, #ffffff, #f8fafc);
  position: relative;
  z-index: 2;
}

/* Section label */
.section-sub {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #ff5a1f;
  margin-bottom: 14px;
  text-transform: uppercase;
}

/* Main title */
.security-content h2 {
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 18px;
  color: #0f172a;
}

/* Intro text */
.security-intro {
  font-size: 16px;
  color: #475569;
  line-height: 1.9;
  margin-bottom: 24px;
}

/* Bullet list */
.security-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.security-list li {
  position: relative;
  padding-right: 28px; /* RTL */
  font-size: 15px;
  color: #334155;
  line-height: 1.8;
}

/* Shield check icon style */
.security-list li::before {
  content: "✓";
  position: absolute;
  right: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background: rgba(255, 90, 31, 0.12);
  color: #ff5a1f;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
}

/* Right visual cards */
.security-box {
  display: grid;
  gap: 20px;
}

.security-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid #e8edf4;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.security-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.security-card h4 {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 10px;
  color: #0f172a;
}

.security-card p {
  font-size: 15px;
  color: #475569;
  margin: 0;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 991px) {
  .service-security {
    padding: 70px 0 !important;
  }

  .security-content {
    margin-bottom: 40px;
  }
}

/* ============ CTA SECTION ============ */

.service-cta {
  padding: 100px 0 !important;
  background: #ffffff;
  position: relative;
}

/* Main CTA box */
.cta-box {
  background: linear-gradient(135deg, #ff5a1f, #ff7a45);
  padding: 50px 60px;
  border-radius: 26px;
  color: #ffffff;
  box-shadow: 0 25px 70px rgba(255, 90, 31, 0.25);
  position: relative;
  overflow: hidden;
}

/* subtle light overlay */
.cta-box::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -20%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transform: rotate(25deg);
}

/* Title */
.cta-box h2 {
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 12px;
}

/* Paragraph */
.cta-box p {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  opacity: 0.95;
}

/* Button */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 26px;
  background: #ffffff;
  color: #ff5a1f;
  font-weight: 900;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.cta-btn:hover {
  transform: translateY(-3px);
  background: #000000;
}

/* Responsive */
@media (max-width: 991px) {
  .service-cta {
    padding: 70px 0 !important;
  }

  .cta-box {
    padding: 40px 30px;
    text-align: center;
  }

  .cta-box h2 {
    font-size: 24px;
  }

  .cta-btn {
    margin-top: 20px;
  }
}

/* ============ INDUSTRIES SECTION ============ */

.service-industries {
  padding: 110px 0 !important;
  background: linear-gradient(to bottom, #ffffff, #f8fafc);
  position: relative;
  overflow: hidden;
}

/* Section Head */
.service-industries .section-sub {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #ff5a1f;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.service-industries .section-title {
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 16px;
  color: #0f172a;
}

.service-industries .section-desc {
  color: #64748b;
  font-size: 16px;
  max-width: 650px;
  line-height: 1.9;
}

/* Industry Cards */
.industry-card {
  background: #ffffff;
  padding: 30px 26px;
  border-radius: 22px;
  border: 1px solid #e8edf4;
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.05);
  overflow: hidden;
}

/* Premium Gradient Border Glow */
.industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 90, 31, 0.6), transparent 60%);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Hover effect */
.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.12);
}

.industry-card:hover::before {
  opacity: 1;
}

/* Title */
.industry-card h4 {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 12px;
  color: #0f172a;
}

/* Description */
.industry-card p {
  margin: 0;
  font-size: 15px;
  color: #475569;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 991px) {
  .service-industries {
    padding: 80px 0 !important;
  }
}
/* Center text for industries section */
.service-industries .section-title,
.service-industries .section-desc,
.service-industries .industry-card {
  text-align: center;
}

.service-industries .industry-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ===== HERO Animated Background (Zoom + Pan FAST) ===== */

.mm-hero--archiving {
  position: relative !important;
  overflow: hidden !important;
}

/* الخلفية المتحركة */
.mm-hero--archiving::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;

  background:
    radial-gradient(
      1100px 520px at 25% 30%,
      rgba(255, 90, 31, 0.16),
      transparent 60%
    ),
    linear-gradient(
      135deg,
      rgba(108, 120, 136, 0.497),
      rgba(0, 94, 226, 0.464)
    ),
    url("../img/gallery/archiving-2.png") center/cover no-repeat;

  transform: scale(1.08);
  animation: heroZoomFast 10s ease-in-out infinite alternate; /* أسرع */
  will-change: transform, background-position;
}

/* محتوى الهيرو فوق الخلفية */
.mm-hero--archiving .mm-hero__overlay,
.mm-hero--archiving .container {
  position: relative !important;
  z-index: 1 !important;
}

/* حركة Zoom + Pan أسرع */
@keyframes heroZoomFast {
  0% {
    transform: scale(1.08) translate3d(0, 0, 0);
    background-position: 50% 50%;
  }
  100% {
    transform: scale(1.18) translate3d(-3%, -3%, 0);
    background-position: 60% 40%;
  }
}

/* احترام تقليل الحركة */
@media (prefers-reduced-motion: reduce) {
  .mm-hero--archiving::before {
    animation: none !important;
    transform: none !important;
  }
}

/* ===== TRUST (Archiving) ===== */
.service-trust--archiving {
  padding: 44px 0 !important;
  background: #f7f9fc !important;
  position: relative;
  z-index: 2;
}

.service-trust--archiving .trust-item {
  height: 100%;
  padding: 22px 20px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #e9eef6;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
  position: relative;
  overflow: hidden;
}

/* Corner accent (same brand orange) */
.service-trust--archiving .trust-item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0; /* RTL */
  width: 54px;
  height: 54px;
  border-bottom-left-radius: 18px;
  background: rgba(255, 90, 31, 0.12);
}

.service-trust--archiving .trust-item h3 {
  font-size: 18px;
  font-weight: 900;
  margin: 0 0 8px;
  color: #0f172a;
}

.service-trust--archiving .trust-item p {
  margin: 0;
  color: #475569;
  line-height: 1.9;
  font-size: 15px;
}

.service-trust--archiving .trust-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
}

@media (max-width: 767px) {
  .service-trust--archiving {
    padding: 34px 0 !important;
  }
  .service-trust--archiving .trust-item {
    padding: 18px 16px;
    border-radius: 16px;
  }
}

/* ============ ARCHIVING DETAILS SECTION ============ */

.service-details--archiving {
  padding: 90px 0 !important;
  position: relative;
  background: #f8fafc !important;
  overflow: hidden;
}

/* Subtle grid background (نفس هوية الصفحة) */
.service-details--archiving::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

.service-details--archiving .container {
  position: relative;
  z-index: 1;
}

/* Title */
.service-details--archiving .section-title h2 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 10px;
  color: #0f172a;
}

.service-details--archiving .section-title p {
  color: #64748b;
  margin: 0 0 50px;
}

/* Details Box */
.service-details--archiving .details-box {
  background: #ffffff;
  border-radius: 22px;
  padding: 30px 28px;
  border: 1px solid #e8edf4;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.05);
  height: 100%;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.service-details--archiving .details-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

/* Heading */
.service-details--archiving .details-box h3 {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 18px;
  color: #0f172a;
  padding-right: 18px;
  position: relative;
}

.service-details--archiving .details-box h3::before {
  content: "";
  position: absolute;
  right: 0;
  top: 8px;
  width: 6px;
  height: 22px;
  background: #ff5a1f;
  border-radius: 4px;
}

/* List */
.service-details--archiving .details-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.service-details--archiving .details-list li {
  position: relative;
  padding-right: 28px;
  font-size: 15px;
  color: #334155;
  line-height: 1.9;
}

.service-details--archiving .details-list li::before {
  content: "✓";
  position: absolute;
  right: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background: rgba(255, 90, 31, 0.12);
  color: #ff5a1f;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
}

/* Responsive */
@media (max-width: 991px) {
  .service-details--archiving {
    padding: 70px 0 !important;
  }
}

/* ============ CORE CAPABILITIES SECTION ============ */

.service-capabilities {
  padding: 100px 0 !important;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

/* subtle background grid (optional, very light) */
.service-capabilities::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.02) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 0;
}

/* ===== CORE CAPABILITIES (Icons Premium) ===== */

.service-capabilities .cap-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 90, 31, 0.12);
  border: 1px solid rgba(255, 90, 31, 0.18);
  color: #ff5a1f;

  margin-bottom: 14px;
  box-shadow: 0 10px 22px rgba(255, 90, 31, 0.12);
}

.service-capabilities .cap-icon i {
  font-size: 22px;
}

/* تحسين إحساس الـpremium عند hover */
.service-capabilities .cap-card:hover .cap-icon {
  background: rgba(255, 90, 31, 0.16);
  box-shadow: 0 14px 28px rgba(255, 90, 31, 0.18);
  transform: translateY(-1px);
  transition: all 0.25s ease;
}

.service-capabilities .container {
  position: relative;
  z-index: 1;
}

/* Section title */
.service-capabilities .section-sub {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #ff5a1f;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.service-capabilities .section-title h2 {
  font-size: 32px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 10px;
}

.service-capabilities .section-title p {
  color: #64748b;
  margin: 0;
  line-height: 1.9;
}

/* Cards */
.cap-card {
  background: #ffffff;
  border: 1px solid #e8edf4;
  border-radius: 22px;
  padding: 28px 26px;
  height: 100%;
  position: relative;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.05);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  overflow: hidden;
}

.cap-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.1);
}

/* Badge number */
.cap-badge {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 90, 31, 0.12);
  color: #ff5a1f;
  font-weight: 900;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

/* Title & text */
.cap-card h3 {
  font-size: 18px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 10px;
}

.cap-card p {
  margin: 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.9;
}

/* Responsive */
@media (max-width: 991px) {
  .service-capabilities {
    padding: 80px 0 !important;
  }
}

/* ============ PROCESS (ARCHIVING) ============ */
.service-process--archiving {
  padding: 100px 0 !important;
  background: #ffffff !important;
  position: relative;
  z-index: 2;
}

/* use same sub style */
.service-process--archiving .section-sub {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #ff5a1f;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.service-process--archiving .section-title h2 {
  font-size: 32px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 10px;
}

.service-process--archiving .section-title p {
  color: #64748b;
  margin: 0;
  line-height: 1.9;
}

/* process line */
.service-process--archiving .process-wrapper {
  position: relative;
}

@media (min-width: 768px) {
  .service-process--archiving .process-wrapper::before {
    content: "";
    position: absolute;
    top: 32px;
    right: 5%;
    left: 5%;
    height: 2px;
    background: linear-gradient(to left, #ff5a1f, #f1f5f9);
    z-index: 0;
  }
}

/* step card */
.service-process--archiving .step-card {
  background: #ffffff;
  border: 1px solid #e8edf4;
  border-radius: 22px;
  padding: 28px 22px;
  height: 100%;
  text-align: center;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.05);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.service-process--archiving .step-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(255, 90, 31, 0.16), transparent 60%);
  pointer-events: none;
}

.service-process--archiving .step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
}

/* number */
.service-process--archiving .step-num {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, #ff5a1f, #ff7a45);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(255, 90, 31, 0.22);
  position: relative;
}

.service-process--archiving .step-num::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
}

.service-process--archiving .step-card h3 {
  font-size: 18px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 10px;
}

.service-process--archiving .step-card p {
  margin: 0;
  font-size: 15px;
  color: #475569;
  line-height: 1.9;
}

/* Mobile */
@media (max-width: 767px) {
  .service-process--archiving {
    padding: 75px 0 !important;
  }

  .service-process--archiving .process-wrapper::before {
    display: none;
  }

  .service-process--archiving .step-card {
    text-align: right;
  }

  .service-process--archiving .step-num {
    margin-right: 0;
    margin-left: auto;
  }
}

/* ============ INDUSTRIES (ARCHIVING) ============ */

.service-industries--archiving {
  padding: 110px 0 !important;
  background: linear-gradient(to bottom, #ffffff, #f8fafc);
  position: relative;
  overflow: hidden;
}

/* top subtle grid (very light) */
.service-industries--archiving::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.02) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 0;
}

.service-industries--archiving .container {
  position: relative;
  z-index: 1;
}

/* Heading (center) */
.service-industries--archiving .section-sub {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #ff5a1f;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.service-industries--archiving .section-title {
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 16px;
  color: #0f172a;
}

.service-industries--archiving .section-desc {
  color: #64748b;
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.9;
}

/* Cards */
.service-industries--archiving .industry-card {
  background: #ffffff;
  padding: 30px 26px;
  border-radius: 22px;
  border: 1px solid #e8edf4;
  height: 100%;
  position: relative;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.05);
  overflow: hidden;
}

/* premium gradient border glow */
.service-industries--archiving .industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 90, 31, 0.55), transparent 60%);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* soft corner glow */
.service-industries--archiving .industry-card::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(255, 90, 31, 0.14), transparent 60%);
  pointer-events: none;
}

.service-industries--archiving .industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.12);
}

.service-industries--archiving .industry-card:hover::before {
  opacity: 1;
}

.service-industries--archiving .industry-card h4 {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 12px;
  color: #0f172a;
}

.service-industries--archiving .industry-card p {
  margin: 0;
  font-size: 15px;
  color: #475569;
  line-height: 1.85;
}

/* Responsive */
@media (max-width: 991px) {
  .service-industries--archiving {
    padding: 80px 0 !important;
  }
}

/* ===== Industry Icons Premium ===== */

.service-industries--archiving .industry-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  border-radius: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 90, 31, 0.12);
  border: 1px solid rgba(255, 90, 31, 0.2);
  color: #ff5a1f;

  font-size: 22px;

  transition: all 0.3s ease;
  box-shadow: 0 10px 24px rgba(255, 90, 31, 0.12);
}

/* Hover interaction */
.service-industries--archiving .industry-card:hover .industry-icon {
  background: #ff5a1f;
  color: #ffffff;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 18px 40px rgba(255, 90, 31, 0.25);
}

/* ===== Force icon to white on card hover ===== */

.service-industries--archiving .industry-card:hover .industry-icon {
  background: #ff5a1f !important; /* خلفية برتقالية */
  color: #ffffff !important; /* الأيقونة نفسها بيضاء */
}

.service-industries--archiving .industry-card:hover .industry-icon i {
  color: #ffffff !important; /* تأكيد على الأيقونة */
}

/* ===== SECURITY RTL FIX ===== */

.service-security--rtl {
  padding: 100px 0 !important;
  background: #ffffff;
}

/* RTL text alignment */
.service-security--rtl .security-content {
  text-align: right;
}

/* list RTL */
.service-security--rtl .security-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.service-security--rtl .security-list li {
  position: relative;
  padding-right: 28px;
  font-size: 15px;
  line-height: 1.9;
  color: #334155;
}

/* check icon right side */
.service-security--rtl .security-list li::before {
  content: "✓";
  position: absolute;
  right: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  background: rgba(255, 90, 31, 0.12);
  color: #ff5a1f;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
}

/* stats styling */
.service-security--rtl .security-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.service-security--rtl .stat-number {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: #ff5a1f;
}

.service-security--rtl .stat-label {
  font-size: 14px;
  color: #475569;
}

/* responsive */
@media (max-width: 991px) {
  .service-security--rtl {
    padding: 70px 0 !important;
  }

  .service-security--rtl .security-content {
    margin-bottom: 40px;
  }

  .service-security--rtl .security-stats {
    flex-direction: column;
    gap: 15px;
  }
}

/* ===== Improve Security Card Height & Layout ===== */

.service-security--rtl .security-card {
  padding: 50px 45px !important; /* مساحة داخلية أكبر */
  min-height: 420px; /* ارتفاع أكبر */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* توزيع ممتاز */
  border-radius: 24px !important;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
  border: 1px solid #e8edf4;
  background: #ffffff;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* Hover Premium */
.service-security--rtl .security-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.12);
}

/* تحسين المسافة بين العنوان والنص */
.service-security--rtl .security-card h4 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 900;
}

.service-security--rtl .security-card p {
  margin-bottom: 40px;
  line-height: 1.9;
}

/* تكبير الأرقام */
.service-security--rtl .stat-number {
  font-size: 34px;
  font-weight: 900;
}

/* تحسين توزيع الأرقام */
.service-security--rtl .security-stats {
  border-top: 1px solid #eef2f7;
  padding-top: 25px;
}

.mm-hero--archiving {
  min-height: 500px !important;
  width: 92% !important;
  margin: 0 auto !important;
}

.mm-hero--warehouse::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;

  background:
    radial-gradient(
      1100px 520px at 30% 30%,
      rgba(255, 90, 31, 0.18),
      transparent 60%
    ),
    linear-gradient(135deg, rgba(20, 35, 60, 0.92), rgba(0, 110, 170, 0.75)),
    url("../img/gallery/warehouse.jpg") center/cover no-repeat;

  transform: scale(1.08);
  animation: heroWarehouseZoom 12s ease-in-out infinite alternate;
  will-change: transform, background-position;
}

/* =======================================================
   GLOBAL HERO MOTION — For heroes that use ::before as background layer
   ======================================================= */

.hero-motion {
  position: relative !important;
  overflow: hidden !important;
}

/* طبق الحركة على ::before الموجود أصلاً */
.hero-motion::before {
  animation: globalHeroMotionFast 7s ease-in-out infinite alternate !important;
  will-change: transform, background-position;
  transform: scale(1.08);
}

@keyframes globalHeroMotionFast {
  0% {
    transform: scale(1.08);
    background-position: 50% 50%;
  }
  100% {
    transform: scale(1.18) translate3d(-3%, -3%, 0);
    background-position: 60% 40%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-motion::before {
    animation: none !important;
    transform: none !important;
  }
}

.service-capabilities--warehouse .cap-card {
  text-align: center;
}

.service-capabilities--warehouse .cap-icon {
  margin: 0 auto 18px auto;
}

.mm-hero--parcel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;

  background:
    linear-gradient(135deg, rgba(15, 30, 60, 0.92), rgba(0, 120, 180, 0.75)),
    url("../img/gallery/SPEXDE.png") center center / cover no-repeat;

  transform: scale(1.08);
  animation: globalHeroMotionFast 10s ease-in-out infinite alternate;
  will-change: transform, background-position;
}

/* ============ OVERVIEW (PARCEL) ============ */

.service-overview--parcel {
  padding: 80px 0 !important;
  background: #ffffff;
  position: relative;
  z-index: 2;
}

.service-overview--parcel .overview-box {
  background: #ffffff;
  border: 1px solid #e8edf4;
  border-radius: 26px;
  padding: 42px 40px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
  position: relative;
  overflow: hidden;
}

/* subtle premium glow (soft) */
.service-overview--parcel .overview-box::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 90, 31, 0.12), transparent 60%);
  pointer-events: none;
}

.service-overview--parcel .overview-head {
  text-align: right;
  margin-bottom: 18px;
}

.service-overview--parcel .section-sub {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #ff5a1f;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.service-overview--parcel .overview-head h2 {
  font-size: 30px;
  font-weight: 900;
  color: #0f172a;
  margin: 0;
}

.service-overview--parcel .overview-text {
  margin: 14px 0 0;
  font-size: 16px;
  color: #475569;
  line-height: 1.95;
}

.service-overview--parcel .overview-text strong {
  color: #0f172a;
  font-weight: 900;
}

/* Metrics */
.service-overview--parcel .overview-metrics {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-overview--parcel .metric-card {
  background: #f8fafc;
  border: 1px solid #eef2f7;
  border-radius: 18px;
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.service-overview--parcel .metric-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 90, 31, 0.12);
  border: 1px solid rgba(255, 90, 31, 0.2);
  color: #ff5a1f;
  box-shadow: 0 10px 24px rgba(255, 90, 31, 0.1);
  flex: 0 0 auto;
}

.service-overview--parcel .metric-icon i {
  font-size: 20px;
}

.service-overview--parcel .metric-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.service-overview--parcel .metric-number {
  font-size: 20px;
  font-weight: 900;
  color: #0f172a;
}

.service-overview--parcel .metric-label {
  font-size: 13px;
  color: #64748b;
  margin-top: 4px;
}

/* Responsive */
@media (max-width: 991px) {
  .service-overview--parcel .overview-box {
    padding: 34px 22px;
  }
  .service-overview--parcel .overview-metrics {
    grid-template-columns: 1fr;
  }
}

/* ===== Asset Overview RTL ===== */
.rtl-asset-overview {
  direction: rtl;
}

.rtl-asset-overview .asset-overview-content {
  text-align: right;
}

.rtl-asset-overview .sub-title {
  display: inline-block;
  color: #ff6600;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
}

.rtl-asset-overview .title {
  font-size: 40px;
  line-height: 1.2;
  color: #2c2f4a;
  margin-bottom: 20px;
}

.rtl-asset-overview p {
  font-size: 15px;
  line-height: 2;
  color: #6c757d;
  margin-bottom: 18px;
}

.asset-feature-list {
  list-style: none;
  padding: 0;
  margin: 25px 0 0;
}

.asset-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.9;
  color: #6c757d;
  margin-bottom: 14px;
}

.asset-feature-list li i {
  color: #ff6600;
  margin-top: 5px;
  flex: 0 0 18px;
}

.asset-overview-image {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.asset-overview-image img {
  width: 100%;
  display: block;
  border-radius: 18px;
}

/* Floating image */
.float-y {
  animation: floatY 4s ease-in-out infinite;
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@media (max-width: 991px) {
  .rtl-asset-overview .asset-overview-content {
    text-align: center;
    margin-top: 25px;
  }

  .rtl-asset-overview .title {
    font-size: 32px;
  }

  .asset-feature-list li {
    text-align: right;
  }
}

.details-list li::before {
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #ff6600;
  margin-left: 10px;
}

.service-hero--outsourcing {
  background: #f7f8fa;
  padding: 120px 0 90px;
}

.service-hero--outsourcing .hero-content {
  text-align: right;
}

.service-hero--outsourcing h1 {
  font-size: 46px;
  line-height: 1.3;
  margin: 20px 0;
  color: #1f2747;
}

.service-hero--outsourcing p {
  color: #6c757d;
  line-height: 1.9;
  font-size: 16px;
  margin-bottom: 30px;
}

.hero-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.primary-btn {
  background: #ff6600;
  color: #fff;
  padding: 14px 28px;
  border-radius: 40px;
  text-decoration: none;
}

.primary-btn:hover {
  background: #e65c00;
}

.secondary-btn {
  border: 2px solid #ff6600;
  color: #ff6600;
  padding: 12px 28px;
  border-radius: 40px;
  text-decoration: none;
}

.secondary-btn:hover {
  background: #ff6600;
  color: #fff;
}

/* الخلفية المتحركة */
.mm-hero--out::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;

  background:
    radial-gradient(
      1100px 520px at 25% 30%,
      rgba(255, 90, 31, 0.16),
      transparent 60%
    ),
    linear-gradient(
      135deg,
      rgba(108, 120, 136, 0.497),
      rgba(0, 94, 226, 0.464)
    ),
    url("../img/gallery/outsourse.png") center/cover no-repeat;

  transform: scale(1.08);
  animation: heroZoomFast 10s ease-in-out infinite alternate; /* أسرع */
  will-change: transform, background-position;
}

.mm-hero--special::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;

  background:
    radial-gradient(
      1100px 520px at 30% 30%,
      rgba(255, 90, 31, 0.18),
      transparent 60%
    ),
    linear-gradient(135deg, rgba(20, 35, 60, 0.92), rgba(0, 110, 170, 0.75)),
    url("../img/gallery/SPEXDE.png") center/cover no-repeat;

  transform: scale(1.08);
  animation: heroWarehouseZoom 12s ease-in-out infinite alternate;
  will-change: transform, background-position;
}
