/* ============================================================
   TECHNZONE — About Us Page CSS
   about.css — page-specific styles (loaded after style.css)
   ============================================================ */

/* ── SECTION 1: About Hero ──────────────────────────────── */
.about-hero {
  background: linear-gradient(135deg, #0a0a12 0%, #120a10 50%, #0a0a12 100%);
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237,72,95,0.1) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

/* Dashed circle SVG decoration */
.about-hero-circles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 80px;
  align-items: center;
}

/* Hero eyebrow tag */
.about-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(237,72,95,0.12);
  border: 1px solid rgba(237,72,95,0.25);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.about-headline {
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 800;
  color: white;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 28px;
}

.about-word {
  display: inline-block;
  will-change: transform, opacity;
}

.about-hero-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  line-height: 1.65;
  margin-bottom: 16px;
}

.about-hero-body {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin-bottom: 36px;
}

.about-hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Visual */
.about-hero-visual {
  position: relative;
  height: 420px;
}

/* Progress bar inside float card */
.float-progress-row {
  margin-top: 16px;
}

.float-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}

.float-progress-bar {
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.12);
  overflow: hidden;
  margin-bottom: 8px;
}

.float-progress-fill {
  height: 100%;
  border-radius: 2px;
  background: var(--primary);
}

/* Small geo card */
.float-geo-card {
  position: absolute;
  bottom: 16px;
  right: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 14px 18px;
  color: white;
  display: flex;
  align-items: center;
  gap: 12px;
}

.float-geo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(237,72,95,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.float-geo-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}

.float-geo-sub {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.45);
}

/* Float card icon box */
.float-card-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(237,72,95,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 12px;
}

/* ── SECTION 2: Who We Are ──────────────────────────────── */
.about-who {
  padding: var(--section-pad);
  background: #fff;
}

.about-who-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 80px;
  align-items: start;
}

.about-who-left h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 12px 0 28px;
}

.about-who-left p {
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-metrics {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-metric-card {
  padding: 24px 28px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.about-metric-card:first-child {
  border-left: 4px solid var(--primary);
}

.about-metric-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.about-metric-num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  letter-spacing: -0.03em;
}

.about-metric-suffix {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

.about-metric-label {
  font-size: 0.875rem;
  color: var(--gray);
  margin-top: 6px;
  font-weight: 500;
}

.about-metric-bar {
  margin-top: 16px;
  height: 4px;
  border-radius: 2px;
  background: var(--border);
  overflow: hidden;
}

.about-metric-bar-fill {
  height: 100%;
  border-radius: 2px;
  background: var(--primary);
  width: 80%;
}

/* ── SECTION 3: Our Purpose ─────────────────────────────── */
.about-purpose {
  background: var(--dark);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-purpose::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237,72,95,0.05) 0%, transparent 70%);
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.purpose-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 32px;
}

.purpose-statement {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: rgba(255,255,255,0.15);
  line-height: 1.15;
  letter-spacing: -0.025em;
  max-width: 900px;
  margin: 0 auto 56px;
}

.purpose-word {
  display: inline-block;
  transition: color 0.4s ease;
}

.purpose-word.highlighted {
  color: rgba(255,255,255,1);
}

.purpose-divider {
  width: 48px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin: 0 auto 40px;
}

.purpose-body {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto 72px;
}

.purpose-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.principle-card {
  padding: 32px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.principle-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(237,72,95,0.3);
}

.principle-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(237,72,95,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.principle-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.principle-body {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ── SECTION 4: What We Do / Services ───────────────────── */
.about-services {
  padding: var(--section-pad);
  background: var(--neutral);
}

.about-services-header {
  margin-bottom: 56px;
}

.about-services-header h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin: 12px 0 18px;
}

.about-services-header p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.75;
  max-width: 580px;
}

.about-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-service-card {
  padding: 36px 32px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
  will-change: transform, opacity;
}

.about-service-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--primary);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}

.about-service-card:hover::before {
  transform: scaleY(1);
}

.about-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  border-color: transparent;
}

.service-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(237,72,95,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.375rem;
  margin-bottom: 24px;
  transition: background 0.25s ease;
}

.about-service-card:hover .service-card-icon {
  background: rgba(237,72,95,0.15);
}

.service-card-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.service-card-body {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ── SECTION 5: Industries ──────────────────────────────── */
.about-industries {
  padding: var(--section-pad);
  background: #0d0d12;
}

.about-industries-header {
  margin-bottom: 56px;
  text-align: center;
}

.about-industries-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 12px 0 18px;
}

