.page-title-section {
  position: relative;
  width: 100%;
 
}

.sp-page-title-bg {
  background-image: url('images/strips/Clientele.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  /* position: relative; */
  height: 200px;
}

.sp-page-title-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5); /* overlay */
  z-index: 1;
}

.sp-page-title-bg .container {
  position: relative;
  z-index: 2;
}

.page-title-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.page-title-section .breadcrumb {
  background: transparent;
  padding: 0;
margin-top: 100px!important;
}

.breadcrumb-item a {
  color: #ffd700!important;
  text-decoration: none;
  font-size: 20px;
}
.breadcrumb-item .active{
  font-size: 18px;
}
.breadcrumb-item a:hover {
  text-decoration: underline!important;
}


.testimonial-section {
  padding: 80px 0;
 
  background-size: auto, cover;
  background-position: top left, center;
  color: #fff;
  position: relative;
}

.testimonial-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:linear-gradient(135deg, #310101a9, #dc2c1c); 
  opacity: 0.9;
  z-index: 0;
}


.section-heading {
  position: relative;
    z-index: 1;
  text-align: center;
  color:#d5b06b;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 40px;
}

.testimonial-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  padding: 30px;
  background: rgba(213, 176, 107, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 20px;
  /* border: 1px solid  rgba(213, 176, 107, 0.3); */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  gap: 20px;
}

.client-image {
  flex: 0 0 35%;
}
.client-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}

.testimonial-content {
  flex: 0 0 60%;
  padding: 20px;
  background: rgba(49, 1, 1, 0.2); 
  border-radius: 15px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-content .quote {
  width: 30px;
  margin-bottom: 10px;
  filter: brightness(0) invert(1);
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonial-content .author {
  font-weight: bold;
  font-size: 1rem;
  color: #d5b06b;
}

.testimonial-content .position {
  font-size: 0.9rem;
  color: #ccc;
}

.carousel-control-prev,
.carousel-control-next {
  color:#d5b06b;
}
.carousel-control-prev:hover,
.carousel-control-next:hover {
  color:#ba2418;
}








.accordion-custom {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.accordion-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px;
  border: 1px solid #eee;
  cursor: pointer;
  box-shadow: 0 4px 15px rgb(0 0 0 / 10%);
  transition: all 0.3s ease;
}

.accordion-header h5 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-color);
}

.arrow-icon {
  font-size: 1.2rem;
  color:  rgb(211 177 109);
  transition: transform 0.3s ease;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  font-size: 0.95rem;
  color: #444;
  opacity: 0;
  transition: all 0.4s ease;
}


.accordion-card.active {
  background-color:   rgb(211 177 109);
  color: #fff;
}

.accordion-card.active .accordion-header h5,
.accordion-card.active .arrow-icon {
  color: #fff;
}

.accordion-card.active .accordion-content {
  color: #fff;
  max-height: 500px;
  opacity: 1;
}

/* Rotate Arrow */
.accordion-card.active .arrow-icon {
  transform: rotate(180deg);
}

/* Responsive tweak for small screens */
@media (max-width: 767.98px) {
  .accordion-header h5 {
    font-size: 1rem;
  }
  .accordion-content {
    font-size: 0.9rem;
  }
}






















@media (max-width: 768px) {
  .testimonial-container {
    flex-direction: column;
  }
  .client-image,
  .testimonial-content {
    flex: 0 0 100%;
  }
  .carousel-control-prev {
    left: -21px;
    top: -27px;
}
.carousel-control-next {
    color: #d5b06b;
    top: -45px;
    right: -26px;
}
}
