.testimonial-slider-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px; /* Increased gap for breathing room */
}
 
.testimonial-video {
    flex: 1;
}
 
.testimonial-content {
    flex: 1.5; /* Adjusted ratio for better balance */
}
 
.testimonial-header {
    margin-bottom: 2rem;
}
 
.header-text {
    margin-bottom: 0.5rem;
    color: #123b66; /* Ensuring brand color consistency */
}
 
/* Slider Section */
#slider-container {
    position: relative;
/*     min-height: 250px; /* Prevents page jump if slides vary in height */ */
}
 
.testimonial-slide {
    background-color: #e9f3f9; /* Changed to white for better contrast against gray pages */
    border-left: 5px solid #164577; /* accent border */
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* Softer, more modern shadow */
    width: 100%;
    position: relative;
/*     overflow: hidden; */
}

.testimonoial--quote-icon svg {
    width: 50px;
    fill: #164577;
}
 
/* Visual Enhancement: Large Quote Icon Background */
.testimonial-slide::before {
/*     content: '“';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 120px;
    line-height: 1;
    color: #164577;
    font-family: serif;
    z-index: 0;
    pointer-events: none; */
}
 
.testimonial-slide > * {
    position: relative; /* Brings text above the quote icon */
    z-index: 1;
}
 
/* Animation Class */
.fade {
    animation-name: fadeEffect;
    animation-duration: 0.8s;
}
 
@keyframes fadeEffect {
    from {opacity: 0; transform: translateY(10px);} 
    to {opacity: 1; transform: translateY(0);}
}
 
.industry-text {
    margin-bottom: 1rem;
    color: #164577;
/*     text-transform: uppercase; */
/*     letter-spacing: 1px; */
}
 
.quote-text {
/*     line-height: 1.6; */
/*     font-size: 1.1rem; */
    font-style: italic;
    margin-bottom: 1.5rem;
/*     color: #333; */
}
 
/* Navigation Section */
.slider-nav {
    display: flex;
    justify-content: flex-end; /* Keeps buttons right-aligned */
    align-items: center;
    margin-top: 1.5rem;
}
 
.author-info {
    margin-top: 1rem;
    font-size: 0.95rem;
}
 
.author-name {
    font-weight: bold;
/*     color: #123b66; */
}
 
.author-org {
/*     color: #666; */
}
 
.nav-buttons {
    display: flex;
    gap: 1rem;
}
 
.testimonials-nav button {
    width: 45px; /* Slightly smaller for elegance */
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #123b66;
    color: #123b66;
    background-color: transparent;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s;
    padding: 0;
}
 
.testimonials-nav button:hover {
    background-color: #123b66;
    box-shadow: 0 4px 6px rgba(18, 59, 102, 0.2);
}
 
.nav-buttons button img {
    width: 20px; /* Ensure arrow size is controlled */
    transition: filter 0.3s;
}
 
.nav-buttons button:hover img {
    filter: brightness(0) invert(1);
}
 
@media (max-width: 768px) {
    .testimonial-slider-container {
        flex-direction: column-reverse;
    }
    .testimonial-slide {
        padding: 1.5rem;
    }
}