/* ============================================================
   KANHA GLOBAL EXPORTS — CLEAN & ATTRACTIVE ABOUT US STYLES
   Designed with the modern aesthetic of shop.html:
   - Clean DM Sans typography & crisp hierarchical contrast
   - Subtle geometric patterns & glowing dark hero
   - Refined card elevation, sleek pill badges & interactive hover effects
   ============================================================ */

/* ---------------- 1. PAGE HERO ---------------- */

.about-hero-v2 {
  position: relative;
  overflow: hidden;
  padding: 72px 0 64px;
  background: linear-gradient(180deg, #091a24 0%, #0d2737 60%, #103348 100%);
  color: #ffffff;
  text-align: center;
  font-family: var(--font-body, 'DM Sans', sans-serif);
}

.about-hero-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.about-hero-v2 .container {
  position: relative;
  z-index: 2;
  max-width: 980px;
}

.about-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #7dd3fc;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
}

.about-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
}

.about-hero-v2 h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 14px;
  color: #ffffff;
}

.about-hero-v2 h1 em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, #38bdf8 0%, #6ee7b7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-hero-subtitle {
  font-size: 1.05rem;
  font-weight: 400;
  color: #cbd5e1;
  line-height: 1.65;
  max-width: 680px;
  margin: 0 auto 32px;
}

.about-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 42px;
  flex-wrap: wrap;
}

.about-hero-actions .btn {
  padding: 11px 24px;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.about-hero-actions .btn-primary {
  background: linear-gradient(135deg, #1676B7 0%, #0284c7 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 18px rgba(2, 132, 199, 0.38);
}

.about-hero-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(2, 132, 199, 0.55);
}

.about-hero-actions .btn-outline {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
}

.about-hero-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

/* Hero Key Metric Chips */
.about-hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.hero-metric-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px 14px;
  backdrop-filter: blur(10px);
  transition: all 0.25s ease;
}

.hero-metric-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(56, 189, 248, 0.3);
  transform: translateY(-3px);
}

.hero-metric-card strong {
  display: block;
  font-size: 1.65rem;
  font-weight: 700;
  color: #38bdf8;
  line-height: 1.15;
  margin-bottom: 4px;
}

.hero-metric-card span {
  font-size: 0.8rem;
  font-weight: 500;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ---------------- 2. CORE SECTION STYLES & LAYOUTS ---------------- */

.about-section {
  padding: 80px 0;
  scroll-margin-top: 80px;
}

.about-section.section-alt {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.about-section.section-dark {
  background: #091a24;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0284c7;
  margin-bottom: 8px;
}

.section-dark .section-eyebrow {
  color: #38bdf8;
}

.section-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0284c7;
}

.section-dark .section-eyebrow-dot {
  background: #38bdf8;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 12px;
}

.section-dark .section-title {
  color: #ffffff;
}

.section-title em {
  font-style: italic;
  font-weight: 400;
  color: #0284c7;
}

.section-dark .section-title em {
  color: #38bdf8;
}

.section-lead {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
}

.section-dark .section-lead {
  color: #94a3b8;
}

/* ---------------- 3. COMPANY OVERVIEW (#about-company) ---------------- */

.about-company-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 40px;
}

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

.about-company-story p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #334155;
}

.about-story-highlight {
  background: #f0fdf4;
  border-left: 4px solid #16a34a;
  padding: 16px 20px;
  border-radius: 0 10px 10px 0;
  margin: 4px 0;
}

.about-story-highlight p {
  color: #166534;
  font-weight: 500;
  margin: 0;
}

.about-company-visual-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
  border: 1px solid #e2e8f0;
}

.about-company-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.about-company-visual-wrap:hover .about-company-img {
  transform: scale(1.03);
}

.about-company-visual-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(9, 26, 36, 0.88);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.about-company-visual-badge strong {
  display: block;
  font-size: 0.88rem;
  color: #38bdf8;
  margin-bottom: 2px;
}

.about-company-visual-badge span {
  font-size: 0.78rem;
  color: #cbd5e1;
}

.about-capabilities-4-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.capability-feature-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 22px 18px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
  transition: all 0.25s ease;
}

