/* Nhonly Testimonial Slider Styles */
.nh-testimonial-slider-wrapper {
    position: relative;
    padding: 40px 0;
}

.nh-testimonial-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 50px 40px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(10px);
}

.nh-testimonial-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.nh-testimonial-quote {
    color: #e0e0e0;
    font-size: 1.15rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 35px;
    position: relative;
    font-weight: 300;
}

.nh-testimonial-quote::before {
    content: '“';
    position: absolute;
    top: -20px;
    left: -15px;
    font-size: 4rem;
    color: rgba(212, 175, 55, 0.2);
    font-family: serif;
}

.nh-testimonial-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nh-testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.4);
}

.nh-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nh-testimonial-info h4 {
    color: #ffffff !important;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.nh-testimonial-info span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Owl Carousel Custom for Testimonials */
.nh-testimonial-slider .owl-stage-padding {
    padding: 20px 0 !important;
}

.nh-testimonial-slider .owl-nav {
    display: none;
    /* We will use dots or custom nav if needed */
}

.nh-testimonial-slider .owl-dots {
    margin-top: 50px !important;
    text-align: center;
}

.nh-testimonial-slider .owl-dot span {
    width: 10px !important;
    height: 10px !important;
    background: rgba(255, 255, 255, 0.2) !important;
    margin: 5px 7px !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
}

.nh-testimonial-slider .owl-dot.active span {
    background: #D4AF37 !important;
    width: 30px !important;
    border-radius: 10px !important;
}

/* Airy spacing for items */
.nh-testimonial-slider .owl-item {
    padding: 0 15px;
}

@media (max-width: 768px) {
    .nh-testimonial-item {
        padding: 40px 30px;
    }

    .nh-testimonial-quote {
        font-size: 1rem;
    }
}