body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Nunito", sans serif;
}


/* HEADER SECTION */
header {
    width: 100%;
    height: 90px;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background-color: #010110;
    justify-content: space-evenly;
    box-shadow: 0 2px 10px rgba(19, 18, 18, 0.5);
    z-index: 100;
}

.logo-div {
    width: 300px;
}

.crypto-img, .crypto-img-two{
    width: 300px;
    margin-top: -10%;
    height: auto;
}


/* Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
    transition: all 0.4s ease;
}

.nav-links li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links li a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #4144a2;
    transition: width 0.3s ease;
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-links li a:hover {
    color: #4144a2;
}




/* 🔹 NAVBAR FIXES AND ANIMATION */

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    margin-right: 5%;
    transition: all 0.3s ease;
    z-index: 200;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 5px;
    transition: all 0.3s ease;
}

/* 🔹 Animate to X */
.menu-toggle.open .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.navbar.scrolled {
    background-color: #000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.7);
    transition: all 0.3s ease;
}


.access-btn-div {
    width: 170px;
    height: 70px;
    background-color: #010110;
    margin-left: 70px;
    padding-left: 10px;
    padding-top: 15px;
    margin-right: 20px;
}

.access-btn {
    width: 160px;
    height: 48px;
    border-radius: 30px;
    outline: none;
    border: 1px solid black;
    background-color: #4144a2;
    color: white;
    font-family: "Nunito", sans serif;
    transition: background-color 0.5s ease;
}

.access-btn:hover {
    color: #4144a2;
    background-color: white;
    font-weight: 800;
    cursor: pointer;
}




/*VIDEO BACKGROUND SECTION*/

.clip {
    width: 100%;
    margin: auto;
    height: auto;
}

.background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.9);
}

.container {
    width: 50%;
    height: auto;
    position: relative;
    margin-bottom: 50px;
    background-color: white;
    margin: auto;
    margin-top: 12%;
    padding: 50px;
    background: rgba(255, 255, 255, 0.1);
    /* White with transperency */
    backdrop-filter: blur(10px);
    /* Blur the background behind it */
    -webkit-backdrop-filter: blur(10px);
    /* For Safari support */
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Optional: subtle border */
    border-radius: 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 10%;

    span {
        font-size: 40px;
        color: #010110;
        font-weight: 600;
    }

    p {
        font-size: 20px;
        color: white;
        text-align: justify;
    }

    button {
        width: 160px;
        height: 48px;
        border-radius: 30px;
        outline: none;
        border: 1px solid black;
        background-color: #4144a2;
        color: white;
        font-weight: 600;
        font-family: "Nunito", sans serif;
        transition: background-color 0.5s ease;
        filter: drop-shadow(0 0 10px rgb(78, 78, 201));
    }

    button:hover {
        color: #4144a2;
        background-color: white;
        font-weight: 800;
        cursor: pointer;
        filter: drop-shadow(0 0 10px white);
    }

}


footer {
    width: 100%;
    border-top: 1px solid gray;
    background-color: #010110;
    height: auto;
}

.footer-container {
    width: 90%;
    height: 330px;
    padding: 10px;
    margin: auto;
    margin-top: 30px;
    display: flex;
    flex-flow: wrap row;
    flex-direction: horizontal;
    flex-shrink: 0;
    gap: 60px;
    padding-bottom: 20px;
    border-bottom: 1px solid gray;


    .company {
        /* background-color: gray; */
        width: 200px;
        margin-bottom: 5%;
        margin-left: 5%;
    }

    div {
        /* background-color: gray; */
        width: 300px;
        /* height: 280px; */
        height: auto;
        margin-bottom: 5%;
        padding: 15px;

        img {
            margin-top: -40%;
        }

        p {
            width: 330px;
            height: auto;
            display: inline-block;
            text-align: justify;
            /* background-color: red; */
            font-size: 15px;
            color: white;
            margin-top: -135%;
            margin-left: 15%;
        }

        .footer-links {
            width: 300px;
            display: flex;
            flex-direction: horizontal;
            flex-flow: row;
            height: auto;
            gap: 10px;
            margin: auto;
            margin-top: 2%;
            margin-left: 7%;
            /* background-color: #4144a2; */
            padding: 10px;

            div {
                width: 20px;
                height: 20px;
                border-radius: 50%;
                background-color: #4144a2;
                justify-content: center;
                align-items: center;
                text-align: center;
                margin: auto;
                border: 1px solid white;

                a i {

                    color: white;
                    font-size: 18px;
                }

                a i:hover {
                    color: #4144a2;
                }
            }

            div:hover {
                background-color: #010110;
                transform: scale(1.2);
            }
        }

        span {
            margin-left: 35px;
            color: white;
            font-size: 20px;
        }

        ul {
            list-style-type: none;
        }

        ul li {
            padding: 12px;
            color: white;
            font-size: 18px;
        }
    }

}



.Copyright {
    width: 400px;
    height: 50px;
    /* background-color: red; */
    margin-left: 4%;
    margin-top: 10px;
    padding: 5px;

    span {
        font-size: 16px;
        color: gray;
    }
}