/* Floating Icons */
.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.icon-circle {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(45, 55, 72, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A0AEC0;
    backdrop-filter: blur(15px);
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.icon-1 {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.icon-2 {
    top: 25%;
    right: 15%;
    animation-delay: 1s;
}

.icon-3 {
    top: 60%;
    left: 12%;
    animation-delay: 2s;
}

.icon-4 {
    bottom: 20%;
    right: 8%;
    animation-delay: 3s;
}

.icon-5 {
    top: 45%;
    right: 25%;
    animation-delay: 4s;
}

.icon-6 {
    bottom: 35%;
    left: 20%;
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}
