/* Testimonials Page */
.testimonial-hero {
    padding: 120px 2rem 4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.testimonial-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.testimonial-hero p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    opacity: 0.95;
}

.testimonials-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

.testimonial-text {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #0066cc, #00cc66);
    color: white;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.user-info h4 {
    margin: 0;
    font-size: 1.05rem;
}

.user-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #777;
}

.rating {
    color: #ffb703;
    margin-top: 0.3rem;
    font-size: 0.9rem;
}

/* Call to Action */
.testimonial-cta {
    margin-top: 4rem;
    padding: 4rem 2rem;
    text-align: center;
    background: #f8f9fa;
    border-radius: 25px;
}

.testimonial-cta h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

.testimonial-cta p {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #666;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .testimonial-hero h1 {
        font-size: 2.2rem;
    }
}


@media (max-width: 968px) {
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background: var(--dark);
        border-radius: 3px;
        transition: all 0.3s;
    }

    .nav-links {
        position: fixed;
        top: 70px; /* height of navbar */
        right: -100%;
        width: 250px;
        height: calc(100% - 70px);
        background: white;
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
        list-style: none;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        display: flex; /* <- must be flex, NOT none */
        z-index: 1001;
    }

    .nav-links.show {
        right: 0;
    }

    /* hide desktop CTA buttons on mobile */
    .nav-cta {
        display: none;
    }
}
	
		
		
		