/* Floating Symbols*/
@keyframes float-symbol-1 {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.7;
    }

    90% {
        opacity: 0.7;
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes float-symbol-2 {
    0% {
        transform: translateY(100vh) rotate(0deg) scale(0.8);
        opacity: 0;
    }

    15% {
        opacity: 0.6;
    }

    85% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-100px) rotate(-360deg) scale(1.2);
        opacity: 0;
    }
}

@keyframes float-symbol-3 {
    0% {
        transform: translateY(100vh) translateX(-50px) rotate(0deg);
        opacity: 0;
    }

    20% {
        opacity: 0.5;
    }

    80% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-100px) translateX(50px) rotate(180deg);
        opacity: 0;
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(66, 165, 133, 0.3);
    }

    50% {
        box-shadow: 0 0 20px rgba(66, 165, 133, 0.6), 0 0 30px rgba(66, 165, 133, 0.4);
    }
}

.floating-symbols {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-symbol {
    position: absolute;
    color: rgba(66, 165, 133, 0.6);
    font-size: 24px;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

/* Individual symbol positioning */
.symbol-dollar {
    left: 10%;
    animation: float-symbol-1 20s linear infinite;
    animation-delay: 0s;
}

.symbol-euro {
    left: 25%;
    animation: float-symbol-2 25s linear infinite;
    animation-delay: -5s;
}

.symbol-chart {
    left: 40%;
    animation: float-symbol-3 22s linear infinite;
    animation-delay: -10s;
}

.symbol-bank {
    left: 55%;
    animation: float-symbol-1 28s linear infinite;
    animation-delay: -15s;
}

.symbol-card {
    left: 70%;
    animation: float-symbol-2 24s linear infinite;
    animation-delay: -8s;
}

.symbol-growth {
    left: 85%;
    animation: float-symbol-3 26s linear infinite;
    animation-delay: -12s;
}

.symbol-coin {
    left: 15%;
    animation: float-symbol-1 30s linear infinite;
    animation-delay: -20s;
}

.symbol-wallet {
    left: 35%;
    animation: float-symbol-2 23s linear infinite;
    animation-delay: -3s;
}

.symbol-graph {
    left: 65%;
    animation: float-symbol-3 27s linear infinite;
    animation-delay: -17s;
}

.symbol-percent {
    left: 80%;
    animation: float-symbol-1 21s linear infinite;
    animation-delay: -7s;
}

/* Heartbeat animation for footer */
@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    14% {
        transform: scale(1.3);
    }

    28% {
        transform: scale(1);
    }

    42% {
        transform: scale(1.3);
    }

    70% {
        transform: scale(1);
    }
}

.heartbeat-icon {
    animation: heartbeat 1.5s ease-in-out infinite;
}