/* ==========================================================================
   MacoTrac Trade - Modern, High-Performance & Pixel-Perfect Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&family=Roboto+Slab:wght@300;400;600;700&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300&display=swap');

:root {
  --color-primary: #075c5d;
  --color-primary-hover: #5f9495;
  --color-secondary: #041427;
  --color-accent: #322b93;
  --color-accent-hover: #221d68;
  --color-teal-mid: #5f9495;
  --color-teal-light: #84acac;
  --color-bg-light: #cfdde0;
  --color-text-dark: #223645;
  --color-text-muted: #55606d;
  --color-text-body: #4a5568;
  --color-white: #ffffff;
  --color-card-bg: #f7f7f7;
  --color-border: #ececec;

  --font-main: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: 'Cairo', 'Roboto', sans-serif;
  --font-serif: 'Roboto Slab', serif;

  --container-max-width: 1140px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--color-secondary);
  background-color: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}

.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ==========================================================================
   1. TOP BAR
   ========================================================================== */
.top-bar {
  background-color: var(--color-bg-light);
  min-height: 50px;
  display: flex;
  align-items: center;
  font-size: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.top-social-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-bg-light);
  transition: var(--transition);
}

.social-icon-circle svg {
  width: 13px;
  height: 13px;
  fill: var(--color-bg-light);
  transition: var(--transition);
}

.social-icon-circle:hover {
  background-color: var(--color-accent);
  transform: translateY(-2px);
}

.social-icon-circle:hover svg {
  fill: var(--color-white);
}

.top-contact-info {
  display: flex;
  align-items: center;
  gap: 25px;
}

.top-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-secondary);
  font-weight: 500;
  font-size: 13.5px;
}

.top-contact-link svg {
  width: 14px;
  height: 14px;
  fill: var(--color-primary);
  transition: var(--transition);
}

.top-contact-link:hover {
  color: var(--color-primary);
}

.top-contact-link:hover svg {
  transform: scale(1.1);
}

/* ==========================================================================
   2. MAIN NAVIGATION (STICKY)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}

.logo-wrapper a {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav-right-group {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-navigation {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-item a,
.nav-menu > li > a {
  font-family: var(--font-main);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  position: relative;
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}

.nav-item.active a,
.nav-item a:hover {
  color: var(--color-teal-mid);
}

.nav-item.lang-item a,
.lang-item a {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  color: var(--color-primary) !important;
  white-space: nowrap !important;
}

.flag-icon {
  width: 16px !important;
  height: 11px !important;
  border-radius: 1px;
  box-shadow: 0 0 1px rgba(0,0,0,0.3);
  display: inline-block !important;
  vertical-align: middle !important;
  flex-shrink: 0 !important;
}

.lang-item span {
  font-family: 'Cairo', sans-serif !important;
  font-weight: 700 !important;
  font-size: 15.5px !important;
  display: inline-block !important;
  line-height: 1 !important;
}

.btn-contact-header {
  background-color: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 13px 28px;
  display: inline-block;
  border-radius: 0;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-contact-header:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
  transform: translateY(-1px);
}

.mobile-menu-toggle {
  display: none;
  background: var(--color-primary);
  color: var(--color-bg-light);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-menu-toggle svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ==========================================================================
   3. HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  background-image: url('images/cbd-1.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0 140px 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-secondary);
  opacity: 0.65;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.hero-title {
  font-family: var(--font-main);
  font-size: 42px;
  font-weight: 800;
  color: var(--color-bg-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 22px;
  line-height: 1.2;
}

.hero-description {
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: 300;
  color: var(--color-bg-light);
  line-height: 1.6;
  margin-bottom: 35px;
}

.btn-primary {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 18px 36px;
  border-radius: 0;
  transition: var(--transition);
}

.btn-primary:hover {
  background-color: var(--color-teal-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(7, 92, 93, 0.25);
}

/* ==========================================================================
   4. MISSION / VISION / VALUES (FLOATING CARDS)
   ========================================================================== */
.feature-cards-section {
  position: relative;
  z-index: 10;
  margin-top: -75px;
  padding-bottom: 30px;
}

.feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.feature-card {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--color-white);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  z-index: 2;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.card-mission {
  background-color: var(--color-primary);
}

.card-vision {
  background-color: var(--color-teal-mid);
}

.card-values {
  background-color: var(--color-teal-light);
}

.card-top {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 25px;
}

