add: ai chatbot

This commit is contained in:
hamid zarghami
2025-11-30 16:35:09 +03:30
parent 32e7989ec6
commit 091df757d0
18 changed files with 1775 additions and 1 deletions
+31
View File
@@ -2,6 +2,37 @@
@import "tw-animate-css";
@import "leaflet/dist/leaflet.css";
/* Animation for chatbot widget slide-up */
@keyframes slide-up {
from {
transform: translateY(100%);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
.animate-slide-up {
animation: slide-up 0.3s ease-out;
}
/* Subtle bounce animation for chat button */
@keyframes bounce-subtle {
0%,
100% {
transform: translateY(0);
}
50% {
transform: translateY(-5px);
}
}
.animate-bounce-subtle {
animation: bounce-subtle 2s ease-in-out infinite;
}
/* بهبود responsive design برای موبایل */
html {
overflow-x: hidden;