@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

* {
    box-sizing: border-box;
}
a,button{
    cursor: pointer;
}
body {
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
}

main {
    width: 100%;
    max-width: 1650px;
}

.hero {
    position: relative;
    padding: 0 80px;
    height: auto;
    max-height: auto;
    width: 100%;
    background: linear-gradient(rgba(16, 0, 135, 0.918), rgba(20, 0, 169, 0.868)), url('../public/hero.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
}

.ellipse-img {
    position: absolute;
    left: -60px;
    top: -160px;
    z-index: 0;
    opacity: 50%;
}

nav {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Poppins", sans-serif;
    position: relative;
    z-index: 1;
}
.logo{
    width: 50px;
    height: 50px;
    padding: 2px;
    background-color: #fff;
    border-radius: 50%;
}
.logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.menu a {
    text-decoration: none;
    color: #fff;
    font-size: .9rem;
}

.login-button button {
    padding: 10px;
    border-radius: 5px;
    font-size: .8rem;
    font-weight: 700;
    background-color: #fff;
    color: blue;
    border: none;
    font-family: "Poppins", sans-serif;
    z-index: 2;
    position: relative;
}
.login-button button:hover{
    background-color: #252525;
    color: #fff;
}
.hero-content {
    width: 100%;
    margin-top: 60px;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.lead-title-hero {
    font-size: 4rem;
    margin: 0;
    line-height: 1;
}
.buttons-div{
    display: flex;
    gap: 10px;
    align-items: center;
}
.product-description {
    margin: 0;
    width: 60%;
}

.mockup {
    width: 100%;
    height: auto;
    position: relative;
}

.mockup-stage {
    margin-top: 0px;
    margin-left: 0px;
    left: 0;
    /* position: absolute; */
    width: 100%;
    height: auto;
    padding: 20px 10px;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.mockup-img {
    width: 350px;
    height: 600px;
    display: block;
}
.mockup-img-mob{
    display: none;
}
.mockup-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mockup-img:nth-child(2) {
    margin-top: 100px;
}

.mockup-img:nth-child(4) {
    margin-top: 100px;
}
.download{
    width: 100%;
    padding: 0px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.download h1{
    margin: 0;
}
.playstore-img{
    margin-top: 10px;
    width:120px;
}
.about-us{
    width: 100%;
    height: auto;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-us-heading{
    width: 100%;
    text-align: center;
    margin: 0;
    padding:10px;
    margin-top: 60px;
}

.para-flex{
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px 0px;
    text-align: center;
}

.para-flex div{
    width: 50%;
}

.au-para{
    width: 60%;
    text-align: center;
    color: #252525;
}
.about-us h2 {
    width: 100%;
    text-align: center;
}
.para-for-vision{
    width: 100%;
    text-align: center;
}
footer{
    width: 100%;
    padding: 40px 80px;
    /* background-color: #f5f5f5; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-logo{
    display: flex;
    align-items: center;
    gap: 10px;
}

.address{
    margin-top: 10px;
    width: 40%;
    text-align: center;
    font-size: .9rem;
    color: #252525;
    padding:5px;
}

.footer-links{
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-links a{
    text-decoration: none;
    font-weight: 600;
    color: #252525;
    padding: 20px 0;
}

.copyright{
    width: 100%;
    background: linear-gradient(rgba(16, 0, 135, 0.918), rgba(20, 0, 169, 0.868)), url('../public/hero.jpg') no-repeat center center/cover;
    color: white;
    font-size: .8rem;
    display: flex ;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 80px;
    text-align: center;
}