.p4tt-testimonial-slider {
    position: relative;
    padding: 60px 20px;
    overflow: hidden;
    background: #f8f9fa;
    margin: 40px 0;
}

.p4tt-floating-shape {
    position: absolute;
    z-index: 0;
    opacity: 0.8;
}

.p4tt-floating-shape.shape-1 {
    top: 15%;
    left: 5%;
    width: 50px;
    height: 50px;
    background: rgba(74, 107, 255, 0.1);
    border-radius: 50%;
    animation: p4tt-float 8s ease-in-out infinite;
}

.p4tt-floating-shape.shape-2 {
    bottom: 10%;
    right: 8%;
    width: 70px;
    height: 70px;
    background: rgba(46, 201, 119, 0.1);
    border-radius: 15px;
    animation: p4tt-float 10s ease-in-out infinite 2s;
}

.p4tt-floating-shape.shape-3 {
    top: 30%;
    right: 5%;
    width: 60px;
    height: 60px;
    background: rgba(74, 107, 255, 0.1);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation: p4tt-float 12s ease-in-out infinite 1s;
}

.p4tt-floating-shape.shape-4 {
    bottom: 20%;
    left: 10%;
    width: 40px;
    height: 40px;
    background: rgba(46, 201, 119, 0.1);
    border-radius: 50%;
    animation: p4tt-float 9s ease-in-out infinite 1.5s;
}

@keyframes p4tt-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.p4tt-slider-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.p4tt-slider-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2d3748;
}

.p4tt-slider-wrapper {
    position: relative;
}

.p4tt-profiles {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.p4tt-profile {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    cursor: pointer;
}

.p4tt-profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p4tt-profile.active {
    width: 120px;
    height: 120px;
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.p4tt-profile.prev,
.p4tt-profile.next {
    width: 90px;
    height: 90px;
    opacity: 0.8;
}

.p4tt-profile.far-left,
.p4tt-profile.far-right {
    width: 70px;
    height: 70px;
    opacity: 0.6;
}

.p4tt-content-container {
    min-height: 300px;
    position: relative;
}

.p4tt-content {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    padding: 0 15%;
    box-sizing: border-box;
}

.p4tt-content.active {
    opacity: 1;
    transform: translateY(0);
}

.p4tt-content-text {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
    text-align: center;
}

.p4tt-content-text p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #4a5568;
}

.p4tt-content-text h3 {
    color: #2b6cb0;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.p4tt-content-text h4 {
    color: #718096;
    font-size: 1rem;
    font-weight: normal;
}

.p4tt-slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.p4tt-slider-btn {
    background: #2b6cb0;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
}

.p4tt-slider-btn:hover {
    background: #2c5282;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .p4tt-profiles {
        gap: 10px;
    }
    
    .p4tt-profile {
        width: 60px;
        height: 60px;
    }
    
    .p4tt-profile.active {
        width: 80px;
        height: 80px;
    }
    
    .p4tt-profile.prev,
    .p4tt-profile.next {
        width: 70px;
        height: 70px;
    }
    
    .p4tt-content {
        padding: 0 5%;
    }
}