/*--------------------------------------------------------------
# Testimonial One
--------------------------------------------------------------*/
.testimonial-one {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    z-index: 1;
}

.testimonial-one__carousel {
    position: relative;
    display: block;
}

.testimonial-one__carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.testimonial-one__single {
    position: relative;
    display: block;
    border: 1px solid var(--gorent-bdr-color);
    border-radius: var(--gorent-bdr-radius);
    padding: 25px 30px 25px;
    z-index: 1;
}

.testimonial-one__client-info {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.testimonial-one__img {
    position: relative;
    display: block;
    overflow: hidden;
    width: 80px;
    border-radius: 50%;
    z-index: 1;
}

.testimonial-one__img img {
    border-radius: 50%;
}

.testimonial-one__content {
    position: relative;
    display: block;
    flex: 1;
}

.testimonial-one__client-name {
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 5px;
}

.testimonial-one__client-name a {
    color: var(--gorent-black);
}

.testimonial-one__client-name a:hover {
    color: var(--gorent-base);
}

.testimonial-one__rating {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 10px;
}

.testimonial-one__rating span {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 15px;
    color: var(--gorent-base);
}

.testimonial-one__quote {
    position: absolute;
    top: -1px;
    right: -1px;
    height: 60px;
    width: 60px;
    background-color: var(--gorent-base);
    border-radius: 50%;
    border-top-right-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.testimonial-one__single:hover .testimonial-one__quote {
    background-color: var(--gorent-black);
}

.testimonial-one__quote span {
    font-size: 22px;
    color: var(--gorent-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.testimonial-one__single:hover .testimonial-one__quote span {
    color: var(--gorent-white);
}

.testimonial-one__carousel .owl-nav {
    position: absolute;
    top: -160px;
    right: 0;
    margin: 0 !important;
}

.testimonial-one__carousel.owl-theme .owl-nav .owl-next {
    position: relative;
    display: inline-block;
    height: 60px;
    width: 60px;
    line-height: 60px;
    border-radius: 50%;
    color: var(--gorent-white);
    background-color: var(--gorent-base);
    border: none;
    font-size: 20px;
    margin: 0;
    text-align: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.testimonial-one__carousel.owl-theme .owl-nav .owl-prev {
    position: relative;
    display: inline-block;
    height: 60px;
    width: 60px;
    line-height: 60px;
    border-radius: 50%;
    color: var(--gorent-white);
    background-color: var(--gorent-base);
    border: none;
    font-size: 20px;
    margin: 0;
    text-align: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.testimonial-one__carousel.owl-theme .owl-nav .owl-next {
    margin-left: 5px;
}

.testimonial-one__carousel.owl-theme .owl-nav .owl-prev {
    margin-right: 5px;
}

.testimonial-one__carousel.owl-theme .owl-nav .owl-next span,
.testimonial-one__carousel.owl-theme .owl-nav .owl-prev span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-one__carousel.owl-theme .owl-nav .owl-next:hover,
.testimonial-one__carousel.owl-theme .owl-nav .owl-prev:hover {
    background-color: rgba(var(--gorent-black-rgb), 1);
    color: var(--gorent-white);
}

/*--------------------------------------------------------------
# Testimonial Two
--------------------------------------------------------------*/
.testimonial-two {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    overflow: hidden;
    z-index: 1;
}

.testimonial-two:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(var(--gorent-extra-rgb), .30);
    z-index: -1;
}

.testimonial-two__shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    opacity: .09;
    z-index: -1;
}

.testimonial-two__shape-1 img {
    width: auto;
}

.testimonial-two__shape-2 {
    position: absolute;
    bottom: 0;
    right: -40px;
    opacity: 0.2;
    z-index: -1;
}

.testimonial-two__shape-2 img {
    width: auto;
}

.testimonial-two .section-title {
    margin-bottom: 90px;
}

.testimonial-two__carousel {
    position: relative;
    display: block;
}

.testimonial-two__carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.testimonial-two__carousel.owl-carousel .owl-item {
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms ease, visibility 500ms ease;
}

.testimonial-two__carousel.owl-carousel .owl-item.active {
    opacity: 1;
    visibility: visible;
}

.testimonial-two__single {
    position: relative;
    display: block;
    background-color: var(--gorent-white);
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
    padding: 59px 30px 22px;
    border-radius: var(--gorent-bdr-radius);
    border-top: 10px solid var(--gorent-base);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 2;
}

.testimonial-two__single:hover {
    transform: translateY(-10px);
    border-top: 10px solid var(--gorent-black);
}

.testimonial-two__img {
    position: absolute;
    top: -50px;
    right: 49px;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
    z-index: 1;
}

.testimonial-two__img:before {
    background-color: var(--gorent-base);
    border-radius: 120px 120px 0 0;
    content: "";
    height: 50%;
    left: -10px;
    right: -10px;
    position: absolute;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: -1;
}

.testimonial-two__single:hover .testimonial-two__img:before {
    background-color: var(--gorent-black);
}

.testimonial-two__img img {
    width: 100%;
    border-radius: 50%;
    border: 5px solid var(--gorent-white);
}

.testimonial-two__client-info {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    margin-top: 22px;
}

.testimonial-two__client-content {
    position: relative;
    display: block;
}

.testimonial-two__client-name {
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.testimonial-two__client-name a {
    color: var(--gorent-black);
}

.testimonial-two__client-name a:hover {
    color: var(--gorent-base);
}

.testimonial-two__rating {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.testimonial-two__rating span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--gorent-base);
}

.testimonial-two__text {
    font-size: 17px;
    font-weight: 400;
    line-height: 29px;
    color: var(--gorent-gray);
}

.testimonial-two__quote {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    background-color: var(--gorent-base);
    margin-top: -66px;
    margin-bottom: 20px;
    margin-left: -30px;
    border-bottom-right-radius: var(--gorent-bdr-radius);
    border-top-left-radius: var(--gorent-bdr-radius);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.testimonial-two__single:hover .testimonial-two__quote {
    background-color: var(--gorent-black);
}

.testimonial-two__quote span {
    position: relative;
    display: inline-block;
    font-size: 22px;
    line-height: 22px;
    color: var(--gorent-white);
    top: -3px;
}

.testimonial-two__carousel.owl-theme .owl-nav {
    position: absolute;
    top: 50%;
    left: -30px;
    right: -30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 !important;
    transform: translateY(-50%);
    height: 0;
    line-height: 0;
    z-index: 100;
}

.testimonial-two__carousel .owl-nav .owl-next,
.testimonial-two__carousel .owl-nav .owl-prev {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px !important;
    color: var(--gorent-white) !important;
    background-color: rgba(var(--gorent-base-rgb), 1) !important;
    border-radius: 50%;
    margin: 0;
    text-align: center;
    opacity: 1;
    transition: all 500ms ease;
    z-index: 100;
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-next {
    margin-left: 5px;
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-prev {
    margin-right: 5px;
    transform: rotate(180deg);
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-next span,
.testimonial-two__carousel.owl-theme .owl-nav .owl-prev span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-next:hover,
.testimonial-two__carousel.owl-theme .owl-nav .owl-prev:hover {
    background-color: var(--gorent-black) !important;
    color: var(--gorent-white) !important;
}

/*--------------------------------------------------------------
# FAQ Testimonial Section
--------------------------------------------------------------*/
.faq-testimonial {
    position: relative;
    display: block;
    padding: 80px 0;
    background: #f8f9fa;
    z-index: 1;
}

.faq-testimonial__content {
    margin-top: 50px;
}

/* FAQ Section Styles */
.faq-section {
    position: relative;
    display: block;
    padding-right: 30px;
}

.faq-accordion {
    position: relative;
    display: block;
}

.faq-item {
    position: relative;
    display: block;
    background: var(--gorent-white);
    border-radius: 10px;
    margin-bottom: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid rgba(var(--gorent-base-rgb), 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--gorent-base);
    box-shadow: 0 4px 15px rgba(var(--gorent-base-rgb), 0.12);
}

.faq-question {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    cursor: pointer;
    background: var(--gorent-white);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(var(--gorent-base-rgb), 0.04);
}

.faq-item.active .faq-question {
    background: rgba(var(--gorent-base-rgb), 0.06);
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: var(--gorent-base);
    color: var(--gorent-white);
    border-radius: 5px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    background: var(--gorent-black);
}

.faq-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--gorent-black);
    line-height: 1.4;
}

.faq-answer {
    position: relative;
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 150px;
}

.faq-answer p {
    padding: 0 18px 16px 52px;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--gorent-black);
    opacity: 0.9;
}

/* Testimonials Section Styles */
.testimonials-section {
    position: relative;
    display: block;
    padding-left: 30px;
    height: 100%;
}

.section-subtitle {
    margin-bottom: 20px;
}

.section-subtitle h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gorent-black);
    margin: 0;
    position: relative;
    padding-bottom: 10px;
}

.section-subtitle h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gorent-base);
    border-radius: 2px;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}

.testimonial-card {
    position: relative;
    display: block;
    background: var(--gorent-white);
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    border: 1px solid rgba(var(--gorent-base-rgb), 0.08);
    transition: all 0.3s ease;
    height: auto;
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.testimonial-content {
    padding: 18px 20px;
}

.testimonial-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 10px;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--gorent-black);
    margin: 0 0 3px 0;
}

