/* =========================
   CONTAINER GRID
========================= */
.review-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  /* =========================
     CARD BASE
  ========================= */
  .review-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
  }
  
  /* Hover effect */
  .review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  }
  
  /* =========================
     HEADER (RED RIBBON STYLE)
  ========================= */
  .review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: linear-gradient(135deg, #D63838, #ff5a5a);
    color: #fff;
    position: relative;
  }
  
  /* Optional angled effect */
  .review-header::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 30px;
    background: inherit;
    transform: skewY(-3deg);
    z-index: 0;
  }
  
  /* =========================
     ICON CIRCLE
  ========================= */
  .review-icon {
    width: 45px;
    height: 45px;
    background: #fff;
    color: #D63838;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
    z-index: 1;
  }
  
  /* =========================
     USER INFO
  ========================= */
  .review-user {
    flex: 1;
    z-index: 1;
  }
  
  .review-name {
    font-weight: 700;
    font-size: 16px;
  }
  
  .review-role {
    font-size: 13px;
    opacity: 0.85;
  }
  
  /* =========================
     STARS (RIGHT)
  ========================= */
  .stars {
    color: #FFD700;
    font-size: 16px;
    white-space: nowrap;
    z-index: 1;
  }
  
  /* =========================
     CONTENT
  ========================= */
  .review-content {
    padding: 30px 20px 25px;
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    font-style: italic;
    background: #fafafa;
    position: relative;
  }
  
  /* =========================
     QUOTE ICON
  ========================= */
  .quote-icon {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 60px;
    color: rgba(255,255,255,0.15);
    pointer-events: none;
  }
  
  /* =========================
     RESPONSIVE
  ========================= */
  @media (max-width: 1024px) {
    .review-container {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 600px) {
    .review-container {
      grid-template-columns: 1fr;
    }
  
    .review-header {
      flex-wrap: wrap;
      gap: 10px;
    }
  
    .stars {
      width: 100%;
      text-align: right;
    }
  }


.swiper-pagination {
  margin-top: 15px;
  text-align: center;
}

.swiper-pagination-bullet {
  background: #D63838;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}
