/* Page Hero */
.ti-hero {
  background: linear-gradient(90deg, rgba(13,110,253,0.08), rgba(102,16,242,0.04));
  padding: 50px 0;
}
.ti-title {
  font-size: 32px;
  font-weight: 700;
  color: #0b2346;
}
.ti-subtitle {
  color: #566;
  font-size: 16px;
}

/* Testimonial Card */
.ti-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 26px;
  box-shadow: 0 10px 30px rgba(8,20,52,0.06);
}

/* Avatar */
.ti-avatar {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 22px rgba(8,20,52,0.12);
  border: 4px solid #fff;
}

/* Quote text */
.ti-quote {
  font-size: 17px;
  line-height: 1.7;
  color: #233;
  white-space: pre-line;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 20px;
}

/* Author name */
.ti-author {
  text-align: center;
  font-size: 15px;
  color: #0b2346;
}

/* Responsive */
@media (max-width: 575px) {
  .ti-avatar {
    width: 90px;
    height: 90px;
  }
  .ti-quote {
    font-size: 15.5px;
  }
}
