.aivah-tc-wrapper {
    width: 100%;
    position: relative;
    box-sizing: border-box;
}

/* Navigation Buttons (Floating on Sides on Desktop) */
.aivah-tc-nav {
    position: absolute;
    top: 50%;
    left: -70px;
    right: -70px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.aivah-tc-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    pointer-events: auto;
}

.aivah-tc-nav-btn svg {
    width: 20px;
    height: 20px;
    color: inherit;
    display: block;
}

.aivah-tc-nav-btn:hover {
    background-color: #E85B24;
    border-color: #E85B24;
    color: #ffffff;
}

/* Swiper Container & Slides */
.aivah-tc-swiper {
    width: 100%;
    overflow: hidden;
}

.aivah-tc-slide-layout {
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
}

.aivah-tc-content-col {
    flex-basis: 100%;
    max-width: 100%;
    text-align: left;
    box-sizing: border-box;
}

/* Slide elements */
.aivah-tc-quote-icon {
    font-family: sans-serif;
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    color: #E85B24;
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    height: 40px;
}

.aivah-tc-quote-text {
    font-size: 20px;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 25px;
}

.aivah-tc-quote-text p {
    margin: 0 0 15px 0;
}
.aivah-tc-quote-text p:last-child {
    margin-bottom: 0;
}

.aivah-tc-slide-divider {
    width: 100px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 25px;
    display: inline-block;
}

/* Client Details block */
.aivah-tc-author-details {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.aivah-tc-client-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: block;
}

.aivah-tc-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
}

.aivah-tc-client-name {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.aivah-tc-client-designation {
    font-size: 13px;
    color: #a8a8a9;
}

.aivah-tc-client-picture {
    margin-top: 8px;
}

.aivah-tc-client-picture img {
    height: 25px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Pagination Dots */
.aivah-tc-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    gap: 8px;
    width: 100%;
}

.aivah-tc-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #444445;
    opacity: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 !important;
}

.aivah-tc-pagination .swiper-pagination-bullet-active {
    background-color: #E85B24;
    transform: scale(1.15);
}

/* Tablet & Mobile Styles */
@media (max-width: 1200px) {
    .aivah-tc-nav {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        transform: none;
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 30px;
        pointer-events: auto;
    }
}

@media (max-width: 767px) {
    .aivah-tc-quote-text {
        font-size: 17px;
        line-height: 1.5;
    }

    .aivah-tc-client-avatar img {
        width: 70px;
        height: 70px;
    }
}

/* Alignment Class Overrides */
.aivah-tc-align-center .aivah-tc-content-col {
    text-align: center !important;
}
.aivah-tc-align-center .aivah-tc-quote-icon {
    justify-content: center !important;
    display: flex !important;
}
.aivah-tc-align-center .aivah-tc-slide-divider {
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
}
.aivah-tc-align-center .aivah-tc-author-details {
    justify-content: center !important;
    display: flex !important;
}
.aivah-tc-align-center .aivah-tc-meta {
    align-items: center !important;
    text-align: center !important;
}

.aivah-tc-align-right .aivah-tc-content-col {
    text-align: right !important;
}
.aivah-tc-align-right .aivah-tc-quote-icon {
    justify-content: flex-end !important;
    display: flex !important;
}
.aivah-tc-align-right .aivah-tc-slide-divider {
    margin-left: auto !important;
    margin-right: 0 !important;
    display: block !important;
}
.aivah-tc-align-right .aivah-tc-author-details {
    justify-content: flex-end !important;
    display: flex !important;
}
.aivah-tc-align-right .aivah-tc-meta {
    align-items: flex-end !important;
    text-align: right !important;
}
