.testimonial {

      padding: 0;
    

    .section {
      padding: 60px 60px 20px 60px ;
      overflow: hidden;
      background-color: #f8f9fa;
    }

    .container-fluid {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .button1 {
    width: fit-content;
    
}

    .row {
      display: flex;
      align-items: stretch;
      min-height: 400px;
      gap: 0;
    }

    .text-column {
      background-color: #f8f9fa;
      padding: 10px 10px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
    }

    

    .text-column h1 {
      color: var(--primary-color);
      font-size: 18px;
      font-weight: 700;
      
      margin: 0 0 20px 0;
      line-height: 1.4;
    }

    .text-column p {
      color: #444;
      font-size: 1rem;
      line-height: 1.4;
      margin: 0 0 30px 0;
      display: -webkit-box;
            -webkit-box-orient: vertical;
            line-clamp: 4;
            -webkit-line-clamp: 4;
            overflow: hidden;
    }

    .text-column button {
      background-color: var(--secondary-color);
      color: #fff;
      border: 2px solid #fff;
      padding: 12px 30px;
      font-size: 0.9rem;
      font-weight: 600;
      text-transform: uppercase;
      cursor: pointer;
      align-self: flex-start;
      transition: all 0.3s ease;
      border-radius: 5px;
    }

    .text-column button:hover {
      background-color: transparent;
      color: #fff;
      border-color: #fff;
    }

    .cards-column {
      background-color: #f8f9fa;
      padding: 0 20px;
      position: relative;
      overflow: hidden;
    }

    .left-side {
      background-color: #f8f9fa;
      z-index: 2;
    }

    .slider-container {
      position: relative;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      overflow: visible;
    }

    .testimonial-card {
      background-color: #fff;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: column;
      gap: 15px;
      height: auto;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      margin: 0 auto;
      
    }

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

    .card-header {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 10px;
    }

    .user-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      object-fit: cover;
      background-color: #e0e0e0;
    }

    .stars {
      color: #FFD700;
      font-size: 1.2em;
    }

    .star {
      margin-right: 2px;
    }

    .testimonial-text {
      color: #555;
      line-height: 1.5;
      margin: 0;
    }

    .user-name {
      font-weight: bold;
      color: #333;
      margin: 0;
    }

    .user-location {
      color: #888;
      font-size: 0.9em;
      margin: 0;
    }

    .swiper {
      width: 100%;
      
      
      
      overflow: visible;
    }

    .swiper-slide {
      display: flex;
      justify-content: center;
      align-items: center;
      height: auto;
      
    }

    .swiper-pagination {
      position: relative !important;
      
      text-align: center;
      display: flex;
      justify-content: center;
      gap: 10px;
      z-index: 10;
      padding-bottom: 10px;
    }

    .swiper-pagination-bullet {
      width: 8px;
      height: 8px;
      background-color: #ccc;
      border-radius: 50%;
      opacity: 1;
      transition: all 0.3s ease;
      cursor: pointer;
      z-index: 10;
    }

    .swiper-pagination-bullet-active {
      background-color: #28A745;
      width: 30px;
      border-radius: 6px;
      z-index: 10;
    }

    .swiper-button-next,
    .swiper-button-prev {
      color: #28A745;
      width: 44px;
      height: 44px;
      margin-top: -22px;
      background-color: rgba(255, 255, 255, 0.9);
      border-radius: 50%;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

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

    @media (min-width: 1200px) {
      .text-column {
        padding: 50px 10px;
      }
      .text-column h1 {
        font-size: 3rem;
      }
      .text-column p {
        font-size: 1.1rem;
      }
      .swiper {
        height: 400px;
        
      }
    }

    @media (min-width: 992px) and (max-width: 1199px) {
      .swiper {
        height: 380px;
        margin-bottom: 40px;
      }
      .testimonial-card {
        max-width: 300px;
      }
    }

    @media (min-width: 768px) and (max-width: 991px) {
      .text-column h1 {
        font-size: 2rem;
      }
      .text-column p {
        font-size: 0.9rem;
      }
      .swiper {
        height: 360px;
        margin-bottom: 40px;
      }
    }

    @media (max-width: 767px) {
      .section {
        
        padding: 40px 0;
      }
      .container-fluid {
        padding: 0 15px;
      }
      .row {
        flex-direction: column;
        min-height: auto;
      }
      .text-column {
        padding: 30px 20px;
        text-align: center;
      }
      .text-column::after {
        display: none;
      }
      .text-column h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
      }
      .text-column p {
        font-size: 0.9rem;
        margin-bottom: 25px;
      }
      .text-column button {
        padding: 10px 25px;
        font-size: 0.8rem;
        align-self: center;
      }
      .cards-column {
        background-color: #f8f9fa;
        padding: 30px 15px;
      }
      .swiper {
        height: 340px;
        padding: 0 10px;
        margin-bottom: 30px;
      }
      .testimonial-card {
        max-width: 280px;
      }
      .swiper-button-next,
      .swiper-button-prev {
        display: none;
      }

      .button1 {
    width: fit-content;
    display: flex;
    align-self: center;
}
    }

    @media (max-width: 575px) {
      .section {
        padding: 30px 0;
      }
      .text-column {
        padding: 25px 15px;
      }
      .text-column h1 {
        font-size: 1.5rem;
      }
      .cards-column {
        padding: 25px 10px;
      }
      .swiper {
        height: 320px;
        padding: 0 5px;
        margin-bottom: 30px;
      }
      .testimonial-card {
        max-width: 260px;
        padding: 20px;
      }
    }

    }

    