.testimonial-meta {
    font-size: 13px;
    color: var(--gorent-base);
    margin: 0;
    font-weight: 500;
    line-height: 1.3;
}

.testimonial-quote {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(var(--gorent-base-rgb), 0.08);
    border-radius: 50%;
    flex-shrink: 0;
    margin-left: 12px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.5;
    color: var(--gorent-black);
    margin: 0;
    font-style: normal;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .faq-section {
        padding-right: 20px;
    }

    .testimonials-section {
        padding-left: 20px;
    }
}

@media (max-width: 991px) {
    .faq-testimonial {
        padding: 60px 0;
    }

    .faq-testimonial__content {
        margin-top: 40px;
    }

    .faq-section {
        padding-right: 0;
        margin-bottom: 35px;
    }

    .testimonials-section {
        padding-left: 0;
    }

    .faq-question {
        padding: 14px 16px;
    }

    .faq-answer p {
        padding: 0 16px 14px 50px;
    }

    .testimonial-content {
        padding: 16px 18px;
    }
}

@media (max-width: 768px) {
    .faq-testimonial {
        padding: 50px 0;
    }

    .faq-testimonial__content {
        margin-top: 30px;
    }

    .faq-text {
        font-size: 14px;
    }

    .faq-answer p {
        font-size: 13px;
        padding: 0 14px 12px 48px;
    }

    .testimonial-header {
        flex-direction: row;
        align-items: flex-start;
        gap: 0;
    }

    .testimonial-quote {
        margin-left: 10px;
    }

    .testimonial-name {
        font-size: 15px;
    }

    .testimonial-text {
        font-size: 13px;
    }

    .section-subtitle h3 {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .faq-testimonial {
        padding: 40px 0;
    }

    .faq-question {
        padding: 12px 14px;
        gap: 10px;
    }

    .faq-icon {
        width: 20px;
        height: 20px;
    }

    .faq-answer p {
        padding: 0 14px 12px 44px;
    }

    .testimonial-content {
        padding: 14px 16px;
    }

    .testimonial-quote {
        width: 24px;
        height: 24px;
        margin-left: 8px;
    }

    .testimonial-quote svg {
        width: 16px;
        height: 16px;
    }
}

/* Large Monitors */
@media (min-width: 1400px) {
    .faq-testimonial {
        padding: 90px 0;
    }

    .faq-testimonial__content {
        margin-top: 55px;
    }

    .faq-section {
        padding-right: 35px;
    }

    .testimonials-section {
        padding-left: 35px;
    }

    .faq-item {
        margin-bottom: 14px;
    }

    .faq-question {
        padding: 18px 20px;
    }

    .faq-answer p {
        padding: 0 20px 18px 60px;
        font-size: 15px;
    }

    .testimonials-grid {
        gap: 18px;
    }

    .testimonial-content {
        padding: 20px 22px;
    }
}

/* Animations */
.faq-item {
    animation: fadeInUp 0.5s ease-out;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.15s; }
.faq-item:nth-child(3) { animation-delay: 0.2s; }
.faq-item:nth-child(4) { animation-delay: 0.25s; }

.testimonial-card {
    animation: fadeInRight 0.5s ease-out;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.15s; }
.testimonial-card:nth-child(3) { animation-delay: 0.2s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Ensure both columns have similar height and fit on one screen */
@media (min-width: 992px) {
    .faq-section, .testimonials-section {
        min-height: 380px;
        max-height: 420px;
    }

    .faq-accordion,
    .testimonials-grid {
        height: 100%;
    }
}

/* Compact layout for very large screens */
@media (min-width: 1600px) {
    .faq-testimonial {
        padding: 80px 0;
    }

    .faq-testimonial__content {
        margin-top: 45px;
    }
}

/*--------------------------------------------------------------
# Testimonials Page
--------------------------------------------------------------*/
.testimonials-page {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    z-index: 1;
}

.testimonials-page .testimonial-one__single {
    margin-bottom: 30px;
}








/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/