:root {
  --main-bg: #000000;
  --accent: #c66a00;        /* اللون الأساسي الموحد */
  --accent-dark: #8f4500;   /* للهوفر */
  --light: #ffffff;
  --grey: #f5f5f5;
  --text: #222222;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--main-bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Layout wrappers */

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.content {
  flex: 1;
  width: 100%;
  max-width: 100%;   /* مهم */
  margin: 0;
  background: #111111;
}

/* Top bar + nav */

header {
  background: #000000;
  border-bottom: 2px solid #222;
}

.top-bar {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  color: #ffffff;
}

.top-bar .left-links,
.top-bar .right-links {
  display: flex;
  gap: 18px;
  font-size: 12px;
  text-transform: uppercase;
}

.top-bar a {
  color: #bbbbbb;
}

.top-bar a:hover {
  color: var(--accent);
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.logo-box img {
  height: 300px;        /* حجم اللوجو */
  position: absolute;   /* فوق البار */
  top: -155px;          /* ارفعيه لفوق */
  left: 0;
}

.logo-box .agency-name {
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: 1px;
}

nav {
  background: #111111;
  border-top: 1px solid #222;
  border-bottom: 5px solid var(--accent);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 0;
  color: #ffffff;
}

.nav-inner ul {
  display: flex;
  gap: 50px;
  margin-left: 60px;
  flex: 1;                  /* يسمح لها تتمدد */
  justify-content: flex-start;
  padding-left: 300px;      /* تحريك المنيو ناحية اليمين */
  list-style: none;
  font-size: 13px;
  text-transform: uppercase;
}

.nav-inner li a {
  color: #ffffff;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  font-weight: 600;   /* bold */
}

.nav-inner li a:hover,
.nav-inner li a.active {
  border-color: var(--accent);
  color: var(--accent);
}
/* زر Contact كـ بوكس أورنج في الـ navbar */
.nav-inner li a.nav-contact {
  background: var(--accent);
  color: #ffffff;
  padding: 6px 18px;
  border-radius: 2px;
  border-bottom: 2px solid transparent; /* عشان يلغي الخط اللي تحت */
}

/* لما يكون Hover أو Active يغمق شوية */
.nav-inner li a.nav-contact:hover,
.nav-inner li a.nav-contact.active {
  background: var(--accent-dark);
  color: #ffffff;
  border-bottom: 2px solid transparent; /* يفضل شكله زر مش لينك */
}

/* Dropdown for About Us - click only */

.nav-inner li.dropdown {
  position: relative;
}

.nav-inner li.dropdown .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-inner li.dropdown .dropdown-toggle i {
  font-size: 10px;
}

/* Dropdown style موحد لـ ABOUT US + OUR TEAM */
.nav-inner li.dropdown {
  position: relative;
}

.nav-inner li.dropdown > a.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-inner li.dropdown > a.dropdown-toggle i {
  font-size: 10px;
}

/* الصندوق اللي بينزل */
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 170px;        /* لو عايزة عرضه أكبر أو أصغر غيري الرقم */
  background: #111111;
  padding: 4px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
  z-index: 50;
}

.dropdown-menu li {
  list-style: none;
  width: 100%;
}

.dropdown-menu li a {
  display: block;
  padding: 6px 14px;
  font-size: 12px;
  color: #ffffff;
  text-transform: none;
  border-bottom: 1px solid #222222;
  white-space: nowrap;    /* عشان الكلام مايكبرش البوكس */
  text-align: left;
}

.dropdown-menu li:last-child a {
  border-bottom: none;
}

.dropdown-menu li a:hover {
  background: var(--accent);
  color: #ffffff;
}

/* لما li.dropdown ياخد كلاس open المنيو تظهر */
.dropdown.open > .dropdown-menu {
  display: block;
}

/* =======================
   DEFAULT HERO (لصفحات تانية)
   ======================= */

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  background: #ffffff;
  min-height: 360px;
}

.hero-text {
  padding: 60px 60px 40px 60px;
  position: relative;
}

.hero-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999999;
  margin-bottom: 10px;
}

.hero-title {
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-title span {
  color: var(--accent);
}

.hero-text p {
  font-size: 14px;
  max-width: 430px;
}

.hero-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 60px;
  width: 8px;
  height: 60px;
  background: var(--accent);
}

.hero-image {
  background: url("https://images.pexels.com/photos/3184418/pexels-photo-3184418.jpeg?auto=compress&cs=tinysrgb&w=800")
    center/cover no-repeat;
  position: relative;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), transparent);
}

.hero-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--accent);
  color: #ffffff;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
}

/* =======================
   HOME PAGE HERO (RELY ON US)
   ======================= */

.home-hero {
  position: relative;
  background: url("images/home-hero.jpg") center/cover no-repeat;
  background-position: center -325px;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 80px 60px;
  background-color: #f9a825; /* لو الصورة مش لودد */
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.50); /* طبقة سوداء */
  z-index: 1;
}

.home-hero-inner {
  position: relative;
  z-index: 2; /* عشان النص يفضل فوق الطبقة */
  max-width: 520px;
  color: #ffffff;
}

