/* .testimonial-section {
  background: #04161C;
  color: #fff;
  text-align: center;
}

.badge {
  display: inline-block;
  background: #0AA6FF;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 20px;
}

.testimonial-section h2 {
  color:#fff;
  margin:0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top:60px;
}

.testimonial-card {
  padding: 28px;
  border-radius: 16px;
background: rgba(255, 255, 255, 0.06);
  text-align: left;
  transition: transform 0.3s ease;
}
.testimonial-card-logo{margin-bottom:10px;}
.testimonial-card-logo img{width:100%;max-width:100px!important;}

p.testimonial-card-content{
color: var(--Text-color-White, #FFF);

/* B1/18px/Medium */
font-family: "Open Sans";
font-size: 18px;
font-style: normal;
font-weight: 500;
line-height: 27px; /* 150% */
  margin-top:25px;
}

.testimonial-card-client{
display: flex;
    gap: 10px;
    align-items: center;
      margin-top: 25px;
}
.testimonial-card-client-name{
color: var(--Text-color-White, #FFF);

/* B2/16px/Bold */
font-family: "Open Sans";
font-size: 16px;
font-style: normal;
font-weight: 700;
line-height: 24px; /* 150% */
}
.testimonial-card-client-desgination{
color: var(--Text-color-White, #FFF);

/* B2/16px/Medium */
font-family: "Open Sans";
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 24px; /* 150% */
}

/* Responsive */
/* @media(max-width: 1026px) {

  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
} */

@media(max-width: 767px) {
  
    p.testimonial-card-content{
  font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 24px; 
  }
  .testimonial-card-client-desgination{
  font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: 21px;
  }
  
  
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}
 */