.capability-feature-card:hover {
  transform: translateY(-4px);
  border-color: #38bdf8;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.feature-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #e0f2fe;
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.capability-feature-card:nth-child(2) .feature-icon-box {
  background: #dcfce7;
  color: #16a34a;
}
.capability-feature-card:nth-child(3) .feature-icon-box {
  background: #fef3c7;
  color: #d97706;
}
.capability-feature-card:nth-child(4) .feature-icon-box {
  background: #ede9fe;
  color: #7c3aed;
}

.capability-feature-card h4 {
  font-size: 1.02rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.capability-feature-card p {
  font-size: 0.84rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* ---------------- 4. COMMODITIES SHOWCASE GALLERY STRIP ---------------- */

.commodities-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1060px;
  margin: 0 auto;
}

.commodity-photo-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.commodity-photo-card:hover {
  transform: translateY(-5px);
  border-color: #0284c7;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
}

.commodity-card-img-wrap {
  position: relative;
  height: 160px;
  overflow: hidden;
  background: #f1f5f9;
}

.commodity-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.commodity-photo-card:hover .commodity-card-img-wrap img {
  transform: scale(1.06);
}

.commodity-category-pill {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: 50px;
}

.commodity-card-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.commodity-card-body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.commodity-card-body p {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.45;
  margin: 0 0 12px;
}

.commodity-card-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: #0284c7;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}

/* ---------------- 5. MISSION, VISION & VALUES (#vision-mission - MATCHES REFERENCE) ---------------- */

.section-foundation {
  background: #faf8f4;
  border-top: 1px solid #ede8e1;
  border-bottom: 1px solid #ede8e1;
  padding: 88px 0;
}

.foundation-head {
  text-align: center;
  margin-bottom: 40px;
}

.foundation-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #166534;
  margin-bottom: 10px;
}

.foundation-title {
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
  margin: 0;
}

/* Top 2 Cards: Mission & Vision */
.mission-vision-top-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1060px;
  margin: 0 auto;
}

.mv-top-card {
  background: #ffffff;
  border: 1px solid #e7e3dc;
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.25s ease;
}

.mv-top-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #c5a880 0%, #166534 50%, #0d2737 100%);
}

.mv-top-card:hover {
  transform: translateY(-4px);
  border-color: #cbd5e1;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.07);
}

.mv-top-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #f0fdf4;
  color: #166534;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid #bbf7d0;
}

.mv-top-card h3 {
  font-size: 1.45rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}

.mv-top-card p {
  font-size: 0.94rem;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}

/* Centered Values Divider */
.values-divider {
  text-align: center;
  position: relative;
  margin: 48px auto 32px;
  max-width: 1060px;
}

.values-divider span {
  position: relative;
  display: inline-block;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e293b;
  padding: 0 24px;
  background: #faf8f4;
  z-index: 2;
}

.values-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 8%;
  right: 8%;
  height: 1px;
  background: #e2e8f0;
  z-index: 1;
}

/* Bottom 5 Values Grid */
.values-5-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 1060px;
  margin: 0 auto;
}

.value-item-card {
  background: #ffffff;
  border: 1px solid #e7e3dc;
  border-radius: 14px;
  padding: 26px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
  transition: all 0.25s ease;
}

.value-item-card:hover {
  transform: translateY(-4px);
  border-color: #cbd5e1;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.value-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f0fdf4;
  color: #166534;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border: 1px solid #dcfce7;
}

.value-item-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}

/* Quality Motto Banner */
.quality-motto-box {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e2e8f0;
  border-left: 5px solid #0284c7;
  border-radius: 16px;
  padding: 32px 36px;
  margin: 20px auto 0;
  max-width: 1060px;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.04);
  text-align: center;
  position: relative;
}

.motto-badge {
  display: inline-block;
  background: #e0f2fe;
  color: #0284c7;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.quality-motto-box blockquote {
  font-size: 1.05rem;
  font-weight: 500;
  color: #1e293b;
  line-height: 1.7;
  font-style: italic;
  margin: 0 0 12px;
}

.motto-author {
  font-size: 0.84rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   Brand New Unified Leadership & Trade Desk System (#leadership)
   ========================================================================== */
.leadership-showcase-section {
  padding: 90px 0 110px;
  background: radial-gradient(circle at 50% 12%, #ffffff 0%, #f8fafc 100%);
  position: relative;
}

.leadership-team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-top: 48px;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.leadership-team-card {
  flex: 0 1 calc(33.333% - 20px);
  min-width: 290px;
  max-width: 340px;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.leadership-team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: transparent;
  transition: background 0.35s ease;
  z-index: 2;
}

.leadership-team-card:hover {
  transform: translateY(-7px);
  border-color: #38bdf8;
  box-shadow: 0 22px 42px -10px rgba(2, 132, 199, 0.16);
}

.leadership-team-card:hover::before {
  background: linear-gradient(90deg, #0284c7 0%, #38bdf8 100%);
}

.leadership-photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.15;
  background: #f1f5f9;
  overflow: hidden;
}

.leadership-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.leadership-team-card:hover .leadership-photo-wrap img {
  transform: scale(1.05);
}

.leadership-photo-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.3) 0%, transparent 100%);
  pointer-events: none;
}

