/* --- TESTIMONIALS SECTION STYLES --- */

.testimonials-container-1 {
    padding: 8rem 5%;
    position: relative;
    z-index: 5;
    background-color: transparent; /* Inherit body gradient */
}

/* Section Headline (Authoritative Tone) */
.testimonial-headline-1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 6rem;
    text-align: center;
    /* Azure Blue gradient */
    background: linear-gradient(90deg, #00bfff 0%, #0080ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    filter: drop-shadow(0 0 10px rgba(0, 191, 255, 0.5));
}

/* Testimonial Card (Glass Vault) */
.testimonial-card-1 {
    /* Reusing the general glass-panel styles for consistent look */
    min-height: 400px;
    padding: 3rem !important; /* Extra padding for luxury feel */
    margin: 0 auto;
    max-width: 800px;
}

/* Details and Typography */
.person-name-1 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
}

.person-position-1 {
    color: #00bfff;
    font-size: 0.95rem;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 0.5px;
}

/* Gold Star Rating */
.star-rating-1 .gold-star-1 {
    color: #d8ae43; /* Brass/Gold color */
    filter: drop-shadow(0 0 2px rgba(255, 215, 0, 0.8));
    font-size: 0.9rem;
}

/* Quote Marks (Large Metallic Brackets) */
.message-area-1 {
    margin-bottom: 3rem;
}

.quote-mark-1 {
    position: absolute;
    font-family: serif;
    font-size: 6rem; /* Very large */
    z-index: 0;
    /* Use Gold Gradient */
    background: linear-gradient(135deg, #ffebad 0%, #d8ae43 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.15; /* Subtly visible */
}

.top-left-quote {
    top: -40px;
    left: -20px;
    transform: rotate(180deg);
}

.bottom-right-quote {
    bottom: -70px;
    right: -20px;
}

.message-text-1 {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    padding: 0 1rem;
}

/* Footer and Verification Badge */
.testimonial-footer-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px dashed rgba(0, 191, 255, 0.2);
    padding-top: 1.5rem;
}

.project-source-1 {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.verification-badge-1 .badge-content-1 {
    padding: 6px 10px;
    border-radius: 20px;
    background: rgba(0, 191, 255, 0.1);
    border: 1px solid #00bfff;
    color: #00bfff;
    font-size: 0.75rem;
    font-weight: 600;
}

/* --- SWIPER CONTROLS STYLING --- */

.swiper-pagination-1 .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    transition: background 0.3s;
}

.swiper-pagination-1 .swiper-pagination-bullet-active {
    background: #00bfff; /* Azure active dot */
    transform: scale(1.2);
}

.swiper-button-next-1,
.swiper-button-prev-1 {
    color: #00bfff !important; /* Azure arrows */
    filter: drop-shadow(0 0 5px #00bfff);
    transition: transform 0.3s;
}

.swiper-button-next-1:hover,
.swiper-button-prev-1:hover {
    transform: scale(1.1);
}