/* Universal Background Effect */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(120deg, #1e3c72, #2a5298, #0f2027);
    background-size: 400% 400%;
    animation: gradientBG 8s ease infinite;
    color: white;
    overflow-x: hidden;
}

/* Background Animation */
@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Floating Abstract Shapes */
.shape {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    opacity: 0.7;
    animation: floatAnimation 6s infinite ease-in-out alternate;
}

/* Different Colors */
.shape:nth-child(odd) {
    background: rgba(0, 0, 255, 0.3);
}

.shape:nth-child(even) {
    background: rgba(255, 0, 0, 0.3);
}

/* Floating Animation */
@keyframes floatAnimation {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30px) scale(1.2);
    }
    100% {
        transform: translateY(0);
    }
}

/* Ensure Floating Shapes Appear */
.floating-shapes-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}