.home-hero-title {
  font-size: 100px;
  font-weight: 900;     /* تخين */
  letter-spacing: 8px;  /* Stretch بسيط */
  line-height: 1;
  margin-bottom: 18px;
  margin-top: -30px;
  margin-left: 120px;
  text-transform: uppercase;
}

.home-hero-rely {
  color: var(--accent) !important;  /* نفس درجة الموقع كله */
  font-weight: 700;
  margin-left: 40px;
  position: relative;
  top: -25px;
}

.home-hero-onus {
  color: #000000;
  font-weight: 700;
  padding: 4px 10px;
  display: inline-block;
}

.home-hero-tagline {
  font-size: 14px;
  max-width: 420px;
  color: #000;
  font-weight: 600;
  position: relative;
  left: 100px;
}

/* =======================
   HOME ABOUT SECTION
   ======================= */

.home-about {
  max-width: var(--max-width);
  margin: 0 auto 0 auto;
  background: #ffffff;
  padding: 300px 100px 100px 100px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: flex-start;
}

.home-about-title {
  font-size: 80px;
  text-transform: uppercase;
  font-weight: 700;
}
.home-about-left {
  position: relative;
  left: -40px;   /* يمين/شمال */
  top: -100px;    /* فوق/تحت */
}
.home-about-title span {
  color: var(--accent);
}

.home-about-right p {
  font-size: 15px;
  line-height: 1.7;
}
.home-about-right {
  position: relative;
  left: 40px;   /* يحركه ناحية اليسار */
  top: -85px;     /* يحركه لتحت */
}
.home-about-right p {
  font-weight: 700;
}
/* generic sections */

section.box-section {
  margin: 30px auto 0 auto;
  max-width: calc(var(--max-width) - 160px);
  background: #ffffff;
  padding: 32px 40px 35px 40px;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
  border-bottom: 2px solid #eeeeee;
  padding-bottom: 10px;
}

.section-title {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
}

.section-title span {
  color: var(--accent);
}

.section-subtitle {
  font-size: 13px;
  color: #777777;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.two-columns {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  font-size: 14px;
}

.split-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.card {
  background: #fafafa;
  border-left: 6px solid var(--accent);
  padding: 18px 20px 20px 20px;
  font-size: 14px;
}

.card h3 {
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* services grid */

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  font-size: 13px;
}

.service-item {
  text-align: center;
  padding: 10px 0; /* مسافة بسيطة فوق وتحت */
  border: none;     /* شيلنا المربع */
  background: none; /* شيلنا الخلفية */
}

.service-item i {
  font-size: 28px;
  margin-bottom: 8px;
  color: var(--accent);
}

.service-item h4 {
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* clients */

.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.client-box {
  border: 1px solid #eeeeee;
  background: #fcfcfc;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #777777;
}

/* team */

.partners-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 25px;
  font-size: 14px;
}

.partner-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.partner {
  display: flex;
  align-items: center;
  gap: 12px;
}

.partner-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #dddddd;
  overflow: hidden;
}

.partner-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner h4 {
  font-size: 14px;
  margin-bottom: 4px;
}

.partner span {
  font-size: 12px;
  color: #777777;
}

/* forms + contact */

form {
  display: grid;
  gap: 10px;
  font-size: 13px;
}

input,
textarea {
  padding: 8px 10px;
  border: 1px solid #dddddd;
  font-family: inherit;
  font-size: 13px;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--accent);
}

textarea {
  min-height: 90px;
  resize: vertical;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  border: none;
  padding: 8px 16px;
  font-size: 13px;
  text-transform: uppercase;
  cursor: pointer;
  align-self: flex-start;
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.career-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  font-size: 14px;
}

.map-placeholder {
  background: #eeeeee;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888888;
  font-size: 13px;
  border: 1px solid #dddddd;
}

/* footer */

footer {
  background: #000;
  color: #ccc;
  font-size: 13px;
}

.footer-top-line {
  height: 4px;
  background: var(--accent);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 0 50px 0;
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr;
  gap: 40px;
}

.footer-col h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 12px;
  text-transform: uppercase;
  font-weight: 700;
}
.footer-col-location {
    padding-left: 50px;
}

.footer-col-location p {
    padding-left: 10px;
}

/* مسافة بين ABOUT و CONTACT */
.footer-contact-title {
  margin-top: 26px;
}

.footer-col p,
.footer-col ul li {
  color: #ccc;
  font-size: 13px;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 6px;
}

/* الأيقونات بتاعة CONTACT */
.footer-contact-list li i {
  margin-right: 6px;
  color: var(--accent);
}

/* 🔸 أيقونة اللوكيشن تبقى أورنج */
.footer-col-location p i {
  margin-right: 6px;
  color: var(--accent);
}

.footer-logo {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;
}
.footer-logo {
    position: relative;   /* مهم جدًا */
}
.footer-col-logo {
    position: relative;
    height: 130px;
    overflow: visible;
}

.footer-logo img {
    position: absolute;
    bottom: -400px;
    left: -120px; /* يمين/شمال حسب رغبتك */
    height: 500px;
}
}

