 .testimonials-container {
     max-width: 1480px;
     margin: 0 auto;
     padding: 5rem 0rem;
     font-family: Barlow, sans-serif;
 }

 /* Section Header */
 .testimonials-header {
     text-align: center;
     margin-bottom: 2.5rem;
 }

 .testimonials-title {
     font-size: 2.5rem;
     font-weight: 400;
     color: #222;
     margin-bottom: 0.75rem;
     line-height: 1.2;
 }

 .testimonials-subtitle {
     color: #6c757d;
     max-width: 640px;
     margin: 0 auto;
     font-weight: 400;
     font-size: 1.1rem;
 }


 .testimonials-slider {
     position: relative;
     max-width: 1480px;
     margin: 0 auto;
 }

 .slider-viewport {
     overflow: hidden;
     border-radius: 8px;
     padding-top: 1rem;
     padding-bottom: 1rem;
 }

 .slider-container {
     display: flex;
     transition: transform 0.5s ease-in-out;
 }

 .slider-item {
     flex: 0 0 50%;
     padding: 0 0.9375rem;
     /* 15px */
 }

 /* Testimonial Card */
 .testimonial-card {
     background-color: #ffffff;
     border: 1px solid #eeeeee;
     border-radius: 16px;
     height: 100%;
     overflow: hidden;
     display: flex;
     flex-direction: column;
     transition: transform 0.25s ease, box-shadow 0.25s ease;
 }

 .testimonial-card:hover {
     transform: translateY(-4px);
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
 }

 .testimonial-header {
     background-color: #f4f6fb;
     color: #0a2445;
     font-weight: 600;
     padding: 1rem 1.25rem;
     border-bottom: 1px solid #eeeeee;
     font-size: 1.05rem;
 }

 .testimonial-content {
     position: relative;
     padding: 1.5rem 1.25rem 1.25rem;
     flex: 1;
 }

 .testimonial-quote {
     color: #555;
     line-height: 1.7;
     font-size: 1.05rem;
     font-weight: 400;
     white-space: pre-line;
     margin: 0;
 }

 .quote-icon {
     position: absolute;
     top: 0.75rem;
     right: 0.75rem;
     font-size: 2rem;
     color: rgba(0, 0, 0, 0.06);
 }

 .read-more-text {
     display: none;
 }

 .read-more-toggle {
     color: #0a2445;
     cursor: pointer;
     font-weight: 500;
     text-decoration: underline;
     font-size: 1rem;
     background: none;
     border: none;
     padding: 0;
     margin-top: 0.5rem;
     display: inline-block;
 }

 .read-more-toggle:hover {
     color: #45c0f5;
 }

 .testimonial-footer {
     display: flex;
     align-items: center;
     gap: 0.85rem;
     padding: 1rem 1.25rem;
     background-color: #fafafa;
     border-top: 1px solid #eeeeee;
     margin-top: auto;
 }

 /* Client Info */
 .client-avatar {
     width: 48px;
     height: 48px;
     border-radius: 50%;
     background-color: #0a2445;
     color: #ffffff;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 600;
     font-size: 1rem;
     flex-shrink: 0;
 }

 .client-info {
     flex: 1;
     min-width: 0;
 }

 .client-name {
     font-weight: 600;
     color: #0a2445;
     font-size: 1rem;
     margin-bottom: 0.125rem;
 }

 .client-role {
     font-size: 0.9rem;
     color: #6c757d;
     line-height: 1.3;
 }

 .testimonial-rating {
     color: #ffd166;
     font-size: 1.25rem;
     letter-spacing: 1px;
     white-space: nowrap;
     flex-shrink: 0;
 }

 /* Slider Controls */
 .slider-navigation {
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 2rem;
     margin-top: 1rem;
 }

 .nav-button {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     background-color: #0a2445;
     color: #ffffff;
     border: none;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     font-size: 1.125rem;
     transition: all 0.3s ease;
     flex-shrink: 0;
 }

 .nav-button:hover {
     background-color: #45c0f5;
     transform: scale(1.1);
 }

 .nav-button:focus {
     outline: 2px solid #45c0f5;
     outline-offset: 2px;
 }

 .nav-button:disabled {
     opacity: 0.5;
     cursor: not-allowed;
     transform: none;
 }

 /* Responsive Design */
 @media screen and (max-width: 768px) {
    

     .testimonials-container {
         padding: 4rem 0.5rem;
     }

     .testimonials-title {
         font-size: 2rem;
     }

     .testimonials-subtitle {
         font-size: 1rem;
     }

     .slider-item {
         flex: 0 0 100%;
         padding: 0 0.5rem;
     }

     .slider-navigation {
         gap: 1.5rem;
     }

     .nav-button {
         width: 44px;
         height: 44px;
         font-size: 1rem;
     }

     .testimonial-content {
         padding: 1.25rem 1rem 1rem;
     }

     .testimonial-header {
         padding: 0.875rem 1rem;
         font-size: 1rem;
     }

     .testimonial-footer {
         padding: 0.875rem 1rem;
     }
 }

 @media screen and (max-width: 480px) {
     .testimonials-header {
         margin-bottom: 2rem;
     }

     .testimonials-title {
         font-size: 1.75rem;
     }

     .client-role {
         font-size: 0.8rem;
     }

     .slider-navigation {
         gap: 1rem;
     }
 }

 /* Accessibility */
 @media (prefers-reduced-motion: reduce) {

     .testimonial-card,
     .nav-button,
     .slider-container {
         transition: none;
     }
 }

 /* Focus Management */
 .testimonial-card:focus-within {
     outline: 2px solid #45c0f5;
     outline-offset: 2px;
 }

 /* Print Styles */
 @media print {
     .slider-navigation {
         display: none;
     }

     .testimonial-card {
         break-inside: avoid;
     }
 }