/* TESTIMONIALS CSS */

  .testimonials {
    padding: 8rem 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
  }
  
  
  
  .dots-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--brand-color-1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.03;
  }
  
  .wave-shape {
    position: absolute;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23e91e63' fill-opacity='0.05' d='M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,218.7C672,235,768,245,864,229.3C960,213,1056,171,1152,144C1248,117,1344,107,1392,101.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    bottom: 0;
    left: 0;
  }
  
  /* Animation styling */
  .animated-illustration {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 300px;
    height: 200px;
    z-index: 1;
    opacity: 0.8;
  }
  
  .fuel-station {
    position: absolute;
    top: 20px;
    left: 120px;
    z-index: 3;
  }
  
  .station-roof {
    width: 60px;
    height: 10px;
    background: linear-gradient(to right, var(--brand-color-1), var(--brand-color-2));
    border-radius: 2px;
  }
  
  .station-column {
    width: 6px;
    height: 30px;
    background: #ddd;
    position: absolute;
    top: 10px;
  }
  
  .station-column.left {
    left: 10px;
  }
  
  .station-column.right {
    right: 10px;
  }
  
  .fuel-dispenser {
    position: absolute;
    top: 40px;
    left: 15px;
    z-index: 4;
  }
  
  .dispenser-body {
    width: 30px;
    height: 40px;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  
  .dispenser-hose {
    position: absolute;
    width: 4px;
    height: 25px;
    background: #333;
    right: -8px;
    top: 10px;
    border-radius: 10px;
    transform-origin: top center;
    animation: hoseMove 3s ease-in-out infinite;
  }
  
  .dispenser-nozzle {
    position: absolute;
    width: 8px;
    height: 12px;
    background: #555;
    right: -16px;
    top: 32px;
    border-radius: 2px;
    animation: nozzleMove 3s ease-in-out infinite;
  }
  
  @keyframes hoseMove {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(10deg); }
  }
  
  @keyframes nozzleMove {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
  }
  
  .cars-container {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 300px;
    height: 60px;
  }
  
  .car {
    position: absolute;
    bottom: 0;
    z-index: 2;
    transform: translateX(-100px);
    animation: carMove 12s linear infinite;
  }
  
  .car-1 {
    animation-delay: 0s;
  }
  
  .car-2 {
    animation-delay: 4s;
    z-index: 1;
  }
  
  .truck {
    position: absolute;
    bottom: 0;
    z-index: 2;
    transform: translateX(-150px);
    animation: carMove 15s linear infinite;
    animation-delay: 8s;
  }
  
  @keyframes carMove {
    0% { transform: translateX(-100px); }
    100% { transform: translateX(400px); }
  }
  
  .car-body {
    width: 50px;
    height: 12px;
    background: var(--brand-color-2);
    border-radius: 5px;
    position: relative;
  }
  
  .car-roof {
    width: 30px;
    height: 8px;
    background: var(--brand-color-2);
    border-radius: 5px 5px 0 0;
    position: absolute;
    top: -8px;
    left: 5px;
  }
  
  .car-window {
    width: 15px;
    height: 6px;
    background: #a8d8ff;
    border-radius: 2px;
    position: absolute;
    top: -6px;
    left: 12px;
  }
  
  .car-wheel {
    width: 8px;
    height: 8px;
    background: #333;
    border-radius: 50%;
    position: absolute;
    bottom: -4px;
    animation: wheelRotate 1s linear infinite;
  }
  
  .car-wheel-front {
    left: 8px;
  }
  
  .car-wheel-back {
    right: 8px;
  }
  
  @keyframes wheelRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  .truck-cabin {
    width: 20px;
    height: 16px;
    background: var(--brand-color-1);
    border-radius: 3px;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  
  .truck-body {
    width: 40px;
    height: 20px;
    background: linear-gradient(to right, var(--brand-color-1), #c2185b);
    border-radius: 2px;
    position: absolute;
    bottom: 0;
    left: 20px;
  }
  
  .truck-wheel {
    width: 10px;
    height: 10px;
    background: #333;
    border-radius: 50%;
    position: absolute;
    bottom: -5px;
    animation: wheelRotate 1.2s linear infinite;
  }
  
  .truck-wheel-front {
    left: 6px;
  }
  
  .truck-wheel-back {
    right: 6px;
  }
  
  .anpr-scanner {
    position: absolute;
    top: 100px;
    left: 30px;
    z-index: 3;
  }
  

  .scanner-light {
    width: 6px;
    height: 6px;
    background: var(--brand-color-1);
    border-radius: 50%;
    position: absolute;
    top: 7px;
    left: 5px;
    box-shadow: 0 0 10px var(--brand-color-1);
    animation: scannerLight 2s infinite;
  }
  

  @keyframes scannerLight {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
  }
  
  @keyframes scannerBeam {
    0%, 100% { width: 0; opacity: 0; }
    50% { width: 100px; opacity: 0.7; }
  }
  
  .data-circles {
    position: absolute;
    top: 40px;
    left: 200px;
    z-index: 2;
    width: 400px;
    height: 300px;
  }
  
  .data-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: dataFlow 5s infinite;
  }
  
  @keyframes dataFlow {
    0% { opacity: 0; transform: scale(0.8); }
    50% { opacity: 0.7; transform: scale(1.2); }
    100% { opacity: 0; transform: scale(0.8); }
  }
  
  .circle-1 {
    width: 10px;
    height: 10px;
    background: rgba(33, 150, 243, 0.5);
    top: 0;
    left: 0;
    animation-delay: 0s;
  }
  
  .circle-2 {
    width: 14px;
    height: 14px;
    background: rgba(233, 30, 99, 0.3);
    top: 20px;
    left: 15px;
    animation-delay: 1s;
  }
  
  .circle-3 {
    width: 8px;
    height: 8px;
    background: rgba(76, 175, 80, 0.4);
    top: 10px;
    left: 30px;
    animation-delay: 2s;
  }
  
  .circle-4 {
    width: 20px;
    height: 20px;
    background: rgba(156, 39, 176, 0.3);
    top: 80px;
    left: 120px;
    animation-delay: 0.5s;
  }
  
  .circle-5 {
    width: 16px;
    height: 16px;
    background: rgba(255, 193, 7, 0.4);
    top: 150px;
    left: 200px;
    animation-delay: 1.3s;
  }
  
  .circle-6 {
    width: 24px;
    height: 24px;
    background: rgba(0, 188, 212, 0.5);
    top: 40px;
    left: 250px;
    animation-delay: 2.7s;
  }
  
  .circle-7 {
    width: 12px;
    height: 12px;
    background: rgba(255, 87, 34, 0.4);
    top: 200px;
    left: 80px;
    animation-delay: 3.2s;
  }
  
  .circle-8 {
    width: 28px;
    height: 28px;
    background: rgba(63, 81, 181, 0.3);
    top: 120px;
    left: 300px;
    animation-delay: 1.8s;
  }
  
  .circle-9 {
    width: 18px;
    height: 18px;
    background: rgba(139, 195, 74, 0.5);
    top: 230px;
    left: 180px;
    animation-delay: 2.3s;
  }
  
  .circle-10 {
    width: 22px;
    height: 22px;
    background: rgba(255, 152, 0, 0.4);
    top: 70px;
    left: 350px;
    animation-delay: 3.8s;
  }
  
  @keyframes dataFlow {
    0% {
      transform: scale(0.5) translate(0, 0);
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      transform: scale(1.5) translate(20px, -30px);
      opacity: 0;
    }
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color-main);
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--brand-color-1), var(--brand-color-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .section-header p {
    font-size: 1.1rem;
    color: var(--text-color-secondary);
    max-width: 600px;
    margin: 0 auto;
  }
  
  .testimonial-carousel {
    margin-top: 3rem;
    position: relative;
    padding: 2rem 0;
    height: 380px;
    z-index: 2;
  }
  
  .testimonial-slide {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(50, 50, 93, 0.08);
    margin: 0 auto;
    max-width: 800px;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateX(100px);
    border: 1px solid rgba(0, 0, 0, 0.02);
    visibility: hidden;
    backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, 0.95);
  }
  
  .testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
  }
  
  .testimonial-slide.prev {
    transform: translateX(-100px);
    opacity: 0;
    visibility: hidden;
  }
  
  .testimonial-company {
    display: flex;
    align-items: center;
    margin-bottom: 1.8rem;
  }
  
  .company-logo {
    width: 48px;
    height: 48px;
    background: linear-gradient(45deg, var(--brand-color-1), rgba(233, 30, 99, 0.7));
    border-radius: 12px;
    margin-right: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.2);
  }
  
  .testimonial-company h3 {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--text-color-main);
  }
  
  .testimonial-quote {     
    font-size: 1.3rem;     
    font-weight: 500;     
    line-height: 1.6;     
    margin-bottom: 2rem;     
    position: relative;     
    padding: 0 1.5rem;  
    color: var(--text-color-main);   
    display: inline-block;
}      

