@import url('https://fonts.googleapis.com/css2?family=Lexend+Exa:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    scroll-behavior: smooth;
    
}
body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #0e1e40;
    color: white;
}

/* Header */
#header{
    margin: 2% 5%;
}
.nav-list{
    text-decoration: none;
    color: #6381c2;
    font-weight: 500;
    font-family: "Poppins" , sans-serif;
    font-size: 18px;
}
.logo{
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-img{
    width: 150px;
    height: auto;
}
.logo p {
    font-weight: 800;
    font-size: 30px;
}
.nav-section{
    display: flex;
    align-items: center;
    justify-content: center;
    justify-content: space-between;
}
.nav-bar{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
}
.login-signup{
    display: flex;
    gap: 30px;
}
.login-signup-btn{
    text-decoration: none;
    border: 1px solid black;
    padding: 10px 15px;
    font-family: "Poppins" , sans-serif;
    background-color: #f8e221;
    color: black;
    border-radius: 5px;
}
.nav-list:hover{
    color: white;
}
.line{
    border-bottom: 1px solid rgb(155, 152, 152);
}

/* Hero-section */
.hero-container{
    margin: 0 15%;
    display: flex;
    align-items: center;
}
.heading-bold{
    font-family: "Poppins" , sans-serif;
    font-size: 50px;
    color: #f8e221;
    font-weight: 700;
}
.hero-heading{
    font-family: "Poppins" , sans-serif;
    font-size: 50px;
    font-weight: 600;
}
.hero-subheading{
    font-family: "Poppins" , sans-serif;
    font-size: 20px;
    color: #6381c2;
    margin-top: -20px;
    padding-bottom: 30px
}
.hero-btn{
    color: black;
    background-color: #f8e221;
    padding: 20px;
    font-family: "Montserrat" , sans-serif;
    font-weight: 600;
    font-size: 25px;
    text-decoration: none;
    border-radius: 10px;
}
.upi-img{
    width: 60px;
}
.upi{
    margin-top:20px;
    display: flex;
    gap: 2px;
    font-size: 15px;
    font-family: "Poppins" , sans-serif;
}
.hero-img{
    margin-top: 40px;
}

/* About section */
#about{
    margin: 5% 15%;
}
.about-container{
    border-radius: 40px;
    background-color: #dee0e4;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    font-family: "Poppins" , sans-serif;
    color: black;
    text-align: center;
    font-size: 23px;
    font-weight: 500;
}
.about-heading{
    font-size: 25px;
    margin-bottom: -2px;
    color: #0e1e40;
}

/* Features */
#features{
    margin: 0 15%;
}
.features-container{
    display: flex;
    flex-direction: column;
}
.feature-head{
    font-family: "Poppins" , sans-serif;
    font-size: 40px;
    font-weight: 600;
    text-align: center;
}
.feature-cards{
    display: flex;
    justify-content: space-around;
}
.box{
    border: 2px solid #6381c2;
    background-color: #193164;
    width: 280px;
    height: 50px;
    font-size: 20px;
    border-radius: 10px;
    padding: 20px;
    font-family: "Poppins" , sans-serif;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}
.box:hover{
    transform: translateY(-5px);
}

/* Upcoming */
#upcoming {
    margin: 5% 0;
    padding: 5% 0;
    background-color: #5e37cb;
    text-align: center;
}
.upcoming-container {
    display: flex;
    justify-content: center;
    gap: 30px;
}
.upcoming-heading{
    margin-top: -40px;
    font-size: 35px;
    font-weight: 600;
    font-family: "Poppins" , sans-serif;
}
.upcoming-cards {
    background: #8265d4;
    border-radius: 15px;
    border: 3px solid #0e1e40;
    width: 300px;
    height: 400px;
    transition: transform 0.3s ease-in-out;
}
.upcoming-cards:hover {
    transform: translateY(-5px);
}
.upcoming-img {
    border-radius: 15px;
    width: 300px;
}
.upcoming-head {
    padding: 10px;
    font-size: 18px;
    font-weight: 300;
    font-family: "Poppins" , sans-serif;
    color: white;
}

 /* FAQs */
 #faq{
    margin: -3% 15%;
    font-family: "Poppins" , sans-serif;
 }
 .faq-title{
    font-size: 35px;
 }
 .faq-container{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
 }
 .faq-card{
    border-radius: 15px;
    padding: 0 30px;
    width: 800px;
    background-color: #8265d4;
    transition: transform 0.3s ease-in-out;
 }
 .faq-card:hover{
    transform: translateY(-5px);
 }
 .faq-question{
    font-size: 18px;
    font-weight: 600;
    color: #f8e221;
 }
 .faq-answer{
    font-size: 15px;
 }

 /* Footer */

 #footer{
    margin-top: 8%;
    background-color: #0c1220;
    font-family: "Poppins" , sans-serif;
}
.footer-container{
    display: flex;
    padding: 5% 0;
    margin: 5% 15% 0 15%;
    justify-content: space-between;
}
.footer-discription{
    width: 500px;
}
.footer-img{
    width: 250px;
}
.footer-about{
    font-size: 15px;
    color: #a9aaab;
}
.icons{
    display: flex;
    gap: 30px;
}
.fa-brands{
    color: white;
    font-size: 30px;
}
.contact{
    color: #a9aaab;
}
.footer-address{
    margin-top: -15px;
}



