/* ============================================================
   Efficient Solutions – Corporate Website Stylesheet
   Palette:
     --navy:   #0B1F3A  (trust, professionalism)
     --green:  #0F766E  (growth, sustainability)
     --white:  #FFFFFF
     --gray:   #F5F7FA  (section backgrounds)
     --text:   #2D3748
     --muted:  #64748B
   Fonts: Poppins (headings) + Inter (body)
   ============================================================ */

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

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



/* RTL support */
[dir="rtl"] body { font-family: 'Noto Kufi Arabic', 'Inter', sans-serif; }

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

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  --navbar-height: 80px;
  --navy:        #0B1F3A;
  --navy-light:  #162D52;
  --green:       #0F766E;
  --green-light: #14918A;
  --white:       #FFFFFF;
  --gray-bg:     #F5F7FA;
  --gray-border: #E2E8F0;
  --text:        #2D3748;
  --muted:       #64748B;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow-sm:   0 2px 8px rgba(11, 31, 58, 0.08);
  --shadow-md:   0 8px 32px rgba(11, 31, 58, 0.12);
  --shadow-lg:   0 20px 60px rgba(11, 31, 58, 0.16);
  --transition:  0.3s ease;
  --max-width:   1200px;
}

body {
  font-family: 'Inter', 'Open Sans', sans-serif;
  color: #2D3748;
  background: #FFFFFF;
  line-height: 1.7;
  overflow-x: hidden;
  padding-top: var(--navbar-height);
}

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.25;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1.05rem; }

p { color: var(--muted); font-size: 1rem; }

.lead {
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.8;
}

/* ── Utility ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 100px 0; }

.section-tag {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(15, 118, 110, 0.08);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

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

.section-header p {
  margin-top: 16px;
  font-size: 1.05rem;
}

.divider {
  width: 52px;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--navy));
  border-radius: 2px;
  margin: 16px auto 0;
}

.divider-left { margin: 16px 0 0; }

@media (max-width: 768px) {
 
  .nav-links {
    display: none;
  }
  #navbar {
    height: 80px;
    padding: 0 16px;
  }
  .lang-toggle {
    display: none;
  }

  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.btn-primary:hover {
  background: var(--green-light);
  border-color: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 118, 110, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── Navigation ───────────────────────────────────────────── */
#navbar {
  background-color:#0B1F3A;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

#navbar .nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: height var(--transition);
}

#navbar.scrolled {
  background: rgba(11, 31, 58, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}

#navbar.scrolled .nav-inner { height: 68px; }

.nav-logo img {
  height: 52px;
  width: auto;
  transition: height var(--transition);
  /* Logo has transparent bg; shown on dark nav */
  filter: brightness(1);
}

#navbar.scrolled .nav-logo img { height: 44px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--green);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--white); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}


/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
}

.lang-btn {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  padding: 6px 12px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.04em;
}

.lang-btn.active {
  background: var(--green);
  color: var(--white);
}

.lang-btn:hover:not(.active) { color: var(--white); background: rgba(255,255,255,0.08); }

.nav-cta {
  font-size: 0.82rem;
  padding: 10px 20px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(11, 31, 58, 0.98);
  backdrop-filter: blur(16px);
  padding: 20px 24px 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  z-index: 999;
  transform: translateY(-20px);
  opacity: 0;
  transition: all var(--transition);
}

.mobile-nav.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav a {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--transition);
}

.mobile-nav a:hover { color: var(--green); }

.mobile-nav-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

/* ── Hero Section ─────────────────────────────────────────── */
#hero {
    min-height: calc(100vh - var(--navbar-height));
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(11, 31, 58, 0.92) 0%, rgba(11, 31, 58, 0.70) 50%, rgba(15, 118, 110, 0.40) 100%),
    url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1600&q=80') center/cover no-repeat;
  z-index: 0;
}