.about-industries-header p {
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  max-width: 600px;
  margin: 0 auto;
}

.about-industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-industry-card {
  padding: 32px 28px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 3px solid var(--primary);
  transition: background 0.25s ease, transform 0.25s ease;
  will-change: transform, opacity;
}

.about-industry-card:hover {
  background: rgba(255,255,255,0.06);
  transform: translateY(-4px);
}

.industry-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(237,72,95,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 18px;
}

.industry-card-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.industry-card-body {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

/* ── SECTION 6: Our People ──────────────────────────────── */
.about-people {
  padding: var(--section-pad);
  background: var(--neutral);
}

.about-people-grid {
  display: grid;
  grid-template-columns: 50fr 50fr;
  gap: 80px;
  align-items: center;
}

.about-people-left h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin: 12px 0 24px;
}

.about-people-left p {
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Team visual */
.people-visual {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.people-circle {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
}

.people-circle:nth-child(1) {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #1a1a2e, #2d1b3d);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  animation: float-center 5s ease-in-out infinite;
  z-index: 2;
}

.people-circle:nth-child(2) {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #0f1a2e, #1a2d3d);
  top: 15%;
  left: 55%;
  font-size: 1.25rem;
  animation: float-slow 6s ease-in-out infinite 0.5s;
}

.people-circle:nth-child(3) {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1a0d1a, #2d1520);
  top: 65%;
  left: 20%;
  font-size: 1.1rem;
  animation: float-slow 5.5s ease-in-out infinite 1s;
}

.people-circle:nth-child(4) {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #0a1a0a, #1a2d1a);
  top: 20%;
  left: 20%;
  font-size: 1rem;
  animation: float-slow 7s ease-in-out infinite 1.5s;
}

.people-circle:nth-child(5) {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #1a1a0a, #2d2d1a);
  top: 70%;
  left: 65%;
  font-size: 1.1rem;
  animation: float-slow 6.5s ease-in-out infinite 2s;
}

.people-label {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--dark);
  color: #fff;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 0.8125rem;
  z-index: 3;
}

.people-label strong {
  display: block;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 2px;
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes float-center {
  0%, 100% { top: 50%; left: 50%; transform: translate(-50%, -50%) translateY(0); }
  50% { top: 50%; left: 50%; transform: translate(-50%, -50%) translateY(-10px); }
}

/* SVG connecting lines */
.people-svg-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.15;
}

/* ── SECTION 7: Our Culture ─────────────────────────────── */
.about-culture {
  padding: var(--section-pad);
  background: var(--dark);
}

.about-culture-header {
  text-align: center;
  margin-bottom: 64px;
}

.about-culture-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 12px 0 18px;
}

.about-culture-header p {
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  max-width: 600px;
  margin: 0 auto;
}

.culture-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.culture-card {
  padding: 40px 36px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
  will-change: transform, opacity;
}

.culture-card:hover {
  border-color: rgba(237,72,95,0.3);
  background: rgba(255,255,255,0.06);
  transform: translateY(-6px);
}

.culture-card-num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(237,72,95,0.08);
  line-height: 1;
  letter-spacing: -0.05em;
  pointer-events: none;
  transition: color 0.3s ease;
  user-select: none;
}

.culture-card:hover .culture-card-num {
  color: rgba(237,72,95,0.15);
}

.culture-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(237,72,95,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 24px;
}

.culture-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.culture-card-body {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
}

/* ── SECTION 8: Our Journey ─────────────────────────────── */
.about-journey {
  padding: var(--section-pad);
  background: #fff;
}

.about-journey-grid {
  display: grid;
  grid-template-columns: 35fr 65fr;
  gap: 80px;
  align-items: start;
}

.about-journey-left h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin: 12px 0 18px;
}

.about-journey-left p {
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.8;
}

.journey-timeline {
  position: relative;
  padding-left: 32px;
}

.journey-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 0;
  width: 2px;
  background: var(--border);
  border-radius: 2px;
}

#journeyLine {
  position: absolute;
  left: 0;
  top: 8px;
  width: 2px;
  height: 0%;
  background: var(--primary);
  border-radius: 2px;
  z-index: 1;
}

.journey-item {
  position: relative;
  padding: 0 0 48px 24px;
}

.journey-item:last-child {
  padding-bottom: 0;
}

.journey-item::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border);
  border: 2px solid #fff;
  z-index: 2;
  transition: background 0.3s ease;
}

