.bg-pink {
    background-color: #F1DCD7;
}

body {
  background: #f4f4f4;
  font-family: Arial, sans-serif;
}

/* Button */
.payment-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 24px 12px 12px;
  border: none;
  border-radius: 999px;
  background: #ffffff;
  cursor: pointer;
  overflow: hidden;
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

/* Sliding green background */
.bg-slide {
  position: absolute;
  left: 0;
  top: 0;
  width: 56px;
  height: 100%;
  background: #22c55e;
  border-radius: 999px;
  transition: width 0.45s ease;
  z-index: 0;
}

/* Icon */
.icon {
  position: relative;
  z-index: 1;
  background: #22c55e;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 16px;
}

/* Text */
.text {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

/* Hover animation */
.payment-btn:hover .bg-slide {
  width: 100%;
}

.payment-btn:hover .text {
  color: #fff;
}

.gpay-btn {
  padding: 16px 48px;
  background: #f6dcd3;
  color: #000;
  font-size: 22px;
  font-weight: 700;
  border: none;
  border-radius: 0 0 60px 0;
  cursor: pointer;
}

.catalog-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 28px 14px 14px;
  background: #ffffff;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  overflow: hidden;
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

/* Sliding background */
.catalog-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 56px;
  height: 100%;
  background: #F1DCD7;
  border-radius: 999px;
  transition: width 0.45s ease;
  z-index: 0;
}

/* Left circle icon */
.catalog-icon {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  background: #F1DCD7;
  color: black;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 16px;
}

/* Text */
.catalog-label {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

/* Hover effect */
.catalog-btn:hover .catalog-fill {
  width: 100%;
}

.catalog-btn:hover .catalog-label {
  color: black;
}

.slider {
  animation: slide 16s infinite;
}

.slider img {
  object-fit: cover;
}

@keyframes slide {
  0%, 13%    { transform: translateX(0%); }
  16%, 29%   { transform: translateX(-100%); }
  32%, 45%   { transform: translateX(-200%); }
  48%, 61%   { transform: translateX(-300%); }
  64%, 77%   { transform: translateX(-400%); }
  80%, 100%  { transform: translateX(-500%); }
}

.text-brand{
  color: #535461;
}

/*Custom Button  */
.btn-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.catalog-btn {
  background-color: #F1DCD7;
  color: #535461;
  border: none;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 9999px; /* pill shape */
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.catalog-btn:hover {
  background-color: #e9cdc7;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.catalog-btn:active {
  transform: scale(0.96);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

.catalog-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(241, 220, 215, 0.6);
}

/* Testimonial Section */
.client-love {
  background: #F1DCD7;
  /* padding: 20px 20px; */
  color: #535461;
}

.font-italic{
  font-style: italic;
}

.section-title {
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 20px;
  padding: 10px 0px
}

/* SLIDER WRAPPER */
.testimonial-slider-wrapper {
  overflow: hidden;
  width: 100%;
}

/* SLIDER TRACK */
.testimonial-slider {
  display: flex;
  transition: transform 0.7s ease-in-out;
}

/* EACH SLIDE */
.testimonial {
  min-width: 100%;
  max-width: 100%;
  padding: 0px 30px 20px 30px;
  position: relative;
}

/* Existing styles (keep yours if already present) */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.header h3 {
  font-size: 22px;
  margin: 0;
}

.client-love-bg {
  background-image: url('./assets/testimonials/tsk-banner-client.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.header span {
  font-size: 16px;
  opacity: 0.8;
}

.stars {
  font-size: 22px;
  letter-spacing: 4px;
}

.testimonial p {
  font-size: 17px;
  line-height: 1.6;
  max-width: 750px;
}

.testimonial p.font-italic {
    position: relative;
    font-style: italic;
}

.testimonial p.font-italic::before {
    content: "“";
    margin-right: 1px;
    font-size: x-large;
}

.testimonial p.font-italic::after {
    content: "”";
    /* margin-left: 1px; */
    font-size: x-large;
}


/* .quote {
  position: absolute;
  font-size: 100px;
  opacity: 0.15;
  font-family: serif;
}

.quote.top {
  top: -40px;
  left: 0;
}

.quote.bottom {
  bottom: -70px;
  right: 0;
} */

@media (max-width: 768px) {
  .testimonial p {
    font-size: 18px;
  }

  .header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
