/* GCA Testimonial Slider Styles */
.gca-testimonial-slider {
    position: relative;
    max-width: 700px;
    margin: 40px auto;
    overflow: hidden;
}

.gca-slides-container {
    position: relative;
    min-height: 200px;
    padding-left: 3px;
}

.gca-slide {
    display: none;
    /* Hidden by default */
    padding: 20px 20px 20px 40px;
    /* Add padding to not overlap the quote */
    min-height: 100px;
    animation: gca-fade 0.8s ease-in-out;
}

@keyframes gca-fade {
    from {
        opacity: 0.4
    }

    to {
        opacity: 1
    }
}

.gca-testimonial-content {
    position: relative;
}

/* The large purple quote mark */
.gca-testimonial-content::before {
    content: '“';
    /* Using a more semantic opening quote */
    position: absolute;
    top: -25px;
    left: -45px;
    font-size: 100px;
    line-height: 1;
    color: #404057;
    /* Purple */
    font-family: 'Georgia', serif;
    z-index: -1;
    opacity: 0.8;
}

.gca-testimonial-content p {
    font-size: 18px;
    font-style: italic;
    line-height: 1.6;
    color: #333;
}

/* Navigation dots */
.gca-dots-container {
    text-align: right;
    /* Aligned to the right */
    padding: 15px 0;
}

.gca-dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 4px;
    background-color: transparent;
    border: 2px solid #b4b4b4 !important;
    /* Light grey outline */
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* Active/focused dot */
.gca-dot.active {
    border-color: #bd4577;
    /* Purple outline */
    background-color: #bd4577;
    /* Purple fill */
}