/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Nunito", Sans-serif;
}

/* Main Section */
.main {
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(12, 3, 51, 0.3), rgba(12, 3, 51, 0.3));
    position: relative;
    padding: 0 5%;
    overflow-x: hidden;
}

/* Navigation */
nav {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
}

nav .logo {
    width: 150px;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    position: relative;
    text-decoration: none;
    color: #fff;
    font-size: 17px;
    font-weight: bold;
    padding: 10px 20px;
    transition: color 0.3s, text-shadow 0.3s;
}

nav ul li a:hover {
    color: #f66335;
    text-shadow: 0 0 10px #f66335, 0 0 20px #f66335;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    height: 3px;
    width: 25px;
    background-color: black;
    margin: 4px 0;
    transition: 0.4s;
}

.menu-toggle:focus {
    outline: 2px solid #f66335;
}

/* Video Background */
.video {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -100;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Content Section */
.content {
    position: absolute;
    bottom: 5%;
    left: 5%;
    color: #e98300;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.37);
    margin-left: 0%;
}

.content h1 {
    font-size: 80px;
    opacity: 0;
    font-weight: 1000;
    line-height: 52px;
    font-family: 'Chauphilomeneone', sans-serif;
}

/* White Text */
.white-text {
    color: #fff;
}

.content p {
    max-width: 500px;
    line-height: 28px;
    opacity: 0;
    color: #ffffffaf;
    font-family: 'Chauphilomeneone', sans-serif;
    font-weight: 900;
    margin-top: 30px;
}

.links {
    margin-top: 30px;
    opacity: 0;
}

.links a {
    color: #ffc20e;
    text-decoration: none;
    display: inline-block;
    transition: 0.5s;
    font-weight: 1000;
}

.links a:hover {
    color: #ff3c00;
}

.free-img {
    border: 4px solid #ffc20e;
    padding: 10px 35px;
    border-radius: 30px;
    margin-right: 15px;
}

.free-img:hover {
    border-color: #ff3c00;
}

.left {
    animation: slideleft 1s linear forwards;
    animation-delay: 1s;
}

@keyframes slideleft {
    0% {
        transform: translate(-100px);
        opacity: 0;
    }
    100% {
        transform: translate(0px);
        opacity: 1;
    }
}

p.left {
    animation-delay: 2s;
}

.links.left {
    animation-delay: 3s;
}

/* Media Queries */
@media (min-aspect-ratio: 16/9) {
    .video {
        width: 100%;
        height: auto;
    }
}

@media (max-aspect-ratio: 16/9) {
    .video {
        width: auto;
        height: 100%;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: rgba(12, 3, 51, 0.8);
        position: absolute;
        top: 100%;
        left: 0;
        padding: 0;
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        margin: 0;
        width: 100%;
        text-align: center;
    }

    nav ul li a {
        padding: 15px 0;
        width: 100%;
        display: block;
    }

    .menu-toggle {
        display: flex;
    }

    .content {
        bottom: 10%;
        left: 5%;
    }

    .content h1 {
        font-size: 50px;
        line-height: 60px;
    }

    .content p {
        max-width: 100%;
        line-height: 24px;
    }

    .free-img {
        padding: 10px 20px;
    }
}

/* Insights page CSS */


  
  /* Insights End */