/* OUTER SECTION */
.cdc-testimonial-wrapper {
    background: #824E35;
    padding: 0px 20px;
    text-align: center;
    color: white;
    position: relative;
}

/* CENTER BOX */
.cdc-testimonial-slider {
    position: relative;
    background: #CA9178;
    border-radius: 15px;
    padding: 60px 50px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
	text-align: center;
}

/* SLIDES */
.cdc-testimonial-item {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.6s ease;
}

.cdc-testimonial-item.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

/* ⭐ PROFESSIONAL YELLOW STARS */
.cdc-stars {
    font-size: 28px;
    margin-bottom: 20px;
    letter-spacing: 5px;
    color: #FFD700; /* professional gold */
    text-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* REVIEW TEXT */
.cdc-review {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: white;
}

/* AVATAR */
.cdc-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #824E35, #5e3427);
    color: #fff;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
}

/* NAME */
.cdc-name {
    margin: 0;
    font-weight: 600;
    color: white;
}

/* DESIGNATION */
.cdc-designation {
    font-size: 14px;
    opacity: 0.8;
    color: white;
}

/* ✅ ARROWS (VISIBLE + OUTSIDE) */
.cdc-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #824E35;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Position */
.cdc-arrow.left {
    left: -70px;
}

.cdc-arrow.right {
    right: -70px;
}

/* Hover Effect */
.cdc-arrow:hover {
    background: #CA9178;
    color: #824E35;
    transform: translateY(-50%) scale(1.1);
}

/* PAGINATION */
.cdc-pagination {
    margin-top: 40px;
}

.cdc-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

/* ACTIVE DOT WITH GRADIENT */
.cdc-dot.active {
    background: linear-gradient(45deg, #CA9178, #824E35);
    transform: scale(1.3);
}