:root {
    --pt-primary-color: #000000;
    --pt-secondary-color: #777777;
    --pt-bg-card: #ffffff;
    --pt-text-main: #1a1a1a;
    --pt-star-color: #000000;
    --pt-border-color: #f0f0f0;
}

.pt-wrapper {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.pt-carousel {
    padding-bottom: 60px !important;
}

.pt-card {
    background: var(--pt-bg-card);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--pt-border-color);
    position: relative;
    cursor: pointer;
}

.pt-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border-color: #e0e0e0;
}

.pt-content {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 30px;
    font-style: italic;
    flex-grow: 1;
}

.pt-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.pt-user-group {
    display: flex;
    align-items: center;
}

.pt-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.pt-user-info h4 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--pt-text-main);
}

.pt-designation {
    font-size: 0.8rem;
    color: var(--pt-secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pt-card-overlay {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 32px;
    height: 32px;
    background: #f8f8f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.pt-card:hover .pt-card-overlay {
    background: #000;
    color: #fff;
}

.pt-expand-icon {
    font-size: 18px;
    font-weight: 400;
}

/* Swiper Dots */
.pt-carousel .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cccccc; /* Grey for inactive */
    opacity: 1;
    margin: 0 6px !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pt-carousel .swiper-pagination-bullet-active {
    background: #000000 !important; /* Black for active */
    width: 28px;
    border-radius: 5px;
}

/* Modal Styling - Premium Light */
.pt-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.8);
    backdrop-filter: blur(15px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pt-modal.active {
    display: flex;
    opacity: 1;
}

.pt-modal-content {
    background: #fff;
    padding: 60px;
    border-radius: 32px;
    max-width: 700px;
    width: 90%;
    position: relative;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 40px 120px rgba(0,0,0,0.15);
    border: 1px solid #f0f0f0;
    transform: scale(0.95) translateY(20px);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.pt-modal.active .pt-modal-content {
    transform: scale(1) translateY(0);
}

.pt-modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 20px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 50%;
}

.pt-modal-close:hover {
    color: #000;
    background: #eee;
}

.pt-modal-body .pt-content {
    font-size: 1.25rem;
    font-style: italic;
    color: #222;
    line-height: 1.6;
    margin-bottom: 40px;
}

.pt-modal-body .pt-card-footer {
    border-top: 1px solid #f0f0f0;
    padding-top: 40px;
}

.pt-rating {
    margin-bottom: 25px;
}

.pt-star {
    font-size: 1.4rem;
    color: #e0e0e0;
    margin-right: 2px;
}

.pt-star.active {
    color: #000000; /* Rating stars in Black */
}
