.gkr-tc-wrap {
    position: relative;
    max-width: 75%;
    margin: 0 auto;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06),
        0 20px 25px -5px rgba(0, 0, 0, 0.1);
    padding: 60px 55px;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gkr-tc-wrap:hover {
    transform: translateY(-2px);
    box-shadow:
        0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05),
        0 25px 35px -5px rgba(0, 0, 0, 0.15);
}

.gkr-tc-viewport {
    position: relative;
    overflow: hidden;
    min-height: 325px;
    display: flex;
    align-items: center;
}

.gkr-tc-item {
    text-align: center;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translate(0, -50%);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gkr-tc-item.active {
    opacity: 1;
    transform: translate(0, -50%);
}

.gkr-tc-item.entering {
    animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translate(0, calc(-50% + 20px));
    }

    to {
        opacity: 1;
        transform: translate(0, -50%);
    }
}

.gkr-tc-text {
    font-size: 1.1em;
    line-height: 1.6;
    color: #374151;
    padding: 0 30px;
    max-width: 100%;
    text-align: center;
}

.gkr-tc-client-name {
    font-size: 0.9em;
    line-height: 1.4;
    color: #7a7a7a;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 15px;
    display: block;
}

.gkr-tc-role {
    font-weight: bold;
}

.gkr-tc-client {
    font-size: 0.9em;
    line-height: 1.4;
    color: #7a7a7a;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 25px;
}

.gkr-tc-client::before {
    content: '';
    display: block;
    height: 0;
    width: 60px;
    margin: 0 auto;
    border-bottom: 3px solid #14a83c;
}

.gkr-tc-arrow-container {
    position: absolute;
    top: 100%;
    left: 80%;
    transform: translate(-50%, -50%);
}

.gkr-tc-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.9));
    color: #333;
    border: 1px solid rgba(20, 168, 60, 0.2);
    padding: 12px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    backdrop-filter: blur(10px);
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.gkr-tc-arrow:hover {
    background: linear-gradient(145deg, #14a83c, rgba(20, 168, 60, 0.9));
    color: white;
    transform: translateY(-50%) scale(1.05);
    box-shadow:
        0 10px 15px -3px rgba(20, 168, 60, 0.3),
        0 4px 6px -2px rgba(20, 168, 60, 0.1);
}

.gkr-tc-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.gkr-tc-arrow:focus {
    outline: 2px solid #14a83c;
    outline-offset: 2px;
}

.gkr-tc-prev {
    right: 15px;
}

.gkr-tc-prev:before {
    content: "\e81c";
    transform: rotate(180deg);
    font-family: "creativesplanet-base-icons";
    font-weight: bold;
}

.gkr-tc-next {
    left: 0px;
}

.gkr-tc-next:before {
    content: "\e81c";
    font-family: "creativesplanet-base-icons";
    font-weight: bold;
}

.gkr-dots-list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 0px;
    gap: 12px;
    position: relative;
    top: 20px;
}

.gkr-tc-dot {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50%;
    border: 2px solid #d1d5db;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    padding: 0;
}

.gkr-tc-dot:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: #14a83c;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gkr-tc-dot.active {
    border-color: #14a83c;
    transform: scale(1.2);
}

.gkr-tc-dot.active:before {
    width: 100%;
    height: 100%;
}

.gkr-tc-dot:hover {
    border-color: #14a83c;
    transform: scale(1.1);
}

.gkr-tc-dot:hover:before {
    width: 60%;
    height: 60%;
}

.gkr-tc-dot:focus {
    outline: 2px solid #14a83c;
    outline-offset: 2px;
}

.gkr-tc-quote-icon {
    position: absolute;
        top: 0;
        left: 10%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.gkr-tc-quote-icon:before {
    font-size: 3rem;
    color: #00B050
}

@media (max-width: 768px) {
    .gkr-tc-wrap {
        padding: 45px 25px;
        max-width: 90%;
    }

    .gkr-tc-viewport {
        min-height: 300px;
    }

    .gkr-tc-text {
        padding: 0 10px;
        font-size: 1em;
    }

    .gkr-tc-arrow {
        width: 44px;
        height: 44px;
        font-size: 14px;
    }

    .gkr-tc-prev {
        right: 10px;
    }

    .gkr-tc-next {
        left: 10px;
    }

    .gkr-tc-dot {
        width: 10px !important;
        height: 10px !important;
    }

    .gkr-dots-list {
        gap: 10px;
        top: 0;
    }
}

@media (max-width: 480px) {
    .gkr-tc-wrap {
        padding: 35px 15px;
        max-width: 95%;
    }

    .gkr-tc-viewport {
        min-height: 300px;
    }

    .gkr-tc-text {
        padding: 0 5px;
        font-size: 0.95em;
        line-height: 1.5;
    }

    .gkr-tc-arrow {
        width: 40px;
        height: 40px;
        font-size: 12px;
    }

    .gkr-tc-prev {
        right: 5px;
    }

    .gkr-tc-next {
        left: 5px;
    }

    .gkr-tc-quote-icon::before {
        font-size: 40px;
    }
}