/* --- Unique Testimonial Slider Styles --- */
.testimonial-widget-unique {
    /* ডিফল্ট কালার (এলিমেন্টর থেকে চেঞ্জ হবে) */
    --testimonial-primary: #0047AB;
    --testimonial-text: #000000;
    --testimonial-muted: #6b7280;
    --testimonial-star: #f59e0b;
    --testimonial-bg: #ffffff;
    --testimonial-shape: #ECF4FE;
    
    font-family: 'Open Sans', sans-serif;
    overflow: hidden;
    position: relative;
}

.testimonial-widget-unique * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.testimonial-section-unique {
    padding: 60px 0;
    display: flex;
    justify-content: center;
    background: var(--testimonial-bg);
}

.testimonial-inner-unique {
    width: 100%;
    display: grid;
    grid-template-columns: 35% 60%; /* লেআউট ফিক্সড */
    gap: 5%;
    align-items: center;
}

/* LEFT SIDE */
.testimonial-left-unique .testimonial-heading-unique {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--testimonial-text);
    margin-bottom: 15px;
}

.testimonial-left-unique .testimonial-subtitle-unique {
    font-size: 15px;
    color: var(--testimonial-muted);
    line-height: 1.6;
    margin-bottom: 30px;
}

.testimonial-controls-unique {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-nav-btn-unique {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: 0.3s;
}

.testimonial-prev-unique {
    background: #f0f2f5;
    color: #333;
}

.testimonial-next-unique {
    background: var(--testimonial-primary);
    color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial-dots-unique {
    display: flex;
    gap: 5px;
}

.testimonial-dot-unique {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: 0.3s;
}

.testimonial-dot-unique.active {
    width: 20px;
    border-radius: 10px;
    background: var(--testimonial-primary);
}

/* RIGHT SIDE (Cards) */
.testimonial-right-unique {
    position: relative;
    height: 350px; /* হাইট ফিক্সড */
}

/* Blue Shape Background */
.testimonial-right-unique::before {
    content: "";
    position: absolute;
    top: -20px;
    bottom: -20px;
    right: 0;
    width: 80%;
    background: var(--testimonial-shape);
    border-radius: 30px;
    z-index: 0;
}

.testimonial-cards-wrapper-unique {
    position: relative;
    z-index: 1;
    height: 100%;
    padding: 20px;
}

.testimonial-cards-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* CARD DESIGN */
.testimonial-card-unique {
    position: absolute;
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    gap: 15px;
    transition: all 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.testimonial-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.5;
    color: var(--testimonial-text);
    margin-bottom: 10px;
}

.testimonial-stars {
    color: var(--testimonial-star);
    font-size: 14px;
    margin-bottom: 5px;
}

.testimonial-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--testimonial-primary);
}

/* POSITIONS FOR ANIMATION */
.card-top {
    top: 0;
    right: 0;
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.card-bottom {
    top: 140px; /* নিচে থাকবে */
    left: 0;
    opacity: 1;
    transform: scale(0.95);
    z-index: 1;
    filter: blur(0px); /* অপশনাল */
}

/* Hidden States */
.card-exit-up {
    top: -50px;
    opacity: 0;
    transform: scale(0.9);
}

.card-exit-down {
    top: 200px;
    opacity: 0;
    transform: scale(0.9);
}

.card-enter-top {
    top: -20px;
    opacity: 0;
    transform: scale(0.9);
}

.card-enter-bottom {
    top: 160px;
    opacity: 0;
    transform: scale(0.9);
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-inner-unique {
        grid-template-columns: 1fr;
    }
    .testimonial-right-unique::before {
        width: 100%;
    }
    .testimonial-card-unique {
        width: 100%;
    }
}
