/* General Testimonial Slider Container */
.testimonial-slider-container {
   
    color: #fff;
    position: relative; /* For positioning arrows */
}

/* Testimonial Title */
.testimonial-slider-container h2.section-title { /* Assuming you'll add a title like 'TESTIMONIALS' */
    text-align: center;
    color: #f7931e; /* Orange color */
    font-size: 2.5em;
    margin-bottom: 50px;
    text-transform: uppercase;
    font-weight: bold;
}

/* Swiper Slide Styling */
.testimonial-swiper .swiper-slide {
    background-color: #5a2e1d; /* Darker brown for testimonial boxes */
    border-radius: 10px;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
 
    transition: all 0.3s ease;
    opacity: 0.5; /* Dim inactive slides */
    transform: scale(0.9); /* Slightly smaller inactive slides */
   margin-bottom: 60px;
}

/* Active Slide Styling */
.testimonial-swiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    background-color: #7a3e29; /* Slightly lighter active box */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); /* Optional: add shadow to active */
}

/* Inner content of testimonial slide */
.testimonial-slide-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Quote Icons */
.quote-icon-left,
.quote-icon-right {
    font-size: 4em; /* Large quote icons */
    color: yellow; /* Orange color */ /* This sets the color to orange/yellow */
    line-height: 0.5;
    font-family: serif; /* For a classic quote look */
    margin-bottom: 0 !important;
}
.quote-icon-left {
    align-self: flex-start;
    
}
.testimonial-box-inside {
        display: flex;
    gap: 5px;
}
.quote-icon-right {
    align-self: flex-end;
   
}

/* Testimonial Quote */
.testimonial-quote {
    line-height: 22px;
    font-size: 16px;
}
/* Testimonial Author */
.testimonial-author {
    font-weight: bold;
    color: #fff; /* Orange color */
  
    text-transform: uppercase;
}

/* Star Rating */
.testimonial-stars {
    margin-top: 10px;
    color: yellow; /* Orange for stars */ /* This sets the color to orange/yellow */
}

.star-icon {
    font-size: 1.2em;
    margin: 0 2px;
}

.testimonial-swiper-button-prev,
.testimonial-swiper-button-next {
    /* Remove text-based styling */
    /* color: #fff; */ /* REMOVE THIS LINE */
    /* font-size: 3em; */ /* REMOVE THIS LINE */

    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
    width: 60px; /* Adjust width to fit your arrow images */
    height: 60px; /* Adjust height to fit your arrow images */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; /* Keep if you want a circular hover/background effect */
    transition: background-color 0.3s ease; /* Keep if you have a hover background */

    /* Add background image properties */
    background-repeat: no-repeat;
    background-size: contain; /* Ensures the image fits within the element */
    background-position: center; /* Centers the image within the element */
}

.testimonial-swiper-button-prev {
    left: 0px; /* Adjust position as needed */
    background-image: url('http://riyanshplywood.samparksolution.com/wp-content/uploads/2025/07/Asset-12.png');
}

.testimonial-swiper-button-next {
    right: 0px; /* Adjust position as needed */
    background-image: url('http://riyanshplywood.samparksolution.com/wp-content/uploads/2025/07/Asset-13.png');
}


/* Swiper Pagination Dots */
.testimonial-swiper-pagination {
    position: absolute;
    bottom: 20px;
    left: 50% !important;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    width: 100%; /* This helps ensure the flex container centers its items */
}

.testimonial-swiper-pagination .swiper-pagination-bullet {
    background: #5a2e1d; /* Inactive dot color (dark brown) */
    opacity: 1; /* Ensure visibility */
    margin: 0 5px;
    width: 10px;
    height: 10px;
    transition: background-color 0.3s ease, width 0.3s ease;
}

.testimonial-swiper-pagination .swiper-pagination-bullet-active {
    background: #f7931e; /* Active dot color (orange) */
    width: 25px; /* Wider active dot */
    border-radius: 5px; /* Rounded rectangle */
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .testimonial-swiper-button-prev,
    .testimonial-swiper-button-next {
        font-size: 2em;
        width: 30px;
        height: 30px;
          bottom: -15px !important;
    top: inherit;
    }
    .testimonial-swiper-button-prev { left: 10px; } /* Adjust for smaller screens */
    .testimonial-swiper-button-next { right: 10px; } /* Adjust for smaller screens */
    .testimonial-swiper .swiper-slide {
        padding: 20px;
    }
    .testimonial-quote {
        font-size: 1em;
    }
  
}