body.testimonials-page section.testimonials {
    padding: 3rem 1.5rem;
    background-color: #f4f9fc;
    text-align: center;
    font-family: 'Noto Sans', sans-serif;
}

body.testimonials-page #testimonials-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-family: 'Roboto', sans-serif;
}

/* Trust Index verification section */
.testimonial-verification {
    max-width: 700px;
    margin: 0 auto 2rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.trust-logo {
  max-width: 95px;
  height: auto;
}

.testimonial-verification p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}


/* Slider container - this hides the overflowing slides */
.testimonial-slider {
    position: relative;
    max-width: 800px; /* Max width of the slider */
    margin: 0 auto;
    overflow: hidden; /* This is crucial! */
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* This track holds all the slides in a row */
.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out; /* This creates the slide animation */
}

/* Each individual slide */
.testimonial-slide {
    min-width: 100%;
    box-sizing: border-box;
    background-color: #ffffff;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.testimonial-image {
    width: 120px;
    height: 120px;
    border-radius: 50%; /* Makes the image circular */
    object-fit: cover; /* Prevents image distortion */
    border: 4px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.testimonial-content p {
    font-size: Clamp(0.85rem, 2vw, 1.1rem);
    color: #555;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

.testimonial-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-top: 1rem;
}

/* Styling for the < and > navigation buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    color: #2c3e50;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background-color: rgba(255, 255, 255, 1);
}

.slider-btn.prev {
    left: 10px;
}

.slider-btn.next {
    right: 10px;
}

@media (max-width:1250px) {
  	body {
    padding-top: 100px;
  }
}