.renev-testimonial-wrapper-7dda1bd0 {
    padding: 120px 0;
    background: #FFFFFF;
    overflow: hidden;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}
.rt-header {
    text-align: center;
    margin-bottom: 60px;
}
.rt-small-label {
    color: #BFFF00;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
}
.rt-main-heading {
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase;
    color: #0A0A0A;
    margin: 0;
}
.rt-content-area {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}
.rt-col-left, .rt-col-right {
    width: 18%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 60px;
}
.rt-col-center {
    width: 64%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.rt-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.8;
    transition: all 0.3s ease;
    transform: scale(1);
    box-sizing: border-box;
}
.rt-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.rt-avatar:hover {
    transform: scale(1.05);
}
.rt-avatar.active {
    border: 4px solid #18E4F9;
    box-shadow: 0 0 30px rgba(24, 228, 249, 0.5);
    transform: scale(1.08);
    opacity: 1;
}
.rt-card {
    width: 100%;
    max-width: 100%;
    background: linear-gradient(135deg, #18E4F9 0%, #0A0A0A 45%, #0A0A0A 100%);
    border-radius: 24px;
    padding: 50px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 25px 80px rgba(0,0,0,0.25);
    position: relative;
    overflow: hidden;
    min-height: 350px;
    transition: all 0.3s ease;
}
.rt-testimonial-slide {
    display: none;
    animation: rtFade 0.5s ease-in-out;
}
.rt-testimonial-slide.active {
    display: block;
}
@keyframes rtFade {
    from { opacity: 0; }
    to { opacity: 1; }
}
.rt-row-1 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}
.rt-stars {
    color: #FFB400;
    font-size: 18px;
    display: flex;
    align-items: center;
}
.rt-stars span {
    display: inline-block;
}
.rt-quote-icon {
    font-size: 70px;
    color: rgba(255,255,255,0.7);
    line-height: 1;
    font-family: serif;
    transition: all 0.3s ease;
}
.rt-row-2 p {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.8;
    max-width: 95%;
    margin-bottom: 40px;
}
.rt-row-3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.rt-client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}
.rt-client-img-in-card {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}
.rt-client-img-mobile {
    display: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}
.rt-client-details h4 {
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
}
.rt-client-details span {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
}
.rt-company-info {
    font-size: 30px;
    font-weight: 700;
    color: #FFFFFF;
    text-align: right;
    display: flex;
    align-items: center;
}
.rt-company-logo {
    max-width: 120px;
    height: auto;
}
.rt-navigation {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}
.rt-prev, .rt-next {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #111111;
    border: none;
    color: #FFFFFF;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rt-prev:hover, .rt-next:hover {
    background: #18E4F9;
    transform: scale(1.1);
}

@media (max-width: 1199px) {
    .rt-avatar { width: 70px; height: 70px; }
    .rt-card { padding: 40px; }
    .rt-main-heading { font-size: 48px; }
}

@media (max-width: 767px) {
    .rt-col-left, .rt-col-right { display: none; }
    .rt-col-center { width: 100%; }
    .rt-card { padding: 25px; }
    .rt-row-3 { flex-direction: column; align-items: flex-start; gap: 20px; }
    .rt-company-info { text-align: left; }
    .rt-client-img-mobile { display: block; }
    .rt-main-heading { font-size: 36px; }
    .rt-row-2 p { font-size: 18px; }
}