html,
body {
    height: 100%;
}

body {
    background: #ffffff;
    margin: 0;
    overflow-x: hidden;
}

/* Optional: Adding some floating geometric shapes for extra modern feel */
.bg-shape {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    animation: floatShape 20s infinite alternate;
}

.shape1 {
    width: 300px;
    height: 300px;
    background: rgba(57, 181, 74, 0.25);
    /* Greenish */
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.shape2 {
    width: 400px;
    height: 400px;
    background: rgba(0, 58, 115, 0.15);
    /* Blueish */
    bottom: 20%;
    right: 10%;
    animation-delay: -5s;
}

.shape3 {
    width: 250px;
    height: 250px;
    background: rgba(0, 0, 0, 0.05);
    /* Grayish */
    top: 40%;
    left: 60%;
    animation-delay: -10s;
}

@keyframes floatShape {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}