/* Simple CSS Animations */

/* Fade In Up */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-up {
    animation-name: fadeInUp;
    animation-duration: 0.6s;
    animation-fill-mode: both;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-500 {
    animation-delay: 0.5s;
}

/* Pulse Glow for Hero Text */
@keyframes pulseGlow {
    0% {
        text-shadow: 0 0 10px rgba(105, 108, 255, 0);
    }

    50% {
        text-shadow: 0 0 20px rgba(105, 108, 255, 0.3);
    }

    100% {
        text-shadow: 0 0 10px rgba(105, 108, 255, 0);
    }
}

.animate-pulse-glow {
    animation: pulseGlow 3s infinite;
}

/* Floating Animation for Icons */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

/* New Section Styling */
.values-section {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.values-icon {
    font-size: 2.5rem;
    color: #696cff;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.values-card:hover .values-icon {
    transform: scale(1.2) rotate(10deg);
}