/* General Fade In / Slide Up Animations on Scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* Specific animations for elements */
.animate-fade-in-up {
    animation: fadeInUp 1s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
}

.animate-fade-in-up-delay {
    animation: fadeInUp 1s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
    animation-delay: 0.2s; /* Example delay for staggered effect */
}

.animate-fade-in {
    animation: fadeIn 1s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Button Hover Animation */
.btn {
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Image Hover effects */
.partners-grid img {
    transition: filter 0.3s ease, transform 0.3s ease;
}

.partners-grid img:hover {
    filter: grayscale(0%) brightness(1.1);
    transform: scale(1.05);
}

/* Form input focus animation */
.form-group input:focus,
.form-group textarea:focus {
    box-shadow: 0 0 0 4px rgba(248, 155, 43, 0.3);
}

/* Accordion icon animation */
.accordion-icon {
    transition: transform 0.3s ease;
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}
