@import url(global.css);
@import url(nuicron.css);

body {
    background-color: var(--secblack);
}

#sec1-background {
    background-color: var(--background);
    width: 100%;
    height: 700px;
    position: absolute;
    z-index: 0;
    top: 0;
}

#bow {
    width: 100%;
    position: absolute;
    top: 700px;
    left: 50%;
    transform: translate(-50%, 0);
    min-width: 1000px;
}

#hero-subtitle {
    font-family: 'Assistant', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: var(--text);
    text-align: center;
    line-height: 0;
}

#hero-title {
    font-family: 'Assistant', sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 90px;
    text-align: center;
    margin: 0;
    padding: 0;
    display: inline-block;
    background-image: linear-gradient(to right, var(--accent), var(--gradient));
    background-size: 100% 100%;
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 0.8;
}

#content {
    position: relative;
    z-index: 1;
}

#sec1-content {
    margin-top: 250px;
    text-align: center;
    /* background-color: rgba(0, 0, 255, 0.349); */
    height: fit-content;
}

#sec2-content {
    margin-top: 300px;
    text-align: center;
    /* background-color: rgba(0, 128, 0, 0.295); */
    height: fit-content;
    padding: 30px 0 80px 0;
}

#sec3-content {
    margin-top: 100px;
    text-align: center;
    /* background-color: rgba(137, 43, 226, 0.295); */
}

#sec4-content {
    margin-top: 100px;
    text-align: center;
    /* background-color: rgba(162, 226, 43, 0.295); */
    height: 400px;
}

#sec5-content {
    margin-top: 200px;
    text-align: center;
    /* background-color: rgba(226, 214, 43, 0.295); */
    height: fit-content;
}

#sec1-benefits {
    margin: 50px 0 80px 0;
    display: flex;
    justify-content: center;
}

.benefit {
    padding: 8px 24px;
    background-color: var(--button);
    border: 2px solid var(--hover);
    border-radius: 50px;
    display: flex;
    width: fit-content;
    align-items: center;
    margin: 0 10px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, background-color 0.3s ease, scale 0.3s ease;
}

.benefit.visible {
    opacity: 1;
    transform: translateY(0);
}

.benefit:hover {
    background-color: var(--hover);
    scale: 1.07;
}

.benefit span {
    color: var(--text);
    font-family: 'Assistant', sans-serif;
    font-size: 14px;
    font-weight: 400;
}

.benefit img {
    margin-right: 14px;
}

#stats-div {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    height: auto;
    width: 100%;
    flex-wrap: wrap;
}

.stat {
    width: 219px;
    height: 230px;
    border-radius: 8px;
    border: 2px solid var(--hover);
    background-color: var(--button);
    margin: 17px 17px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, background-color 0.3s ease, scale 0.3s ease;
}

.stat:hover {
    background-color: var(--hover);
    scale: 1.05;
}

.stat.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-icon {
    margin-top: 40px;
    width: 55px;
    height: 55px;
}

.stat-number {
    font-family: 'Assistant', sans-serif;
    font-weight: 800;
    font-size: 48px;
    color: var(--accent);
    margin: 10px 0 0 0;
}

.stat-desc {
    font-family: 'Assistant', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--text);
    margin: 4px 0 0 0;
    line-height: 0.7;
}

#side-by-side {
    display: flex;
    position: relative;
    height: 600px;
    min-width: 1100px;
    width: 100%;
    max-width: 1700px;
}

#side-by-side-image {
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translate(0, -50%);
}

#side-by-side-div {
    background-color: var(--background);
    border-radius: 12px;
    border: 2px solid var(--hover);
    width: 598px;
    height: 254px;
    position: absolute;
    top: 50%;
    right: 15%;
    transform: translate(0, -50%);
    display: flex;
    align-items: center;
}


.side-by-side-item {
    display: flex;
    align-items: left;
    text-align: left;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, background-color 0.3s ease, scale 0.3s ease;
    margin: 20px 40px;
}

.side-by-side-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.side-by-side-item img {
    margin-right: 17px;
}

#vision-text {
    text-align: left;
    max-width: 500px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);

}

#sec4-image {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
}

#sbs-sec4 {
    position: relative;
    height: 400px;
    width: 900px;
    
}

#sec4-innercontent {
    display: flex;
    justify-content: center;
    
}

.features-button {
    font-size: 14px;
    color: var(--text);
    font-family: "Assistant", sans-serif;
    font-weight: 400;
    padding: 15px 44px;
    border-radius: 12px;
    background-color: var(--button);
    border: 2px solid var(--hover);
    cursor: pointer;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, background-color 0.3s ease-out, scale 0.3s ease-out;
    box-sizing: border-box;
    width: 273px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.features-button img {
    margin-left: 20px;
}

.features-button.visible {
    opacity: 1;
    transform: translateY(0);
}

.features-button:hover {
    background-color: var(--hover);
    scale: 1.04;
}

#sec5-background {
    background-color: var(--background);
    width: 100%;
    height: 500px;
    margin-top: -10px;
    padding: 30px 0 0 0;
}







