/* Floating Tech Bubbles */
.tech-bubbles {
    position: absolute;
    top: 0;
    left: -150px;
    width: 200px;
    height: 100%;
    pointer-events: none;
    overflow: visible;
}

.tech-bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 183, 178, 0.3);
    box-shadow: 0 8px 25px rgba(0, 183, 178, 0.4), 0 0 20px rgba(0, 183, 178, 0.3);
    animation: floatBubble 8s ease-in-out infinite;
    z-index: 10;
}

.tech-text {
    color: #00B7B2;
    font-weight: 700;
    font-size: 16px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.bubble-1 {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 30px;
    animation-delay: 0s;
}

.bubble-2 {
    width: 50px;
    height: 50px;
    top: 60%;
    left: 20px;
    animation-delay: 1s;
}

.bubble-3 {
    width: 45px;
    height: 45px;
    top: 30%;
    left: 25px;
    animation-delay: 2s;
}

.bubble-4 {
    width: 55px;
    height: 55px;
    top: 70%;
    left: 35px;
    animation-delay: 3s;
}

.bubble-5 {
    width: 40px;
    height: 40px;
    top: 45%;
    left: 15px;
    animation-delay: 4s;
}

.bubble-6 {
    width: 50px;
    height: 50px;
    top: 80%;
    left: 22px;
    animation-delay: 5s;
}

@keyframes floatBubble {
    0% {
        transform: translateY(0px) scale(0.8);
        opacity: 0;
    }
    20% {
        transform: translateY(-20px) scale(0.9);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-50px) scale(1);
        opacity: 1;
    }
    80% {
        transform: translateY(-80px) scale(1.1);
        opacity: 0.6;
    }
    100% {
        transform: translateY(-120px) scale(0.8);
        opacity: 0;
    }
}

/* Floating Right Elements */
.floating-right-elements {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    pointer-events: none;
    overflow: visible;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 183, 178, 0.3);
    box-shadow: 0 8px 25px rgba(0, 183, 178, 0.4), 0 0 20px rgba(0, 183, 178, 0.3);
    animation: floatRight 10s ease-in-out infinite;
    z-index: 10;
}

.floating-icon i {
    color: #00B7B2;
    font-size: 20px;
    font-weight: 600;
}

.icon-1 {
    top: 15%;
    right: 20px;
    animation-delay: 0s;
}

.icon-2 {
    top: 35%;
    right: 40px;
    animation-delay: 2s;
}

.icon-3 {
    top: 55%;
    right: 15px;
    animation-delay: 4s;
}

.icon-4 {
    top: 75%;
    right: 35px;
    animation-delay: 6s;
}

.icon-5 {
    top: 25%;
    right: 60px;
    animation-delay: 8s;
}

@keyframes floatRight {
    0% {
        transform: translateX(0px) translateY(0px) scale(0.8);
        opacity: 0;
    }
    20% {
        transform: translateX(-10px) translateY(-10px) scale(0.9);
        opacity: 0.8;
    }
    50% {
        transform: translateX(-20px) translateY(-20px) scale(1);
        opacity: 1;
    }
    80% {
        transform: translateX(-30px) translateY(-30px) scale(1.1);
        opacity: 0.6;
    }
    100% {
        transform: translateX(-40px) translateY(-40px) scale(0.8);
        opacity: 0;
    }
}