.footer-logo span {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

.footer-bottom {
  text-align: center;
  padding: 12px 0;
  border-top: 1px solid #222;
  color: #777;
  font-size: 11px;
}
/* responsive */

@media (max-width: 992px) {
  .hero,
  .two-columns,
  .partners-layout,
  .career-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  /* home hero & about */
  .home-hero {
    padding: 60px 30px;
    min-height: 420px;
  }

  .home-hero-title {
    font-size: 46px;
  }

  .home-about {
    grid-template-columns: 1fr;
    padding: 40px 30px 30px 30px;
  }

  section.box-section {
    max-width: calc(var(--max-width) - 80px);
    padding: 26px 24px 28px 24px;
  }

  .hero-text {
    padding: 40px 30px 30px 30px;
  }

  .hero-text::before {
    left: 0;
    top: 40px;
  }

  .nav-inner {
    flex-direction: column;
    gap: 10px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .clients-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .top-bar {
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 520px) {
  section.box-section {
    max-width: 100%;
    margin: 20px 0 0 0;
    border-radius: 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .clients-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-hero {
    padding: 50px 20px;
  }

  .home-hero-title {
    font-size: 38px;
  }
}
/* ===== DROPDOWN FIX — ABOUT US + OUR TEAM ===== */

.nav-inner li.dropdown {
  position: relative;
}

.nav-inner li .dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 180px;
  background: #111111;
  padding: 4px 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.35);
  z-index: 999;
}

.nav-inner li .dropdown-menu li a {
  display: block;
  padding: 6px 14px;
  font-size: 12px;
  color: #fff;
  border-bottom: 1px solid #222;
  white-space: nowrap;
}

.nav-inner li.dropdown.open > .dropdown-menu {
  display: block !important;
}
.company-profile-hero {
  background: #ffffff;
  text-align: center;
  padding: 80px 0 60px 0;
}

.company-profile-hero h1 {
  font-size: 60px;
  font-weight: 900;
  text-transform: uppercase;
  color: #111;
  letter-spacing: 8px; /* زوّدي الرقم لزيادة الـ Stretch */
}

.company-profile-hero h1 span {
  color: var(--accent);
}

.company-video {
  background: #ffffff;
  padding: 20px 0 60px 0;
  text-align: center;
}

.company-video video {
  width: 80%;
  max-width: 1000px;
  border-radius: 6px;
}/* ========== HERO IMAGE ========== */
.vm-hero {
  background: url("images/vision-hero.jpg") center/cover no-repeat;
  height: 500px;
  position: relative;
}

.vm-hero-text {
  position: absolute;
  top: 45%;
  left: 13%;
  transform: translateY(-50%);
}

.vm-hero-text h1 {
  font-size: 75px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.vm-hero-text h1 span {
  color: var(--accent);
}
.vm-hero-text h1 .dark {
    color: #000000;   /* أسود تقيل */
}

/* ========== VISION & MISSION SECTIONS ========== */
.vm-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  background: #ffffff;
  padding: 60px 80px;
  gap: 40px;
}

.vm-left-title h2 {
  font-size: 60px;
  font-weight: 900;
  text-transform: uppercase;
}

.vm-left-title h2 span {
  color: var(--accent);
}

.vm-right-text p {
  font-size: 15px;
  color: #222;
  line-height: 1.7;
  max-width: 500px;
}

/* mission spacing */
.mission-section {
  padding-top: 40px;
}
.title-vision {
  display: inline-block;
  position: relative;
  top: -10px;      /* عدّلي الرقم براحتك */
  transform: scaleX(1.15);
}

.title-mission {
  display: inline-block;
  position: relative;
  top: 20px;       /* عدّلي الرقم براحتك */
  transform: scaleX(1.25);
  font-weight: 900;
 color: #000000 !important;   /* أسود تقيل جدًا */
}

.title-vision {
  position: relative;
  top: -20px; /* لفوق */
}

.title-mission {
  position: relative;
  top: 20px; /* لتحت */
}
.vm-left-title {
    padding-left: 100px;   /* دخّليه يمين */
}
.vm-right-text {
    padding-left: 150px;   /* دخّليه يمين */
}
.vm-right-text p {
    font-weight: 600;   /* Bold */
}

.content {
  flex: 1;
  max-width: 100%;
  margin: 0;
  background: #ffffff;   /* عشان الجوانب تبقى بيضا بدل أسود */
  padding: 0 0 40px 0;   /* أو خليه 0 لو مش عايزة مسافة تحت */
}
/* ====== SERVICES BANNER (Our Services) ====== */
.services-hero {
  width: 100%;
  background: #000; /* مش هتبان عشان في صورة فوقه */
}

.services-hero img {
  width: 100%;
  height: 700px;      /* كبّري/قلّلي حسب ما تحبي */
  object-fit: cover;  /* يخلي الصورة تتملي البانر من غير تشويه */
  display: block;
}
.services-section {
    background: #ffffff;
    padding-top: 80px;   /* مسافة من فوق */
    padding-bottom: 120px; /* مسافة من تحت */
}
/* بانر صفحة السيرفيس */
.services-hero img {
  width: 100%;
  height: 630px;      /* كبّري/قللي الرقم لو حابة */
  object-fit: cover;
  display: block;
}

/* الجزء الأبيض اللي تحت البانر */
.services-section {
  background: #ffffff;
  padding: 80px 80px 120px 80px;  /* المسافة فوق وتحت ويمين وشمال */
}

/* عنوان OUR SERVICES في النص */
.services-section .section-header {
  border-bottom: none;
  justify-content: center;
  text-align: center;
  margin-bottom: 40px;
}

.services-section .section-title {
  font-size: 48px;
  font-weight: 900;
}

/* لو حابة تزودي البولد للأيقونات */
.services-grid .service-item h4 {
  font-weight: 700;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.services-grid .service-item img {
  width: 275px;
  height: 275px;
  object-fit: contain;
  margin-bottom: -20px;
}

.services-grid h4 {
  font-size: 13px;
  font-weight: 700;
}
.services-grid .service-item h4 {
    font-weight: 900 !important;
}
/* شكل خانة السيرفيس نفسها */
.service-item {
  text-align: center;
  padding: 10px 0;
  border: none;
  background: none;
}
.services-grid .service-item h4 {
  font-size: 13px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 8px;
  font-weight: 900 !important;   /* يخليه بولد غصب عنه */
}
/* تحريك بسيط للأيقونة والكلام جوّه الخانة بس */
.services-grid .service-item img,
.services-grid .service-item h4 {
  position: relative;
  left: -130px;   /* جربي -5 أو -10 حسب ما تحبي */
}
/* آخر صف (آخر خانتين) يبقى في النص */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.services-grid .service-item:nth-last-child(2),
.services-grid .service-item:last-child {
  grid-column: span 2; /* ياخدوا عرض عمودين */
  justify-self: center; /* يتوسطوا أفقي */
  text-align: center;   /* خلي الكلام في النص */
}
.services-section .section-title {
  font-size: 60px;           /* كبر العنوان */
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 5px;       /* استريتش بسيط في الحروف */
  transform: scaleX(1.15);   /* Stretch أفقي */
  transform-origin: left;    /* يمتد من الشمال */
}
/* ===== FULL WIDTH CLIENTS HERO ===== */

.clients-hero {
  width: 100vw;                /* يملى عرض الشاشة بالكامل */
  margin-left: 50%;
  transform: translateX(-50%); /* عشان يسنتر البانر ويخرج من حدود الصفحة */
  height: 420px;               /* كبر/صغر براحتك */
  position: relative;
  overflow: hidden;
}

.clients-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;           /* يخلي الصورة تتفرد صح */
  display: block;
}

/* Title Fix */
.clients-hero-title {
  position: absolute;
  left: 80px;
  bottom: 80px;
  font-size: 56px;
  font-weight: 900;
  color: #000;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.clients-hero-title span {
  color: var(--accent);
}
/* ===== FULL WIDTH CLIENTS HERO ===== */

.clients-hero {
  width: 100vw;                /* يملى عرض الشاشة بالكامل */
  margin-left: 50%;
  transform: translateX(-50%); /* عشان يسنتر البانر ويخرج من حدود الصفحة */
  height: 420px;               /* كبر/صغر براحتك */
  position: relative;
  overflow: hidden;
}

.clients-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;           /* يخلي الصورة تتفرد صح */
  display: block;
}

/* Title Fix */
.clients-hero-title {
  position: absolute;
  left: 80px;
  bottom: 80px;
  font-size: 56px;
  font-weight: 900;
  color: #000;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.clients-hero-title span {
  color: var(--accent);
}
/* ===== FULL WIDTH CLIENTS HERO ===== */

.clients-hero {
  width: 100vw;                /* يملى عرض الشاشة بالكامل */
  margin-left: 50%;
  transform: translateX(-50%); /* عشان يسنتر البانر ويخرج من حدود الصفحة */
  height: 700px;               /* كبر/صغر براحتك */
  position: relative;
  overflow: hidden;
}

.clients-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;           /* يخلي الصورة تتفرد صح */
  display: block;
}

