/* === TESTIMONIALS SECTION === */
.hero-testimonials {
    position: relative;
    padding: 3.5rem 2rem;
    background: linear-gradient(135deg, #0b3313, #005c2c, #003d1f);
    border-top: 2px solid limegreen;
    border-bottom: 2px solid limegreen;
    box-shadow: 0 0 20px rgba(0, 230, 118, 0.5);
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    text-align: center;
    z-index: 1;
    color: white;
}

.hero-testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 100, 50, 0.3);
    z-index: 0;
    pointer-events: none;
}

/* === OVERLAY BOX === */
.overlay-bg {
    background-color: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    max-width: 900px;
    margin: 0 auto;
    color: black;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.2);
    border: 2px solid black;
    position: relative;
    z-index: 2;
}

/* === SLIDER WRAPPER === */
.swiper-wrapper {
    display: flex;
    align-items: stretch;
}

/* === SLIDE === */
.swiper-slide {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
    min-height: 250px;
    padding: 2rem;
    box-sizing: border-box;
}

/* === TESTIMONIAL BOX === */
.testimonial-box {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

/* === CONTENT === */
.testimonial-content {
    margin-bottom: 2rem;
    text-align: center;
}

.testimonial-content p {
    font-size: 1.25rem;
    font-style: italic;
    color: #222;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    margin: 0 auto;
}

/* ✅ blockquote style */
blockquote.testimonial-content {
    padding-left: 1rem;
    margin: 0 auto 2rem;
    font-size: 1.4rem;
    font-style: italic;
    color: #222;
    line-height: 1.6;
    max-width: 85%;
}

/* === AUTHOR === */
.author {
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    text-align: center;
}

.author p {
    margin: 0;
}

.author time {
    font-size: 0.85rem;
    color: #777;
    display: block;
    margin-top: 0.3rem;
}

/* === CTA BUTTON === */
.cta-button {
    /*margin-top: 1rem;*/
    background: #00c853;
    color: white;
    padding: 0.6rem 1.3rem;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: inline-block;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.cta-button:hover {
    background: limegreen;
    color: black;
    box-shadow: 0 0 16px 4px rgba(0, 255, 0, 0.4);
}

/* === SWIPER ARROWS === */
.swiper-button-next,
.swiper-button-prev {
    color: #00c853 !important;
    font-size: 1.6rem;
    filter: drop-shadow(0 0 2px #00c853);
    transition: transform 0.2s ease;
    background: transparent;
    border: none; /* ✅ since they are buttons now */
    cursor: pointer;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    transform: scale(1.1);
}

/* === Swiper Pagination Bullets === */
.swiper-pagination-bullet {
    background-color: #00c853 !important;
    opacity: 0.4;
    border: 1px solid #222;
    transition: opacity 0.3s ease;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background-color: limegreen !important;
}


@media (max-width: 1400px) {


    .hero-testimonials {
        display: none;
    }

}