/* Animated geometric overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-overlay::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: 50%;
  animation: rotateRing 20s linear infinite;
}

.hero-overlay::after {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-radius: 50%;
  animation: rotateRing 14s linear infinite reverse;
}

@keyframes rotateRing {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}

.hero-tag::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--green);
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-content h1 span { color: var(--green); }

.hero-content .lead {
  color: rgba(255,255,255,0.78);
  max-width: 580px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.stat-item {}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}


.stat-number span { color: var(--green); }

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  font-family: 'Poppins', sans-serif;
}

.scroll-indicator .mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-indicator .wheel {
  width: 3px;
  height: 8px;
  background: var(--green);
  border-radius: 2px;
  animation: scrollWheel 1.8s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%, 100% { transform: translateY(0); opacity: 1; }
  80%       { transform: translateY(10px); opacity: 0; }
}

/* ── About Preview (Home) ─────────────────────────────────── */
#about-preview {
  background: var(--gray-bg);
  padding: 100px 0;
}

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

.about-image-block {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 440px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, var(--green) 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.about-img-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.4;
  mix-blend-mode: luminosity;
}

.about-img-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.badge-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}

.badge-text {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 4px;
  max-width: 80px;
  line-height: 1.3;
}

.about-text-block .section-tag { margin-bottom: 12px; }
.about-text-block h2 { margin-bottom: 20px; }
.about-text-block p  { margin-bottom: 16px; }

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0 32px;
}

.value-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--gray-border);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  transition: all var(--transition);
}

.value-pill:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.value-pill .icon {
  width: 32px; height: 32px;
  background: rgba(15, 118, 110, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── Services Section ─────────────────────────────────────── */
#services { padding: 100px 0; }

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

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--navy));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: transparent;
}

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

.service-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.1), rgba(11, 31, 58, 0.06));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--green), var(--navy));
}

.service-icon svg { transition: all var(--transition); }
.service-card:hover .service-icon svg { filter: brightness(10); }

.service-card h3 { margin-bottom: 12px; }
.service-card p  { font-size: 0.9rem; }

/* ── Industries ───────────────────────────────────────────── */
#industries { background: var(--navy); padding: 100px 0; }
#industries .section-header h2,
#industries .section-tag { color: var(--white); }
#industries .section-header h2 { color: var(--white); }
#industries .section-header p  { color: rgba(255,255,255,0.6); }
#industries .divider { background: linear-gradient(90deg, var(--green), rgba(255,255,255,0.3)); }

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

.industry-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: all 0.35s ease;
}

.industry-card:hover {
  background: rgba(15, 118, 110, 0.15);
  border-color: rgba(15, 118, 110, 0.4);
  transform: translateY(-4px);
}

.industry-icon {
  width: 68px; height: 68px;
  margin: 0 auto 20px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.industry-card:hover .industry-icon {
  background: var(--green);
}

.industry-card h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.industry-card p {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
}

/* ── Why Choose Us ────────────────────────────────────────── */
#why-us { padding: 100px 0; background: var(--gray-bg); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-visual {
  position: relative;
  height: 500px;
}

.why-card-stack {
  position: absolute;
  inset: 0;
}

.why-big-card {
  position: absolute;
  bottom: 0; left: 0;
  right: 80px;
  top: 80px;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.why-big-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.why-big-card h3 { color: var(--white); margin-bottom: 8px; }

.why-accent-card {
  position: absolute;
  top: 0; right: 0;
  width: 160px;
  background: var(--green);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
}

.why-accent-card .big-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.why-accent-card p {
  color: rgba(255,255,255,0.8);
  font-size: 0.78rem;
  margin-top: 6px;
}

.why-list { display: flex; flex-direction: column; gap: 20px; }

.why-item {
  display: flex;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all var(--transition);
}

.why-item:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.why-item-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.12), rgba(11, 31, 58, 0.06));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}

.why-item:hover .why-item-icon { background: linear-gradient(135deg, var(--green), var(--navy)); }
.why-item:hover .why-item-icon svg { filter: brightness(10); }

.why-item-text h4 { color: var(--navy); margin-bottom: 4px; }
.why-item-text p  { font-size: 0.87rem; }

/* ── Process Section ──────────────────────────────────────── */
#process { padding: 100px 0; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--navy));
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 72px; height: 72px;
  background: var(--white);
  border: 2px solid var(--gray-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  transition: all var(--transition);
  position: relative;
}

