/* Advanced Animation System for InnovaMedix Pharmaceuticals */

/* ===== CSS VARIABLES FOR ANIMATIONS ===== */
:root {
    --animation-duration-fast: 0.3s;
    --animation-duration-normal: 0.5s;
    --animation-duration-slow: 0.8s;
    --animation-duration-slower: 1.2s;
    --animation-easing-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --animation-easing-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --animation-easing-elastic: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --animation-easing-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== GLOBAL ANIMATION SETTINGS ===== */
* {
    transition: all var(--animation-duration-fast) var(--animation-easing-smooth);
}

/* Prevent scroll issues on analytics page */
.analytics-page {
    scroll-behavior: auto !important;
    overflow-x: hidden;
    overflow-y: auto;
}

.analytics-page * {
    will-change: auto !important;
}

.analytics-page .medical-card {
    transform: none !important;
}

.analytics-page .medical-card:hover {
    transform: translateY(-2px) !important;
}

/* ===== FORCE ANIMATIONS TO WORK ===== */
.animate-fadeIn,
.animate-fadeInUp,
.animate-fadeInDown,
.animate-fadeInLeft,
.animate-fadeInRight,
.animate-zoomIn,
.animate-zoomInUp,
.animate-zoomInDown,
.animate-slideInUp,
.animate-slideInDown,
.animate-slideInLeft,
.animate-slideInRight,
.animate-slideInLeft3D,
.animate-slideInRight3D,
.animate-bounceIn,
.animate-elasticIn,
.animate-flipInX,
.animate-flipInY {
    animation-fill-mode: both !important;
    animation-duration: var(--animation-duration-normal) !important;
    animation-timing-function: var(--animation-easing-smooth) !important;
}

/* ===== FADE ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

/* ===== ZOOM ANIMATIONS ===== */
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes zoomOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.8);
    }
}

@keyframes zoomInUp {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes zoomInDown {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    14% {
        transform: scale(1.1);
    }
    28% {
        transform: scale(1);
    }
    42% {
        transform: scale(1.1);
    }
    70% {
        transform: scale(1);
    }
}

/* ===== SLIDE ANIMATIONS ===== */
@keyframes slideInUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

/* ===== ROTATE ANIMATIONS ===== */
@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-200deg);
    }
    to {
        opacity: 1;
        transform: rotate(0deg);
    }
}

