.slider-container {
    position: relative;
    width: 100%;
    margin: auto;
    overflow: hidden;
    background: #00bcd4;
    padding: 20px;
    color: black;
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    text-align: center;
    padding: 2px;
    opacity: 0.5;
    transform: scale(0.45);
    transition: 1.95s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.quote {
    font-size: 22px;
    line-height: 1.3;
    max-width: 900px;
    margin: auto;
    font-weight: 400;
}

.author {
    margin-top: 18px;
    font-size: 20px;
    font-weight: 600;
}

.company {
    margin-top: -18px;
    font-size: 20px;
    font-weight: 600;
}

.role {
    font-size: 16px;
    opacity: 0.9;
}


.nav {
    position: absolute;
    top: 50%;
    background: white;
    color: #333;
    border: none;
    font-size: 22px;
    padding: 8px 18px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.prev-arrow { left: 10px; }
.next-arrow { right: 10px; }

.nav:hover {
    background: #222;
    color: white;
}