@media (max-width: 1000px) {
    #side-by-side {
        display: flex;
        position: relative;
        height: 600px;
        width: 97%;
        min-width: 0;
    }
    
    #side-by-side-image {
        position: absolute;
        top: 0%;
        left: 50%;
        transform: translate(-50%, 0);
        width: 95%;
        max-width: 740px;
    }

    #side-by-side-div {
        width: 90%;
        height: fit-content;
        padding: 14px 0;
        position: absolute;
        bottom: 30%;
        left: 50%;
        transform: translate(-50%, 0);
        display: flex;
        align-items: center;
    }

    .side-by-side-item {
        display: flex;
        align-items: left;
        text-align: left;
        opacity: 0;
        transform: translateY(50px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out, background-color 0.3s ease, scale 0.3s ease;
        margin: 10px 20px;
    }


    #bow {
        width: 100%;
        position: absolute;
        top: 700px;
        left: 50%;
        transform: translate(-50%, 0);
        min-width: 0;
    }


    #sec4-content {
        margin-top: 100px;
        text-align: center;
        /* background-color: rgba(162, 226, 43, 0.295); */
        height: 800px;
        width: 90%;
        margin-left: 5%;
    }

    #sbs-sec4 {
        position: relative;
        height: 700px;
        width: 100%;
        
    }

    #vision-text {
        text-align: left;
        max-width: 100%;
        position: absolute;
        top: 0;
        left: 50%;
        width: 100%;
        transform: translate(-50%, 0);

    }

    #sec4-image {
        position: absolute;
        bottom: 10%;
        left: 25%;
        transform: translate(-50%, 0);
    }

    .center {
        width: 100%;
        display: flex;
        justify-content: center;
    }


}

@media (max-width: 650px) {

    #hero-subtitle {
        font-size: 20px;
    }

    #hero-title {
        font-size: 60px;
    }

    .benefit span {
        font-size: 12px;
    }

    #sec1-benefits {
        margin: 30px 0 40px 0;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .benefit {
        padding: 8px 14px;
        background-color: var(--button);
        border: 2px solid var(--hover);
        border-radius: 50px;
        display: flex;
        width: 130px;
        align-items: center;
        margin: 5px 6px;
        opacity: 0;
        transform: translateY(50px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out, background-color 0.3s ease, scale 0.3s ease;
    }

    .benefit img {
        margin-right: 8px;
        width: 12px;
    }

    .stat {
        width: 149px;
        height: 157px;
        margin: 10px 10px;
    }

    .stat-icon {
        margin-top: 23px;
        width: 37px;
        height: 37px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-desc {
        font-size: 14px;
    }

    #sec1-content {
        margin-top: 250px;
        text-align: center;
        /* background-color: rgba(0, 0, 255, 0.349); */
        height: fit-content;
        width: 90%;
        margin-left: 5%;
    }

    #sec2-content {
        margin-top: 150px;
        text-align: center;
        /* background-color: rgba(0, 128, 0, 0.295); */
        height: fit-content;
        padding: 30px 0 80px 0;
    }

    #sec3-content {
        margin-top: 100px;
        text-align: center;
        /* background-color: rgba(137, 43, 226, 0.295); */
        width: 90%;
        margin-left: 5%;
    }

    #sec4-content {
        margin-top: 0px;
        text-align: center;
        /* background-color: rgba(162, 226, 43, 0.295); */
        height: fit-content;
    }

    #sec5-content {
        margin-top: 200px;
        text-align: center;
        /* background-color: rgba(226, 214, 43, 0.295); */
        height: fit-content;
    }

    #sec4-image {
        position: absolute;
        bottom: 200px;
        left: 14%;
        transform: translate(-50%, 0);
    }

    #side-by-side-div {
        width: 90%;
        padding: 12px 0;
        height: fit-content;
        position: absolute;
        top: 30%;
        left: 50%;
        transform: translate(-50%, 0);
        display: flex;
        align-items: center;
    }

    #side-by-side-image {
        position: absolute;
        top: 0%;
        left: 50%;
        transform: translate(-50%, 0);
        width: 100%;
    }

    #sbs-sec4 {
        position: relative;
        height: 600px;
        width: 100%;
        
    }

    #side-by-side {
        display: flex;
        position: relative;
        height: 500px;
        width: 97%;
        min-width: 0;
    }

}