.process-step:hover .step-num {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  box-shadow: 0 0 0 6px rgba(15, 118, 110, 0.15);
}

.process-step h4 { margin-bottom: 8px; }
.process-step p  { font-size: 0.85rem; }

/* ── CTA Banner ───────────────────────────────────────────── */
#cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, rgba(15, 118, 110, 0.5) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

#cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 50%;
}

.cta-content { text-align: center; position: relative; z-index: 1; }
.cta-content h2 { color: var(--white); margin-bottom: 16px; }
.cta-content p  { color: rgba(255,255,255,0.65); font-size: 1.05rem; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }

.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── Footer ───────────────────────────────────────────────── */
footer {
  background: #060F1F;
  color: rgba(255,255,255,0.6);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand .brand-logo { height: 48px; width: auto; margin-bottom: 20px; }

.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 260px; }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}

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

.footer-col h5 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a:hover { color: var(--green); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.87rem;
}

.footer-contact-item .icon {
  width: 32px; height: 32px;
  background: rgba(15, 118, 110, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom a { color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--green); }

/* ── About Page ───────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 70%, rgba(15,118,110,0.4) 100%);
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 400px; height: 400px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 50%;
}

.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p  { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 560px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.breadcrumb a { color: var(--green); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* Story section */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.story-text h2 { margin-bottom: 20px; }
.story-text p  { margin-bottom: 16px; }

.story-quote {
  background: var(--gray-bg);
  border-left: 4px solid var(--green);
  padding: 24px 28px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 28px 0;
  font-style: italic;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 500;
}

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

.timeline::before {
  content: '';
  position: absolute;
  left: 7px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--green), var(--navy));
}

.timeline-item {
  position: relative;
  margin-bottom: 32px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -25px; top: 6px;
  width: 12px; height: 12px;
  background: var(--green);
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--green);
}

.timeline-item .year {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.timeline-item h4 { color: var(--navy); margin-bottom: 4px; }
.timeline-item p  { font-size: 0.87rem; }

/* Mission & Vision */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.mv-card {
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.mv-card.mission { background: linear-gradient(135deg, var(--navy), var(--navy-light)); }
.mv-card.vision  { background: linear-gradient(135deg, var(--green), var(--green-light)); }

.mv-card .label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
}

.mv-card h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 16px; }
.mv-card p  { color: rgba(255,255,255,0.72); font-size: 0.95rem; line-height: 1.75; }

/* Values */
.values-big-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  transition: all 0.35s ease;
}

.value-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.value-card .value-icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  background: rgba(15, 118, 110, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.value-card:hover .value-icon { background: var(--green); }
.value-card:hover .value-icon svg { filter: brightness(10); }

.value-card h4 { color: var(--navy); margin-bottom: 8px; }
.value-card p  { font-size: 0.82rem; }

/* Team section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.team-avatar {
  height: 200px;
  background: linear-gradient(135deg, var(--navy), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.team-initials {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}

.team-info { padding: 24px; }
.team-info h4 { color: var(--navy); margin-bottom: 4px; }
.team-info .role { font-size: 0.83rem; color: var(--green); font-weight: 600; font-family: 'Poppins', sans-serif; }
.team-info p  { font-size: 0.85rem; margin-top: 10px; }

/* ── Services Page ────────────────────────────────────────── */
.services-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.service-full-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  gap: 28px;
  transition: all 0.35s ease;
  align-items: flex-start;
}

.service-full-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  transform: translateY(-4px);
}

.service-full-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.1), rgba(11, 31, 58, 0.05));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}

.service-full-card:hover .service-full-icon { background: linear-gradient(135deg, var(--green), var(--navy)); }
.service-full-card:hover .service-full-icon svg { filter: brightness(10); }

.service-full-text h3 { margin-bottom: 10px; }
.service-full-text p  { font-size: 0.9rem; margin-bottom: 16px; }

.service-tags { display: flex; flex-wrap: wrap; gap: 6px; }

.service-tag-pill {
  font-size: 0.72rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--green);
  background: rgba(15, 118, 110, 0.08);
  padding: 4px 10px;
  border-radius: 100px;
}

