/* Project Section Background Styles */
.projects {
    position: relative;
    overflow: hidden;
}

.projects-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
}

.projects-background .shape {
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(36, 83, 126, 0.2), rgba(65, 179, 163, 0.2));
    border-radius: 50%;
    filter: blur(100px);
}

.projects-background .shape:nth-child(1) {
    top: -100px;
    left: -100px;
    animation: float1 10s infinite alternate;
}

.projects-background .shape:nth-child(2) {
    bottom: -150px;
    right: -150px;
    animation: float2 12s infinite alternate;
}

@keyframes float1 {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(50px, 50px) rotate(45deg); }
}

@keyframes float2 {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-50px, -50px) rotate(-45deg); }
}

@media (max-width: 768px) {
    .projects-background .shape {
        width: 200px;
        height: 200px;
    }
}

