/* Main Features Styles */
* {
    font-family: 'Outfit', sans-serif;
}

/* Floating animations */
@keyframes float {

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

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

@keyframes float-reverse {

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

    50% {
        transform: translateY(15px);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes particle-float {

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

    25% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-10px) translateX(-5px);
        opacity: 0.4;
    }

    75% {
        transform: translateY(-25px) translateX(15px);
        opacity: 0.5;
    }
}

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

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

.animate-pulse-glow {
    animation: pulse-glow 4s ease-in-out infinite;
}

.animate-slide-up {
    animation: slide-up 0.8s ease-out forwards;
}

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

/* Particle dots */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
}

/* Device mockup glow */
.device-glow {
    filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.15));
}

/* Glass card effect */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Testimonial Pagination Dots - Override Elementor */
#testi-dots button {
    all: unset !important;
    display: block !important;
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    margin: 0 4px !important;
    padding: 0 !important;
    border: none !important;
}

#testi-dots button.is-active,
#testi-dots button[class*="bg-[#1d4ba7]"] {
    background-color: #1d4ba7 !important;
    transform: scale(1.2) !important;
    opacity: 1 !important;
}

#testi-dots button:not(.is-active),
#testi-dots button[class*="bg-gray-300"] {
    background-color: #d1d5db !important;
    transform: scale(1) !important;
    opacity: 0.5 !important;
}