*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Jost", Titillium Web;
    color: white;
    scroll-behavior: smooth;
}
body{
    background-color: white;
}

.container{
    width: 100%;
    overflow-x: hidden;
}

.hero{
    background-color: black;
    color: white;
    height: 90vh;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-evenly;
}
.header{
    width: 40%;
    margin-left: 20px;
}
.header h1{
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: bold;
}
.header p {
    margin-bottom: 20px;
    color: white;
}
.header button {
    border: none;
    padding: 15px 35px;
    font-size: 1.3rem;
    color: white;
    background-color: #6a5ae2;
    border-radius: 10px;
    margin-right: 20px;
    transition: all 0.5 ease;
}
.logo{
    width: 40%;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.logo img {
    width: 300px;
    border-radius: 20px;
}
#learn-more:hover, #download:hover{
    cursor: pointer;
    background-color: #5b47f4;
}


/* features */
.features{
    background-color: white;
}
.features .card{
    margin-bottom: 6rem;
}
.features .card .card-data{
    width: 40%;
    place-self: center;
}
.features .card .card-data h1{
    font-size: 2.5rem;
}
.features .que {
    padding: 5rem;

    h1{
        place-self: center;
    }
}
.features .que h1{
    color: black;
    font-size: 3rem;
}
.features .card {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    /* background-color: tomato; */
}
.features .card h1,p{
    color: black;
}
.features .card .image-box img{
    width: 300px;
}


.division{
    width: 100%;
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.division hr {
    width: 80%;
    place-self: center;
}

/* faq-section */
.faq{
    width: 100%;
    padding: 5rem;

    h1{
        font-size: 3rem;
    }
}
.faq-card{
    background-color: #e1e1e1;
    width: 90%;
    place-self: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    margin-bottom: 7rem;
    overflow-y: hidden;
}
.faq-data{
    place-self: center;
    display: flex;
    align-items: center;
    padding: 2rem;
    width: 95%;
    background-color: #e1e1e1;
}
.faq-section{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e1e1e1;
    background-color: white;
    border-radius: 10px;
    padding: 10px ;
}
#faqContainer{
    width: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
}
.faq-item{
    width: 99%;
    place-self: center;
    background-color: #e1e1e1;
    padding: 4px;
    border-radius: 10px;
    margin: 4px;;
}
.faq-item .faq-question {
    background-color: #e1e1e1;
    width: 100%;
    border-radius: 5px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.5 ease;

    span{
        color: black;

        strong{
            color: black;
        }
    }
    i{
        color: black;
    }
}
#faqContainer .faq-item:hover {
    transform: scale(1.02);
}
#faqContainer .faq-item .faq-icon {
    transition: transform 0.3s ease;
}
.faq-item .faq-answer{
    background-color: white;
    width: 100%;
    border-radius: 5px;
    padding: 5px;
    margin-top: 3px;
    color: black;

    strong{
        color: black;
    }
}
.rotate{
    transform: rotate(180deg);
}
.image-section{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.image-section img {
    width: 33rem;
}








/* contact-us */
.contact-text{
    width: 100%;
    padding: 5rem;

    h1{
        font-size: 3rem;
        place-self: center;
    }
}
.contact-us {
    place-self: center;
    width: 90%;
    display: flex;
    align-items: center;
    margin-bottom: 7rem;
    justify-content: space-around;
    background-color: #f4e6ff;
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-us .image-container {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-us .image-container img {
    width: 25rem;
    border-radius: 2rem;
}

.form-container {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.form-container form {
    width: 100%;
    border: 1px solid #a8a2d7;
    padding: 2rem;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

#contactForm {
    display: flex;
    flex-direction: column;
    width: 100%;
}

#contactForm label {
    font-size: 1.2rem;
    color: black;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

#contactForm input,
#contactForm textarea {
    width: 100%;
    font-size: 1rem;
    padding: 0.8rem;
    color: black;
    border-radius: 8px;
    background-color: white;
    border: 1px solid #a8a2d7;
    outline: none;
    margin-top: 0.3rem;
    transition: border-color 0.3s ease-in-out;
}

#contactForm input:focus,
#contactForm textarea:focus {
    border-color: #7e71deec;
}

#contactForm textarea {
    resize: none;
}

#contactForm .buttons {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 1.5rem;
}

#submit,
#reset {
    min-width: 120px;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    background-color: #7e71ded5;
    border-radius: 8px;
    font-size: 1.2rem;
    transition: background-color 0.3s, transform 0.2s;
    font-weight: 500;
}

#submit:hover,
#reset:hover {
    cursor: pointer;
    background-color: #6a5ae2;
    transform: scale(1.05);
}

/* footer */
.footer{
    width: 100%;
    background-color: black;
    border-bottom: rgb(170, 167, 167) 1.5px solid;
}
.footer-top{
    display: flex;
    align-items: center;
}
.footer-top .about-app{
    width: 60%;
    padding: 3em;
}
.footer-top .about-app h3{
    font-weight: 300;
}
.footer-top .about-app p {
    font-size: .85rem;
    color: rgb(182, 178, 178);
}
.logo-2{
    display: flex;
    align-items: center;
    margin-bottom: .7em;
}
.logo-2 img {
    width: 40px;
    border-radius: 10px;
    margin-right: .5em;
}
.footer-top .quick-links{
    width: 40%;
}
.quick-links-list {
    display: flex;
    align-items: center;
}
.quick-links h3 {
    margin-bottom: .2em;
    text-decoration: underline;
    text-underline-offset: 5px;
    font-weight: 400;
    font-size: 1.5em;
}
.quick-links-list a {
    text-decoration: none;
    margin-right: 2em;
    font-weight: 300;
}
.quick-links .social-media-handles {
    width: 23%;
    margin-top: 2em;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.quick-links .social-media-handles i {
    font-size: 1.8em;
}
.quick-links .social-media-handles i:hover {
    color: #6a5ae2;
}
.row{
    width: 100vw;
    /* padding: 1em; */
}
.row hr {
    width: 80%;
    place-self: center;
}
.footer-bottom p {
    padding: 1em;
    text-align: center;
    color: white;
}