  
  .reviews-container {
    max-width: 1200px;
    margin: auto;
  }
  
  .slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    min-height: 300px !important;
  }
  
  .slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 1rem;
    padding: 0.5rem 2rem;
    /* min-height: 300px !important; */
    scrollbar-width: none;       /* Firefox */
    -ms-overflow-style: none; 
  }

  .slider::-webkit-scrollbar {
    display: none;               /* Chrome, Safari, Edge */
  }

  .review-card {
    min-width: 300px;
    max-width: 300px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
    /* background: white; */
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: relative;
    background-color: #f0f0f0; 
  }
  
  .avatar {
    background-color: #007f5f;
    color: white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 0.5rem;
  }
  
  .review-card strong {
    display: block;
  }
  
  .review-card .location {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #555;
    margin-top: 0.25rem;
  }
  
  .review-card p {
    font-size: 0.9rem;
    margin: 0.5rem 0;
  }
  
  .review-card a {
    font-size: 0.9rem;
    color: #0071c2;
    text-decoration: none;
  }
  
  .nav-btn {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 10;
  }
  
  .nav-btn.left {
    position: absolute;
    left: 0;
  }
  
  .nav-btn.right {
    position: absolute;
    right: 0;
  }
  
  .btn-review {
    background-color: white;
    border: 1px solid #0071c2;
    color: #0071c2;
    border-radius: 4px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    cursor: pointer;
  }
  