.leadership-card-body {
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.leadership-role-badge {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 0.70rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
  line-height: 1.3;
  min-height: 32px;
  align-self: flex-start;
}

.badge-primary {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}

.badge-teal {
  background: #f0fdfa;
  color: #0f766e;
  border: 1px solid #99f6e4;
}

.badge-blue {
  background: #e0f2fe;
  color: #0284c7;
  border: 1px solid #bae6fd;
}

.badge-emerald {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

.badge-amber {
  background: #fffbeb;
  color: #b45309;
  border: 1px solid #fde68a;
}

.badge-indigo {
  background: #eef2ff;
  color: #4338ca;
  border: 1px solid #c7d2fe;
}

.badge-purple {
  background: #faf5ff;
  color: #7e22ce;
  border: 1px solid #e9d5ff;
}

.leadership-name {
  font-size: 1.20rem;
  font-weight: 800;
  color: #081d28;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  line-height: 1.25;
  min-height: 28px;
}

.leadership-bio {
  font-size: 0.85rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
  min-height: 82px;
}

.leadership-contact-footer {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.leadership-badge-location {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.74rem;
  font-weight: 600;
  color: #64748b;
}

.leadership-badge-location svg {
  color: var(--kanha-blue);
  flex-shrink: 0;
}

.leadership-card-actions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.leadership-social-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #64748b;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.leadership-social-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.leadership-social-btn.btn-linkedin:hover {
  background: #0a66c2;
  border-color: #0a66c2;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(10, 102, 194, 0.25);
}

.leadership-social-btn.btn-whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.25);
}

@media (max-width: 1200px) {
  .leadership-team-card {
    flex: 0 1 calc(33.333% - 18px);
    max-width: 320px;
  }
}

@media (max-width: 860px) {
  .leadership-team-card {
    flex: 0 1 calc(50% - 14px);
    max-width: 340px;
  }
}

@media (max-width: 560px) {
  .leadership-team-card {
    flex: 0 1 100%;
    max-width: 360px;
  }
}

/* ---------------- 7. OUR JOURNEY & ROADMAP (#our-journey) ---------------- */

.journey-timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.journey-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px 20px;
  position: relative;
  transition: all 0.25s ease;
}

.journey-card:hover {
  transform: translateY(-4px);
  border-color: #0284c7;
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.1);
}

.journey-year-badge {
  display: inline-block;
  background: #e0f2fe;
  color: #0284c7;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.journey-card.is-current .journey-year-badge {
  background: #dcfce7;
  color: #16a34a;
}

.journey-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.journey-card p {
  font-size: 0.87rem;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
}

/* ---------------- 8. SOCIAL RESPONSIBILITY & CSR (#social-responsibility) ---------------- */

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

.csr-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.csr-card:hover {
  transform: translateY(-5px);
  border-color: #10b981;
  box-shadow: 0 14px 30px rgba(16, 185, 129, 0.12);
}

.csr-card-img-wrap {
  position: relative;
  height: 140px;
  overflow: hidden;
  background: #f1f5f9;
}

.csr-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

