/******* Do not edit this file *******
Code Snippets Manager
Saved: Oct 14 2025 | 23:50:29 */
/* Initial styles for animated elements - Add this to your CSS */
.hero__heading,
.hero__text,
.features .brxe-heading,
.features .brxe-text-link,
.project-block,
.faq__item,
.collaborate__text-basic {
    will-change: transform, opacity;
}

/* Initial state for elements that fade and slide up */
.hero__heading,
.hero__text,
.features .brxe-heading,
.features .brxe-text-link,
.faq__item {
    opacity: 0;
    transform: translateY(30px);
}

/* Initial state for project blocks (scale down) */
.project-block {
    opacity: 0;
    scale: 0.9;
    transform-origin: center;
}

/* Initial state for the "Let's Chat" arrow (rotated) */
.collaborate__svg .brxe-svg {
    transform: rotate(-45deg);
}