/* Add custom styles for the About page animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.story-item {
    animation: fadeInUp 0.6s ease-out;
}

.story-item:nth-child(2) {
    animation-delay: 0.2s;
}

.story-item:nth-child(3) {
    animation-delay: 0.4s;
}

.value-card {
    animation: fadeInUp 0.6s ease-out;
}

.value-card:nth-child(2) {
    animation-delay: 0.1s;
}

.value-card:nth-child(3) {
    animation-delay: 0.2s;
}

.value-card:nth-child(4) {
    animation-delay: 0.3s;
}

.value-card:nth-child(5) {
    animation-delay: 0.4s;
}

.value-card:nth-child(6) {
    animation-delay: 0.5s;
}

.team-member {
    animation: fadeInUp 0.6s ease-out;
}

.team-member:nth-child(2) {
    animation-delay: 0.2s;
}

.team-member:nth-child(3) {
    animation-delay: 0.4s;
}

/* Hover effects for value cards */
.value-card:hover .w-16 {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Custom gradient text animation */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.bg-gradient-to-r.from-rose-600.to-orange-500.bg-clip-text {
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}