.tg-chose-6-wrap {
         padding: 36px;
         }
         .masonry {
         column-count: 2;
         column-gap: 15px;
         }
         .item {
         margin-bottom: 15px;
         padding: 0px;
         display: inline-block;
         width: 100%;
         border-radius: 8px;
         }
         .item img {
         max-width: 100%;
         height: auto;
         border-radius: 5px;
         }
         @media (max-width: 900px) {
         .masonry {
         column-count: 2;
         }
         }
         @media (max-width: 600px) {
         .masonry {
         column-count: 1;
         }
         }
         .tg-breadcrumb-spacing-5 {
         padding-top: 182px;
         padding-bottom: 128px;
         height: 550px;
         }

         /* Ratings Section */
    /* Ratings Section */
    .ratings-wrapper {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-bottom: 30px;
    }

.card {
    background: #f8f8f8;
    border: 0;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

    .card h3 {
      font-size: 1rem;
      margin-bottom: 10px;
      color: #444;
    }

    .rating-number {
      font-size: 2rem;
      font-weight: bold;
      color: #111;
    }

    .stars {
      color: #f7b500;
      margin: 5px 0;
    }

    .sub-text {
      font-size: 0.9rem;
      color: #666;
      margin-top: 5px;
    }

    /* Filter Section */
    .filters {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      margin-bottom: 20px;
    }

    .filters select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff url("data:image/svg+xml;utf8,<svg fill='%23666' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>") no-repeat right 10px center;
  background-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px 40px 10px 15px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Hover & Focus Effects */
.filters select:hover {
  border-color: #999;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.filters select:focus {
  outline: none;
  border-color: #f7b500;
  box-shadow: 0 0 0 3px rgba(247,181,0,0.25);
}

    /* Review Cards */
    .review {
      background: #fff;
      border: 1px solid #ddd;
      padding: 30px;
      border-radius: 12px;
      margin-bottom: 20px;
      display: flex;
      gap: 15px;
      align-items: flex-start;
      position: relative;
    }

    .review img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      object-fit: cover;
      border: 0d;
    }

    .review-content {
      flex: 1;
    }

.review .customer {
    font-weight: 600;
    color: #ad006e;
    margin-bottom: 0;
    font-size: 1.2em;
}

    .review .customer span{
      font-size: 14px;
      font-weight: 400;
      color: #555;
      font-style: italic;
    }

    .review .date {
      font-size: 0.8rem;
      color: #777;
      margin-bottom: 8px;
    }

    .review .trip-rating {
      margin-bottom: 10px;
      font-size: 0.95rem;
      font-weight: bold;
    }

    .review p {
      margin-bottom: 12px;
      font-size: 1.1rem;
    }

    .review .reply {
      background: #f9f9f9;
      border-left: 4px solid #f7b500;
      padding: 25px;
      border-radius: 6px;
      font-size: 1rem;
      color: #444;
      margin-top: 35px;
    }

    /* Share Button */
    .share-btn {
      position: absolute;
      top: 10px;
      right: 10px;
      background: none;
      border: none;
      font-size: 30px;
      cursor: pointer;
      color: #666;
    }

    .share-menu {
      display: none;
      position: absolute;
      top: 35px;
      right: 10px;
      background: #fff;
      border: 1px solid #ccc;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
      z-index: 100;
      overflow: hidden;
    }

    .share-menu a {
      display: block;
      padding: 10px 15px;
      text-decoration: none;
      color: #333;
      font-size: 0.9rem;
    }

    .share-menu a:hover {
      background: #f7f7f7;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .ratings-wrapper {
        grid-template-columns: 1fr;
      }

      .filters {
        flex-direction: column;
      }

      .review {
        flex-direction: column;
        align-items: flex-start;
      }

      .share-btn {
        top: 5px;
        right: 5px;
      }
    }

    /* Loader */
.loader {
  display: none;
  text-align: center;
  margin: 20px 0;
}
.loader img {
  width: 40px;
}














.star-rating {
    display: flex;
    gap: 2px;
    width: max-content;
    margin-bottom: 10px;
  }

  .star-rating svg {
    width: 30px;
    height: 30px;
    fill: lightgray; /* Default unfilled */
    transition: fill 0.3s;
  }

  /* Filled stars based on rating class */
  .rating-1 svg:nth-child(-n+1),
  .rating-2 svg:nth-child(-n+2),
  .rating-3 svg:nth-child(-n+3),
  .rating-4 svg:nth-child(-n+4),
  .rating-5 svg:nth-child(-n+5) {
    fill: #28a44a;
  }

  .tg-testimonial-ratings span {
    color: var(--tg-common-yellow);
    font-size: 18px;
    color: #28a44a !important;
    font-weight: bold;
}