/* Testimonials Page Specific Styles */

/* Testimonials Hero */
.testimonials-hero {
    background-color: #F6F6F6;
    min-height: 490px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* padding-top: 100px; */
}

.testimonials-hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}


.testimonials-hero-container .testimonials-breadcrumb-text {
   font-family: Plus Jakarta Sans;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: 0%;
    color: #005678;
}

.testimonials-hero-container .testimonials-hero-title {
   font-family: Poppins;
    font-weight: 500;
    font-style: Medium;
    font-size: 56px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    color: #0D2B37;
    max-width: 788px;
}

.testimonials-hero-description {
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: center;
    color: #4E5D63;
    max-width: 788px;
}

.testimonials-view-more-button {
    width: 291px;
    height: 62px;
    border-radius: 12px;
    background-color: #005678;
    color: #fff;
    font-family: Poppins;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: 0%;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonials-view-more-button:hover {
    background-color: #004565;
    transform: translateY(-2px);
}

.testimonials-view-more-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
}
 
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Video Testimonials */
.video-testimonials {
    background-color: var(--secondary-color);
    padding-top: 120px;
    padding-bottom: 120px;
}

@media (max-width: 600px){
    .video-testimonials {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 120px;
}

.testimonial-card {
    background-color: #F6F6F6;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    padding: 28px 24px;
    box-shadow: var(--shadow);
    transition: var(--transition-base);
}

.testimonials-quote {
    position: absolute;
    top: 30px;
    right: 28px;
    border-radius: 16px;
}

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

.video-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
    width: 222px;
    height: 127px;
    border-radius: 16px;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 53px;
    height: 53px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    font-size: var(--font-size-lg);
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn:hover {
    transform:  scale(1.1);
}

.testimonial-content {
    margin-top: 32px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-content .testimonial-quote-text {
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: 0%;
    color: #0D2B37;
    min-height: 69%;
}

.testimonial-content .testimonial-author-citation {
    font-family: Poppins;
    font-weight: 500;
    font-style: Medium;
    font-size: 22px;
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: 0%;
    color: #0D2B37;
    margin-top: 32px;
}

.view-more {
    text-align: center;
}

/* Responsive Design for Testimonials */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-hero {
        padding: 120px 16px;
    }
    
    .testimonials-hero-container .testimonials-hero-title {
        font-size: 48px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
   
}

@media (max-width: 480px) {
    .testimonials-hero-container .testimonials-hero-title {
        font-size: 32px;
    }
    
    .testimonial-content {
        padding: var(--spacing-md);
    }
    
    .video-thumbnail {
        height: 150px;
    }
    
    .play-btn {
        width: 50px;
        height: 50px;
        font-size: var(--font-size-base);
    }
    
}