



/* Base Styles */
:root {
    --primary: #4a6bff;
    --secondary: #00c9a7;
    --dark: #2d3748;
    --light: #f8fafc;
    --accent: #ff6b6b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.testimonials-section {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

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

/* Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.subtitle {
    display: block;
    font-size: 18px;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Testimonials Container */
.testimonials-container {
    display: flex;
    gap: 30px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding-bottom: 20px;
}

.testimonial-card {
    min-width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    transition: all 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card.active {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.quote-icon {
    font-size: 36px;
    color: var(--secondary);
    opacity: 0.5;
    margin-bottom: 20px;
}

.rating {
    color: #ffc107;
    margin-bottom: 25px;
    font-size: 18px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.author-info {
    display: flex;
    align-items: center;
}

.author-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary);
    margin-right: 20px;
}

.author-details {
    text-align: left;
}

.author-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.author-location {
    font-size: 16px;
    opacity: 0.8;
}

/* Navigation */
.testimonial-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    gap: 30px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: var(--secondary);
    transform: scale(1.1);
}

.nav-dots {
    display: flex;
    gap: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--secondary);
    transform: scale(1.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .testimonial-card {
        padding: 30px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .title {
        font-size: 32px;
    }
    
    .testimonials-container {
        gap: 20px;
    }
    
    .author-img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 576px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .testimonial-nav {
        margin-top: 30px;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
    }
}