.card-icon-frame {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  border: 2px solid var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon-frame svg {
  width: 22px;
  height: 22px;
  fill: var(--color-white);
}

.card-content h3 {
  font-family: var(--font-main);
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.card-content p {
  font-family: var(--font-main);
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}

.card-action {
  align-self: flex-end;
  margin-top: 15px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-white);
  font-size: 13.5px;
  font-weight: 600;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  padding-bottom: 4px;
  transition: var(--transition);
}

.card-link svg {
  width: 14px;
  height: 14px;
  fill: var(--color-white);
  transition: transform 0.3s ease;
}

.card-link:hover {
  border-color: var(--color-white);
}

.card-link:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
   5. MEET THE FOUNDER SECTION
   ========================================================================== */
.founder-section {
  position: relative;
  padding: 100px 0;
  background-color: var(--color-white);
  overflow: hidden;
}

.founder-bg-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 450px;
  height: 380px;
  background-image: url('images/35.webp');
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: contain;
  opacity: 0.45;
  pointer-events: none;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 55px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.founder-image-col {
  text-align: center;
}

.founder-img {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  border-radius: 0;
  box-shadow: 0px 0px 37px 16px rgba(222, 235, 255, 0.35);
  transition: var(--transition);
}

.founder-img:hover {
  transform: scale(1.02);
}

.founder-content-col {
  padding-left: 10px;
}

.section-tag-divider {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
}

.section-tag-divider.left {
  justify-content: flex-start;
}

.section-tag-divider.center {
  justify-content: center;
}

.tag-line {
  height: 3px;
  width: 60px;
  background-color: var(--color-accent);
}

.tag-text {
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
}

.founder-title {
  font-family: var(--font-main);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-text-dark);
  text-transform: uppercase;
  margin-bottom: 22px;
}

.founder-quote {
  font-family: var(--font-main);
  font-size: 19px;
  font-weight: 300;
  line-height: 2.1;
  color: var(--color-secondary);
  text-align: justify;
  margin-bottom: 25px;
}

