/* Testimonials 科技感样式 */
.testimonials-bg {
  position: relative;
  color: #fff;
  padding: 50px 0 40px 0;
  overflow: hidden;
}

.testimonial-card {
  background: linear-gradient(135deg, #182a4d 60%, #23395d 100%);
  border-radius: 20px;
  padding: 35px 30px;
  box-shadow: 0 12px 50px 0 rgba(62, 182, 255, 0.13);
  border: 1px solid rgba(62, 182, 255, 0.2);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1.01, 0.32, 1);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #3eb6ff 0%, #7f6fff 100%);
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px 0 rgba(62, 182, 255, 0.25);
}

.testimonial-quote {
  position: absolute;
  top: 15px;
  right: 25px;
  opacity: 0.1;
  font-size: 3rem;
  color: #3eb6ff;
}

.rating-stars {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(62, 182, 255, 0.13) 60%, rgba(127, 111, 255, 0.13) 100%);
  padding: 12px 20px;
  border-radius: 40px;
  border: 1px solid rgba(62, 182, 255, 0.2);
  margin-bottom: 20px;
}

.rating-stars i {
  color: #ffd700;
  font-size: 1rem;
}

.testimonial-text {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  font-weight: 300;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.profile-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.profile-image {
  position: relative;
}

.profile-avatar {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3eb6ff 60%, #7f6fff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px 0 rgba(62, 182, 255, 0.33);
  margin: 0 auto 10px;
}

.profile-avatar img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
}

.verified-badge {
  position: absolute;
  bottom: 3px;
  right: 20%;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #3eb6ff 60%, #7f6fff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #fff;
  box-shadow: 0 2px 6px 0 rgba(62, 182, 255, 0.3);
  overflow: hidden;
}

.verified-badge i {
  color: #fff;
  font-size: 0.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
  margin: 0;
  padding: 0;
}

.profile-info {
  text-align: left;
}

.profile-name {
  color: #3eb6ff;
  font-weight: 700;
  margin: 0 0 3px 0;
  font-size: 1.1rem;
}

.profile-title {
  color: #b0d8ff;
  margin: 0;
  font-size: 0.9rem;
}

.profile-details {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 5px;
}

.profile-details span {
  color: #3eb6ff;
  font-size: 0.8rem;
}

.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3eb6ff 60%, #7f6fff 100%);
  border: none;
  margin: 0 6px;
  transition: all 0.3s;
}

.carousel-indicators button.active {
  transform: scale(1.2);
  box-shadow: 0 0 8px rgba(62, 182, 255, 0.5);
}

.testimonials-title {
  color: #3eb6ff;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.testimonials-subtitle {
  color: #b0d8ff;
  font-weight: 400;
}

.testimonials-highlight {
  color: #7f6fff;
} 