/* -------------------------------------
   TESTIMONIALS PAGE STYLES
-------------------------------------- */

/* Page Header */
.page-header {
    width: 90%;
    margin: 60px auto 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
}

.page-header p {
    margin-top: 10px;
    color: var(--subtext);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* Testimonials Grid */
.testimonial-grid {
    width: 90%;
    margin: 20px auto 90px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    transition: 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.testimonial-card img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin-bottom: 18px;
    object-fit: cover;
}

.testimonial-card h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
}

.testimonial-card .role {
    color: var(--subtext);
    font-size: 14px;
    margin-bottom: 15px;
}

.testimonial-card .review {
    font-size: 15px;
    line-height: 1.55;
    color: var(--text);
    margin-bottom: 20px;
}

.rating {
    font-size: 18px;
    color: var(--accent);
}


/* ----------------------
   OVERLAY MENU (mobile)
------------------------- */

.overlay {
    height: 100%;
    width: 100%;
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(12px);
    z-index: 999;
}

.overlay.show {
    display: block;
}

.overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--card-bg);
    padding: 40px 50px;
    width: 80%;
    max-width: 350px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border);
}

.overlay-content a {
    display: block;
    margin: 14px 0;
    font-size: 18px;
    text-decoration: none;
    color: var(--text);
}

.overlay-content a:hover,
.overlay-content a.active {
    color: var(--accent);
}

.close-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    f
