
/* Shimmer animation for hero text - restored from old design */
@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

.animate-shimmer {
    background-size: 2000px 100%;
    animation: shimmer 3s linear infinite;
}

/* Testimonial card equal heights */
.testimonial-swiper .swiper-slide {
    height: auto;
}

.testimonial-swiper .bg-white\/10 {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-swiper p.text-white {
    flex-grow: 1;
}

/* Ensure consistent padding and layout */
.testimonial-swiper .bg-white\/10 {
    min-height: 400px;
}

/* Partners Marquee Animation */
.marquee-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.marquee {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.marquee:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-logo {
    flex-shrink: 0;
    width: 160px;
    height: 96px;
    background-color: #f3f4f6;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.partner-logo:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.partner-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    padding: 0.5rem;
}

/* Impact Cards Equal Height */
.impact-card > div {
    height: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.impact-card h3 {
    margin-top: auto;
}

.impact-card p {
    margin-top: 0.5rem;
}