.header{
    display: none;
}


@media (max-width: 600px){

    /* nav bar */
    .header{
        display: flex;
    }
    .menu-bar{
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        padding: 20px;
        font-size: 30px;
    }
    .nav-bar , .login-signup{
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .nav-bar a{
        color: black;
    }
    .nav-section {
        padding: 20px;
        position: absolute;
        top: -500px; 
        left: 0;
        right: 0;
        background-color: #8265d4;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        transition: top 0.5s ease-in-out;
    }
    

    /* hero section */
    .hero-container{
        display: flex;
        flex-direction: column;
    }
    .hero-img{
        width: 400px;
    }

    /* about */
    .about-subheading{
        font-size: 15px;
    }

    /* features */
    .feature-cards{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    /* upcoming */
    .upcoming-heading{
        padding: 30px 0 0 0;
    }
    .upcoming-container{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    /* faq */
    .faq-title{
        text-align: center;
    }
    .faq-card{
        width: 500px;
    }

    /* footer */
    .footer-container{
        flex-direction: column;
        justify-content: center;
    }
    .footer-about{
        width: 400px;
    }
}

@media (max-width:300px){
     /* nav bar */
     .header{
        display: flex;
    }
    .line{
        margin-top: 20px;
    }
    .logo-img{
        width: 100px;
        padding-top: 10px;
    }
    .menu-bar{
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        font-size: 20px;
    }
    .nav-bar , .login-signup{
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .nav-bar a{
        color: black;
    }
    .nav-section {
        padding: 20px;
        position: absolute;
        top: -500px;
        left: 0;
        right: 0;
        background-color: #8265d4;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        transition: top 0.5s ease-in-out;
    }
    

    /* hero section */
    .hero-container{
        display: flex;
        flex-direction: column;
    }
    .hero-heading{
        font-size: 20px;
    }
    .hero-subheading{
        font-size: 15px;
    }
    .hero-btn{
        border-radius: 5px;
        font-size: 15px;
        padding: 5px;
    }
    .upi{
        font-size: 10px;
    }
    .upi-img{
        width: 40px;
    }
    .hero-img{
        width: 200px;
    }

    /* about */
    .about-container{
        padding: 15px;
    }
    .about-heading{
        font-size: 17px;
        line-height: 1;
    }
    .about-subheading{
        font-size: 10px;
    }

    /* features */
    .feature-head{
        margin-top: 30px;
        font-size: 20px;
    }
    .box{
        margin-top: -10px;
        padding: 5px;
        text-align: center;
        font-size: 15px;
    }
    .feature-cards{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    /* upcoming */
    .upcoming-heading{
        font-size: 20px;
        padding: 50px 0 0 0;
    }
    .upcoming-img{
        width: 200px;
    }
    .upcoming-cards{
        width: 200px;
        height: 300px;
    }
    .upcoming-head{
        margin-top: -3px;
        font-size: 15px;
    }
    .upcoming-container{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    /* faq */
    .faq-title{
        font-size: 20px;
        text-align: center;
    }
    .faq-question{
        font-size: 15px;
    }
    .faq-answer{
        margin-top: -10px;
        font-size: 13px;
    }
    .faq-card{
        width: 200px;
    }

    /* footer */
    #footer{
        margin-top: 50px;
    }
    .footer-img{
        width: 150px;
    }
    .footer-container{
        padding-top: 30px;
        flex-direction: column;
        justify-content: center;
    }
    .contact p {
        font-size: 13px;
    }
    .footer-about{
        font-size: 13px;
        width: 220px;
    }
}