@keyframes rotateInDownLeft {
    from {
        opacity: 0;
        transform: rotate(-45deg) translateY(-100%);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) translateY(0);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ===== BOUNCE ANIMATIONS ===== */
@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translateY(0);
    }
    40%, 43% {
        transform: translateY(-30px);
    }
    70% {
        transform: translateY(-15px);
    }
    90% {
        transform: translateY(-4px);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== FLIP ANIMATIONS ===== */
@keyframes flipInX {
    from {
        opacity: 0;
        transform: perspective(400px) rotateX(90deg);
    }
    40% {
        transform: perspective(400px) rotateX(-20deg);
    }
    60% {
        opacity: 1;
        transform: perspective(400px) rotateX(10deg);
    }
    80% {
        transform: perspective(400px) rotateX(-5deg);
    }
    to {
        opacity: 1;
        transform: perspective(400px) rotateX(0deg);
    }
}

@keyframes flipInY {
    from {
        opacity: 0;
        transform: perspective(400px) rotateY(90deg);
    }
    40% {
        transform: perspective(400px) rotateY(-20deg);
    }
    60% {
        opacity: 1;
        transform: perspective(400px) rotateY(10deg);
    }
    80% {
        transform: perspective(400px) rotateY(-5deg);
    }
    to {
        opacity: 1;
        transform: perspective(400px) rotateY(0deg);
    }
}

/* ===== ELASTIC ANIMATIONS ===== */
@keyframes elasticIn {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rubberBand {
    0% {
        transform: scale(1);
    }
    30% {
        transform: scaleX(1.25) scaleY(0.75);
    }
    40% {
        transform: scaleX(0.75) scaleY(1.25);
    }
    50% {
        transform: scaleX(1.15) scaleY(0.85);
    }
    65% {
        transform: scaleX(0.95) scaleY(1.05);
    }
    75% {
        transform: scaleX(1.05) scaleY(0.95);
    }
    100% {
        transform: scale(1);
    }
}

/* ===== WIGGLE ANIMATIONS ===== */
@keyframes wiggle {
    0%, 7% {
        transform: rotateZ(0);
    }
    15% {
        transform: rotateZ(-15deg);
    }
    20% {
        transform: rotateZ(10deg);
    }
    25% {
        transform: rotateZ(-10deg);
    }
    30% {
        transform: rotateZ(6deg);
    }
    35% {
        transform: rotateZ(-4deg);
    }
    40%, 100% {
        transform: rotateZ(0);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-10px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(10px);
    }
}

/* ===== GLOW ANIMATIONS ===== */
@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(4, 158, 187, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(4, 158, 187, 0.8), 0 0 30px rgba(4, 158, 187, 0.6);
    }
    100% {
        box-shadow: 0 0 5px rgba(4, 158, 187, 0.5);
    }
}

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(4, 158, 187, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(4, 158, 187, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(4, 158, 187, 0);
    }
}

/* ===== FLOATING ANIMATIONS ===== */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes floatSlow {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* ===== ANIMATION UTILITY CLASSES ===== */
.animate-fadeIn {
    animation: fadeIn var(--animation-duration-normal) var(--animation-easing-smooth);
}

.animate-fadeInUp {
    animation: fadeInUp var(--animation-duration-normal) var(--animation-easing-smooth);
}

.animate-fadeInDown {
    animation: fadeInDown var(--animation-duration-normal) var(--animation-easing-smooth);
}

.animate-fadeInLeft {
    animation: fadeInLeft var(--animation-duration-normal) var(--animation-easing-smooth);
}

.animate-fadeInRight {
    animation: fadeInRight var(--animation-duration-normal) var(--animation-easing-smooth);
}

.animate-zoomIn {
    animation: zoomIn var(--animation-duration-normal) var(--animation-easing-smooth);
}

.animate-zoomInUp {
    animation: zoomInUp var(--animation-duration-normal) var(--animation-easing-smooth);
}

.animate-zoomInDown {
    animation: zoomInDown var(--animation-duration-normal) var(--animation-easing-smooth);
}

.animate-slideInUp {
    animation: slideInUp var(--animation-duration-normal) var(--animation-easing-smooth);
}

.animate-slideInDown {
    animation: slideInDown var(--animation-duration-normal) var(--animation-easing-smooth);
}

.animate-slideInLeft {
    animation: slideInLeft var(--animation-duration-normal) var(--animation-easing-smooth);
}

.animate-slideInRight {
    animation: slideInRight var(--animation-duration-normal) var(--animation-easing-smooth);
}

.animate-rotateIn {
    animation: rotateIn var(--animation-duration-normal) var(--animation-easing-smooth);
}

.animate-bounceIn {
    animation: bounceIn var(--animation-duration-normal) var(--animation-easing-bounce);
}

.animate-flipInX {
    animation: flipInX var(--animation-duration-slow) var(--animation-easing-smooth);
}

.animate-flipInY {
    animation: flipInY var(--animation-duration-slow) var(--animation-easing-smooth);
}

.animate-elasticIn {
    animation: elasticIn var(--animation-duration-slow) var(--animation-easing-elastic);
}

/* ===== CONTINUOUS ANIMATIONS ===== */
.animate-pulse {
    animation: pulse 2s infinite;
}

.animate-heartbeat {
    animation: heartbeat 1.5s infinite;
}

.animate-spin {
    animation: spin 1s linear infinite;
}

.animate-bounce {
    animation: bounce 1s infinite;
}

.animate-wiggle {
    animation: wiggle 1s ease-in-out;
}

.animate-shake {
    animation: shake 0.5s ease-in-out;
}

.animate-glow {
    animation: glow 2s ease-in-out infinite alternate;
}

.animate-glowPulse {
    animation: glowPulse 2s infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-floatSlow {
    animation: floatSlow 4s ease-in-out infinite;
}

.animate-rubberBand {
    animation: rubberBand 1s ease-in-out;
}

/* ===== HOVER ANIMATIONS ===== */
.hover-lift {
    transition: transform var(--animation-duration-fast) var(--animation-easing-smooth);
}

.hover-lift:hover {
    transform: translateY(-5px);
}

.hover-scale {
    transition: transform var(--animation-duration-fast) var(--animation-easing-smooth);
}

.hover-scale:hover {
    transform: scale(1.05);
}

.hover-rotate {
    transition: transform var(--animation-duration-fast) var(--animation-easing-smooth);
}

.hover-rotate:hover {
    transform: rotate(5deg);
}

.hover-glow {
    transition: box-shadow var(--animation-duration-fast) var(--animation-easing-smooth);
}

.hover-glow:hover {
    box-shadow: 0 0 20px rgba(4, 158, 187, 0.6);
}

.hover-bounce {
    transition: transform var(--animation-duration-fast) var(--animation-easing-bounce);
}

.hover-bounce:hover {
    transform: translateY(-3px);
}

/* ===== DELAYED ANIMATIONS ===== */
.animate-delay-100 {
    animation-delay: 0.1s;
}

.animate-delay-200 {
    animation-delay: 0.2s;
}

.animate-delay-300 {
    animation-delay: 0.3s;
}

.animate-delay-400 {
    animation-delay: 0.4s;
}

.animate-delay-500 {
    animation-delay: 0.5s;
}

.animate-delay-600 {
    animation-delay: 0.6s;
}

.animate-delay-700 {
    animation-delay: 0.7s;
}

.animate-delay-800 {
    animation-delay: 0.8s;
}

.animate-delay-900 {
    animation-delay: 0.9s;
}

.animate-delay-1000 {
    animation-delay: 1s;
}

/* ===== STAGGERED ANIMATIONS ===== */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp var(--animation-duration-normal) var(--animation-easing-smooth) forwards;
}

.stagger-children > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-children > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-children > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-children > *:nth-child(4) { animation-delay: 0.4s; }
.stagger-children > *:nth-child(5) { animation-delay: 0.5s; }
.stagger-children > *:nth-child(6) { animation-delay: 0.6s; }
.stagger-children > *:nth-child(7) { animation-delay: 0.7s; }
.stagger-children > *:nth-child(8) { animation-delay: 0.8s; }
.stagger-children > *:nth-child(9) { animation-delay: 0.9s; }
.stagger-children > *:nth-child(10) { animation-delay: 1s; }

/* ===== SCROLL ANIMATIONS ===== */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--animation-duration-slow) var(--animation-easing-smooth);
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* ===== LOADING ANIMATIONS ===== */
@keyframes loadingDots {
    0%, 20% {
        color: rgba(0, 0, 0, 0);
        text-shadow: 0.25em 0 0 rgba(0, 0, 0, 0), 0.5em 0 0 rgba(0, 0, 0, 0);
    }
    40% {
        color: #049EBB;
        text-shadow: 0.25em 0 0 rgba(0, 0, 0, 0), 0.5em 0 0 rgba(0, 0, 0, 0);
    }
    60% {
        text-shadow: 0.25em 0 0 #049EBB, 0.5em 0 0 rgba(0, 0, 0, 0);
    }
    80%, 100% {
        text-shadow: 0.25em 0 0 #049EBB, 0.5em 0 0 #049EBB;
    }
}

.loading-dots {
    animation: loadingDots 1.4s infinite linear;
}

/* ===== RESPONSIVE ANIMATIONS ===== */
@media (max-width: 768px) {
    .animate-fadeInUp,
    .animate-fadeInDown,
    .animate-fadeInLeft,
    .animate-fadeInRight {
        animation-duration: var(--animation-duration-fast);
    }
    
    .hover-lift:hover,
    .hover-scale:hover,
    .hover-rotate:hover {
        transform: none;
    }
    
    .animate-float,
    .animate-floatSlow {
        animation: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
.animate-fadeIn,
.animate-fadeInUp,
.animate-fadeInDown,
.animate-fadeInLeft,
.animate-fadeInRight,
.animate-zoomIn,
.animate-zoomInUp,
.animate-zoomInDown,
.animate-slideInUp,
.animate-slideInDown,
.animate-slideInLeft,
.animate-slideInRight,
.animate-rotateIn,
.animate-bounceIn,
.animate-flipInX,
.animate-flipInY,
.animate-elasticIn {
    will-change: transform, opacity;
}

.animate-pulse,
.animate-heartbeat,
.animate-spin,
.animate-bounce,
.animate-glow,
.animate-glowPulse,
.animate-float,
.animate-floatSlow {
    will-change: transform;
}

/* ===== CUSTOM ANIMATION COMBINATIONS ===== */
.animate-hero {
    animation: fadeInUp var(--animation-duration-slow) var(--animation-easing-smooth);
}

.animate-card {
    animation: zoomIn var(--animation-duration-normal) var(--animation-easing-smooth);
}

.animate-button {
    animation: bounceIn var(--animation-duration-fast) var(--animation-easing-bounce);
}

.animate-modal {
    animation: zoomInUp var(--animation-duration-normal) var(--animation-easing-smooth);
}

.animate-notification {
    animation: slideInRight var(--animation-duration-fast) var(--animation-easing-smooth);
}

.animate-dropdown {
    animation: fadeInDown var(--animation-duration-fast) var(--animation-easing-smooth);
}

.animate-tooltip {
    animation: fadeInUp var(--animation-duration-fast) var(--animation-easing-smooth);
}

/* ===== INTERACTIVE ANIMATIONS ===== */
.click-bounce:active {
    animation: rubberBand var(--animation-duration-fast) var(--animation-easing-bounce);
}

.click-pulse:active {
    animation: pulse var(--animation-duration-fast) var(--animation-easing-smooth);
}

.click-shake:active {
    animation: shake var(--animation-duration-fast) var(--animation-easing-smooth);
}

/* ===== FOCUS ANIMATIONS ===== */
.focus-glow:focus {
    animation: glowPulse var(--animation-duration-slow) var(--animation-easing-smooth);
}

.focus-scale:focus {
    transform: scale(1.02);
}

/* ===== SUCCESS/ERROR ANIMATIONS ===== */
.animate-success {
    animation: bounceIn var(--animation-duration-normal) var(--animation-easing-bounce);
}

.animate-error {
    animation: shake var(--animation-duration-fast) var(--animation-easing-smooth);
}

.animate-warning {
    animation: wiggle var(--animation-duration-fast) var(--animation-easing-smooth);
}

/* ===== 3D SLIDE ANIMATIONS ===== */
@keyframes slideInLeft3D {
    from {
        opacity: 0;
        transform: translateX(-100px) rotateY(-45deg) scale(0.8);
        filter: blur(5px);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotateY(0deg) scale(1);
        filter: blur(0);
    }
}

@keyframes slideInRight3D {
    from {
        opacity: 0;
        transform: translateX(100px) rotateY(45deg) scale(0.8);
        filter: blur(5px);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotateY(0deg) scale(1);
        filter: blur(0);
    }
}

.animate-slideInLeft3D {
    animation: slideInLeft3D 1.2s var(--animation-easing-smooth) both;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.animate-slideInRight3D {
    animation: slideInRight3D 1.2s var(--animation-easing-smooth) both;
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* ===== WAVE ANIMATIONS ===== */
@keyframes waveMove1 {
    0%, 100% { transform: translateX(-50%) translateY(0) rotate(0deg); }
    25% { transform: translateX(-45%) translateY(-10px) rotate(1deg); }
    50% { transform: translateX(-50%) translateY(-5px) rotate(0deg); }
    75% { transform: translateX(-55%) translateY(-8px) rotate(-1deg); }
}

@keyframes waveMove2 {
    0%, 100% { transform: translateX(-50%) translateY(0) rotate(0deg); }
    33% { transform: translateX(-48%) translateY(-5px) rotate(-0.5deg); }
    66% { transform: translateX(-52%) translateY(-3px) rotate(0.5deg); }
}

@keyframes waveMove3 {
    0%, 100% { transform: translateX(-50%) translateY(0) rotate(0deg); }
    50% { transform: translateX(-50%) translateY(-2px) rotate(0deg); }
}

@keyframes float1 {
    0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); opacity: 0.6; }
    25% { transform: translateY(-20px) translateX(10px) rotate(90deg); opacity: 0.8; }
    50% { transform: translateY(-10px) translateX(-5px) rotate(180deg); opacity: 0.4; }
    75% { transform: translateY(-30px) translateX(15px) rotate(270deg); opacity: 0.7; }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); opacity: 0.4; }
    33% { transform: translateY(-25px) translateX(-10px) rotate(120deg); opacity: 0.6; }
    66% { transform: translateY(-15px) translateX(8px) rotate(240deg); opacity: 0.3; }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); opacity: 0.5; }
    20% { transform: translateY(-18px) translateX(12px) rotate(72deg); opacity: 0.7; }
    40% { transform: translateY(-8px) translateX(-6px) rotate(144deg); opacity: 0.3; }
    60% { transform: translateY(-22px) translateX(4px) rotate(216deg); opacity: 0.6; }
    80% { transform: translateY(-12px) translateX(-8px) rotate(288deg); opacity: 0.4; }
}

