* {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}


header {
    display: flex;
    align-items: center;
    margin-left: 40px;
}


.menu {
    display: none;
}

.nav-container {
    width: 100vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.navbar {
    margin: auto;
    padding: 0.5rem 1.5rem;
    margin-left: 2rem;

}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}


.drop-down {
    position: absolute;
    list-style: none;
    background: #fff;
    border-radius: 0.7rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 20px;
    margin-top: 15px;
    display: none;
}

.nav-link, .drop-down li {
    list-style: none;
    height: 100%;
    padding: 0.3rem 0rem;
    font-weight: 600;
    cursor: pointer;
}


a {
    text-decoration: none;
    font-weight: 500;
    color: #808080;
}

a:hover {
    color: black;
}

#dd-one {
    margin-left: -3.5rem;
}

.userAuth { 
    margin-right: 1rem;
    width: 130px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.userAuth button {
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
} 

.Homepage {
    height: auto;
    margin: 0.5rem 7rem;
    display: flex;
    justify-content: space-between;
}

.section-left-side {
    margin-top: 120px;
}

.section-Title {
    margin-top: 1rem;
    font-size: 5rem;
    line-height: 0.9;
}

.section-desc {
    width: 22rem;
    padding-top: 10px;
}

.section-read-more {
    background-color: black;
    color: #fff;
    padding: 10px;
    border-radius: 10px;
    margin-top: 50px;
    font-weight: bold;
}

.companies {
    margin-top: 3rem;
}

.companies img  {
    margin-right: 30px;
}

.section-right-side img {
    width: 400px;
}



