




.app{ 
    padding: 10px;          
}   

/* Testimonials Section Styles */
.testimonials-section {
    padding: 4rem 0;
}
.testimonials-container {
    position: relative;
    overflow: hidden;
}
.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.testimonial-card {
    flex: 0 0 100%;
    max-width: 420px;
    margin: 0 1rem;
    padding: 2.5rem;
    background: var(--bg-card);
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
}
.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}
.testimonial-stars {
    color: #ffd700;
    margin-bottom: 1rem;
}
.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}
.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}
.testimonial-author-info h4 {
    margin: 0 0 0.25rem 0;
}
.testimonial-author-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}
.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}
.testimonial-nav button {
    background: var(--accent-primary);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
}
.testimonial-nav button:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .testimonial-card {
        margin: 0 0.5rem;
        padding: 2rem 1.5rem;
    }
}

/* Chat Styles */
.chat-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.chat-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
    gap: 15px;
}

.chat-item:hover {
    transform: translateX(5px);
    border-color: var(--accent-primary);
}

.chat-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    flex-shrink: 0;
}

.chat-info {
    flex: 1;
    min-width: 0;
}

.chat-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.chat-preview {
    color: var(--text-secondary);
    font-size: 0.9em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chat-time {
    color: var(--text-tertiary);
    font-size: 0.8em;
    flex-shrink: 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-header h2 {
    color: var(--text-primary);
    margin: 0;
}

.view-section {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid var(--border-color);
}

.view-section.active {
    display: block;
}
