/* ---------------- block style ---------------------  */

.review-card {
    border-radius: 10px;
    padding: 24px;
    background: white;
    color: black;
    box-shadow: 9px 9px 25px 0 rgb(0 0 0 / 15%), 9px 9px 25px 0 rgba(0 0 0/ 15%);
  }
  
  .qoute_icon {
    display: flex;
    justify-content: flex-end;
  }
  
  .qoute_icon img {
    width: 15%;
  }
  
  .review-content {
    text-align: center;
  }
  .review-content p{
    margin-bottom: 10px !important;
  }
  
  .reviewer-info,
  .reviewer-details {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .reviewer-details{
    margin-top: 10px;
  }
  /* .reviewer-image {
    margin-right: 20px;
  } */
  
  .reviewer-image img {
    max-width: 100px;
    height: auto;
    border-radius: 50%;
  }
  
  .star-rating {
    font-size: 30px;
    color: #f39c12;
    margin-top: 10px;
    /* Set the color of the filled stars */
  }
  
  .star-rating::before {
    content: '★★★★★';
    /* Unicode character for a filled star */
    letter-spacing: 5px;
  }
  
  .star-rating[data-rating='1']::before {
    content: '★☆☆☆☆';
  }
  
  .star-rating[data-rating='2']::before {
    content: '★★☆☆☆';
  }
  
  .star-rating[data-rating='3']::before {
    content: '★★★☆☆';
  }
  
  .star-rating[data-rating='4']::before {
    content: '★★★★☆';
  }
  
  .star-rating[data-rating='5']::before {
    content: '★★★★★';
  }