
/* ---------- REVIEWS SECTION --------- */
.review-section {
    background: #aee0c4;
    padding: 50px 0;
    position: relative;
}

.review-box {
    background: #ffffff;          /* solid white */
    padding: 40px;
    max-width: 850px;
    margin: auto;
    border-radius: 10px;
    color: #1e3d32;
    text-align: center;
    min-height: 230px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    position: relative;
}

.review-stars {
    color: #ffcc33;
    margin-bottom: 15px;
}

.arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    border: none;
    outline: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.20);
}

.arrow-left { left: 20px; }
.arrow-right { right: 20px; }

.review-dots {
    margin-top: 18px;
}

.review-dots span {
    height: 10px;
    width: 10px;
    background: #555;
    border-radius: 50%;
    display: inline-block;
    margin: 0 4px;
    opacity: 0.3;
}

.review-dots .active {
    opacity: 1;
}

