@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Plus Jakarta Sans", sans-serif;
}

body {
    width: auto;
    height: 300vh;
    background-color: rgb(0, 2, 18);
    background: radial-gradient(20% 20% at left top, rgba(25, 73, 243, 0.48) 0%, rgba(3, 0, 151, 0) 100%) top left,
                radial-gradient(20% 20% at right 37%, rgba(249, 131, 233, 0.48) 0%, rgba(184, 119, 255, 0) 100%) right 37%,
                radial-gradient(20% 20% at left 70%, rgba(249, 131, 233, 0.48) 0%, rgba(184, 119, 255, 0) 100%),
                #000212;
    background-repeat: no-repeat;
    overflow: hidden;
}

header {
    position: relative;
    padding: 0 2rem;
}

.navs {
    font-weight: 400;
    top: 30px;
    width: 1355px;
    height: 80px;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 1px 1px 1px 0.5px rgba(5, 5, 5, 0.3);
    background: rgba(69, 69, 69, 0.3);
    background-blend-mode: luminosity;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    position: fixed;
}

.navs .nav1 {
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
}

.navs .nav2 {
    text-decoration: none;
    background: linear-gradient(to right, rgba(198, 241, 247, 1), rgba(249, 131, 233, 1), rgba(184, 119, 255, 1), rgba(194, 233, 205, 1));
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.navs .amup {
    font-size: 1.7em;
    font-weight: 183, 60;
    letter-spacing: 0.2rem;
    color: rgba(255, 255, 255, 1);
    margin-right: 500px;
    font-family: "Unbounded", sans-serif;
}

.navs button {
    background: transparent;
    border: none;
    background-color: black;
    color: whitesmoke;
    border-radius: 0.3rem;
    padding: 0.5rem;
    letter-spacing: 0.1rem;
    word-spacing: 0.2rem;
}

.navs button:hover {
    background: rgba(255, 255, 255, 0.3);
    color: black;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1em;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1em;
}

.get-started {
    background-color: #000000;
    color: #ffffff;
    border: none;
    padding: 0.5em 1em;
    cursor: pointer;
    border-radius: 5px;
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2em;
}

.hero-section {
    padding: 10px;
    color: white;
    position: absolute;
    width: 592px;
    height: 92px;
    top: 300px;
    left: 95px;
    letter-spacing: 1px;
}

.hero-section span {
    background: linear-gradient(90deg, #ff9933 0%, #ff9933 33.33%, #ffffff 33.33%, #ffffff 66.66%, #128807 66.66%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-section #wave {
    font-weight: bold;
    font-size: 30px;
    background-image: linear-gradient(to right, #B877FF, #C2E9CD 50%);
}

.text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wrapper {
    font-size: 2rem;
    font-weight: bold;
    opacity: 0;
    position: absolute;
    background-image: linear-gradient(to right, #B877FF, #C2E9CD 50%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.w1 {
    animation: ani1 15s infinite;
}

.w2 {
    animation: ani2 15s infinite;
}

.w3 {
    animation: ani3 15s infinite;
}

.w4 {
    animation: ani4 15s infinite;
}

@keyframes ani1 {
    0% { opacity: 0; }
    10% { opacity: 1; }
    20% { opacity: 0; }
}

@keyframes ani2 {
    20% { opacity: 0; }
    30% { opacity: 1; }
    40% { opacity: 0; }
}

@keyframes ani3 {
    40% { opacity: 0; }
    50% { opacity: 1; }
    60% { opacity: 0; }
}

@keyframes ani4 {
    60% { opacity: 0; }
    70% { opacity: 1; }
    80% { opacity: 0; }
}

.min-containeer {
    padding: 10px;
    color: white;
    position: absolute;
    width: 592px;
    height: 50px;
    top: 425px;
    left: 95px;
    letter-spacing: 1px;
}

.min-containeer span {
    text-decoration: underline;
}

.app-mockup img {
    max-width: 775px;
    margin-top: 90px;
    height: auto;
    float: right;
    top: 90em;
    margin-left: 43em;
}

footer {
    display: flex;
    position: absolute;
    bottom: 0;
    width: 100%;
    justify-content: center;
    background-color: #ffffff;
    overflow: hidden;
    height: 95px; /* Adjust height as needed */
}

@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

.logos {
    overflow: hidden;
    padding: 9.3px 0;
    background: #ffffff; 
    white-space: nowrap;
    position: relative;
}

.logos:before,
.logos:after {
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    content: "";
    z-index: 2;
}

.logos:before {
    left: 0;
}

.logos:after {
    right: 0;
}

.logos:hover .logos-slide {
    animation-play-state: paused;
}

.logos-slide {
    display: inline-block;
    animation: 15s slide infinite linear;
}

.logos-slide img {
    height: 70px;
    margin: 0 80px;
    align-items: justify;
}