.founder-name {
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.founder-role {
  font-family: var(--font-main);
  font-size: 22px;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 30px;
}

/* ==========================================================================
   6. OUR PROJECTS HOMEPAGE SECTION (UNIFIED LIGHT BACKGROUND)
   ========================================================================== */
.projects-home-section {
  background-color: #EDF3F5;
  padding: 55px 0 70px 0;
}

.projects-home-header {
  text-align: center;
  margin-bottom: 35px;
}

.banner-title {
  font-family: var(--font-main);
  font-size: 34px;
  font-weight: 800;
  color: var(--color-primary);
  text-transform: uppercase;
  margin: 0;
}

/* Projects 3-Cards Grid */
.projects-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.projects-home-section .project-card {
  background-color: #ffffff;
  padding: 14px 14px 26px 14px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.projects-home-section .project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.project-thumb {
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
  height: 220px;
  width: 100%;
}

.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.project-card:hover .project-thumb img {
  transform: scale(1.05);
}

.project-info {
  padding: 0 4px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-card-title {
  font-family: var(--font-main);
  font-size: 16.5px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
  line-height: 1.4;
}

.project-card-title a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition);
}

.project-card-title a:hover {
  color: var(--color-teal-mid);
}

.project-excerpt {
  font-family: var(--font-main);
  font-size: 14px;
  color: #333333;
  line-height: 1.7;
  margin-bottom: 16px;
  flex-grow: 1;
}

.project-read-more {
  display: inline-block;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

.project-read-more:hover {
  color: var(--color-teal-mid);
}

.projects-btn-wrap {
  text-align: center;
}

/* ==========================================================================
   7. OUR CLIENTS & PARTNERS SECTION (CLEAN WHITE BACKGROUND)
   ========================================================================== */
.clients-home-section {
  padding: 70px 0 85px 0;
  background-color: var(--color-white);
}

.section-header-center {
  text-align: center;
  max-width: 1020px;
  margin: 0 auto 40px auto;
}

.section-tag-divider.center {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 6px;
}

.section-tag-divider.center .tag-line {
  width: 50px;
  height: 2px;
  background-color: #075c5d;
  display: inline-block;
}

.section-tag-divider.center .tag-text {
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 700;
  color: #075c5d;
  letter-spacing: 0.5px;
}

.section-main-heading {
  font-family: var(--font-main);
  font-size: 34px;
  font-weight: 800;
  color: #075c5d;
  margin-top: 10px;
  margin-bottom: 22px;
}

.section-subtext {
  font-family: var(--font-main);
  font-size: 17.5px;
  font-weight: 400;
  line-height: 1.85;
  color: #444444;
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

body.rtl .section-subtext {
  font-size: 17.5px;
  line-height: 1.85;
  color: #444444;
  text-align: center;
}

/* Logos Carousel Slider - Pure Logos without card boxes */
.logos-carousel-container {
  position: relative;
  padding: 10px 45px;
  max-width: 1200px;
  margin: 25px auto 0 auto;
}

.logos-slider-wrapper {
  overflow: hidden;
  width: 100%;
}

.logos-track {
  display: flex;
  align-items: center;
  gap: 40px;
  transition: transform 0.5s ease;
}

.logo-slide {
  flex: 0 0 calc((100% - (4 * 40px)) / 5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: transparent;
  border: none;
  box-shadow: none;
  height: 115px;
  transition: var(--transition);
}

.logo-slide:hover {
  transform: scale(1.06);
}

.logo-slide img {
  max-height: 95px;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
  transition: var(--transition);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  background: transparent;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  color: #111111;
  transition: var(--transition);
}

.slider-btn svg {
  width: 26px;
  height: 26px;
  stroke: #111111;
  stroke-width: 2.5;
  transition: var(--transition);
}

.slider-btn:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.slider-btn.prev-btn {
  left: 0;
}

.slider-btn.next-btn {
  right: 0;
}

/* ==========================================================================
   8. FOOTER SECTION
   ========================================================================== */
.site-footer {
  background-color: var(--color-primary);
  background-image: url('images/bg2-3.png');
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--color-bg-light);
  padding: 70px 0;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1.1fr 0.8fr 1.2fr;
  gap: 40px;
}

.footer-heading {
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-bg-light);
  margin-bottom: 6px;
}

.footer-col-1 .footer-heading {
  color: var(--color-teal-light);
}

.footer-divider {
  width: 30px;
  height: 3px;
  background-color: var(--color-bg-light);
  margin-bottom: 18px;
}

.footer-text {
  font-family: var(--font-main);
  font-size: 15px;
  line-height: 1.9;
  color: var(--color-bg-light);
  margin-bottom: 22px;
  text-align: justify;
}

.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-social-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--color-bg-light);
  transition: var(--transition);
}

.footer-social-circle svg {
  width: 14px;
  height: 14px;
  fill: var(--color-primary);
  transition: var(--transition);
}

.footer-social-circle:hover {
  background-color: var(--color-white);
  transform: translateY(-2px);
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-list-item a {
  font-family: var(--font-main);
  font-size: 15.5px;
  color: var(--color-bg-light);
  transition: var(--transition);
  display: inline-block;
}

.footer-list-item a:hover {
  color: var(--color-teal-light);
  transform: translateX(4px);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--color-bg-light);
  line-height: 1.5;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  min-width: 16px;
  fill: var(--color-teal-light);
  margin-top: 3px;
}

.footer-contact-item a {
  color: var(--color-bg-light);
  transition: var(--transition);
}

.footer-contact-item a:hover {
  color: var(--color-teal-light);
}

/* Bottom Copyright Bar */
.footer-bottom-bar {
  background-color: var(--color-bg-light);
  padding: 16px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.19);
}

.copyright-text {
  font-family: var(--font-main);
  font-size: 14.5px;
  font-weight: 400;
  color: var(--color-accent);
}

/* ==========================================================================
   9. RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 34px;
  }
  .hero-description {
    font-size: 20px;
  }
  .feature-cards-grid {
    grid-template-columns: 1fr;
  }
  .feature-card {
    padding: 30px 25px;
  }
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .founder-content-col {
    padding-left: 0;
    text-align: center;
  }
  .founder-quote {
    text-align: center;
  }
  .section-tag-divider.left {
    justify-content: center;
  }
  .projects-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .logo-slide {
    flex: 0 0 calc((100% - (2 * 30px)) / 3);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .top-bar-inner {
    flex-direction: column;
    gap: 8px;
    padding: 8px 0;
    text-align: center;
  }
  .top-contact-info {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  .nav-container {
    height: 72px;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .main-navigation {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    flex-direction: column;
    padding: 25px 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    transition: transform 0.35s ease-in-out;
    opacity: 0;
    pointer-events: none;
    z-index: 999;
  }
  .main-navigation.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-menu {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }
  .nav-item {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 10px;
  }
  .btn-contact-header {
    display: none;
  }
  .hero-section {
    padding: 70px 0 100px 0;
    min-height: 420px;
  }
  .hero-title {
    font-size: 26px;
  }
  .hero-description {
    font-size: 16px;
    line-height: 1.5;
  }
  .feature-cards-section {
    margin-top: -40px;
  }
  .projects-cards-grid {
    grid-template-columns: 1fr;
  }
  .logo-slide {
    flex: 0 0 calc((100% - 20px) / 2);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}

/* ==========================================================================
   PAGE BANNER (INNER PAGES)
   ========================================================================== */
