/* ---------- inner page hero ---------- */
.page-hero {
  position: relative;
  height: 37vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background-color: #000;
}
.page-hero img.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.35) 55%, rgba(0, 0, 0, 0.45) 100%);
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.breadcrumb-nav {
  color: #fff;
  opacity: 0.85;
  font-size: 0.85rem;
  margin-bottom: 14px;
  font-weight: 500;
}
.breadcrumb-nav a {
  color: #fff;
}
.breadcrumb-nav a:hover {
  color: #ffd107;
}
.breadcrumb-nav span {
  padding: 0 8px;
  opacity: 0.6;
}
.page-hero h1 {
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  max-width: 680px;
  line-height: 1.15;
}
.page-hero p {
  color: #e6e6e6;
  font-size: 1rem;
  margin-top: 14px;
  max-width: 560px;
}

/* ---------- values grid ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  background: #fff;
  border-radius: 10px;
  padding: 40px 28px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
}
.value-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 22px;
}
.values-grid .value-card:nth-child(1) .value-icon { background-color: #49812c; }
.values-grid .value-card:nth-child(2) .value-icon { background-color: #1a7fa0; }
.values-grid .value-card:nth-child(3) .value-icon { background-color: #a01942; }
.values-grid .value-card:nth-child(4) .value-icon { background-color: #c96a1c; }
.value-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
}
.value-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #555;
  margin: 0;
}

/* ---------- impact stats strip ---------- */
.impact-stats {
  background-color: #000;
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.impact-item {
  text-align: center;
  padding: 0 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}
.impact-item:first-child {
  border-left: 0;
}
.impact-item h3 {
  color: #ffd107;
  font-size: 2.75rem;
  font-weight: 700;
  margin: 0 0 10px;
}
.impact-item p {
  color: #cfcfcf;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

/* ---------- process / how we work ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.process-step {
  position: relative;
  padding-top: 8px;
}
.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 25px;
  left: calc(50% + 45px);
  width: calc(100% - 40px);
  border-top: 2px dashed #dcdcdc;
}
.process-num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffd107;
  color: #000;
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}
.process-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}
.process-step p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #555;
  margin: 0;
}

/* ---------- philosophy / quote band (reuses .connected-section chrome) ---------- */
.philosophy-cont {
  max-width: 720px;
}
.philosophy-cont blockquote {
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.35;
  margin: 0 0 10px;
}

/* ---------- nav current-page state ---------- */
.right-header ul li a.current,
.sidebar .sidemenu ul.menulist li a.current {
  color: #ffd107;
}

/* =========================== responsive =========================== */
@media (max-width: 991px) {
  .values-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
  }
  .impact-item:nth-child(3) {
    border-left: 0;
  }
  .process-step:nth-child(2)::after {
    content: none;
  }
  .page-hero h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 767px) {
  .page-hero {
    height: 23vh;
  }
  .philosophy-cont blockquote {
    font-size: 1.4rem;
    margin: 0 0 10px;
  }
  .about-grid{
    display: flex;
    flex-direction: column-reverse;
  }
}

@media (max-width: 575px) {
  .values-grid,
  .process-grid,
  .impact-grid {
    grid-template-columns: 1fr;
  }
  .impact-item {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 24px 0 0;
  }
  .impact-item:first-child {
    border-top: 0;
    padding-top: 0;
  }
  .process-step::after {
    content: none !important;
  }
  .page-hero h1 {
    font-size: 1.9rem;
  }
  .page-hero p {
    font-size: 0.9rem;
  }
}