/* Title Fix */
.clients-hero-title {
  position: absolute;
  left: 80px;
  bottom: 80px;
  font-size: 56px;
  font-weight: 900;
  color: #000;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.clients-hero-title span {
  color: var(--accent);
}
.clients-logos img {
    width: 1000px;       /* صغّري/كبّري الرقم براحتك */
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}
.clients-text {
    font-size: 30px;      /* كبّري الرقم براحتك */
    font-weight: 700;     /* Bold قوي */
    line-height: 1.8;     /* يخلي السطور واضحة */
    color: #000;          /* لون النص */
    max-width: 900px;     
    margin: 30px auto;    /* يوسطن الكلام */
}
/* ===== MEET THE PARTNERS – TITLE ===== */

.partners-header {
  max-width: var(--max-width);
  margin: 40px auto 0 auto;
  background: #ffffff;
  padding: 40px 60px 10px 60px;
}

.partners-title {
  font-size: 38px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: left;
}

.partners-title span {
  color: var(--accent);
}
/* ===== CHAIRMAN MESSAGE BLOCK ===== */

.chairman-section {
  background: #ffffff;
}

.chairman-box {
  max-width: var(--max-width);
  margin: 0 auto;
  background: #f6a94a;           /* أورانج فاتح قريب من الديزاين */
  padding: 40px 60px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  column-gap: 40px;
}

/* العناوين جوّه البوكس */
.chairman-text h3 {
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.chairman-text h4 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 18px;
}

/* الباراجراف */
.chairman-text p {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 10px;
}

/* صورة الرئيس */
.chairman-image img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 12px;
}

