
.testimonial-section {
  padding: 40px 20px;
  background: #f7f9fc;
  font-family: Arial, sans-serif;
}
.testimonial-title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.testimonial-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-5px);
}
.customer-info {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.customer-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
}
.customer-name {
  font-weight: bold;
  font-size: 16px;
}
.customer-company {
  font-size: 13px;
  color: #666;
}
.flag {
  font-size: 18px;
}
.project-img {
  width: 100%;
  border-radius: 8px;
  margin: 10px 0;
}
.testimonial-text {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}
.tag {
  display: inline-block;
  background: #e6f0ff;
  color: #1a73e8;
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 4px;
  margin-top: 10px;
}
