.review-card {
  padding: 24px;
  margin: 16px auto;
  border-radius: 25px;
  max-width: 800px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  font-family: 'Lato', sans-serif;
}

/* Odd (1, 3, 5...) = navy background, white text */
.review-card:nth-child(odd) {
  background-color: #083354;
  color: white;
}

.review-card:nth-child(odd) .reviewer-info,
.review-card:nth-child(odd) .review-date,
.review-card:nth-child(odd) strong {
  color: white;
}

/* Even (2, 4, 6...) = light background, dark text */
.review-card:nth-child(even) {
  background-color: #eeeeee;
  color: #111;
}

.review-card:nth-child(even) .reviewer-info,
.review-card:nth-child(even) .review-date,
.review-card:nth-child(even) strong {
  color: #222;
}

/* Always keep stars yellow */
.rating-stars {
  display: block;
  margin: 0 auto 16px;
  height: 28px;
  object-fit: contain;
  filter: none !important;
}

.review-text {
  font-size: 19px !important;
  line-height: 1.5 !important;
    margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.review-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0rem;
  flex-wrap: wrap;
}

.google {
   width: 50px;
  height: 50px;
  object-fit: contain;
  display: block;
  margin: 0;
  padding: 0;
    margin-right: 15px; /* 👈 adds spacing between logo and name */

}

.reviewer-info {
  font-size: 18px;
  line-height: 1.4;
  color: #ffffff;
}

.reviewer-info span {
  font-size: 1.15rem; /* or try 0.75rem for even smaller */
  color: #ffffff;         /* optional: makes it more subtle */
  display: block;
  margin-top: 2px;
}

}
/* Pagination styles */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 48px auto;
  flex-wrap: wrap;
  gap: 12px;
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 48px auto;
  flex-wrap: wrap;
  gap: 12px;
}
.pagination-btn {
  margin: 0 0.5rem;
  cursor: pointer;
  font-weight: bold;
  color: #0b3556;
}

.pagination-btn.active {
  text-decoration: underline;
}

.pagination-btn.disabled {
  color: #ccc;
  pointer-events: none;
}

/* Responsive tweaks */
/* ---------- Responsive Styles ---------- */
@media screen and (max-width: 600px) {
  .review-card {
    padding: 15px;
    margin: 15px 10px;
  }

  .rating-stars {
    width: 120px;
  }

  .review-text {
    font-size: 0.95rem;
    text-align: left;
  }

  .review-footer {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }

  .reviewer-info {
    font-size: 0.85rem;
  }
}
