.feedback-container {
  width: 70%;
  margin: 0px auto;
}
/* Grid wrapper */
.review-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5%;
}

/* Individual card */
/* .individual-box {
  width: 23%;

} */
/* Container for all reviews */
.individual-container {
    margin-top: 20px;
}

/* Grid layout */
.review-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Each review card */
.single-box {
    flex: 1 1 250px; /* grow/shrink with min width */
    max-width: 340px;
    /*margin: 0 1rem;*/
}


/* Individual review content */
.individual-box {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    transition: transform 0.2s, box-shadow 0.2s;
}

.individual-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Top section */
.review-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.review-top i {
    font-size: 2rem;
    color: green;
    margin-right: 8px;
}

.review-top strong {
    margin-right: 5px;
}

.verified {
    background: green;
    color: white;
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 4px;
}

/* Stars */
.review-stars {
    color: #ffc107;
    font-size: 16px;
    margin-bottom: 8px;
}

/* Message */
.review-message {
    text-align: justify;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Responsive: stack on mobile */
@media (max-width: 768px) {
    .review-grid {
        flex-direction: column;
      
        gap: 15px;
    }

    .single-box {
        max-width: 95%;
        flex: 1 1 95%;
          margin: 0 auto;
    }
}
