.review-page-headers{
	    padding: 140px 0px 20px !important;
    background: linear-gradient(135deg, rgb(204, 238, 255) 0%, rgb(248, 248, 253) 50%, rgb(184, 233, 255) 100%);
}
  /* ─── Reset & Base ─── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
  :root {
    --brand-blue:   rgb(33, 120, 195);
    --brand-dark:   rgb(9, 64, 169);
    --bg-white:     #FFFFFF;
    --bg-soft:      #F0F6FF;
    --text-dark:    rgb(9, 64, 169);
    --text-mid:     #4A5568;
    --text-light:   #718096;
    --star:         #F6A623;
    --border:       #D6E4F7;
    --shadow:       0 4px 24px rgba(33,120,195,0.09);
    --shadow-hover: 0 12px 40px rgba(33,120,195,0.18);
    --radius:       16px;
    --font-display: 'Poppins', sans-serif;
    --font-body:    'Inter', sans-serif;
  }
 
  body {
    font-family: var(--font-body);
    background: var(--bg-white);
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
  }
 
  /* ─── Section Wrapper ─── */
  .mt-testimonials {
    padding: 80px 24px 96px;
    background: var(--bg-white);
    overflow: hidden;
  }
 
  /* ─── Section Header ─── */
  .mt-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
  }
 
  .mt-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--brand-blue);
    margin-bottom: 16px;
  }
 
  .mt-eyebrow::before,
  .mt-eyebrow::after {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--brand-blue);
    border-radius: 2px;
  }
 
  .mt-header h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--brand-dark);
    line-height: 1.2;
    margin-bottom: 16px;
  }
 
  .mt-header h2 span {
    color: var(--brand-blue);
  }
 
  .mt-header p {
    font-size: 16px;
    color: var(--text-mid);
    line-height: 1.7;
  }
 
  /* ─── Stats Bar ─── */
  .mt-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 56px;
  }
 
  .mt-stat-pill {
    display: flex;
    align-items: center;
    gap: 7px;
    background: var(--bg-soft);
    border: 1.5px solid var(--border);
    border-radius: 100px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-dark);
  }
 
  .mt-stat-pill svg {
    color: var(--brand-blue);
  }
 
 
  /* ─── Grid ─── */
  .mt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1320px;
    margin: 0 auto;
	    padding: 50px 0px;
  }
 
  /* Tablet: 2 columns */
  @media (max-width: 1024px) {
    .mt-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  }
 
  /* Mobile: 1 column */
  @media (max-width: 600px) {
    .mt-grid { grid-template-columns: 1fr; gap: 14px; }
  }
 
  /* ─── Card ─── */
  .mt-card {
    background: var(--bg-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 28px 24px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    animation: fadeUp 0.5s ease both;
    position: relative;
    overflow: hidden;
  }
 
  .mt-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-blue), #5BC8F0);
    opacity: 0;
    transition: opacity 0.28s ease;
  }
 
  .mt-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(26,171,229,0.3);
  }
 
  .mt-card:hover::before { opacity: 1; }
 
  .mt-card[data-delay="1"] { animation-delay: 0.05s; }
  .mt-card[data-delay="2"] { animation-delay: 0.10s; }
  .mt-card[data-delay="3"] { animation-delay: 0.15s; }
  .mt-card[data-delay="4"] { animation-delay: 0.20s; }
  .mt-card[data-delay="5"] { animation-delay: 0.25s; }
  .mt-card[data-delay="6"] { animation-delay: 0.30s; }
 
  /* Quote mark */
  .mt-card-quote {
    font-size: 56px;
    line-height: 1;
    color: var(--brand-blue);
    opacity: 0.15;
    font-family: Georgia, serif;
    position: absolute;
    top: 16px; right: 22px;
    user-select: none;
  }
 
  /* Stars */
  .mt-stars {
    display: flex;
    gap: 3px;
    font-size: 15px;
    color: var(--star);
  }
 
  /* Text */
  .mt-card-text {
    font-size: 14.5px;
    line-height: 1.75;
    color: var(--text-mid);
    flex: 1;
  }
 
  /* Person */
  .mt-person {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
  }
 
  .mt-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-dark));
    overflow: hidden;
  }
 
  .mt-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
  }
 
  .mt-person-info { flex: 1; min-width: 0; }
 
  .mt-person-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--brand-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
 
  .mt-person-role {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 2px;
  }
 
 
 
 
  /* ─── Animations ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
 
  /* ─── Bottom CTA ─── */
  .mt-cta-bar {
    text-align: center;
    margin-top: 64px;
  }
 
  .mt-cta-bar p {
    font-size: 15px;
    color: var(--text-mid);
    margin-bottom: 20px;
  }
 
  .mt-cta-btn {
    display: inline-block;
    padding: 14px 36px;
    background: var(--brand-blue);
    color: #fff;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    border-radius: 100px;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(26,171,229,0.35);
    transition: transform 0.2s, box-shadow 0.2s;
  }
 
  .mt-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(26,171,229,0.45);
  }
 
  /* ─── Responsive padding ─── */
  @media (max-width: 1024px) {
    .mt-testimonials { padding: 64px 20px 80px; }
  }
 
  @media (max-width: 600px) {
    .mt-testimonials { padding: 48px 16px 64px; }
    .mt-card { padding: 20px 18px 18px; }
    .mt-stat-pill { font-size: 12px; padding: 8px 14px; }
  }
 
  /* ─── Reduced motion ─── */
  @media (prefers-reduced-motion: reduce) {
    .mt-card { animation: none; }
    .mt-card, .mt-card::before, .mt-cta-btn { transition: none; }
  }



  /* ── WordPress theme testimonial classes ── */
  .theme-testimonial-single {
    background: var(--bg-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 28px 24px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    animation: fadeUp 0.5s ease both;
    position: relative;
    overflow: hidden;
  }
  .theme-testimonial-single::before {
    content: '"';
    position: absolute;
    top: 16px; right: 22px;
    font-size: 56px;
    line-height: 1;
    color: var(--brand-blue);
    opacity: 0.12;
    font-family: Georgia, serif;
    user-select: none;
  }
  .theme-testimonial-single::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-blue), #5B9FE0);
    opacity: 0;
    transition: opacity 0.28s ease;
  }
  .theme-testimonial-single:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(33,120,195,0.3);
  }
  .theme-testimonial-single:hover::after { opacity: 1; }

  .testimonial-stars-new {
    font-size: 16px;
    color: var(--star);
    line-height: 1;
  }
  .testimonial-stars-new .half-star {
    display: inline-block;
    position: relative;
    color: var(--border);
  }
  .testimonial-stars-new .half-star::before {
    content: '★';
    position: absolute;
    left: 0;
    width: 55%;
    overflow: hidden;
    color: var(--star);
  }
  .testimonial-stars-new .empty-star {
    color: var(--border);
  }

  .testimonial-description {
    font-size: 14.5px;
    line-height: 1.75;
    color: var(--text-mid);
    flex: 1;
  }

  .testimonial-user {
    padding-left: 60px;
    display: flex;
    align-items: flex-start;
    gap: 4px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    font-size: 14px;
    font-weight: 700;
    color: var(--brand-dark);
    flex-direction: inherit;
    position: relative;
  }

  .testimonial-user-img {
    width: 44px; height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
  }
  .testimonial-user-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
  }
  .testimonial-user-img.testimonial-initials {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgb(33,120,195), rgb(9,64,169));
    color: #fff;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    position: absolute;
    left: 0px;
  }

  .testimonial-role {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-light);
    display: block;
    margin-top: ;
  }