/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Orbitron', sans-serif;
    
}

html {
    scroll-behavior: smooth;
    background-color: #4E5D6C;

}

/* Text Styling (Glowing Effect) */
nav,
nav ul li a,
.hero,
.scroll a {
    font-size: 20px;
    color: #ffffff;
    -webkit-text-stroke: 0.3px #0286BD;
    text-shadow: 0 0 10px #0286BD,
        0 0 20px #0286BD,
        0 0 40px #00aaff,
        0 0 80px #00aaff,
        0 0 120px #00e6ff;
}

/* Navbar Styles */
nav {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10;
}

/* Navbar Links */
.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    display: inline-block;
    margin-left: 40px;
}

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

/* Hamburger Menu (Hidden on large screens) */
.menu-toggle {
    display: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

/* Hero Section */
.hero {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* Background Video */
.back-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Responsive Navigation */
@media screen and (max-width: 1024px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        position: absolute;
        top: 60px;
        left: 0;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        display: block;
        margin: 15px 0;
    }
}

.scroll {
    position: absolute;
    margin-top: 750px;
    
}

.scroll a {
    text-decoration: none;
}


.arrow {
    position: absolute;
    margin: 15px;
    margin-top: 25px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    display: inline-flex;
    padding: 15px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);

}
