* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    width: 100%;
}

body {
    min-height: 100vh;
    width: 100%;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url("coding pic.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: sans-serif;
    position: relative;
}

.logo {
    text-decoration: none;
    font-size: 1.5rem;
    color: #000000;
    text-shadow:
        0 0 4px #fffafa,
        0 0 10px #ffffff,
        0 0 20px #fffafa;
    font-weight: 900;
    font-family: cursive;
    display: inline-block;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1vw 2vw;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    background-color: transparent;
    width: 100%;
}

nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 20vh;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
}

nav ul li a {
    border-radius: 10px;
    padding: 0.7em 0.6em;
    background-color: white;
    text-decoration: none;
    color: black;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    min-width: max-content;
}

.cta-button-1 {
    background-color: rgb(165, 5, 240);
    color: black;
    padding: 0.7em 0.6em;
}

#hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-height: 70vh;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

#hero h1 {
    width: 50vw;
    padding: 0rem 2rem;
    color: white;
    font-family: "PT Serif", serif;
    font-weight: 700;
    font-size: clamp(2rem, 5.8vw, 4rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}

#hero a {
    padding: 1rem 2rem;
    color: white;
    text-decoration: none;
    margin: 3rem;
    font-size: 1rem;
    background-color: black;
    border-radius: 15px;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    vertical-align: middle;
}

#hero a:hover {
    transform: translateY(-15%);
    box-shadow:
        0 0 4px #00FFFF,
        0 0 40px #00FFFF,
        0 0 20px rgba(0, 255, 255, 0.6);
}

.trust-bar {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    padding: 2rem 0rem;
    margin-top: -3rem;
    min-height: 10vh;
    flex-wrap: wrap;
    width: 100%;
}

.stat-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 120px;
}

.stat-block .stat-label {
    color: rgb(0, 0, 0);
    font-size: clamp(0.875rem, 1.9vw, 1.5rem);
    font-family: "PT Serif", serif;
    font-weight: 900;
    font-style: italic;
    text-shadow:
        0 0 4px #00FFFF,
        0 0 10px #00FFFF,
        0 0 20px rgba(0, 255, 255, 0.6);
    text-align: center;
    margin-bottom: 0.5rem;
}

.stat-number {
    text-align: center;
    font-weight: bolder;
    color: rgb(0, 0, 0);
    font-size: clamp(1.25rem, 1.5rem, 2rem);
    text-shadow:
        0 0 4px #00FFFF,
        0 0 10px #00FFFF,
        0 0 20px rgba(0, 255, 255, 0.6);
}

@media screen and (max-width: 600px) {
    header {
        padding: 1rem;
        flex-wrap: wrap;
    }

    nav ul {
        margin-right: 0;
        gap: 1rem;
        justify-content: flex-end;
        width: 100%;
        margin-top: 1rem;
    }

    nav ul li a {
        padding: 0.5em 0.7em;
        font-size: clamp(0.75rem, 3vw, 0.9rem);
        width: auto;
        min-width: 80px;
        display: inline-block;
        vertical-align: middle;
    }

    .cta-button-1 {
        background-color: rgb(165, 5, 240);
        color: black;
        padding: 0.6em 0.7em;
        display: inline-block;
        width: auto;
        min-width: 120px;
        vertical-align: middle;
    }

    #hero {
        min-height: 50vh;
        padding: 1rem;
        align-items: center;
        text-align: center;
    }

    #hero h1 {
        width: 90vw;
        height: auto;
        font-size: clamp(1.5rem, 8vw, 2.5rem);
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

    #hero a {
        padding: 0.8rem 1.5rem;
        margin: 1rem 0;
        font-size: 0.9rem;
    }

    .trust-bar {
        gap: 1.5rem;
        padding: 1.5rem 1rem;
        margin-top: 2rem;
        min-height: auto;
    }

    .stat-block {
        min-width: 100px;
    }

    .stat-block .stat-label {
        font-size: clamp(0.75rem, 3.5vw, 1rem);
    }
}

@media screen and (max-width: 400px) {
    nav ul {
        justify-content: center;
    }

    .trust-bar {
        gap: 1rem;
    }

    .stat-block {
        min-width: 80px;
    }
}