/* Static Background - No Animations */
.animated-section {
    position: relative;
    overflow: hidden;
}

.animated-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: -1;
}

/* Hero sections with static background */
.hero-animated {
    position: relative;
    overflow: hidden;
}

.hero-animated::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: -1;
}

/* Static Orbs - No Animation */
.bg-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.orb {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.orb:nth-child(1) {
    width: 80px;
    height: 80px;
    left: 10%;
    top: 20%;
}

.orb:nth-child(2) {
    width: 120px;
    height: 120px;
    left: 70%;
    top: 30%;
}

.orb:nth-child(3) {
    width: 60px;
    height: 60px;
    left: 40%;
    top: 60%;
}

.orb:nth-child(4) {
    width: 100px;
    height: 100px;
    left: 80%;
    top: 70%;
}

/* Content overlay to ensure readability */
.content-overlay {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}