.csr-card-icon-floating {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  color: #166534;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.csr-card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.csr-card-body h4 {
  font-size: 1.02rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.csr-card-body p {
  font-size: 0.84rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* ---------------- 9. GLOBAL PRESENCE & LOGISTICS (#global-presence) ---------------- */

.global-pro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.global-pro-card-main {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(10px);
}

.global-card-tag {
  display: inline-block;
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.global-card-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.global-card-header p {
  font-size: 0.92rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 24px;
}

.global-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.pillar-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.pillar-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar-content strong {
  display: block;
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 2px;
}

.pillar-content p {
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.45;
  margin: 0;
}

.global-terms-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.terms-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #94a3b8;
}

.terms-chip {
  background: rgba(255, 255, 255, 0.08);
  color: #7dd3fc;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Map visual display */
.global-map-display {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.map-display-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.map-live-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #34d399;
}

.pulse-beacon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 10px #34d399;
  animation: pulseBeacon 2s infinite ease-in-out;
}

@keyframes pulseBeacon {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 14px #34d399; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.map-origin-badge {
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  color: #cbd5e1;
  padding: 4px 10px;
  border-radius: 4px;
}

.map-graphic-holder {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.map-graphic-img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.88;
  filter: contrast(1.1) brightness(0.95);
}

.route-badge {
  position: absolute;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(56, 189, 248, 0.4);
  color: #e0f2fe;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

.badge-middle-east { top: 38%; left: 48%; }
.badge-europe { top: 22%; left: 42%; }
.badge-asia { top: 48%; right: 18%; }
.badge-africa { bottom: 25%; left: 45%; }

.map-footer-metrics {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.map-metric {
  text-align: center;
}

.map-metric strong {
  display: block;
  font-size: 0.95rem;
  color: #38bdf8;
  margin-bottom: 2px;
}

.map-metric span {
  font-size: 0.72rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.map-metric-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
}

/* ---------------- 10. ACCREDITATIONS & CERTIFICATIONS GRID ---------------- */

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

.cert-grid.cert-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.cert-grid.cert-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.cert-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 18px 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: all 0.2s ease;
}

.cert-card:hover {
  transform: translateY(-3px);
  border-color: #0284c7;
  box-shadow: 0 8px 18px rgba(2, 132, 199, 0.1);
}

.cert-badge-code {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.cert-card span {
  font-size: 0.74rem;
  color: #64748b;
  display: block;
  line-height: 1.35;
}

/* ---------------- 11. HIGH-CONVERSION CTA BOX ---------------- */

.about-cta-banner {
  background: linear-gradient(135deg, #091a24 0%, #0d2737 60%, #1676B7 100%);
  border-radius: 16px;
  padding: 48px 40px;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.about-cta-copy h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.about-cta-copy p {
  font-size: 0.98rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
  max-width: 580px;
}

.about-cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.about-cta-actions .btn-quote {
  background: #ffffff;
  color: #0d2737;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.about-cta-actions .btn-quote:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}

.about-cta-actions .btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.about-cta-actions .btn-whatsapp:hover {
  background: #1eb954;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

/* ---------------- 12. RESPONSIVE BREAKPOINTS ---------------- */

@media (max-width: 1024px) {
  .about-hero-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-company-grid {
    grid-template-columns: 1fr;
  }
  .about-capabilities-4-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .commodities-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mission-vision-top-grid {
    grid-template-columns: 1fr;
  }
  .values-5-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .leadership-grid {
    grid-template-columns: 1fr;
  }
  .journey-timeline-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .csr-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .global-pro-grid {
    grid-template-columns: 1fr;
  }
  .cert-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .about-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 36px 24px;
  }
  .about-cta-actions {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .about-hero-metrics {
    grid-template-columns: 1fr;
  }
  .about-capabilities-4-grid {
    grid-template-columns: 1fr;
  }
  .commodities-strip-grid {
    grid-template-columns: 1fr;
  }
  .values-5-grid {
    grid-template-columns: 1fr;
  }
  .leader-profile-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .leader-tags {
    justify-content: center;
  }
  .journey-timeline-grid {
    grid-template-columns: 1fr;
  }
  .csr-grid {
    grid-template-columns: 1fr;
  }
  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================================
   Pixel-Perfect Linear Sourcing Pipeline Stepper (#sourcing-approach)
   ========================================================================== */
.sourcing-pipeline-section {
  padding: 95px 0 105px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.sourcing-stepper-track {
  margin-top: 56px;
  position: relative;
  width: 100%;
}

/* Continuous Horizontal Connecting Track Line (Perfect Alignment with Badge Center) */
.stepper-axis-bar {
  position: absolute;
  top: 25px;
  left: 6%;
  right: 6%;
  height: 3px;
  background: linear-gradient(90deg, #38bdf8 0%, #1676b7 50%, #22c55e 100%);
  z-index: 1;
  border-radius: 2px;
}

.stepper-nodes-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  position: relative;
  z-index: 2;
}

.stepper-node-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Prominent Glowing Number Circle Badge (Centered on Track Line) */
.stepper-circle-badge {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #1676b7;
  color: #1676b7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1;
  margin-bottom: 22px;
  box-shadow: 0 4px 14px rgba(22, 118, 183, 0.22);
  position: relative;
  z-index: 3;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.stepper-node-item:hover .stepper-circle-badge {
  background: #1676b7;
  color: #ffffff;
  transform: scale(1.15);
  box-shadow: 0 8px 24px rgba(22, 118, 183, 0.4);
}

.stepper-node-item.highlight .stepper-circle-badge {
  border-color: #22c55e;
  color: #22c55e;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.3);
}

.stepper-node-item.highlight:hover .stepper-circle-badge {
  background: #22c55e;
  color: #ffffff;
}

/* Content Wrap Below (Zero Box, Pure Content) */
.stepper-content-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0 4px;
}

.stepper-icon-pill {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1d4ed8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: all 0.3s ease;
}

.stepper-node-item:hover .stepper-icon-pill {
  background: #1676b7;
  color: #ffffff;
  border-color: #1676b7;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(22, 118, 183, 0.25);
}

.stepper-node-item.highlight .stepper-icon-pill {
  background: #f0fdf4;
  border-color: #bbf7d0;
  color: #15803d;
}

.stepper-node-item.highlight:hover .stepper-icon-pill {
  background: #22c55e;
  color: #ffffff;
  border-color: #22c55e;
}

.stepper-step-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #081d28;
  margin: 0 0 8px;
  line-height: 1.3;
}

.stepper-step-desc {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 1100px) {
  .stepper-nodes-row {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 36px;
  }
  .stepper-axis-bar {
    display: none;
  }
}

@media (max-width: 768px) {
  .stepper-nodes-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .stepper-node-item {
    display: grid;
    grid-template-columns: 46px 1fr;
    column-gap: 14px;
    align-items: center;
    text-align: left;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 14px 16px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
  }
  .stepper-circle-badge {
    margin-bottom: 0;
    width: 44px;
    height: 44px;
    font-size: 0.95rem;
    font-weight: 800;
  }
  .stepper-icon-pill {
    display: none;
  }
  .stepper-content-wrap {
    align-items: flex-start;
    text-align: left;
    padding: 0;
  }
  .stepper-step-title {
    font-size: 1rem;
    font-weight: 800;
    color: #081d28;
    margin: 0 0 3px;
  }
  .stepper-step-desc {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.45;
    margin: 0;
  }
}

/* ==========================================================================
   Strategic Asymmetric Capabilities Hub (#strengths)
   ========================================================================== */
.strengths-hub-section {
  padding: 95px 0 100px;
  background: #f8fafc;
  position: relative;
}

.strengths-showcase-layout {
  display: grid;
  grid-template-columns: 4.2fr 5.8fr;
  gap: 32px;
  margin-top: 48px;
  align-items: stretch;
}

/* Left Hero Spotlight Card (Deep Navy Theme) */
.strengths-hero-spotlight {
  background: linear-gradient(145deg, #071e2c 0%, #0c2b3d 60%, #0d3852 100%);
  border-radius: 24px;
  padding: 42px 36px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px -8px rgba(7, 30, 44, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
}

.strengths-hero-spotlight::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.18) 0%, rgba(56, 189, 248, 0) 70%);
  pointer-events: none;
}

.spotlight-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #38bdf8;
  margin-bottom: 24px;
  width: fit-content;
}

.spotlight-tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 8px #38bdf8;
}

.spotlight-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.spotlight-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.spotlight-desc {
  font-size: 0.94rem;
  color: #cbd5e1;
  line-height: 1.65;
  margin-bottom: 24px;
}

.spotlight-points {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.spotlight-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: #e2e8f0;
  line-height: 1.5;
}

.point-check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #4ade80;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.spotlight-footer-badge {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.badge-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
}

.badge-sub {
  font-size: 0.88rem;
  font-weight: 700;
  color: #38bdf8;
}

/* Right 4-Quadrant Capability Matrix */
.strengths-matrix-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.capability-matrix-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.03);
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.capability-matrix-card:hover {
  transform: translateY(-5px);
  border-color: #38bdf8;
  box-shadow: 0 16px 36px rgba(2, 132, 199, 0.12);
}

.cap-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.cap-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cap-icon-blue { background: #eff6ff; color: #1d4ed8; border: 1px solid #bfdbfe; }
.cap-icon-teal { background: #f0fdfa; color: #0f766e; border: 1px solid #99f6e4; }
.cap-icon-amber { background: #fffbeb; color: #b45309; border: 1px solid #fde68a; }
.cap-icon-purple { background: #faf5ff; color: #7e22ce; border: 1px solid #e9d5ff; }

.cap-order-tag {
  font-size: 0.72rem;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: #f1f5f9;
  padding: 4px 10px;
  border-radius: 50px;
}

.cap-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #081d28;
  margin-bottom: 8px;
  line-height: 1.3;
}

.cap-desc {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

@media (max-width: 1024px) {
  .strengths-showcase-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 600px) {
  .strengths-matrix-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .strengths-hero-spotlight {
    padding: 30px 22px;
  }
}

.promise-highlight-card {
  background: linear-gradient(135deg, #061722 0%, #0c334c 60%, #1676B7 100%);
  border-radius: 20px;
  padding: 40px;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 16px 40px rgba(6, 23, 34, 0.25);
  margin-top: 36px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.promise-highlight-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #38bdf8;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.promise-highlight-card p {
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 1200px) {
  .strengths-5-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .strengths-5-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sourcing-pipeline-wrap {
    flex-direction: column;
    gap: 8px;
  }
  .sourcing-arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 640px) {
  .strengths-5-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------------- 10. BREADCRUMBS & SUBPAGE NAVIGATION ---------------- */

.about-breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #94a3b8;
}

.about-breadcrumbs a {
  color: #7dd3fc;
  text-decoration: none;
  transition: color 0.2s ease;
}

.about-breadcrumbs a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.about-breadcrumbs .bc-sep {
  color: #64748b;
  font-size: 0.75rem;
}

.about-breadcrumbs .bc-current {
  color: #e2e8f0;
  font-weight: 600;
}

/* Dropdown active item styling */
.dropdown-panel.nav-sub-menu a.active {
  background: #f0f7ff;
  color: #0284c7;
  font-weight: 600;
  border-left: 3px solid #0284c7;
  padding-left: 17px;
}

/* Subpage Explorer Navigation Grid */
.about-subnav-section {
  padding: 60px 0 80px;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}

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

.about-subnav-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
  position: relative;
  overflow: hidden;
}

.about-subnav-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  transition: background 0.25s ease;
}

.about-subnav-card:hover {
  transform: translateY(-4px);
  border-color: #cbd5e1;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.about-subnav-card:hover::before {
  background: linear-gradient(90deg, #0284c7 0%, #10b981 100%);
}

.about-subnav-card.current {
  border-color: #0284c7;
  background: #f0f9ff;
}

.about-subnav-card.current::before {
  background: #0284c7;
}

.about-subnav-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #eff6ff;
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform 0.25s ease;
}

.about-subnav-card:hover .about-subnav-icon {
  transform: scale(1.08);
}

.about-subnav-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.about-subnav-card p {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 14px;
  flex-grow: 1;
}

.about-subnav-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #0284c7;
  transition: gap 0.2s ease;
}

.about-subnav-card:hover .about-subnav-arrow {
  gap: 10px;
}

/* Value Cards in Mission & Vision */
.values-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.value-card-v2 {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 30px 24px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.value-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  border-color: #bae6fd;
}

.value-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.value-icon-blue { background: #eff6ff; color: #0284c7; }
.value-icon-green { background: #ecfdf5; color: #10b981; }
.value-icon-amber { background: #fffbeb; color: #f59e0b; }
.value-icon-purple { background: #f5f3ff; color: #8b5cf6; }
.value-icon-teal { background: #f0fdfa; color: #14b8a6; }
.value-icon-rose { background: #fff1f2; color: #e11d48; }

.value-card-v2 h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.value-card-v2 p {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .about-subnav-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .leadership-team-card {
    flex: 0 1 calc(50% - 15px);
    max-width: 360px;
  }
}

@media (max-width: 768px) {
  .about-hero-metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .about-hero-actions {
    flex-direction: row;
    width: 100%;
  }
  .about-hero-actions .btn {
    flex: 1;
    justify-content: center;
  }
  .values-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .value-card-v2:last-child {
    grid-column: span 1;
  }
  .about-subnav-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .about-subnav-card:last-child {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  .values-grid-v2 {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .value-card-v2:last-child {
    grid-column: span 1;
  }
  .value-card-v2 {
    padding: 20px 18px;
  }
  .about-subnav-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .about-subnav-card:last-child {
    grid-column: span 1;
  }
  .about-subnav-card {
    padding: 20px 18px;
  }
}

/* ============================================================
   COMPREHENSIVE MOBILE RESPONSIVE OVERHAUL
   ============================================================ */

@media (max-width: 768px) {

  /* --- Global Section Padding Reduction --- */
  .about-section {
    padding: 48px 0;
  }
  .about-section.section-alt {
    padding: 44px 0;
  }
  .section-head {
    margin: 0 auto 28px;
  }
  .section-title {
    font-size: 1.65rem;
  }
  .section-lead {
    font-size: 0.92rem;
  }

  /* --- Hero Section --- */
  .about-hero-v2 {
    padding: 44px 0 40px;
  }
  .about-hero-v2 h1 {
    font-size: 1.85rem;
    margin-bottom: 10px;
  }
  .about-hero-v2 h1 em {
    display: inline;
  }
  .about-hero-subtitle {
    font-size: 0.92rem;
    margin: 0 auto 22px;
    line-height: 1.6;
  }
  .about-hero-v2 p[style] {
    font-size: 1.1rem !important;
    margin-bottom: 12px !important;
  }
  .about-badge-pill {
    font-size: 0.7rem;
    padding: 5px 12px;
    margin-bottom: 14px;
  }
  .about-breadcrumbs {
    font-size: 0.78rem;
    margin-bottom: 14px;
    gap: 6px;
  }
  .about-hero-actions {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
    width: 100%;
  }
  .about-hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  .about-hero-metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .hero-metric-card {
    padding: 12px 10px;
  }
  .hero-metric-card strong {
    font-size: 1.3rem;
  }
  .hero-metric-card span {
    font-size: 0.7rem;
  }

  /* --- Company Overview Grid --- */
  .about-company-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 24px;
  }
  .about-company-story p {
    font-size: 0.92rem;
  }
  .about-story-highlight {
    padding: 14px 16px;
  }
  .about-company-img {
    height: 220px;
  }

  /* --- Capabilities 4-Grid --- */
  .about-capabilities-4-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .capability-feature-card {
    padding: 16px 14px;
  }
  .capability-feature-card h4 {
    font-size: 0.92rem;
  }
  .capability-feature-card p {
    font-size: 0.8rem;
  }

  /* --- Cert Grid --- */
  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .cert-card {
    padding: 14px 10px;
  }
  .cert-badge-code {
    font-size: 0.85rem;
  }
  .cert-card span {
    font-size: 0.7rem;
  }

  /* --- Commodities Strip Grid --- */
  .commodities-strip-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .commodity-card-img-wrap {
    height: 120px;
  }
  .commodity-card-body {
    padding: 12px 14px 14px;
  }
  .commodity-card-body h4 {
    font-size: 0.92rem;
  }
  .commodity-card-body p {
    font-size: 0.78rem;
    margin: 0 0 8px;
  }

  /* --- Mission/Vision Cards --- */
  .section-foundation {
    padding: 48px 0;
  }
  .foundation-title {
    font-size: 1.65rem;
  }
  .mission-vision-top-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .mv-top-card {
    padding: 24px 20px;
  }
  .mv-top-card h3 {
    font-size: 1.2rem;
  }
  .mv-top-card p {
    font-size: 0.88rem;
  }
  .values-divider {
    margin: 32px auto 22px;
  }
  .values-5-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .value-item-card {
    padding: 18px 12px;
  }
  .value-item-card h4 {
    font-size: 0.92rem;
  }
  .quality-motto-box {
    padding: 22px 18px;
  }
  .quality-motto-box blockquote {
    font-size: 0.92rem;
  }

  /* --- Journey Timeline Grid --- */
  .journey-timeline-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .journey-card {
    padding: 18px 16px;
  }
  .journey-card h4 {
    font-size: 0.98rem;
  }
  .journey-card p {
    font-size: 0.82rem;
  }

  /* --- CSR Grid --- */
  .csr-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .csr-card-img-wrap {
    height: 110px;
  }
  .csr-card-body {
    padding: 14px;
  }
  .csr-card-body h4 {
    font-size: 0.92rem;
  }
  .csr-card-body p {
    font-size: 0.8rem;
  }

  /* --- Global Presence Grid --- */
  .global-pro-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .global-pro-card-main {
    padding: 24px 20px;
  }
  .global-card-header h3 {
    font-size: 1.15rem;
  }
  .map-footer-metrics {
    padding: 10px 12px;
    flex-wrap: wrap;
    gap: 10px;
  }

  /* --- Subnav Grid --- */
  .about-subnav-section {
    padding: 40px 0 48px;
  }
  .about-subnav-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .about-subnav-card {
    padding: 16px 18px;
    flex-direction: column;
  }
  .about-subnav-card:last-child {
    grid-column: span 1;
  }
  .about-subnav-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 10px;
  }
  .about-subnav-card h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
  }
  .about-subnav-card p {
    font-size: 0.82rem;
    margin-bottom: 8px;
    line-height: 1.45;
  }
  .about-subnav-arrow {
    font-size: 0.78rem;
  }

  /* --- CTA Banner --- */
  .about-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
    gap: 20px;
    border-radius: 14px;
  }
  .about-cta-copy h3 {
    font-size: 1.35rem;
  }
  .about-cta-copy p {
    font-size: 0.88rem;
  }
  .about-cta-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .about-cta-actions .btn-quote,
  .about-cta-actions .btn-whatsapp {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 0.9rem;
    text-align: center;
    display: flex;
  }

  /* --- Leadership Cards --- */
  .leadership-showcase-section {
    padding: 48px 0 56px;
  }
  .leadership-team-grid {
    margin-top: 28px;
    gap: 16px;
  }
  .leadership-team-card {
    flex: 0 1 100%;
    max-width: 100%;
    min-width: 0;
  }
  .leadership-photo-wrap {
    aspect-ratio: 1 / 0.85;
  }
  .leadership-card-body {
    padding: 18px 16px;
  }
  .leadership-name {
    font-size: 1.08rem;
    min-height: auto;
  }
  .leadership-bio {
    font-size: 0.82rem;
    min-height: auto;
  }

  /* --- Strengths Hub --- */
  .strengths-hub-section {
    padding: 48px 0 56px;
  }
  .strengths-showcase-layout {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 28px;
  }
  .strengths-hero-spotlight {
    padding: 28px 20px;
  }
  .spotlight-title {
    font-size: 1.3rem;
  }
  .spotlight-desc {
    font-size: 0.88rem;
  }
  .strengths-matrix-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .capability-matrix-card {
    padding: 22px 18px;
  }
  .cap-title {
    font-size: 1.02rem;
  }
  .cap-desc {
    font-size: 0.84rem;
  }

  /* --- Promise Highlight Card --- */
  .promise-highlight-card {
    padding: 28px 20px;
    margin-top: 24px;
  }
  .promise-highlight-card h3 {
    font-size: 1.15rem;
  }
  .promise-highlight-card p {
    font-size: 1.1rem;
  }

  /* --- Sourcing Pipeline --- */
  .sourcing-pipeline-section {
    padding: 48px 0 56px;
  }
  .sourcing-stepper-track {
    margin-top: 28px;
  }

  /* --- Values Grid V2 --- */
  .values-grid-v2 {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .value-card-v2 {
    padding: 20px 18px;
  }
  .value-card-v2:last-child {
    grid-column: span 1;
  }
  .value-card-v2 h3 {
    font-size: 1.02rem;
  }
  .value-card-v2 p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .about-hero-v2 {
    padding: 32px 0 30px;
  }
  .about-hero-v2 h1 {
    font-size: 1.65rem;
  }
  .about-hero-subtitle {
    font-size: 0.86rem;
  }
  .about-hero-metrics {
    gap: 8px;
  }
  .hero-metric-card {
    padding: 10px 8px;
  }
  .hero-metric-card strong {
    font-size: 1.2rem;
  }
  .hero-metric-card span {
    font-size: 0.68rem;
  }

  /* Tighter section padding */
  .about-section {
    padding: 36px 0;
  }
  .about-section.section-alt {
    padding: 32px 0;
  }
  .section-head {
    margin: 0 auto 22px;
  }
  .section-title {
    font-size: 1.45rem;
  }
  .section-lead {
    font-size: 0.85rem;
  }

  .about-company-img {
    height: 180px;
  }
  .about-company-visual-badge strong {
    font-size: 0.82rem;
  }
  .about-company-visual-badge span {
    font-size: 0.72rem;
  }

  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .about-subnav-section {
    padding: 32px 0 40px;
  }
  .about-subnav-card {
    padding: 16px 14px;
  }

  .about-cta-banner {
    padding: 24px 16px;
    gap: 16px;
  }
  .about-cta-copy h3 {
    font-size: 1.2rem;
  }

  /* Foundation / Mission-Vision */
  .section-foundation {
    padding: 36px 0;
  }
  .foundation-title {
    font-size: 1.45rem;
  }
  .values-5-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .value-item-card {
    flex-direction: row;
    text-align: left;
    gap: 12px;
    padding: 14px 16px;
  }
  .value-icon-circle {
    margin-bottom: 0;
  }

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

  .commodities-strip-grid {
    grid-template-columns: 1fr;
  }

  .leadership-photo-wrap {
    aspect-ratio: 1 / 0.75;
  }

  .promise-highlight-card {
    padding: 22px 16px;
  }
  .promise-highlight-card h3 {
    font-size: 1rem;
  }
  .promise-highlight-card p {
    font-size: 0.95rem;
  }
}

