/* Testimonial Page Styles */

body {
    background-color: #0f172a;
    font-family: 'Inter', sans-serif;
    padding-top: 80px;
}

/* Hero Section */
.testimonial-hero-section {
    min-height: 25vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 3rem 5rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.testimonial-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.testimonial-hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.testimonial-hero-subtitle {
    font-size: 1.2rem;
    color: #cbd5e1;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    margin-top: 1rem;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 3rem;
    background-color: #0f172a;
}

@media (min-width: 768px) {
    .testimonials-section {
        padding: 5rem 5rem;
    }
}

@media (min-width: 1024px) {
    .testimonials-section {
        padding: 6rem 8rem;
    }
}

@media (min-width: 1280px) {
    .testimonials-section {
        padding: 6rem 10rem;
    }
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Testimonial Grid Layout */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.testimonials-single {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1024px) {
    .testimonials-grid,
    .testimonials-single {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Testimonial Card */
.testimonial-card {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    transition: all 0.3s ease;
    position: relative;
}

/* Center alignment for single testimonial (middle one) */
.testimonials-single .testimonial-card {
    text-align: center;
}

.testimonials-single .testimonial-header {
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

/* Testimonial Header (Name, Role, Photo) */
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #8b5cf6;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.testimonial-photo-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    border: 3px solid #8b5cf6;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b5cf6;
    margin: 0 0 0.25rem 0;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.5px;
}

.testimonial-role {
    font-size: 1rem;
    color: #a78bfa;
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

/* Quote Icon */
.testimonial-quote-icon {
    display: none;
}

/* Rating Stars - Hidden */
.testimonial-rating {
    display: none;
}

/* Testimonial Text */
.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cbd5e1;
    margin: 0;
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 1;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonial-hero-title {
        font-size: 2.5rem;
    }

    .testimonial-card {
        padding: 0;
    }

    .testimonial-header {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .testimonial-photo,
    .testimonial-photo-placeholder {
        width: 70px;
        height: 70px;
    }

    .testimonial-name {
        font-size: 1.25rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }
}