@keyframes float4 {
    0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-20px) translateX(5px) rotate(180deg); opacity: 0.5; }
}

@keyframes float5 {
    0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); opacity: 0.7; }
    25% { transform: translateY(-15px) translateX(-12px) rotate(90deg); opacity: 0.5; }
    50% { transform: translateY(-25px) translateX(6px) rotate(180deg); opacity: 0.8; }
    75% { transform: translateY(-10px) translateX(-3px) rotate(270deg); opacity: 0.4; }
}

/* ===== WAVE TEXT ANIMATIONS ===== */
@keyframes waveTitle {
    0% { opacity: 0; transform: translateY(50px) rotateX(-30deg) scale(0.8); }
    50% { opacity: 0.8; transform: translateY(-10px) rotateX(5deg) scale(1.05); }
    100% { opacity: 1; transform: translateY(0) rotateX(0deg) scale(1); }
}

@keyframes waveText {
    0% { opacity: 0; transform: translateY(30px) rotateX(-20deg); }
    100% { opacity: 1; transform: translateY(0) rotateX(0deg); }
}

@keyframes waveIcons {
    0% { opacity: 0; transform: translateY(20px) rotateX(-15deg); }
    100% { opacity: 1; transform: translateY(0) rotateX(0deg); }
}

@keyframes waveIcon {
    0% { opacity: 0; transform: translateY(15px) rotateX(-10deg) scale(0.9); }
    50% { transform: translateY(-5px) rotateX(2deg) scale(1.02); }
    100% { opacity: 1; transform: translateY(0) rotateX(0deg) scale(1); }
}

.animate-waveTitle {
    animation: waveTitle 2s var(--animation-easing-smooth) both;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.animate-waveText {
    animation: waveText 1.5s var(--animation-easing-smooth) both;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.animate-waveIcons {
    animation: waveIcons 1.2s var(--animation-easing-smooth) both;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.animate-waveIcon {
    animation: waveIcon 1s var(--animation-easing-smooth) both;
    transform-style: preserve-3d;
    perspective: 1000px;
}