.testimonial-quote::before, 
.testimonial-quote::after {     
    font-size: 2rem;     
    color: var(--brand-color-1);     
    opacity: 0.1;     
    font-family: Georgia, serif;   
}   

.testimonial-quote::before {     
    content: '“';     
    position: absolute;     
    left: -0.5rem;     
    top: -0.5rem;   
}   

.testimonial-quote::after {     
    content: '”';     
    position: absolute;     
    right: -0.5rem;     
    bottom: -0.5rem;   
}

  
  .testimonial-author {
    display: flex;
    align-items: center;
  }
  
  .author-avatar {
    width: 56px;
    height: 56px;
    background-color: #eaeaea;
    border-radius: 50%;
    margin-right: 1rem;
    overflow: hidden;
    border: 3px solid var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .author-info h4 {
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: var(--text-color-main);
  }
  
  .author-info p {
    color: var(--text-color-secondary);
    font-size: 0.95rem;
  }
  
  .carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }
  
  .carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #e0e0e0;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .carousel-dot.active {
    background-color: var(--brand-color-1);
    transform: scale(1.2);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.2);
  }
  
  .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--white);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    z-index: 10;
    transition: all 0.3s;
  }
  
  .carousel-arrow:hover {
    background-color: var(--brand-color-1);
  }
  
  .carousel-arrow:hover svg path {
    fill: white;
  }
  
  .carousel-arrow.prev {
    left: 10px;
  }
  
  .carousel-arrow.next {
    right: 10px;
  }
  
  .carousel-arrow svg path {
    fill: var(--text-color-main);
    transition: fill 0.3s;
  }
  
  /* Testimonial slide animations */
  @keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translateX(100px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes fadeOutLeft {
    from {
      opacity: 1;
      transform: translateX(0);
    }
    to {
      opacity: 0;
      transform: translateX(-100px);
    }
  }
  
  @keyframes fadeInLeft {
    from {
      opacity: 0;
      transform: translateX(-100px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes fadeOutRight {
    from {
      opacity: 1;
      transform: translateX(0);
    }
    to {
      opacity: 0;
      transform: translateX(100px);
    }
  }
  
  .slide-in-right {
    animation: fadeInRight 0.5s forwards;
  }
  
  .slide-out-left {
    animation: fadeOutLeft 0.5s forwards;
  }
  
  .slide-in-left {
    animation: fadeInLeft 0.5s forwards;
  }
  
  .slide-out-right {
    animation: fadeOutRight 0.5s forwards;
  }
  
  /* Add a floating effect to the testimonial */
  .testimonial-slide.active {
    animation: floatAnimation 6s ease-in-out infinite;
  }
  
  @keyframes floatAnimation {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .testimonial-carousel {
      height: 420px;
    }
    
    .animated-illustration {
      opacity: 0.5;
    }
  }
  
  @media (max-width: 768px) {
    .testimonials {
      padding: 6rem 0;
    }
    
    .section-header h2 {
      font-size: 2rem;
    }
    
    .testimonial-slide {
      padding: 2rem;
    }
    
    .testimonial-quote {
      font-size: 1.1rem;
      padding-left: 1rem;
    }
    
    .testimonial-carousel {
      height: 460px;
    }
    
    .carousel-arrow {
      width: 36px;
      height: 36px;
    }
    
    .animated-illustration {
      top: auto;
      bottom: 5%;
      left: -10px;
      transform: scale(0.7);
    }
  }
  
  @media (max-width: 576px) {
    .testimonial-carousel {
      height: 520px;
    }
    
    .testimonial-company h3 {
      font-size: 1rem;
    }
    
    .carousel-arrow.prev {
      left: 5px;
    }
    
    .carousel-arrow.next {
      right: 5px;
    }
    
    .animated-illustration {
      transform: scale(0.5);
      left: -50px;
    }
  }