/* Testimonials Section Styles */
:root {
  --light: #f8f9fa;
  --white: #fff;
  --primary: #4285f4;
  --secondary: #34a853;
  --accent: #fbbc05;
  --dark: #202124;
  --gray: #70757a;
  --border-radius: 8px;
  --box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.testimonials {
  padding: 5rem 0;
  background-color: var(--light);
}

.testimonials-slider {
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.testimonials-container {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-item {
  min-width: 100%;
  padding: 2rem;
}

.testimonial-content {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: var(--box-shadow);
  margin-bottom: 2rem;
  position: relative;
}

.testimonial-content:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50px;
  width: 30px;
  height: 30px;
  background-color: white;
  transform: rotate(45deg);
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.05);
}

.testimonial-quote {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--dark);
  font-style: italic;
}

.testimonial-quote:before,
.testimonial-quote:after {
  content: '"';
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 700;
}

.testimonial-rating {
  margin-bottom: 1.5rem;
}

.testimonial-rating i {
  color: var(--accent);
  margin-right: 0.25rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
}

.testimonial-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.testimonial-author-info p {
  color: var(--gray);
  font-size: 0.9rem;
  margin: 0;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  gap: 1rem;
}

.testimonial-control {
  background-color: transparent;
  border: none;
  color: var(--dark);
  font-size: 1rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.testimonial-control:hover {
  background-color: var(--primary);
  color: white;
}

.testimonial-indicators {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  gap: 0.5rem;
}

.testimonial-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(66, 133, 244, 0.2);
  cursor: pointer;
  transition: all 0.3s;
}

.testimonial-indicator.active {
  background-color: var(--primary);
  transform: scale(1.2);
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(66, 133, 244, 0.2);
  cursor: pointer;
  transition: all 0.3s;
}

.testimonial-dot.active {
  background-color: var(--primary);
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-content {
    padding: 1.5rem;
  }
  
  .testimonial-quote {
    font-size: 1rem;
  }
} 