
.testimonials-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.testimonial-carousel-container {
    overflow: hidden; /* Hide slides that are off-screen */
    margin: 3rem auto;
    max-width: 100%;
    position: relative;
}

.testimonial-carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out; /* Smooth sliding transition */
}

.testimonial-slide {
    flex: 0 0 100%; /* Each slide takes up 100% of the container width */
    min-width: 100%;
    display: flex; /* For centering content within the slide */
    justify-content: center;
    align-items: center;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    max-width: 700px; /* Max width for the testimonial card */
    margin: 0 auto;
    text-align: center;
}

.testimonial-quote {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.testimonial-author {
    font-size: 1.1rem;
    color: #000;
}

.testimonial-company {
    color: #C5A344; /* Use Gold for company name */
}

/* For mobile view: Ensure the card doesn't look too wide */
@media screen and (max-width: 768px) {
    .testimonial-card {
        padding: 1.5rem;
        max-width: 90%;
    }
    .testimonial-quote {
        font-size: 1rem;
    }
}
/* --- 6. Testimonials Navigation Arrows Styling (NEW) --- */

.testimonial-carousel-container {
    /* Ensure arrows are positioned relative to this container */
    position: relative; 
    /* ... existing styles ... */
}

.nav-arrow {
    position: absolute;
    top: 50%; /* Center vertically */
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6); /* Dark background */
    color: white;
    border: none;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    transition: background-color 0.3s;
}

.nav-arrow:hover {
    background: #C5A344; /* Gold hover color */
}

.nav-left {
    left: 20px;
}

.nav-right {
    right: 20px;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .nav-arrow {
        width: 30px;
        height: 30px;
        padding: 0.5rem 0.3rem;
        font-size: 1rem;
    }
    .nav-left {
        left: 5px;
    }
    .nav-right {
        right: 5px;
    }
}
.testimonial-carousel-wrapper {
    display: flex; /* CRITICAL: Must be flex to arrange slides horizontally */
    transition: transform 0.5s ease-in-out; /* CRITICAL: For smooth movement */
}

.testimonial-slide {
    flex: 0 0 100%; /* CRITICAL: Ensures each slide takes full width */
    min-width: 100%;
    /* ... other styles ... */
}



