.client-review-text {
  text-align: center; 
  margin: 30px 0;
  font-size: 18px;
  color: #000; 
}

.client-review-text .review-link {
  color: red;   
  font-weight: bold;
  text-decoration: none;
}

.client-review-text .review-link:hover {
  text-decoration: underline;
}

.client-review-text {
  text-align: center;
  margin: 20px 0;
}
.client-review-text a {
  color: red;
  font-weight: bold;
  cursor: pointer;
}

.review-form {
  display: none;
  max-width: 600px;
  margin: 20px auto;
  padding: 0 15px;
  text-align: center;
}
.review-form input,
.review-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
}
.review-form button {
  background: red;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  margin-top: 10px;
}

.all-reviews {
  max-width: 1000px;
  margin: 20px auto;
}
.all-reviews h3 {
  text-align: center;
  margin-bottom: 20px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 0 15px;
}

.single-review {
  padding: 15px;
  border-radius: 14px;
  box-shadow:0 4px 6px rgba(0,0,0,0.1);
  text-align: center;
  color:#222;
}
.avatar {
  width:60px; 
  height:60px; 
  border-radius:50%; 
  border:3px solid rgb(0,123,255); 
  display:flex; 
  align-items:center; 
  justify-content:center; 
  margin:0 auto 10px auto; 
  background:#fff;
}
.single-review strong {
  font-size:16px;
  display:block;
  margin-bottom:6px;
}
.single-review p {
  font-size:14px;
  margin-bottom:8px;
  line-height:1.4;
}
.single-review small {
  font-size:12px;
  color:#555;
}

.review-text {
  display: -webkit-box;
  -webkit-line-clamp: 4;   /* সর্বোচ্চ ৪ লাইন দেখাবে */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 6px;
}

.see-all {
  font-size: 14px;
  font-weight: 600;
  color: #007bff;
  text-decoration: none;
  cursor: pointer;
}
.see-all:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .mobile-break {
    display: block;
  }
}
