.samec-feedback-section {
  text-align: center;
  padding: 40px 15px 20px 15px;
}

/* Tiêu đề chính */
.samec-feedback-section .feedback-title {
  font-size: 40px;
  font-weight: 800; /* Chữ siêu đậm */
  color: #121e31;   /* Màu tối mặc định cho cụm "nói gì về" và dấu "?" */
  margin-bottom: 5px;
  line-height: 1.3;
}

/* Màu chữ xanh cho từ "Học viên" */
.samec-feedback-section .feedback-title .txt-blue {
  color: var(--primary-color); /* Đồng bộ với tông màu xanh trước đó của bạn */
}

/* Màu chữ cam cho từ "SAM" */
.samec-feedback-section .feedback-title .txt-orange {
  color: var(--fs-color-secondary); /* Màu cam thương hiệu của bạn */
}

/* Dòng mô tả */
.samec-feedback-section .feedback-subtitle {
  font-size: 16px;
  color: #4b5563; /* Màu xám đậm vừa phải */
  font-weight: 400;
  line-height: 1.6;
  max-width: 850px;
  margin: 0 auto;
}

/* Responsive cho thiết bị di động */
@media (max-width: 768px) {
  .samec-feedback-section {
    padding: 30px 15px 15px 15px;
  }
  .samec-feedback-section .feedback-title {
    font-size: 26px; /* Giảm kích thước trên điện thoại */
  }
  .samec-feedback-section .feedback-subtitle {
    font-size: 14px;
  }
}











.stats-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 cột trên máy tính */
  gap: 20px;
  padding: 20px 0;
  width: 100%;
  box-sizing: border-box;
}

/* Định dạng chung cho từng thẻ */
.stat-card {
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  /* ĐỔ BÓNG ĐẬM HƠN (Tăng từ 0.03 lên 0.14 để có bóng đen rõ nét) */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14); 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

/* Hiệu ứng di chuột đổ bóng đậm và sâu hơn nữa */
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.22);
}

/* Định dạng số phần trăm trên Desktop */
.stat-number {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 12px;
  font-family: inherit;
}















.testimonial-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  /* Đổ bóng đen rõ nét nổi bật */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12); 
  max-width: 480px; /* Giới hạn chiều rộng thẻ */
  width: 100%;
  box-sizing: border-box;
}

/* Phần thông tin người đánh giá (Avatar + Tên) */
.testi-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

/* Ảnh đại diện tròn */
.testi-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

/* Tên và chức danh */
.testi-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.testi-info p {
	margin-bottom: 0;
}
.testi-name {
  font-size: 1.25rem; /* Khoảng 20px */
  font-weight: 700;
  color: #0a1c3f; /* Màu xanh navy đậm */
  margin: 0;
  line-height: 1.2;
}

.testi-title {
  font-size: 0.95rem; /* Khoảng 15px */
  color: #5a6e85; /* Màu xám xanh nhẹ */
  margin: 0;
}

/* Nội dung bình luận */
.testi-content {
  font-style: italic; /* Chữ nghiêng */
  color: #2c3e50; /* Màu chữ xám đen dễ đọc */
  line-height: 1.6;
  margin: 0 0 24px 0;
}

/* Phần đánh giá 5 sao */
.testi-stars {
  display: flex;
  gap: 4px;
  color: #ffb300; /* Màu vàng cam của ngôi sao */
  font-size: 1.4rem;
  line-height: 1;
}

/* --- TỐI ƯU HÓA TRÊN ĐIỆN THOẠI --- */
@media (max-width: 480px) {
  .testimonial-card {
    padding: 24px;
    border-radius: 16px;
  }
  .testi-avatar {
    width: 64px;
    height: 64px;
  }
  .testi-name {
    font-size: 1.15rem;
  }
  .testi-title {
    font-size: 0.9rem;
  }
  .testi-content {
    font-size: 0.98rem;
    line-height: 1.5;
    margin-bottom: 18px;
  }
  .testi-stars {
    font-size: 1.25rem;
  }
}

/* Định dạng chữ mô tả trên Desktop */
.stat-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: #4a5568;
  line-height: 1.4;
  margin: 0;
}

/* --- MÀU SẮC CHI TIẾT TỪNG THẺ --- */

/* Thẻ 1: Màu Xanh Dương */
.stat-card.blue {
  background-color: #f4f8fc;
}
.stat-card.blue .stat-number {
  color: #1e60eb;
}

/* Thẻ 2: Màu Xanh Lá */
.stat-card.green {
  background-color: #f3fbf5;
}
.stat-card.green .stat-number {
  color: #00aa38;
}

/* Thẻ 3: Màu Tím */
.stat-card.purple {
  background-color: #faf6fc;
}
.stat-card.purple .stat-number {
  color: #8b26e1;
}

/* Thẻ 4: Màu Cam */
.stat-card.orange {
  background-color: #fef7ee;
}
.stat-card.orange .stat-number {
  color: #f35a0c;
}

/* --- ĐIỀU CHỈNH CHO MOBILE & TABLET (Dưới 991px) --- */
@media (max-width: 991px) {
  .stats-wrapper {
    grid-template-columns: repeat(2, 1fr); /* Chuyển thành 2 cột x 2 hàng */
    gap: 12px; /* Khoảng cách giữa các ô thu nhỏ lại */
  }
  
  .stat-card {
    padding: 24px 12px; /* Giảm padding để chữ không bị tràn */
    border-radius: 14px; /* Bo góc mềm mại hơn trên màn hình nhỏ */
    /* Đổ bóng đậm trên mobile */
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  }
  
  .stat-number {
    font-size: 2.2rem; /* Thu nhỏ cỡ chữ số để vừa khít màn hình điện thoại */
    margin-bottom: 8px;
  }
  
  .stat-text {
    font-size: 0.85rem; /* Thu nhỏ cỡ chữ mô tả */
    font-weight: 600; /* Tăng độ đậm để dễ đọc trên điện thoại */
  }
}