.page-banner {
  position: relative;
  background-image: url('images/bg2-3.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 220px;
  display: flex;
  align-items: center;
  padding: 65px 0;
}

.page-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(60deg, rgba(0, 0, 0, 0.6) 0%, rgba(242, 41, 91, 0) 100%);
  opacity: 0.5;
}

.page-banner-content {
  position: relative;
  z-index: 2;
}

.page-banner-title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  color: var(--color-bg-light);
  margin-bottom: 8px;
}

.page-banner-divider {
  width: 45px;
  height: 3px;
  background-color: var(--color-white);
}

/* ==========================================================================
   ABOUT US PAGE SPECIFIC STYLES
   ========================================================================== */
.about-intro-section {
  padding: 55px 0 20px 0;
  background-color: var(--color-white);
}

.about-intro-heading {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--color-secondary);
  margin-bottom: 12px;
}

.about-intro-text {
  font-family: var(--font-main);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-primary);
  text-align: justify;
}

/* Mission & Vision 2-Column Split */
.mission-vision-section {
  background-color: #fbfdff;
  padding: 60px 0 30px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.mv-col {
  padding: 0 45px;
}

.mv-col-left {
  border-right: 1px solid var(--color-bg-light);
  padding-left: 0;
}

.mv-col-right {
  padding-right: 0;
}

.mv-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.mv-icon-frame {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mv-icon-frame svg {
  width: 22px;
  height: 22px;
  fill: var(--color-primary);
}

.mv-content h3 {
  font-family: var(--font-main);
  font-size: 19px;
  font-weight: 700;
  color: var(--color-secondary);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.mv-content p {
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-secondary);
  text-align: justify;
}

/* Values Full Box */
.values-box-section {
  background-color: #fbfdff;
  padding: 10px 0 50px 0;
}

.values-box {
  padding: 0;
}

.values-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

/* 4 Pillars Grid (Quality, Reliability, etc.) */
.pillars-section {
  background-color: #fbfdff;
  padding: 0 0 70px 0;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.pillar-card {
  background-color: var(--color-primary);
  padding: 26px 18px;
  border-radius: 2px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: var(--transition);
}

.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(7, 92, 93, 0.3);
  background-color: #065051;
}

.pillar-icon-box {
  min-width: 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  color: var(--color-bg-light);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.pillar-content h4 {
  font-family: var(--font-main);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--color-bg-light);
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  line-height: 1.35;
}

.pillar-content p {
  font-family: var(--font-main);
  font-size: 13px;
  color: #eeeeee;
  line-height: 1.6;
  text-align: justify;
}

/* Responsive updates for About page */
@media (max-width: 1024px) {
  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .mv-col-left {
    border-right: none;
    border-bottom: 1px solid var(--color-bg-light);
    padding-bottom: 35px;
    padding-right: 0;
  }
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-banner {
    min-height: 140px;
    padding: 35px 0;
    text-align: center;
  }
  .page-banner-divider {
    margin: 0 auto;
  }
  .about-intro-heading {
    font-size: 24px;
    text-align: center;
  }
  .about-intro-text {
    font-size: 17px;
    text-align: justify;
  }
  .mv-col {
    padding: 0;
  }
  .mv-content p {
    font-size: 15px;
  }
  .pillars-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   PROJECTS PAGE SPECIFIC STYLES (MATCHING ORIGINAL ELEMENTOR GRID)
   ========================================================================== */
.projects-page-intro-text {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-secondary);
  text-align: left;
  margin-bottom: 45px;
}

body.rtl .projects-page-intro-text {
  text-align: right !important;
  direction: rtl;
}

body.rtl .project-card,
body.rtl .project-info,
body.rtl .project-card-title,
body.rtl .project-excerpt {
  text-align: right !important;
  direction: rtl;
}

.projects-page-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  column-gap: 30px !important;
  row-gap: 35px !important;
  margin-bottom: 80px;
  width: 100%;
}

.projects-page-grid .project-card {
  background-color: #f7f7f7 !important;
  padding: 15px 15px 30px 15px !important;
  display: flex !important;
  flex-direction: column !important;
  border-radius: 0;
  box-shadow: none;
  transition: var(--transition);
  width: 100%;
  box-sizing: border-box;
}

.projects-page-grid .project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.projects-page-grid .project-thumb {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
  margin-bottom: 20px;
}

.projects-page-grid .project-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block;
}