.journey-item.active::before {
  background: var(--primary);
}

.journey-era {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.journey-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.journey-body {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.75;
}

/* ── SECTION 9: Stats ───────────────────────────────────── */
.about-stats {
  padding: 88px 0;
  background: #0d0d12;
  text-align: center;
}

.about-stats-header {
  margin-bottom: 64px;
}

.about-stats-header h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 12px 0;
}

.about-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.about-stat-block {
  padding: 40px 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.about-stat-block:last-child {
  border-right: none;
}

.about-stat-value {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 12px;
}

.about-stat-value .stat-accent {
  color: var(--primary);
}

.about-stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.55;
  max-width: 180px;
  margin: 0 auto;
}

/* ── Responsive: 1024px ─────────────────────────────────── */
@media (max-width: 1024px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-hero-visual {
    display: none;
  }

  .about-who-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-people-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-journey-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-stat-block:nth-child(2) {
    border-right: none;
  }

  .about-stat-block:nth-child(1),
  .about-stat-block:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
}

/* ── Responsive: 768px ──────────────────────────────────── */
@media (max-width: 768px) {
  .about-hero {
    padding: 120px 0 72px;
  }

  .about-headline {
    font-size: clamp(40px, 10vw, 64px);
  }

  .purpose-principles {
    grid-template-columns: 1fr;
  }

  .culture-cards {
    grid-template-columns: 1fr;
  }

  .about-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-stat-block {
    padding: 28px 20px;
  }

  .about-stat-value {
    font-size: 2.75rem;
  }

  .people-visual {
    height: 280px;
  }
}

/* ── Responsive: 480px ──────────────────────────────────── */
@media (max-width: 480px) {
  .about-services-grid {
    grid-template-columns: 1fr;
  }

  .about-industries-grid {
    grid-template-columns: 1fr;
  }

  .about-stats-row {
    grid-template-columns: 1fr;
  }

  .about-stat-block {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .about-stat-block:last-child {
    border-bottom: none;
  }

  .journey-timeline {
    padding-left: 20px;
  }

  .journey-item {
    padding-left: 16px;
  }

  .journey-item::before {
    left: -24px;
  }

  .about-hero-cta {
    flex-direction: column;
  }

  .about-hero-cta .btn {
    text-align: center;
    justify-content: center;
  }
}

/* ── Arabic RTL fixes for about page ── */
body:lang(ar) .about-hero-grid,
body:lang(ar) .about-who-grid,
body:lang(ar) .about-people-grid,
body:lang(ar) .about-journey-grid {
  direction: rtl;
}

body:lang(ar) .about-service-card::before {
  left: auto;
  right: 0;
  transform-origin: top;
}

body:lang(ar) .about-industry-card {
  border-left: 1px solid rgba(255,255,255,0.07);
  border-right: 3px solid var(--primary);
}

body:lang(ar) .about-metric-card:first-child {
  border-left: 1px solid var(--border);
  border-right: 4px solid var(--primary);
}

body:lang(ar) .journey-timeline {
  padding-left: 0;
  padding-right: 32px;
}

body:lang(ar) .journey-timeline::before {
  left: auto;
  right: 0;
}

body:lang(ar) #journeyLine {
  left: auto;
  right: 0;
}

body:lang(ar) .journey-item {
  padding-left: 0;
  padding-right: 24px;
}

body:lang(ar) .journey-item::before {
  left: auto;
  right: -36px;
}

body:lang(ar) .journey-era,
body:lang(ar) .journey-title,
body:lang(ar) .journey-body {
  text-align: right;
}

body:lang(ar) .culture-blockquote,
body:lang(ar) .culture-c-blockquote {
  border-left: none;
  border-right: 3px solid var(--primary);
  border-radius: 8px 0 0 8px;
  text-align: right;
}

body:lang(ar) .purpose-principles,
body:lang(ar) .about-services-grid,
body:lang(ar) .about-industries-grid,
body:lang(ar) .culture-cards,
body:lang(ar) .about-stats-row {
  direction: rtl;
}

body:lang(ar) .principle-card,
body:lang(ar) .about-service-card,
body:lang(ar) .about-industry-card,
body:lang(ar) .culture-card,
body:lang(ar) .about-stat-block {
  text-align: right;
}

body:lang(ar) .about-stat-block {
  border-right: 1px solid rgba(255,255,255,0.08);
  border-left: none;
}
body:lang(ar) .about-stat-block:last-child {
  border-right: none;
}
