 

   
    .Testimonial_Hc-section {
      padding: 50px 0 50px 0;
      overflow: hidden;
    }

   

    .Testimonial_Hc-heading {
      position: relative;
      color: #f26522; /* SGF Orange */
      font-size: 1.1rem;
      font-weight: 700;
      text-transform: uppercase;
      padding-left: 14px;
      margin: 0;
      letter-spacing: 0.5px;
    }

    /* The vertical orange pipe icon beside the heading */
    .Testimonial_Hc-heading::before {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      height: 18px;
      width: 4px;
      background-color: #f26522;
      border-radius: 2px;
    }

    /* --- Swiper Container --- */
    .Testimonial_Hc-swiper {
      padding: 10px 0;
    }
    
    .swiper-slide {
      height: auto; /* Ensures all slides stretch to the tallest one */
    }

    /* --- Testimonial Card (Bracket Design) --- */
    .Testimonial_Hc-card {
      position: relative;
      padding: 40px 30px;
      height: 100%;
      display: flex;
      flex-direction: column;
      
      /* Vertical left and right borders */
      border-left: 2px solid rgba(242, 104, 34, 0.6); 
      border-right: 2px solid rgba(242, 104, 34, 0.6);
    }

    /* Top and Bottom Horizontal bracket edges using linear-gradient */
    .Testimonial_Hc-card::before,
    .Testimonial_Hc-card::after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      height: 2px;
      /* Creates a solid line for 15px on the left, transparent in the middle, solid for 15px on the right */
      background: linear-gradient(to right, rgba(242, 104, 34, 0.6) 0%, rgba(242, 104, 34, 0.6) 15px, transparent 15px, transparent calc(100% - 15px), #ecc9b8 calc(100% - 15px), #ecc9b8 100%);
    }

    .Testimonial_Hc-card::before { top: 0; }
    .Testimonial_Hc-card::after { bottom: 0; }

    /* --- Typography & Icons --- */
    .Testimonial_Hc-quote-icon {
      margin-bottom: 15px;
      color: #1a2c3a; /* Dark Slate Blue */
    }
    
    .Testimonial_Hc-quote-icon svg {
      width: 20px;
      height: 20px;
      fill: currentColor;
    }

    .Testimonial_Hc-text {
        color: rgba(30, 30, 30, 0.7);
    flex-grow: 1;
    margin-bottom: 2rem;
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 2%;
    }

    .Testimonial_Hc-quote-inline {
      display: inline-block;
      margin-left: 5px;
      color: #1a2c3a;
    }
    
    .Testimonial_Hc-quote-inline svg {
      width: 16px;
      height: 16px;
      fill: currentColor;
      vertical-align: middle;
    }

    /* --- Author Block --- */
    .Testimonial_Hc-author {
      display: flex;
      align-items: center;
    }

    .Testimonial_Hc-author-img {
      width: 45px;
      height: 45px;
      border-radius: 50%;
      object-fit: contain;
      margin-right: 15px;
      background-color: #fff; /* In case of transparent logos */
    }

    .Testimonial_Hc-btn.Testimonial_Hc-prev.swiper-button-disabled, .Testimonial_Hc-btn.Testimonial_Hc-next.swiper-button-disabled  {
    opacity: 0.5;
}

    .Testimonial_Hc-author-name {
          color: rgba(32, 63, 84, 1);
    margin: 0 0 2px 0;
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0%;
    }

    .Testimonial_Hc-author-title {
          color: rgba(32, 63, 84, 1);
    margin: 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    letter-spacing: 2%;
    }

    /* --- Navigation Arrows --- */
    .Testimonial_Hc-nav-wrapper {
      display: flex;
      justify-content: flex-end;
      gap: 15px;
      margin-top: 2rem;
    }

    .Testimonial_Hc-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid #1a2c3a;
      background: transparent;
      color: #1a2c3a;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .Testimonial_Hc-btn svg {
      width: 20px;
      height: 20px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .Testimonial_Hc-btn:hover {
      background-color: #1a2c3a;
      color: #ffffff;
    }

    /* --- Responsive --- */
    @media (max-width: 768px) {
      .Testimonial_Hc-card {
        padding: 30px 20px;
      }
    }