/* Testimonials Slider Styles */
.testimonial-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 20px;
    box-sizing: border-box;
    display: none;
}

.testimonial-card:before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 0;
    font-size: 5rem;
    color: rgba(26, 86, 219, 0.1);
    font-family: serif;
    line-height: 1;
    z-index: 1;
    pointer-events: none;
}
.testimonial-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--gray);
    line-height: 1.8;
    padding-left: 20px;
    position: relative;
    z-index: 2;
}

.testimonial-card.active {
    display: block;
}

.slider-controls {
    text-align: center;
    margin-top: 20px;
}

.slider-controls button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    margin: 0 10px;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.slider-controls button:hover {
    color: #007bff;
    opacity: 1;
    transform: scale(1.2);
}

.testimonials .testimonial-text a {
    color: var(--accent);
    font-weight: 500;
    transition: color 0.2s;
    text-decoration: underline dotted transparent;
}
.testimonials .testimonial-text a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Author Avatar Styles */
.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.author-avatar::before {
    content: attr(data-initial);
    font-size: 24px;
    font-weight: bold;
    color: #555;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-image {
        display: none;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .platform-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        background-color: white;
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.4s ease;
    }
    
    .nav-links.active {
        transform: translateY(0);
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        margin-bottom: 40px;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .author-avatar {
        margin-bottom: 10px;
    }
}