/* =============================================
       OJG TESTIMONIALS SECTION — scoped & unique
       White background, theme colors (#0978EF / #014392 / #07242F)
       4-card row layout
       ============================================= */

#ojg-testimonial-9417,
#ojg-testimonial-9417 * {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

#ojg-testimonial-9417 {
  padding: 110px 20px;
  background: #fff;
  overflow: hidden;
}

.ojg-testimonial-container {
  max-width: 1320px;
  margin: 0 auto;
}

.ojg-testimonial-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
}

.ojg-section-tag {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 100px;
  background: #eef6ff;
  color: #0978ef;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

/* Required heading style */
.ojg-heading {
  color: #07242f;
  margin: 0 0 22px;
  font-family: "Urbanist", sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0px;
}

.ojg-testimonial-heading p {
  color: #64748b;
  font-size: 17px;
  line-height: 1.8;
  margin: 0;
}

/* ── Grid — 4 cards in a row ── */
.ojg-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.ojg-testimonial-card {
  background: #fff;
  border-radius: 22px;
  padding: 28px 26px;
  border: 1px solid #edf3fb;
  box-shadow: 0 18px 40px rgba(9, 120, 239, 0.06);
  transition: 0.35s ease;
  display: flex;
  flex-direction: column;
}

.ojg-testimonial-card:hover {
  transform: translateY(-10px);
  border-color: #0978ef;
  box-shadow: 0 30px 60px rgba(9, 120, 239, 0.18);
}

.ojg-stars {
  color: #0978ef;
  font-size: 17px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.ojg-review {
  font-size: 14.5px;
  line-height: 1.8;
  color: #4b6477;
  margin: 0;
  min-height: 195px;
  flex: 1;
}

.ojg-review strong {
  color: #07242f;
}

.ojg-line {
  margin: 24px 0;
  border-top: 1px solid #edf3fb;
}

.ojg-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ojg-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0978ef, #014392);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.ojg-user h4 {
  margin: 0;
  color: #07242f;
  font-size: 16px;
  font-weight: 600;
}

.ojg-user span {
  display: block;
  margin-top: 4px;
  color: #0978ef;
  font-size: 13px;
  font-weight: 600;
}

.ojg-user small {
  display: block;
  margin-top: 4px;
  color: #7c8a97;
  font-size: 12.5px;
}

/* ── View All Button ── */
.ojg-testimonial-cta {
  text-align: center;
  margin-top: 50px;
}

.ojg-testimonial-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0978ef;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 15.5px;
  font-weight: 600;
  text-decoration: none;
  padding: 16px 34px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(9, 120, 239, 0.3);
  transition:
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.ojg-testimonial-btn:hover {
  background: #014392;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(1, 67, 146, 0.35);
}

/* ── Responsive ── */

/* Small laptop → tighten gaps a touch */
@media (max-width: 1240px) {
  .ojg-testimonial-grid {
    gap: 16px;
  }

  .ojg-testimonial-card {
    padding: 24px 20px;
  }
}

/* Tablet → 2 columns */
@media (max-width: 992px) {
  .ojg-testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .ojg-heading {
    font-size: 40px;
  }

  .ojg-review {
    min-height: auto;
  }

  .ojg-testimonial-card {
    padding: 30px;
  }
}

/* Mobile → 1 column */
@media (max-width: 768px) {
  #ojg-testimonial-9417 {
    padding: 80px 18px;
  }

  .ojg-testimonial-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ojg-heading {
    font-size: 34px;
  }

  .ojg-testimonial-heading {
    margin-bottom: 45px;
  }

  .ojg-testimonial-card {
    padding: 28px;
  }

  .ojg-review {
    font-size: 16px;
    line-height: 1.8;
  }

  .ojg-user h4 {
    font-size: 18px;
  }

  .ojg-avatar {
    width: 52px;
    height: 52px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .ojg-testimonial-btn {
    width: 100%;
    justify-content: center;
    padding: 15px 22px;
  }
}

@media (max-width: 360px) {
  .ojg-heading {
    font-size: 28px;
  }
}
