/* Case Study: Testimonial Section */
.agp-csi .testimonial-section {
  background: var(--csi-navy);
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.agp-csi .testi-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.agp-csi .testi-quote-mark {
  font-size: 64px !important;
  color: var(--csi-teal);
  line-height: 1;
  margin-bottom: 32px;
  font-family: serif !important;
}
.agp-csi .testi-text {
  font-size: clamp(20px, 3vw, 30px) !important;
  font-weight: 600 !important;
  color: var(--csi-white) !important;
  line-height: 1.5 !important;
  margin-bottom: 40px;
  font-style: italic;
}
.agp-csi .testi-author {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}
.agp-csi .testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--csi-teal-light);
  color: var(--csi-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  overflow: hidden;
}
.agp-csi .testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.agp-csi .testi-name {
  color: var(--csi-white);
  font-weight: 700;
  font-size: 15px;
}
.agp-csi .testi-role {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  margin-top: 2px;
}
.agp-csi .testi-bg-text {
  position: absolute;
  bottom: -20px;
  right: -20px;
  font-size: 180px !important;
  font-weight: 900 !important;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  line-height: 1;
}
@media (max-width: 768px) {
  .agp-csi .testimonial-section {
    padding-left: 20px;
    padding-right: 20px;
  }
}