/* التوقيع */
.signature {
  font-size: 14px;
  font-style: italic;
  text-align: right;
}
/* ===== TEAM / PARTNERS SECTION ===== */

/* نفس عرض بوكس الـ CHAIRMAN */
.team-section {
  max-width: var(--max-width);
  margin: 40px auto 60px auto;   /* في النص و فوقه شوية مسافة بسيطة */
  background: #f6a94a;           /* نفس البرتقاني */
  padding: 40px 60px 60px 60px;  /* نفس البادينج بتاع البوكس اللي فوق */
}

.team-grid {
  display: grid;
    background: #f6a94a !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px 140px;       /* المسافات بين الصور */
  justify-items: center; /* يخلي كل صورة في النص جوه العمود بتاعها */
}

/* أول عضو (الدكتور محمد) في النص لوحده */
.team-member:first-child {
  grid-column: 1 / -1;
  justify-self: center;
}

/* الصور الدائرية */
.team-member img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 12px auto;
}

/* الاسم */
.team-member h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 4px;
}

/* الـ Job Title */
.team-member p {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
/* ========= MEET THE PARTNERS TITLE ========= */

.partners-header {
  max-width: var(--max-width);
  margin: 40px auto 0 auto;
  background: #ffffff;
  padding: 40px 60px 10px 60px;
}

.partners-title {
  font-size: 40px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: left;
}

.partners-title span {
  color: var(--accent);   /* MEET بالبرتقالي */
}
/* ========= CHAIRMAN MESSAGE BLOCK ========= */

.chairman-section {
  background: #ffffff;
  padding: 0 60px 40px 60px;        /* أبيض حوالين البوكس */
}

.chairman-box {
  max-width: var(--max-width);
  margin: 0 auto;
  background: #f2a23a;
  padding: 40px 60px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
}

/* عناوين النص */
.chairman-text h3 {
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.chairman-text h4 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 18px;
}

/* الباراجراف */
.chairman-text p {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 10px;
}

/* صورة الشيرمان */
.chairman-image img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 12px;
  object-fit: cover;
}

/* التوقيع تحت الصورة */
.chairman-image .signature {
  font-size: 14px;
  font-style: italic;
  text-align: right;
}
/* ========= PARTNERS GRID ========= */
/* مسافة حوالين بوكس البرتقاني بتاع الفريق */
.team-section {
  padding: 40px 0 60px 0;   /* فوق وتحت بس، من غير max-width ولا background */
}

/* البوكس البرتقاني – نفس فكرة chairman-box بالظبط */
.team-box {
  max-width: var(--max-width);
  margin: 0 auto;              /* يخليه في النص ويطلع الجنبين الأبيض */
  background: #f2a23a;         /* نفس لون البرتقاني */
  padding: 40px 60px 60px 60px;
}

/* توزيع صور البارتنرز جوّه البوكس */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px 140px;           /* مسافة رأسية وأفقية بين الصور */
  justify-items: center;     /* كل عضو في نص العمود بتاعه */
}

/* د. محمد في الصف الأول في النص */
.team-member.center-row {
  grid-column: 1 / -1;       /* ياخد العمودين */
  text-align: center;
}

/* أول عضو (لو حابة يكون في النص لوحده) */
/*
.team-member:first-child {
  grid-column: 1 / -1;
  justify-self: center;
}
*/

.team-member img {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 12px auto;
}

.team-member h4 {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4px;
}

