.testimonials {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  font-family: Arial, sans-serif;
  margin-top: 100px;
}

.testimonial {
  background: #f9f9f9;
  padding: 15px;
  margin-bottom: 50px;
  border-radius: 8px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
}

.profile-photo {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 10px 10px 5px lightblue;
}

.testimonial-content {
  flex: 1;
  font-size: 16px;
  line-height: 1.6;
}

.leader-name {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 5px;
}

.leader-position {
  font-size: 18px;
  color: #555;
  margin-bottom: 15px;
}

.testimonial p {
  margin-bottom: 12px;
  text-align: justify;
}

.more-text {
  display: none;
}

.toggle-btn {
  margin-top: 10px;
  padding: 8px 15px;
  background: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-btn:hover {
  background: #0056b3;
}

.btn-custom {
  margin-top: 15px;
  display: inline-block;
  padding: 8px 15px;
  background: #007bff;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  transition: background 0.3s ease;
}

.btn-custom:hover {
  background: #0056b3;
}

.btn-custom .number {
  font-weight: bold;
  color: #fff;
}

.btn-custom span:last-child {
  margin-left: 5px;
}

/* ✅ Responsive Styles */
@media (max-width: 768px) {
  .testimonial {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
  }

  .profile-photo {
    width: 80vw;
    height: 80vw;
    max-width: 300px;
    max-height: 300px;
    margin-bottom: 15px;
  }

  .testimonial-content {
    padding: 0 10px;
    font-size: 15px;
  }

  .leader-name {
    font-size: 20px;
  }

  .leader-position {
    font-size: 16px;
  }

  .toggle-btn,
  .btn-custom {
    font-size: 14px;
    padding: 6px 12px;
  }

  .btn-custom .number {
    display: block;
    margin-bottom: 5px;
  }

  .more-text {
    text-align: justify;
  }
}
