/* =========================================================
   TRUSTWORK - Our Values (Alternative Style)
   Row class: our-values
   ========================================================= */

.our-values {
  margin: 24px 0 34px;
  padding: 14px 12px;
  background: #fafafa;
  border-radius: 18px;
}

/* Section title */
.our-values h2 {
  text-align: center;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 34px;
  line-height: 1.15;
  letter-spacing: -0.3px;
  position: relative;
  font-size: clamp(1.8rem, 2.5vw, 3rem);
}

.our-values h2::after {
  content: "";
  display: block;
  width: 84px;
  height: 4px;
  margin: 12px auto 0;
  background: #d71920;
  border-radius: 999px;
}

/* Spacing */
.our-values .row > div,
.our-values [class*="col-"] {
  margin-bottom: 20px;
}

/* Card */
.our-values .feature,
.our-values .card {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px 18px 20px;
  height: 100%;
  border-left: 4px solid #d71920;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  position: relative;
}

.our-values .feature:hover,
.our-values .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.09);
  border-left-color: #a61b1f;
}

/* Icon box */
.our-values .feature__icon,
.our-values .card .feature__icon,
.our-values .feature__icon .fontawesome-icon,
.our-values .feature__icon i {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(215, 25, 32, 0.10) !important;
  color: #d71920 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 14px;
  font-size: 24px;
  box-shadow: inset 0 0 0 1px rgba(215, 25, 32, 0.06);
}

/* Titles */
.our-values .feature h3,
.our-values .feature h4,
.our-values .card h3,
.our-values .card h4 {
  color: #111827;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.3;
  margin: 0 0 10px;
}

/* Text */
.our-values .feature p,
.our-values .card p {
  color: #4b5563;
  font-size: 0.96rem;
  line-height: 1.65;
  margin: 0;
}

/* Optional subtle divider under title inside card */
.our-values .feature h3 + p,
.our-values .feature h4 + p,
.our-values .card h3 + p,
.our-values .card h4 + p {
  position: relative;
  padding-top: 10px;
}

.our-values .feature h3 + p::before,
.our-values .feature h4 + p::before,
.our-values .card h3 + p::before,
.our-values .card h4 + p::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: rgba(215, 25, 32, 0.35);
  border-radius: 999px;
}

/* Responsive */
@media (max-width: 991px) {
  .our-values .feature,
  .our-values .card {
    padding: 20px 16px 18px;
  }

  .our-values .feature h3,
  .our-values .feature h4,
  .our-values .card h3,
  .our-values .card h4 {
    font-size: 1.02rem;
  }
}

@media (max-width: 767px) {
  .our-values {
    padding: 8px;
    margin: 14px 0 22px;
  }

  .our-values h2 {
    margin-bottom: 22px;
  }

  .our-values .feature,
  .our-values .card {
    padding: 18px 14px 16px;
  }

  .our-values .feature__icon,
  .our-values .card .feature__icon,
  .our-values .feature__icon .fontawesome-icon,
  .our-values .feature__icon i {
    width: 56px;
    height: 56px;
    font-size: 21px;
    margin-bottom: 12px;
  }

  .our-values .feature h3,
  .our-values .feature h4,
  .our-values .card h3,
  .our-values .card h4 {
    font-size: 1rem;
  }

  .our-values .feature p,
  .our-values .card p {
    font-size: 0.94rem;
    line-height: 1.55;
  }
}