/* Decorative Floating Shapes for Hero */
.hero-shape-1,
.hero-shape-2,
.hero-shape-3,
.hero-shape-4 {
    position: absolute;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 0;
    opacity: 0.6;
    animation: float 8s ease-in-out infinite;
}

.hero-shape-1 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(107, 31, 173, 0.15), rgba(107, 31, 173, 0.05));
    top: 15%;
    right: 10%;
    animation-delay: 0s;
}

.hero-shape-2 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 191, 99, 0.15), rgba(0, 191, 99, 0.05));
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.hero-shape-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(107, 31, 173, 0.12), rgba(0, 191, 99, 0.08));
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

.hero-shape-4 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 191, 99, 0.18), rgba(107, 31, 173, 0.08));
    top: 30%;
    left: 10%;
    animation-delay: 6s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-20px) rotate(5deg);
    }

    50% {
        transform: translateY(-40px) rotate(-5deg);
    }

    75% {
        transform: translateY(-20px) rotate(3deg);
    }
}