

    /* ══════════════════════════════
       SECTION
    ══════════════════════════════ */
    .testi-section {
      position: relative;
      padding: 92px 0 84px;
      background: linear-gradient(135deg, #21409a 0%, #21409a 50%, #1A9FFF 100%);
      overflow: hidden;
    }

    /* Decorative blobs */
    .testi-section .blob {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      background: rgba(255,255,255,.06);
    }
    .blob-1 { width: 520px; height: 520px; top: -200px; right: -150px; }
    .blob-2 { width: 340px; height: 340px; bottom: -130px; left:  -90px; }
    .blob-3 { width: 140px; height: 140px; top: 60px; left: 10%; background: rgba(255,255,255,.04); }

    /* ══════════════════════════════
       HEADER
    ══════════════════════════════ */
    .section-eyebrow-testi {
      
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .24em;
      text-transform: uppercase;
      color: rgba(255,255,255,.65);
      margin-bottom: .5rem;
    }

    .section-title-testi {
     
      font-size: clamp(1.9rem, 4vw, 2.9rem);
      font-weight: 800;
      color: #fff;
      line-height: 1.12;
      margin-bottom: .6rem;
      text-shadow: 0 2px 20px rgba(0,0,0,.12);
    }

    .section-divider-testi {
      width: 52px; height: 4px;
      border-radius: 4px;
      background: rgba(255,255,255,.45);
      margin: 0 auto .9rem;
    }

    .section-sub-testi {
      font-size: 1rem;
      color: rgba(255,255,255,.78);
      max-width: 460px;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* ══════════════════════════════
       DESKTOP 3-CARD VIEW
    ══════════════════════════════ */
    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.4rem;
    }
    @media (max-width: 991px) { .testi-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 575px) { .testi-grid { display: none; } }

    /* ══════════════════════════════
       TESTIMONIAL CARD
    ══════════════════════════════ */
    .testi-card {
      background: #ffffff;
      border: none;
      border-radius: 22px;
      padding: 0;
      position: relative;
      overflow: hidden;
      box-shadow: 0 8px 32px rgba(0,0,0,.13);
      transition: transform .32s cubic-bezier(.22,1,.36,1), box-shadow .32s;
      display: flex;
      flex-direction: column;
    }
    .testi-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 24px 60px rgba(0,0,0,.2);
    }

    /* Coloured top bar */
    .testi-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, #007BFF, #0062CC);
      border-radius: 22px 22px 0 0;
    }

    /* Card inner padding */
    .card-inner {
      padding: 2rem 1.8rem 1.6rem;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    /* Giant quote icon */
    .quote-icon {
      width: 42px; height: 42px;
      border-radius: 12px;
      background: linear-gradient(135deg, #007BFF, #0050CC);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.2rem;
      flex-shrink: 0;
      box-shadow: 0 4px 14px rgba(0,123,255,.35);
    }
    .quote-icon svg {
      width: 20px; height: 20px;
      fill: #fff;
    }

    /* Stars */
    .stars {
      display: flex;
      gap: .22rem;
      margin-bottom: .9rem;
    }
    .stars i { color: #FFAA00; font-size: .8rem; }

    /* Testimonial text */
    .testi-text {
      font-size: .93rem;
      color: #44445a;
      line-height: 1.78;
      flex: 1;
      margin-bottom: 1.6rem;
      font-style: italic;
    }

    /* Author row */
    .testi-author {
      display: flex;
      align-items: center;
      gap: .9rem;
      padding-top: 1.1rem;
      border-top: 1.5px solid #f0f1f8;
    }

    .avatar-wrap {
      position: relative;
      flex-shrink: 0;
    }

    .author-avatar {
      width: 50px; height: 50px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid #fff;
      box-shadow: 0 2px 12px rgba(0,0,0,.12);
      display: block;
    }

    /* Online dot */
    .avatar-wrap::after {
      content: '';
      position: absolute;
      bottom: 2px; right: 2px;
      width: 11px; height: 11px;
      background: #22C55E;
      border-radius: 50%;
      border: 2px solid #fff;
    }

    .author-name {
    
      font-size: .95rem;
      font-weight: 700;
      color: #131320;
      margin-bottom: .12rem;
      line-height: 1.2;
    }

    .author-role {
      font-size: .77rem;
      color: #9090aa;
      line-height: 1.3;
    }

    .author-company {
      display: inline-flex;
      align-items: center;
      gap: .3rem;
      font-size: .67rem;
      font-weight: 700;
      letter-spacing: .07em;
      text-transform: uppercase;
      color: #007BFF;
      margin-top: .18rem;
    }

    /* ══════════════════════════════
       MOBILE CAROUSEL
    ══════════════════════════════ */
    .testi-carousel { display: none; }
    @media (max-width: 575px) { .testi-carousel { display: block; } }

    .testi-carousel .testi-card { margin: 0 .5rem; }

    /* Custom carousel controls */
    .carousel-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      margin-top: 1.8rem;
    }

    .nav-btn {
      width: 42px; height: 42px;
      border-radius: 50%;
      border: 2px solid rgba(255,255,255,.4);
      background: rgba(255,255,255,.1);
      color: #fff;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem;
      cursor: pointer;
      transition: background .2s, border-color .2s, transform .2s;
      backdrop-filter: blur(4px);
    }
    .nav-btn:hover {
      background: rgba(255,255,255,.25);
      border-color: rgba(255,255,255,.8);
      transform: scale(1.08);
    }

    .nav-dots { display: flex; gap: .5rem; align-items: center; }
    .nav-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,.35);
      cursor: pointer;
      transition: background .2s, transform .2s, width .25s;
      border: none;
      padding: 0;
    }
    .nav-dot.active {
      background: #fff;
      width: 24px;
      border-radius: 4px;
    }

    /* ══════════════════════════════
       DESKTOP DOTS (bottom)
    ══════════════════════════════ */
    .desktop-dots {
      display: flex;
      justify-content: center;
      gap: .5rem;
      margin-top: 2rem;
    }
    @media (max-width: 575px) { .desktop-dots { display: none; } }

    /* ══════════════════════════════
       REVEAL
    ══════════════════════════════ */
    [data-reveal] {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity .55s cubic-bezier(.22,1,.36,1),
                  transform .55s cubic-bezier(.22,1,.36,1);
    }
    [data-reveal].revealed { opacity: 1; transform: translateY(0); }
    [data-reveal-delay="1"] { transition-delay: .1s; }
    [data-reveal-delay="2"] { transition-delay: .18s; }
    [data-reveal-delay="3"] { transition-delay: .26s; }
    [data-reveal-delay="4"] { transition-delay: .34s; }
    [data-reveal-delay="5"] { transition-delay: .42s; }

    @media (max-width: 767px) { .testi-section { padding: 64px 0 60px; } }