.star-rating {
    color: #00b67a; /* default green for most ratings */
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.star-rating .star {
    font-weight: 700;
}
.star-rating .star.empty {
    color: #d4d4d4; /* grey for empty stars */
}

/* Color overrides */
.star-rating .yellow-stars {
    color: #f7bd1b; /* yellow for 3 stars */
}
.star-rating .red-stars {
    color: red; /* red for 1 star */
}

/* Keep your existing styles */
.review-card {
    border: none;
    border-radius: 0;
    padding: 0 1rem;
    margin-bottom: 30px;
    width: 100%;
    background: #f7f7f7;
    padding: 20px;
}
.review-header {
    font-weight: 600;
    font-size: 13px;
}
.review-text {
    font-size: 11px;
    color: #444;
}
.review-author {
    font-weight: 600;
    font-size: 11px;
    margin-top: 0.5rem;
    color: #222;
}
.verified {
    font-size: 10px;
    color: #666;
    font-weight: 600;
    margin-left: 0.25rem;
}
.trustpilot-logo {
    color: #00b67a;
    font-weight: 700;
    font-size: 1.5rem;
    margin-top: 1rem;
}
.review-date {
    font-size: 0.7rem;
    color: #777;
    text-transform: uppercase;
}
/* Controls color */
.carousel-control.left, .carousel-control.right {
    background-image: none;
    color: #00b67a;
    font-size: 16px;
}
/* Make carousel-inner height auto */
.carousel-inner {
    min-height: 250px;
}


  /* Only target h1 with .neon-box */
  h1.neon-box {
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 3rem;
    color: #fff;
    /* display: inline-block; */
    position: relative;
    padding: 20px 50px;
    border-radius: 12px;
    user-select: none;
  }

  h1.neon-box > text.title-txt-deals{
    position: relative;
    color: #ff3f3f;
    z-index: 1;
  }

  h1.neon-box::before {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 12px;
    background: linear-gradient(
      270deg,
      #ff3f3f,
      #ffb347,
      #ff3f3f,
      #ffb347
    );
    background-size: 400% 400%;
     animation: neonBorderMove 6s linear infinite; /* slower */
    z-index: 0;
    filter: drop-shadow(0 0 10px #ff3f3f);
  }

  h1.neon-box::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    background: #ffffff; /* Keeps background black inside the box */
    border-radius: 8px;
    z-index: 0;
  }

  @keyframes neonBorderMove {
    0% {
      background-position: 0% 50%;
    }
    100% {
      background-position: 400% 50%;
    }
  }

    .blink {
    animation: blinkAnimation 1.5s infinite;
  }

  @keyframes blinkAnimation {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }