.slider {
    width: 100%;
    max-width: 1200px;
    height: 300px;
    margin: auto;
    position: relative;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: #163441;
    overflow: hidden;
}

.content {
    width: 80%;
    max-width: 900px;
    height: 200px;
    margin: 50px auto;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.testimonial-container {
    position: absolute;
    width: 500%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    transition: transform 1s ease-in-out;
}

.testimonial-slide {
    width: 20%;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 0 20px;
    flex-shrink: 0;
}

.imageWrapper {
    flex-shrink: 0;
}

.imageContainer {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    background: #163441;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.imageContainer img {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
}

.info {
    flex: 1;
}

.info p {
    font-size: 16px;
    line-height: 1.3;
    color: #333;
    /* margin-bottom: 15px; */
    /* font-style: italic; */
}

.info h4 {
    font-size: 18px;
    color: #2c3e50;
    font-weight: bold;
}

.slider .buttons {
    position: absolute;
    top: 45%;
    left: 5%;
    width: 90%;
    display: flex;
    justify-content: space-between;
    z-index: 10;
}

.slider .buttons button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border: none;
    font-family: monospace;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.slider .buttons button:hover {
    background: white;
    transform: scale(1.1);
}

.slider .dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    color: #fff;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.slider .dots li {
    list-style: none;
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 8px;
    border-radius: 20px;
    transition: 0.5s ease;
    cursor: pointer;
}

.slider .dots li.active {
    width: 30px;
    background-color: white;
}

@media screen and (max-width: 768px) {
    .slider {
        height: 420px;
    }

    .content {
        width: 90%;
        height: 360px;
        margin: 50px auto;
        padding: 30px 20px;
    }

    .testimonial-slide {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 0 10px;
    }

    .info p {
        font-size: 14px;
    }

    .info h4 {
        font-size: 16px;
    }


    .slider .dots {
        display: none;
    }

    .slider .buttons {
        position: absolute;
        bottom: 0;
        display: flex;
        justify-content: unset;
        align-items: center;
        justify-content: center;
        padding: 0;
        gap: 6px;
        top: unset;
    }

    /* .slider .buttons {
        position: absolute;
        left: 5%;
        width: 90%;
        display: flex;
        justify-content: space-between;
        z-index: 10;
    } */

}