/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styles */
body {
    font-family: "Poppins", sans-serif;
    background: linear-gradient(-155deg, #ffffff 95%, rgba(195, 132, 255, 0.673) 100%);
    color: #333;
    text-align: center;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header and Text Styles */
h1,
h2,
h3,
h4,
h5 {
    font-family: "Poppins", sans-serif;
}

/* Container for Centering Content */
.container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Hero Section */
#hero-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 20px;
    transition: all 0.3s ease-in-out;
}

/* Ellipse Styling */
.ellipse {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
}

/* Ellipse 1 */
#ellipse1 {
    background: rgba(128, 86, 251, 0.4);
    width: 250px;
    height: 250px;
    left: -10%;
    top: -5%;
    z-index: 2;
}

/* Ellipse 2 */
#ellipse2 {
    background: linear-gradient(180deg, #8c40ed 60%, rgba(64, 175, 237, 0) 50%);
    width: 600px;
    height: 500px;
    left: 10%;
    top: 10%;
    filter: blur(150px);
    z-index: 0;
    display: none;
    /* Hidden by default for mobile */
}