.projects-page-grid .project-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.projects-page-grid .project-card-title {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 15px;
  line-height: 1.4;
}

.projects-page-grid .project-card-title a {
  color: var(--color-primary);
}

.projects-page-grid .project-card-title a:hover {
  color: var(--color-teal-mid);
}

.projects-page-grid .project-excerpt {
  font-family: var(--font-main);
  font-size: 15px;
  color: var(--color-secondary);
  line-height: 1.65;
  margin-bottom: 18px;
  flex-grow: 1;
  text-align: left;
}

.projects-page-grid .project-read-more {
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  transition: var(--transition);
}

.projects-page-grid .project-read-more:hover {
  color: var(--color-teal-mid);
  transform: translateX(3px);
}

/* ==========================================================================
   SINGLE PROJECT DETAIL PAGE
   ========================================================================== */
.single-project-section {
  padding: 60px 0 90px 0;
  background-color: var(--color-white);
}

.single-project-wrap {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.scope-full-banner {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.scope-full-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* Brands Section under Scope of Work */
.scope-brands-title {
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: 800;
  color: #041427;
  text-align: center;
  margin-bottom: 20px;
}

.scope-brands-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 65px;
  margin-top: 45px;
  flex-wrap: wrap;
}

.scope-brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  transition: var(--transition);
}

.scope-brand-item:hover {
  transform: scale(1.05);
}

.scope-brand-item img {
  max-height: 46px;
  max-width: 220px;
  object-fit: contain;
  filter: none;
}

.single-project-image-wrap {
  margin-bottom: 30px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.single-project-image-wrap img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

.single-project-content {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.9;
  color: #444444;
  text-align: center;
}

@media (max-width: 1024px) {
  .projects-page-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .projects-page-intro-section {
    padding: 25px 0 10px 0;
  }
  .projects-page-intro-text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
  }
  .projects-page-grid {
    grid-template-columns: 1fr !important;
    row-gap: 25px !important;
    margin-bottom: 40px;
  }
  .projects-page-grid .project-thumb {
    height: 210px;
  }
}

/* ==========================================================================
   SCOPE OF WORK PAGE SPECIFIC STYLES
   ========================================================================== */
.scope-intro-section {
  padding: 45px 0 30px 0;
  background-color: var(--color-white);
}

.scope-intro-paragraphs {
  max-width: 1050px;
  margin: 0 auto;
}

.scope-intro-p {
  font-family: var(--font-main);
  font-size: 19px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--color-secondary);
  text-align: justify;
  margin-bottom: 25px;
}

.scope-section {
  padding: 15px 0 60px 0;
  background-color: var(--color-white);
}

.scope-heading-wrapper {
  text-align: center;
  margin-bottom: 35px;
}

.scope-pill-title {
  display: inline-block;
  background-color: #f2f7f7;
  color: var(--color-primary);
  font-family: var(--font-main);
  font-size: 19px;
  font-weight: 700;
  padding: 6px 28px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px solid rgba(7, 92, 93, 0.08);
}

.scope-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.scope-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.scope-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Breaker Gallery Cards */
.scope-breaker-card {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background-color: #ffffff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
}

.scope-breaker-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(16, 45, 94, 0.12);
  border-color: #cbd5e1;
}

.scope-breaker-img-wrap {
  width: 100%;
  height: 250px;
  position: relative;
  overflow: hidden;
  background-color: #f8fafc;
  cursor: pointer;
}

.scope-breaker-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
  display: block;
}

.scope-breaker-card:hover .scope-breaker-img-wrap img {
  transform: scale(1.06);
}

.scope-breaker-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(16, 45, 94, 0.88);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