.team-member p {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}
@media (max-width: 768px) {
  .partners-header,
  .chairman-section,
  .team-section {
    padding: 20px;
  }

  .chairman-box {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .team-member img {
    width: 170px;
    height: 170px;
  }
}.chairman-section,
.team-section {
  padding-bottom: 0px;
  padding-top: 0px;
}
.partners-header {
  width: 100%;
  text-align: center; /* يخلي العنوان في النص */
  margin-bottom: 40px;
}

.partners-title {
  font-size: 60px;           /* كبر الحجم */
  font-weight: 900;           /* بولد قوي */
  letter-spacing: 3px;        /* تفريق بسيط بين الحروف */
  display: block;
  width: 100%;                /* تاخد عرض الصفحة */
}

.partners-title span {
  color: #d67a00;             /* اللون الأورنج */
}
.partners-header {
  margin-bottom: 10px !important;   /* قللنا المسافة جداً */
  padding-bottom: 0 !important;      /* يشيل أي مساحة إضافية */
}

.partners-title {
  margin-bottom: 0 !important;       /* العنوان نفسه بدون مسافة تحت */
}
.partners-title {
  text-align: left;          /* العنوان يبقى نحية الشمال شوية */
  margin-left: 150px;         /* اللي يحرّكه يمين */
}

/* ================= CAREERS PAGE ================= */

.careers-page {
  background-color: #ffffff;
  font-family: "Lato", sans-serif;
}

/* ---------- HERO القديم (لو حابه تستخدمي صورة تحت البانر) ---------- */

.careers-hero {
  width: 100%;
  height: 430px;
  background-image: url("images/careers-hero.jpg"); /* غيري الاسم حسب الصورة */
  background-size: cover;
  background-position: center;
  position: relative;
}

.careers-hero-overlay {
  position: absolute;
  inset: 0;
}

/* ---------- TOP BANNER (زي الهوم) ---------- */

.careers-top-banner {
  width: 100%;
  height: 800px;  /* كبرتيه انتي، سيبناه كبير */
  background-image: url("images/careers-banner.jpg"); /* غيري الاسم حسب الصورة */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.careers-top-banner-inner {
  max-width: 800px;
  transform: translateY(-200px); /* رافعين كلمة CAREERS لفوق جوّه البانر */
}

.careers-banner-title {
  font-size: 100px;
  font-weight: 900;
  color: #f7941d;
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1;
}

/* ---------- INTRO TEXT (المنطقة البيضا) ---------- */

.careers-intro {
  background-color: #ffffff;
  padding: 40px 60px 40px;
}

/* هنا بنرفع "Working At MGB" + البراجراف لفوق من غير ما الخلفية تتحرك */
.careers-intro-inner {
  max-width: 900px;
  margin: -400px auto 0;  /* الرقم ده اللي بيطلّع المحتوى لفوق */
}

.careers-heading {
  font-size: 80px;
  margin: 0 0 32px 0;
  font-weight: 900;
}

.careers-heading span {
  color: #f7941d;
}

.careers-intro-inner p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
 font-weight: 700;   /* هنا البولد */ 
}
/* ---------- FORM SECTION (المربع الأورنج) ---------- */

.careers-form-section {
  padding: 0 60px 80px;
  margin-top: -80px;       /* يقرّب المربع من الكلام اللي فوقه */
}

.careers-form-inner {
  max-width: 900px;
  margin: 0 auto;
  background-color: #f8aa57;
  padding: 40px 40px 30px;
}

.careers-form {
  width: 100%;
}

.form-group {
  margin-bottom: 24px;
}

.form-label-main {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-field-half {
  flex: 1;
  position: relative;
}

.careers-form input,
.careers-form textarea {
  width: 100%;
  border: none;
  padding: 14px 12px;
  font-size: 14px;
  outline: none;
  background-color: #fbd2a0;
}

.field-caption {
  display: block;
  font-size: 11px;
  margin-top: 4px;
}

.careers-submit-btn {
  margin-top: 10px;
  padding: 10px 26px;
  border: none;
  background-color: #000000;
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
}

/* ---------- موبايل ---------- */

@media (max-width: 768px) {
  .careers-hero {
    height: 260px;
  }

  .careers-intro {
    padding: 30px 20px 30px;
  }

  .careers-intro-inner {
    margin-top: -30px;
  }

  .careers-form-section {
    padding: 0 20px 40px;
    margin-top: -20px;
  }

  .careers-form-inner {
    padding: 24px 16px 20px;
  }

  .form-row {
    flex-direction: column;
  }

  .careers-top-banner {
    height: 260px;
  }

  .careers-banner-title {
    font-size: 42px;
  }
}
/* =============== GALLERY PAGE =============== */

/* خلفية الصفحة نفسها بيضا */
.gallery-page {
  background-color: #ffffff;
  font-family: "Lato", sans-serif;
}

/* العنوان OUR GALLERY */
.gallery-title-section {
  text-align: center;
  padding: 60px 0 30px;
}

.gallery-title {
  font-size: 80px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.gallery-title .orange {
  color: #f7941d;
}

/* سكشن المربع الأورنج */
.gallery-box-section {
  padding: 0 60px 80px;
}

/* المربع الأورنج نفسه */
.gallery-box {
  background-color:  #f6a94a !important;
  padding: 40px 30px;          /* هنا بنتحكم في الجناب حوالين الصور */
  max-width: 1100px;
  margin: 0 auto;              /* في النص */
}

/* الجريد بتاع الصور جوّه المربع الأورنج */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;                   /* الفراغات بين الصور – هتكون أورنج */
}

/* الصور نفسها */
.gallery-grid img {
  width: 100%;
  height: auto;
  display: block;
}

/* موبايل */
@media (max-width: 768px) {
  .gallery-title-section {
    padding: 40px 0 20px;
  }

  .gallery-title {
    font-size: 48px;
  }

  .gallery-box-section {
    padding: 0 20px 40px;
  }

  .gallery-box {
    padding: 20px 15px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

.gallery-main {
  display: block;
  margin: 0 auto;
  transform: translateX(40px);
}
/* ============ CONTACT PAGE ============ */

.contact-page {
  background-color: #ffffff;
  font-family: "Lato", sans-serif;
}

/* 1) بانر صورة اللوكيشن */
/* بانر صورة اللوكيشن */
.contact-banner {
  width: 100%;
}

.contact-banner-img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  display: block;
}
}

/* 2) العنوان CONTACT US + البراجراف */
.contact-intro {
  background-color: #ffffff;
  padding: 40px 60px 30px;
  text-align: center;
}

.contact-heading {
  font-size: 80px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 0 0 20px 0;
}

.contact-heading-orange {
  color: #f7941d;
}

.contact-text {
  max-width: 900px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 700;
}

/* 3) المربع الأورنج – نستخدم نفس ستايل careers مع تعديل بسيط */
.contact-form-section {
  /* إحنا مديينها نفس البادينج بس من غير margin-top السالب */
  padding: 0 60px 80px;
  margin-top: 30px;
}

/* موبايل */
@media (max-width: 768px) {
  .contact-banner {
    height: 260px;
  }

  .contact-intro {
    padding: 30px 20px 20px;
  }

  .contact-heading {
    font-size: 42px;
  }

  .contact-form-section {
    padding: 0 20px 40px;
    margin-top: 20px;
  }
}
/* تصغير الصورة */
.contact-banner-img {
  width: 50%;        /* اصغر شوية */
  height: auto;
  object-fit: cover;
  display: block;
  margin-left: auto; /* يخليها تيجي يمين */
}

/* ========= CONTACT BANNER SAME SIZE AS CAREERS ========= */

/* نستخدم نفس ستايل careers-top-banner ولكن نغيّر بس الصورة */
.contact-page .contact-banner {
  background-image: url("images/contact-location.jpg") !important; /* غيّري اسم الصورة لو مختلف */
  height: 800px !important;   /* نفس ارتفاع careers-top-banner */
  background-size: cover;
  background-position: center;
}
/* تكبير بانر CONACT */
.contact-page .contact-banner {
  height: 950px !important; /* غيّري الرقم براحتك */
  background-size: cover;
  background-position: center;
}
.team-grid {
  max-width: var(--max-width);
  margin: 0 auto 60px auto;
  background: #f6a94a;
  padding: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 صور في الصف */
  gap: 60px;
  text-align: center;
}

.team-member img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 15px auto;
}

.team-member h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 4px;
}

