/* Testimonials Container */
.aivah-t-container {
    width: 100%;
    min-height: 100vh;
    position: relative;
    box-sizing: border-box;
    background-color: #0c0c0c;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aivah-t-layout {
    display: flex;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 60px 50px;
    box-sizing: border-box;
    align-items: center;
    position: relative;
}

/* Left Nav Column */
.aivah-t-left-panel {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 320px;
    box-sizing: border-box;
}

.aivah-t-meta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Counter Style */
.aivah-t-counter {
    display: flex;
    align-items: center;
    font-size: 40px;
    font-weight: 300;
    line-height: 1;
    font-family: sans-serif;
}
.aivah-t-counter-active {
    color: #00e5ff;
    font-weight: 600;
}
.aivah-t-counter-slash {
    margin: 0 8px;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.2);
}
.aivah-t-counter-total {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.4);
}

.aivah-t-divider {
    width: 40px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
}

/* Section Title */
.aivah-t-section-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0;
}

/* Navigation Arrows */
.aivah-t-arrows-wrapper {
    display: flex;
    gap: 15px;
}

.aivah-t-arrow {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    outline: none;
    padding: 0;
}
.aivah-t-arrow svg {
    color: #ffffff;
    stroke-width: 2;
    transition: transform 0.3s ease;
}
.aivah-t-arrow-svg {
    width: 16px;
    height: 16px;
    object-fit: contain;
}
.aivah-t-arrow:hover {
    background: transparent;
    background-color: transparent;
    border-color: #00e5ff;
}
.aivah-t-arrow-prev:hover svg {
    transform: translateX(-3px);
}
.aivah-t-arrow-next:hover svg {
    transform: translateX(3px);
}

/* Divider Line */
.aivah-t-vertical-divider {
    width: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    align-self: stretch;
    margin: 0 60px;
}

/* Right Slides Column */
.aivah-t-right-slides {
    width: 70%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.aivah-t-slides-track {
    position: relative;
    width: 100%;
}

/* Slides */
.aivah-t-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1),
                transform 0.6s cubic-bezier(0.25, 1, 0.5, 1),
                visibility 0.6s ease;
}
.aivah-t-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Quote content styles */
.aivah-t-quote-wrapper {
    margin: 0;
    padding: 0;
}
.aivah-t-quote {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.4;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.5px;
}

.aivah-t-slide-divider {
    width: 40px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    margin: 30px 0;
}

.aivah-t-author-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.aivah-t-author-name {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}
.aivah-t-author-role {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Pagination Bullets */
.aivah-t-bullets-wrapper {
    display: flex;
    gap: 12px;
    margin-top: 50px;
    justify-content: flex-end;
}
.aivah-t-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}
.aivah-t-bullet.active {
    background-color: #00e5ff;
    transform: scale(1.2);
}

/* Responsive Styling */
@media (max-width: 768px) {
    .aivah-t-layout {
        flex-direction: column;
        padding: 60px 20px;
        align-items: flex-start;
    }
    
    .aivah-t-left-panel {
        width: 100%;
        height: auto;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .aivah-t-vertical-divider {
        display: none;
    }
    
    .aivah-t-right-slides {
        width: 100%;
    }
    
    .aivah-t-quote {
        font-size: 24px;
    }
    
    .aivah-t-bullets-wrapper {
        justify-content: flex-start;
        margin-top: 30px;
    }
}