[dir="rtl"] .scope-breaker-badge,
body.rtl .scope-breaker-badge {
  left: auto;
  right: 12px;
}

.scope-breaker-body {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
  background: #ffffff;
  border-top: 1px solid #f1f5f9;
}

.scope-breaker-title {
  font-family: var(--font-main);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  margin: 0;
  line-height: 1.4;
  letter-spacing: 0.3px;
  text-align: center;
}

/* Lightbox Modal */
.image-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 25, 47, 0.92);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.image-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.92);
  transition: transform 0.3s ease;
}

.image-lightbox.active .lightbox-content {
  transform: scale(1);
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}

.lightbox-caption {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-top: 12px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  padding: 5px;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.lightbox-close:hover {
  opacity: 1;
}

.scope-card {
  border: 1px solid #eeeeee;
  border-radius: 4px;
  background-color: #ffffff;
  padding: 30px 20px 25px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.scope-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(16, 45, 94, 0.12);
  border-color: #dbebe8;
}

.scope-card-img {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
}

.scope-card-img.hammer-img {
  height: 380px;
}

.scope-card-img.equip-img {
  height: 180px;
}

.scope-card-img.part-img {
  height: 190px;
}

.scope-card-img.dozer-img {
  height: 230px;
}

.scope-card-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: var(--transition);
}

.scope-card:hover .scope-card-img img {
  transform: scale(1.03);
}

.scope-card-title {
  font-family: var(--font-main);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-top: auto;
  line-height: 1.4;
  letter-spacing: 0.3px;
}

/* Brands section */
.scope-brands-title {
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-secondary);
  text-align: center;
  margin-bottom: 12px;
}

.scope-brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  align-items: center;
  margin-top: 20px;
}

.scope-brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  transition: var(--transition);
}

.scope-brand-item img {
  max-width: 100%;
  max-height: 55px;
  object-fit: contain;
  filter: grayscale(10%);
  transition: var(--transition);
}

.scope-brand-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.08);
}

/* Responsive queries for scope of work */
@media (max-width: 1024px) {
  .scope-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .scope-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .scope-brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .scope-intro-section {
    padding: 30px 0 15px 0;
  }
  .scope-intro-p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 18px;
  }
  .scope-section {
    padding: 10px 0 40px 0;
  }
  .scope-pill-title {
    font-size: 16px;
    padding: 5px 18px;
  }
  .scope-grid-2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .scope-grid-3 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .scope-grid-4 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .scope-card-img.hammer-img {
    height: 280px;
  }
  .scope-breaker-img-wrap {
    height: 220px;
  }
  .scope-brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================================
   CONTACT US PAGE SPECIFIC STYLES
   ========================================================================== */
.contact-page-section {
  padding: 80px 0;
  background-color: var(--color-white);
}

.contact-card-box {
  display: flex;
  background-color: #ffffff;
  box-shadow: 0px 0px 51px -24px rgba(0, 0, 0, 0.45);
  border-radius: 4px;
  overflow: hidden;
  max-width: 1080px;
  margin: 0 auto;
}

.contact-form-side {
  flex: 0 0 68%;
  padding: 50px 45px;
  background-color: #ffffff;
}

.contact-form-title {
  font-family: var(--font-main);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 10px;
}

.contact-form-subtitle {
  font-family: var(--font-main);
  font-size: 15px;
  color: #666666;
  margin-bottom: 30px;
  line-height: 1.5;
}

.contact-form-group {
  margin-bottom: 15px;
}

.contact-input,
.contact-textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-main);
  font-size: 14.5px;
  color: var(--color-secondary);
  border: 1px solid #dddddd;
  border-radius: 3px;
  outline: none;
  background-color: #ffffff;
  transition: var(--transition);
  box-sizing: border-box;
}

.contact-input:focus,
.contact-textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(7, 92, 93, 0.15);
}

.contact-textarea {
  resize: vertical;
  min-height: 110px;
}

.btn-contact-send {
  background-color: var(--color-secondary);
  color: #ffffff;
  border: none;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 13px 34px;
  border-radius: 3px;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 5px;
}

.btn-contact-send:hover {
  background-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(7, 92, 93, 0.3);
}

/* Info Side (Right Column) */
.contact-info-side {
  flex: 0 0 32%;
  background-color: var(--color-primary);
  padding: 50px 35px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
}

