* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
body {
    font-family: "Poppins", sans-serif;
    background: linear-gradient(135deg, #020617, #0f172a, #1e293b);
    color: white;
}
.stars {
    position: fixed;
    inset: 0;
    z-index: -1;

    background-image:
        radial-gradient(circle at 20% 30%, white 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, white 1.5px, transparent 1.5px),
        radial-gradient(circle at 60% 70%, white 1px, transparent 1px),
        radial-gradient(circle at 30% 80%, white 1.5px, transparent 1.5px),
        radial-gradient(circle at 90% 60%, white 1px, transparent 1px);

    background-size: 300px 300px;
    opacity: 0.4;
}

.hero {
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    padding: 20px;
}
.hero::before{
    content:"";

    position:absolute;

    width:500px;
    height:500px;

    background: radial-gradient(
        rgba(99,102,241,0.25),
        transparent 70%
    );

    border-radius:50%;

    z-index:-1;
}
.logo{
    font-size: 80px;
    margin-bottom: 20px;

    animation: floatMoon 4s ease-in-out infinite;
}

@keyframes floatMoon{
    0%,100%{
        transform: translateY(0);
    }

    50%{
        transform: translateY(-15px);
    }
}
h1{
    font-size: 72px;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 24px;
    color: #cbd5e1;
    margin-bottom: 10px;
}

.description {
    font-size: 18px;
    color: #94a3b8;
    margin-bottom: 35px;
}

.buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

button {
    padding: 14px 32px;
    font-size: 16px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-primary {
    background-color: #6366f1;
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(99,102,241,0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid #6366f1;
}

.btn-secondary:hover {
    background-color: #6366f1;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    h1 {
        font-size: 42px;
    }

    .subtitle {
        font-size: 20px;
    }

    .description {
        font-size: 16px;
    }

    .buttons {
        flex-direction: column;
        width: 100%;
        max-width: 250px;
    }
}
/* NAVBAR */

.navbar {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);

    width: 90%;
    max-width: 1400px;

    padding: 18px 40px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);

    border: 1px solid rgba(255,255,255,0.1);

    border-radius: 20px;

    z-index: 1000;
}

.brand{
    font-size: 24px;
    font-weight: 600;
}

.nav-links{
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a{
    text-decoration: none;
    color: white;
}

.nav-links a:hover{
    color: #6366f1;
}
.nav-links a{
    position: relative;
    text-decoration: none;
    color: white;
}

.nav-links a::after{
    content: "";
    position: absolute;

    left: 0;
    bottom: -5px;

    width: 0;
    height: 2px;

    background: #6366f1;

    transition: 0.3s;
}

.nav-links a:hover::after{
    width: 100%;
}
/* ABOUT */

.about{
    max-width: 900px;
    margin: 100px auto;
    text-align: center;
    padding: 40px;
}

.about h2{
    font-size: 42px;
    margin-bottom: 20px;
}

.about p{
    color: #94a3b8;
    line-height: 1.8;
}
/* STATS */
.stats{
    display:flex;
    justify-content:center;
    gap:100px;

    margin:100px 0;

    text-align:center;
}

.stat h2{
    font-size:48px;
    color:#6366f1;
}

.stat p{
    color:#94a3b8;
}

/* FEATURED DREAM */

.featured-dream{
    text-align: center;
    padding: 100px 20px;
}

.dream-card{
    max-width: 750px;

    margin: 40px auto;

    padding: 50px;

    border-radius: 30px;

    background: rgba(255,255,255,0.06);

    backdrop-filter: blur(20px);

    border: 1px solid rgba(255,255,255,0.1);

    transition: 0.4s;
}

.dream-card:hover{
    transform: translateY(-10px);

    box-shadow:
        0 0 40px rgba(99,102,241,0.2);
}

.dream-card p{
    color: #94a3b8;
    margin: 20px 0;
}

/* QUOTE */

.quote-section{
    text-align: center;
    padding: 120px 20px;
}

.quote-section blockquote{
    font-size: 36px;
    color: #cbd5e1;
    font-style: italic;
    max-width: 900px;
    margin: auto;
}
/* NEWSLETTER */
.newsletter{
    text-align:center;
    padding:100px 20px;
}

.newsletter p{
    color:#94a3b8;
    margin:20px 0;
}

.newsletter-form{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.newsletter-form input{
    width:320px;

    padding:15px;

    border:none;
    outline:none;

    border-radius:12px;

    background:rgba(255,255,255,0.08);
    color:white;
}

.newsletter-form button{
    padding:15px 30px;

    border:none;

    border-radius:12px;

    background:#6366f1;
    color:white;

    cursor:pointer;
}

/* FOOTER */

footer{
    text-align: center;
    padding: 60px 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

footer p{
    color: #94a3b8;
    margin-top: 10px;
}