    .testimonial-section{
      padding:30px 0 0;
      overflow:hidden;
    }
    .container-slider-testi{
      max-width:1320px;
      margin:auto;
    }
    .testimonial-slider {
       visibility: hidden;
       opacity: 0;
       transition: opacity .2s ease;
    }
    .testimonial-slider.swiper-initialized {
       visibility: visible;
       opacity: 1;
    }
    .testimonial-slider{
      padding-bottom:55px;
      height: 350px;
    }
    .testimonial-card{
      background:#fff;
      border: 1px solid lightgray;
      border-radius:6px;
      padding:20px;
      height: 350px;
      box-shadow: 0px 2px 13px 0px rgba(0, 0, 0, 0.07);
      transition:0.3s ease;
      height:100%;
      margin: 20px 0 0;
    }

    .testimonial-card:hover{
      transform:translateY(-4px);
      box-shadow:0 10px 25px rgba(0,0,0,0.08);
    }

    .testimonial-top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      margin-bottom:24px;
    }

    .user-info{
      display:flex;
      align-items:center;
      gap:16px;
    }

    .user-avatar{
      width:64px;
      height:64px;
      border-radius:50%;
      overflow:hidden;
      flex-shrink:0;
    }

    .user-avatar img{
      width:100%;
      height:100%;
      object-fit:cover;
    }

    .user-content h3{
      font-size:16px;
      font-weight:700;
      line-height:1.2;
      color: #1d84c7;
      margin-bottom:6px;
    }

    .user-content span{
      font-size:14px;
      color:#222;
    }

    .quote-icon{
      width:65px;
      height:65px;
      opacity:0.5;
      flex-shrink:0;
      transform: rotate(180deg);
      color: #f48020;
    }

    .testimonial-text{
      font-size:14px;
      line-height:1.8;
      color:#7b7b7b;
    }

    /* Pagination */
    .swiper-pagination{
      bottom:0 !important;
    }

    .swiper-pagination-bullet{
      width:10px;
      height:10px;
      background:#d8d8d8;
      opacity:1;
      transition:all 0.3s ease;
    }

    .swiper-pagination-bullet-active{
      width:28px;
      border-radius:30px;
      background:#1d84c7;
    }

    /* Navigation */
    .swiper-button-next, .swiper-button-prev{
        display:none;
      }
    /*.swiper-button-next,
    .swiper-button-prev{
      width:52px;
      height:52px;
      background:#fff;
      border-radius:50%;
      box-shadow:0 5px 20px rgba(0,0,0,0.08);
      color:#222;
      transition:0.3s ease;
    }

    .swiper-button-next:hover,
    .swiper-button-prev:hover{
      background:#c6a67a;
      color:#fff;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after{
      font-size:18px;
      font-weight:700;
    }*/

    /* Mobile */
    @media(max-width:767px){

      .testimonial-section{
        padding:0;
      }

      .testimonial-card{
        padding:10px;
      }

      .user-content h3{
        font-size:16px;
      }

      .user-content span{
        font-size:14px;
      }

      .testimonial-text{
        font-size:14px;
        line-height:1.7;
      }

      .quote-icon{
        width:42px;
        height:42px;
      }

      .swiper-button-next,
      .swiper-button-prev{
        display:none;
      }
    }