/* ── Contact Page ─────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
}

.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { margin-bottom: 36px; }

.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }

.contact-detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.detail-icon {
  width: 48px; height: 48px;
  background: rgba(15, 118, 110, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}

.detail-text .label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}

.detail-text p, .detail-text a {
  color: var(--navy);
  font-weight: 500;
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
}

.detail-text a:hover { color: var(--green); }

/* Form */
.contact-form-wrap {
  background: var(--gray-bg);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
}

.contact-form-wrap h3 { margin-bottom: 6px; }
.contact-form-wrap > p { font-size: 0.9rem; margin-bottom: 32px; }

.form-group { margin-bottom: 20px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
}

.form-group textarea { min-height: 130px; resize: vertical; }

.form-submit { width: 100%; justify-content: center; font-size: 0.95rem; padding: 16px; }

/* Success state */
.form-success {
  text-align: center;
  padding: 40px 20px;
  display: none;
}

.form-success.visible { display: block; }

.form-success .check-icon {
  width: 72px; height: 72px;
  background: rgba(15, 118, 110, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--green);
}

/* Map placeholder */
.map-placeholder {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-lg);
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(255,255,255,0.5);
  margin-top: 32px;
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.map-placeholder p { position: relative; font-size: 0.9rem; }

/* ── Animations ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger > * { transition-delay: calc(var(--i, 0) * 80ms); }

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .values-big-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .services-full-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .about-preview-grid,
  .why-grid,
  .story-grid,
  .mv-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .about-img-badge { right: 0; bottom: -16px; }
  .why-visual { height: 320px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-steps::before { display: none; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .values-big-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
  .team-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .section-pad { padding: 72px 0; }
  .industries-grid { grid-template-columns: 1fr; }
  .values-big-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .mv-grid { grid-template-columns: 1fr; }
}

/* ── RTL Overrides ────────────────────────────────────────── */
[dir="rtl"] .divider-left { margin: 16px auto 0; }
[dir="rtl"] .hero-tag::before { margin-right: 0; margin-left: 8px; }
[dir="rtl"] .why-item:hover { transform: translateX(-4px); }
[dir="rtl"] .story-quote { border-left: none; border-right: 4px solid var(--green); border-radius: var(--radius) 0 0 var(--radius); }
[dir="rtl"] .timeline { padding-left: 0; padding-right: 28px; }
[dir="rtl"] .timeline::before { left: auto; right: 7px; }
[dir="rtl"] .timeline-item::before { left: auto; right: -25px; }
[dir="rtl"] .footer-col ul li a { flex-direction: row-reverse; }

/* ── Active Nav Page ──────────────────────────────────────── */
.nav-links a[data-page].current::after { transform: scaleX(1); }

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

.product-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.product-info {
  padding: 20px;
}

.product-info h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #0b1f3a;
}

.product-info p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.product-link {
  color: #0f766e;
  font-weight: 600;
  font-size: 0.9rem;
}

.page-hero {
  padding: 80px 0 40px;
  text-align: center;
  background: #0b1f3a;
  color: white;
}

.page-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.page-hero p {
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255,255,255,0.75);
}

.full-img {
  width: 100%;
  border-radius: 14px;
  margin: 30px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

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

.card {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  margin-bottom: 10px;
  color: #0b1f3a;
}

.card p {
  color: #666;
  font-size: 0.95rem;
}


.product-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 30px 0;
}

.product-gallery img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  height: 180px;
  transition: 0.3s ease;
}

.product-gallery img:hover {
  transform: scale(1.03);
}

@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    grid-template-columns: 1fr;
  }
}

.partner {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #777;
}

.partner strong {
  color: #0f766e;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 10px;
  background: #0f766e;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  background: #0b5e56;
}


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

.anim-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.anim-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.anim-card:hover img {
  transform: scale(1.08);
}

.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: white;
  font-weight: 600;
}

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

.info-box {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.info-box h3 {
  margin-bottom: 10px;
  color: #0b1f3a;
}

.info-box p {
  color: #666;
}

@media (max-width: 768px) {
  .anim-grid {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .anim-card img {
    height: 200px;
  }
}