@keyframes blob {
    0% {
        transform: translate(0px, 0px) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }

    100% {
        transform: translate(0px, 0px) scale(1);
    }
}

.animate-blob {
    animation: blob 7s infinite;
}

.animation-delay-2000 {
    animation-delay: 2s;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.animate-bounce-slow {
    animation: bounce 4s ease-in-out infinite;
}

/* Gallery Section */
.gallery-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

/* Testimonials Section */
.testimonial-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #0A183D !important;
    opacity: 0.2;
    transition: all 0.3s ease;
}

.testimonial-pagination .swiper-pagination-bullet-active {
    background-color: #1A9C43 !important;
    opacity: 1;
    width: 30px;
    border-radius: 10px;
}

/* FAQs Section */
.faq-item.active {
    border-color: #1A9C43;
    box-shadow: 0 10px 30px rgba(26, 156, 67, 0.1);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-question {
    color: #1A9C43;
}