.team-member p {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-section {
  background: #f6a94a;
  padding: 60px 0;
}

.team-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 40px;
  text-align: center;
}

/* الشخص اللي فوق لوحده */
.center-row {
  grid-column: span 2;
}

.team-member img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.team-member h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 5px;
}

.team-member p {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.orange-box {
  max-width: 1100px;   /* نفس عرض المربعات التانية */
  margin: 0 auto;      /* يعمل جنبين أبيض */
  padding: 40px;       /* جوه المربع */
  background: #f2a23a; /* نفس لون الأورنج بتاعك */
  border-radius: 5px;
}

.team-section {
  background: #ffffff; /* أبيض للجنبين */
  padding: 60px 0;
}
/* الخلفية العامة حوالين الفريق تبقى أبيض */
.team-section {
  background: #ffffff;
  padding: 60px 0;
}

/* البوكس الأورنج اللي جوّه – نفس فكرة chairman-box */
.team-grid {
  background: #f3a23a;      /* نفس لون البوكس اللي فوق */
  max-width: 1180px;        /* نفس الـ max-width بتاع .chairman-box (غيّريها لو مختلفة) */
  margin: 0 auto;           /* يحطه في نص الصفحة */
  padding: 40px 60px;       /* مسافة جوه البوكس */
  display: grid;
  gap: 30px;                /* مسافة بين الأعضاء */
  justify-items: center;
}
.team-grid {
  margin-top: -80px;   /* يشد البوكس نفسه لفوق */
}
.team-grid {
  background: #f6a94a !important;   /* نفس درجة البوكس اللي فوق */
}
.team-member {
  text-align: center;
}

.team-member img {
  width: 180px;          /* حجم الصورة */
  height: 180px;         /* نخليها مربع */
  object-fit: cover;     /* عشان تقطع صح */
  border-radius: 50%;    /* نخلي الصور دايرة */
  margin-bottom: 15px;   /* مسافة بين الصورة والاسم */
  border: 4px solid #fff;  /* شكل شيك */
}

.team-member h4 {
  font-size: 20px;
  margin: 0;
  font-weight: 700;
}

.team-member p {
  margin: 5px 0 0;
  font-size: 15px;
  opacity: 0.9;
}
.image-wrapper img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 50% !important;
}
/* 1) إلغاء الدائرة القديمة اللي حوالين الشخص */
.team-member::before {
  content: none !important;
  width: 0 !important;
  height: 0 !important;
  border: none !important;
}

/* 2) نضمن إن مفيش position غريب مأثر */
.team-member {
  position: static !important;
  text-align: center;
}

/* 3) تكبير الصورة نفسها ع قد الدائرة اللي انتي عايزاها */
.team-member img {
  width: 210px !important;
  height: 210px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  border: 6px solid #fff !important;
  margin-bottom: 15px !important;
}
/* ===== TEAM SECTION ===== */

/* الخلفية: أبيض برا، أورنج جوّه البوكس */
.team-section {
  background: #ffffff;
  padding: 60px 0;
}

.team-grid {
  background: #f6a94a;              /* نفس درجة الأورنج اللي فوق */
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 80px;
  justify-items: center;
}

/* عضو التيم في الصف الأول يبقى في النص لوحده */
.team-member.center-row {
  grid-column: 1 / -1;
}

/* نشيل أي دواير بيضا قديمة أو بوردرات */
.team-member::before {
  content: none !important;
}
.team-member img {
  border: none !important;
}

/* مربع الصورة من غير دايرة بيضا حوالينها */
.member-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;    /* لو عايزاها دايرة – شيلي السطر لو عايزاها مربعة */
  overflow: hidden;
  margin-bottom: 15px;
}

/* الصورة جوّه المربع/الدايرة – من غير أي بوردر أبيض */
.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;    /* نفس الكلام: شيليه لو مش عايزاها دايرة */
}

