/* ai-websites.php — Extracted inline styles */

/* Hero: Tech Stack Marquee */
.fade-sides {
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 1.5rem)); }
}
.animate-scroll {
    display: flex;
    white-space: nowrap;
    animation: scroll 20s linear infinite;
    width: max-content;
}

/* Infrastructure: SVG flow animation */
@keyframes dash {
    to { stroke-dashoffset: -1000; }
}
.animate-flow-line {
    animation: dash 20s linear infinite;
}

/* Conversational Web: Chat bubble animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