.contact-info-heading {
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.contact-info-heading.subsequent {
  margin-top: 25px;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 13.5px;
  line-height: 1.55;
  color: #eaf4f4;
}

.contact-info-item svg {
  width: 14px;
  height: 14px;
  min-width: 14px;
  fill: #ffffff;
  margin-top: 3px;
}

.contact-info-item a {
  color: #ffffff;
  text-decoration: none;
  transition: var(--transition);
}

.contact-info-item a:hover {
  color: var(--color-teal-light);
}

.contact-social-row {
  display: flex;
  gap: 8px;
  margin-top: 25px;
}

.contact-social-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.contact-social-btn svg {
  width: 13px;
  height: 13px;
  fill: #ffffff;
}

.contact-social-btn:hover {
  transform: translateY(-3px);
  background-color: #241e75;
}

/* Map Section */
.contact-map-section {
  width: 100%;
  line-height: 0;
}

.contact-map-section iframe {
  width: 100%;
  height: 390px;
  border: 0;
  filter: brightness(100%) contrast(100%) saturate(27%) blur(0px) hue-rotate(20deg);
}

@media (max-width: 900px) {
  .contact-card-box {
    flex-direction: column;
  }
  .contact-form-side {
    flex: 1 1 100%;
    padding: 35px 25px;
  }
  .contact-info-side {
    flex: 1 1 100%;
    padding: 35px 25px;
  }
  .contact-page-section {
    padding: 40px 0;
  }
}

/* ==========================================================================
   RTL ARABIC SPECIFIC STYLES
   ========================================================================== */
html[dir="rtl"],
body.rtl {
  direction: rtl;
  text-align: right;
  font-family: 'Cairo', 'Roboto', sans-serif;
}

html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4,
html[dir="rtl"] h5,
html[dir="rtl"] h6,
html[dir="rtl"] p,
html[dir="rtl"] a,
html[dir="rtl"] button,
html[dir="rtl"] span,
html[dir="rtl"] input,
html[dir="rtl"] textarea {
  font-family: 'Cairo', 'Roboto', sans-serif;
}

html[dir="rtl"] .top-bar-inner {
  flex-direction: row-reverse;
}

html[dir="rtl"] .nav-right-group {
  flex-direction: row;
}

html[dir="rtl"] .card-top {
  flex-direction: row;
}

html[dir="rtl"] .card-action {
  align-self: flex-start;
}

html[dir="rtl"] .card-link:hover svg {
  transform: translateX(-4px);
}

html[dir="rtl"] .founder-content-col {
  padding-left: 0;
  padding-right: 10px;
}

html[dir="rtl"] .founder-bg-overlay {
  left: auto;
  right: 0;
  transform: scaleX(-1);
}

html[dir="rtl"] .founder-quote {
  text-align: justify;
}

html[dir="rtl"] .project-read-more:hover {
  transform: translateX(-4px);
}

html[dir="rtl"] .footer-col-1 .footer-text {
  text-align: justify;
}

html[dir="rtl"] .footer-list-item a:hover {
  transform: translateX(-4px);
}

html[dir="rtl"] .site-footer {
  background-position: bottom left;
}

html[dir="rtl"] .hero-title,
html[dir="rtl"] .banner-title,
html[dir="rtl"] .section-main-heading,
html[dir="rtl"] .founder-title {
  letter-spacing: 0;
}

/* ==========================================================================
   ARABIC (RTL) TYPOGRAPHY & FONT OVERRIDES (CAIRO FONT SYSTEM)
   ========================================================================== */
body.rtl,
html[dir="rtl"] body,
body.rtl *,
html[dir="rtl"] * {
  font-family: 'Cairo', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

body.rtl .founder-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 18px;
}

body.rtl .founder-quote {
  font-size: 17.5px;
  font-weight: 400;
  line-height: 2.1;
  color: #444444;
  text-align: justify;
  text-align-last: right;
  margin-bottom: 25px;
}

body.rtl .founder-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-teal-mid);
  margin-bottom: 4px;
}

body.rtl .founder-role {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 28px;
}

body.rtl .about-intro-heading {
  font-size: 34px;
  font-weight: 800;
  color: var(--color-primary);
}

body.rtl .about-intro-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.9;
  color: #444444;
}

body.rtl .section-tag-divider.left {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

body.rtl .section-tag-divider.left .tag-line {
  background-color: var(--color-primary);
  width: 45px;
  height: 2px;
}

body.rtl .section-tag-divider.left .tag-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
}