/* النص تحت الصورة */
.team-member {
  text-align: center;
}

.team-member h4 {
  font-size: 20px;
  margin: 0;
  font-weight: 700;
}

.team-member p {
  margin-top: 5px;
  font-size: 14px;
  letter-spacing: 0.5px;
}
/* تكبير الصور بالقوة فوق أي كود تاني */
.member-photo {
  width: 300px !important;
  height: 300px !important;
  overflow: hidden !important;
  border-radius: 50% !important;
}

.member-photo img {
  width: 150% !important;
  height: 150% !important;
  object-fit: cover !important;
  border-radius: 50% !important;
}
.member-photo {
  margin-left: -110px !important;   /* حرّكيها شمال شوية */
}
/* ===== إصلاح شكل الصور نهائيًا ===== */

.member-photo {
  width: 220px !important;
  height: 220px !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  background: #fff; /* يخلي الخلفية مفيهاش قص */
  margin-bottom: 15px !important;
}

.member-photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;  /* يظبط مكان الصورة */
  border-radius: 50% !important;
}
/* يقلل/يلغي المسافة بين بوكس الشيرمان وبوكس الفريق */
.chairman-section {
  margin-bottom: 0;
  padding-bottom: 0;
}

.team-section {
  margin-top: 0;
  padding-top: 0;
}
/* خلي الخلفية حوالين بوكس الفريق شفافة */
.team-section {
  background: transparent;
}

/* البوكس البرتقاني الحقيقي */
.team-box {
  max-width: var(--max-width);
  margin: 0 auto;
  background: #f2a23a;       /* نفس لون المربع اللي فوق */
  padding: 40px 60px 60px 60px;
}

/* اتأكد إن مفيش خلفيات جوّه تعمل مستطيل تاني */
.team-grid,
.team-member {
  background: transparent;
}

/* إزالة أي خلفية داخلية في قسم الفريق */
.team-section,
.team-section * {
  background: transparent !important;
}

/* خلي بس خلفية واحدة هي الأساسية */
.team-section {
  background: #e9982f !important;  /* لون المربع البرتقاني الغامق */
  padding: 60px 0;
}

/* تأكيد إن البوكس الداخلي مفيهوش خلفية */
.team-box,
.team-grid,
.team-member {
  background: transparent !important;
}
/* خلي كل القسم نفس اللون البرتقاني الفاتح */
.team-section {
  background: #e9982f !important;   /* اللون الفاتح */
}

/* شيل أي خلفية مختلفة جوه القسم */
.team-section * {
  background: transparent !important;
}
/* توحيد لون الجزء البرتقاني بتاع البارتنرز */

.chairman-section {
  background: #ffffff;
}

.chairman-box {
  background: #f6a94a !important;
}

/* المربع البرتقاني اللي تحت */
.team-section {
  background: #f6a94a !important;
  padding-top: 60px;
  padding-bottom: 80px;
}

/* لو في كونتينر جوه واخد لون تاني */
.team-grid {
  background: #f6a94a !important;
}
/* تكبير صور البارتنرز */
.team-member img {
  width: 500px !important;
  height: 500px !important;
  object-fit: cover;
}

.team-grid {
  transform: translateX(-70px); /* حرّكي الصور يمين */
}
.team-member img {
  margin-bottom: -140px !important;   /* كان 12px – قللناه */
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 1px;       /* المسافة بين الصفوف */
  column-gap: 80px;    /* المسافة بين نهي - احمد ... مصطفى - عبدالله */
  justify-items: center;
}
.center-row {
  margin-bottom: -40px !important;  /* يقرّب اللي تحت لفوق */
}
/* تكبير الصورة من غير ما تتحرك */
.team-member img {
  transform: scale(1.50);   /* غيري الرقم 1.12 → 1.15 → 1.2 حسب الحجم اللي يعجبك */
  transition: 0.3s ease;
}
.team-member h4 {
  font-size: 25px !important;
  font-weight: 800;
}
.team-member p {
  font-size: 25px !important;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* أو العدد اللي انتي عاملاه */
    gap: 30px;
    justify-items: center;     /* يخلي كل صورة في النص */
    justify-content: center;   /* يخلي الجريد كله في نص الصفحة */
}
/* ==== GALLERY HERO IMAGE ==== */

/* البوكس اللي جوّه المربع الأورنج */
.gallery-box {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* الصورة نفسها – نخليها في نص المربع */
.gallery-hero-img {
  display: block;   /* عشان margin auto يشتغل */
  margin: 0 auto;   /* تـوسيط أفقي في نص المربع الأورنج */
  height: auto;
  max-width: 90%;   /* لو عايزاها أوسع زوّدي الرقم لحد 100% */
}
/* نص صفحة Our Clients تحت البانر */
.clients-text.box-section p {
  font-size: 25px !important;   /* صغّري أو كبّري الرقم براحتك */
  line-height: 1.6 !important;  /* علشان المسافات بين السطور تبقى لطيفة */
}
.hero {
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18); /* قللي الرقم أو كبّريه */
  pointer-events: none;
}
/* حرّك بلوك LOCATION (البلوك التاني جوّه footer-inner) */
.footer-inner > div:nth-child(2) {
  transform: translate(250px, 5px) !important;
}
