@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes bounceSlow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-bounce-slow {
    animation: bounceSlow 3s ease-in-out infinite;
}

.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background-color: #25d366;
    color: white;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.text-whatsapp-green {
    color: #25d366;
}

.text-email-blue {
    color: #4A90E2;
}

.text-facebook-blue {
    color: #0866ff;
}

.text-instagram-gray {
    color: #6e7173;
}

.bg-email-blue {
    color: #4A90E2;
}

.bg-whatsapp-green {
    background-color: #25d366;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

.bg-brand-primary {
    background-color: #0077b6;
}

/* Vibrant Blue */
.text-brand-primary {
    color: #0077b6;
}

.bg-brand-secondary {
    background-color: #023e8a;
}

/* Dark Blue for contrast */
.text-brand-secondary {
    color: #023e8a;
}

.bg-brand-accent {
    background-color: #ffb703;
}

.bg-brand-yellow {
    background-color: #FEED01;
}

/* Bright Yellow */
.text-brand-accent {
    color: #ffb703;
}

.text-brand-yellow {
    color: #FEED01;
}

.bg-brand-highlight {
    background-color: #005f91;
}

/* Darker Blue for hover/CTA */
.hero-gradient {
    background: linear-gradient(135deg, #e0f2fe 0%, #ffffff 100%);
    border-bottom: 1px solid #bae6fd;
}

.border-yellow {
    border-bottom: 1px solid #FEED01;
}

.bg-brand-soft {
    background-color: #f0f9ff;
}

.text-brand-dark {
    color: #023e8a;
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
}