.testimonialSection {
    padding: 100px 0;
    background-color: #f8fafd;
    position: relative;
    overflow: hidden;
}

/* Decorative Background Circles (optional, Ulina style) */
.testimonialSection::before,
.testimonialSection::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background-color: #e2eeef;
    z-index: 0;
}
.testimonialSection::before {
    width: 300px; height: 300px;
    bottom: -150px; left: 50px;
}
.testimonialSection::after {
    width: 759px;
    height: 759px;
    top: -57px;
    right: 58px;
}

/* Left Column */
.testimoniLeft {
    position: relative;
    z-index: 1;
}
.testimoniLeft .secTitle {
    font-size: 30px;
    font-weight: 400;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.3;
}
.testimoniLeft .secDesc {
    color: #777;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
}
.testimoniLeft .testimonalNav button {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid #cbd5e0;
    color: #4a5568;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}
.testimoniLeft .testimonalNav button:hover {
    background-color: #4a5568;
    color: #fff;
}

/* Right Column - Slider */
.testimonialSliderWrap {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.testimonialCarousel .testimonialItem01 {
    background: #fff;
    padding: 38px 44px;
    border-radius: 5px;
    margin: 0 !important;
    height: 100%;
}
.testimonialItem01 .ti01Header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.testimonialItem01 .ulina-quote {
    font-size: 2.5rem;
    color: #a0aec0;
}
.testimonialItem01 .ti01Rating i {
    color: #fbbf24; /* yellow stars */
    margin-left: 2px;
}
.testimonialItem01 .ti01Content {
    color: #555555a1;
    font-weight: 400;
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}
.testimonialItem01 .ti01Author {
    display: flex;
    align-items: center;
}
.testimonialItem01 .ti01Author img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50% !important;
    margin-right: 15px;
}
.testimonialItem01 .ti01Author h3 {
    font-size: 1rem;
    margin: 0;
}
.testimonialItem01 .ti01Author span {
    font-size: 0.8rem;
    color: #777;
}
.testimonialCarousel .testimonialItem01 {
    display: block; 
    width: 100%;   
}
.testimonialDots {
    display: flex;
    gap: 10px;
    margin-top: 30px !important;
    margin-left: 16px;
}

.testimonialDots .owl-dot {
    width: 8px;
    height: 8px;
    background: #cbd5e0;
    border-radius: 50%;
}

.testimonialDots .owl-dot.active {
    background: transparent;
    border: 1px solid #4a5568;
    transform: scale(1.3);
}

.quoteIcon {
    font-size: 2.5rem;
    color: #a0aec0;
    line-height: 1;
}
.testimonialCarousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.testimonialCarousel .owl-item {
    display: flex;
    height: auto !important;
}

@media (max-width: 768px) {
   .testimonialSection::after {
 display: none;
   }
   .testimonialDots {
    display: none;
   }
   .testimoniLeft .secDesc {
    font-size: 16px;
   }
   .testimoniLeft .secTitle {
    font-size: 21px;
   }
   .testimonialSection {
    padding: 50px 0;
   }
   .testimonalNav {
    display: flex;
    justify-content: center;
    gap: 11px;
   }
   .testimoniLeft {
    text-align: center;
   }
}
@media (max-width: 991px) {
   .testimonialSection::after {
 display: none;
   }
  
}
