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

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f2f5;
    color: #FFF;
    max-width: 1440px;
    width: 100%;
    margin-left: 50%;
    transform: translateX(-50%);
    background: #fff;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    -webkit-box-shadow: 0px 0px 20px 5px rgba(170, 170, 170, 1);
    -moz-box-shadow: 0px 0px 20px 5px rgba(170, 170, 170, 1);
    box-shadow: 0px 0px 20px 5px rgba(170, 170, 170, 1);
}

.section {
    padding: 40px 120px;
}

p {
    margin: 0 0 15px;
}

h2 {
    color: #0275d8;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    margin-bottom: 10px;
}

.heading-xl {
    color: #222C3F;
    font-size: 50px;
    font-style: normal;
    font-weight: 600;
    line-height: 62px; /* 124% */
    letter-spacing: 0.1px;
}

.heading-large {
    font-size: 46px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -1.84px;
    margin: 0 0 15px;
}


.heading-s {
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.1px;
}

.body-xl {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}

.body-l {
    color: #222C3F;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

body-m {
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

body-s {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.1px;
}

p {
    margin-bottom: 15px;
}


/* For tablets (landscape) and smaller screens */
@media only screen and (max-width: 1024px) {
    .heading-xl {
        font-size: 40px;
        line-height: 52px;
    }

    .heading-large {
        font-size: 36px;
        letter-spacing: -1.44px;
    }

    .heading-s {
        font-size: 20px;
        line-height: 1.3;
    }

    .body-xl {
        font-size: 18px;
        line-height: 28px;
    }

    .body-l {
        font-size: 15px;
    }

    body-m {
        font-size: 14px;
    }

    body-s {
        font-size: 13px;
    }
}

/* For mobile devices */
@media only screen and (max-width: 768px) {
    .heading-xl {
        font-size: 30px;
        line-height: 42px;
    }

    .heading-large {
        font-size: 26px;
        letter-spacing: -1.04px;
    }

    .heading-s {
        font-size: 18px;
        line-height: 1.4;
    }

    .body-xl {
        font-size: 16px;
        line-height: 26px;
    }

    .body-l {
        font-size: 14px;
    }

    body-m {
        font-size: 13px;
    }

    body-s {
        font-size: 12px;
    }
}


/* Download Buttons */

.buttons {
    margin-top: 48px;
    display: flex;
    gap: 12px;
}

.btn-black, .btn-white {
    padding: 14px 24px;
    border-radius: 6px;
    width: fit-content;
    display: flex;
    align-items: center;
    transition: all 0.3s ease-in-out;
    gap: 8px;
    text-decoration: none;
}


.btn-black img, .btn-white img {
    margin-right: 5px;
}

.btn-black, .btn-white:hover {
    background: #3768EB;
    color: white;
    border: 2px solid #FFF;
}

.btn-white img, .btn-black:hover img {
    filter: invert(31%) sepia(34%) saturate(6928%) hue-rotate(220deg) brightness(103%) contrast(84%);
}

.btn-black img {
    filter: invert(95%) sepia(100%) saturate(0%) hue-rotate(246deg) brightness(108%) contrast(101%);
}


.btn-white:hover img {
    filter: invert(100);
}

.btn-white, .btn-black:hover {
    background: #FFF;
    border: 2px solid #3768EB;
    color: #3768EB;
}

@media screen and (max-width: 937px) {
    .buttons {
        display: flex;
        flex-direction: column;
    }

    .buttons button {
        width: fit-content;
    }
}

/* Top Section */
.header {
    position: absolute;
    top: 30px;
}
#top-section {
    background: url("/assets/top-background.png");
    background-repeat: no-repeat;
    background-size: cover;
    min-height:90vh;
    display: flex;
    align-items: center;
}

.top-banner {
    display: flex;
    gap: 50px;
    align-items: center;
}

.top-banner div:first-child {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.top-banner div:first-child {
    flex-basis: 67%;
}

.logo {
    max-width: 207px;
}

.top-section-phone {
    max-width: 301px;
    width: 90%;
    position: relative;
    bottom:-20px;
}

#top-section .body-large {
    margin-bottom: 150px;
}

@media screen and (max-width: 1052px) {
    #top-section .buttons {
        display: flex;
        flex-direction: column;
    }

    #top-section {
        min-height: 700px;
        display: block;
        background-position: center;
    }

    #top-section .buttons button {
        width: fit-content;
    }

    .top-banner div:first-child {
        flex-basis: 100% !important;
        margin-top:40px;
    }

    .top-banner div:nth-child(2) {
        display: none;
    }

    .section {
        padding: 30px 5%;
    }

    .header {
        position: relative;
        top: 0;
    }
}


/* Features Section */

#features .heading-large {
    max-width: 1034px;
    width: 95%;
    text-align: center;
    margin: 80px auto;
}

.features-section {
    display: flex;
    gap: 7%;
    align-items: center;
}

.features {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

.features-img {
    width: 100%;
}

.feature {
    text-align: center;
    color: #070E1F;
}

.feature img {
    margin-bottom: 44px;
}

.feature .heading-s {
    margin-bottom: 24px;
}

.features-section div:not(.feature) {
    flex-basis: 33%;
}

@media screen and (max-width: 860px) {
    .feature img {
        margin-bottom:24px;
    }

    .features-section {
        flex-direction: column;
        gap:40px;
    }

    .features {
        flex-direction: row;
    }

    .features-img {
        max-width: 350px;
    }

    #features div:has(.features-img) {
        order: -1;
    }

    #features .heading-large {
        margin: 80px auto 40px;
    }
}

@media screen and (max-width: 500px) {
    .features {
        flex-direction: column;
    }
}


/* Testimonials Section */

#testimonials .heading-large {
    color: #070E1F;
    text-align:center;
}

.swiper-slide {
    width: 100% !important;
}

.testimonial {
    text-align: center;
    color: #070E1F;
    padding: 40px 7%;
}

.testimonail-img {
    width: 98px;
}

.swiper-nav-con {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 99;
}

.swiper-button-prev-, .swiper-button-next-, .swiper-pagination-bullet {
    cursor: pointer;
}

.swiper-button-next-:hover svg path, .swiper-button-prev-:hover svg path {
    fill: #000;
    transition: all 0.3s ease-in-out;
}

.swiper-pagination {
    position: relative;
    z-index: 999;
}

.swiper-pagination-bullet-active {
    background-color: #000;
}

.testimonial .body-xl {
    margin: 60px 0 40px;
}

@media (max-width: 600px) {
    .testimonial .body-xl {
        margin: 30px 0 20px;
    }

    .swiper-nav-con {
        top: 10%;
        transform: translate(-50%, 0%);
        width:90%;
        margin-left:50%;
    }

    .testimonial {
        padding: 0;
    }

}

/* APP Images*/

#app-images img {
    width: 100%;
    max-width: 1000px;
}


/* FAQ */

#faq {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.faqs {
    margin-top: 78px;
    max-width: 700px;
}

.faqs div {
    margin-bottom: 60px;
}

.faqs .body-m {
    color: #222C3F;
}

.faqs .body-l {
    font-weight: 600;
    margin-bottom: 24px;
}

@media screen and (max-width:720px) {
    .faqs {
        margin-top:40px;
    }
}

/* Footer */

.footer-inner {
    display: flex;
    justify-content: space-between;
}

footer {
    margin: 0;
    width: 100%;
    background-color: #3768EB;
}

.footer-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#footer-logo {
    margin-bottom: 10px;
    width: 30%;
    min-width: 80px;
    max-width: 130px;
    border-radius: 15%;
    margin-left: -20px;
}

.footer-right table {
    margin-bottom: 10px;
}

.footer-right table .body-l, .footer-privacy .body-m {
    color: #FFF !important;
}


.tr td {
    padding-bottom: 10px;
}

#secure-section {
    margin: 10% 0;
}

.anchor {
    text-decoration: none;
}


@media screen and (max-width: 800px) {
    .footer-right:has(#copyright) {
        display: flex;
        flex-direction: column;
    }
}

@media screen and (max-width: 720px) {
    #secure-section {
        flex-direction: column;
    }

    #iphone-img, #secure-section .cta-box {
        width: 80%;
        margin-left: 10%;
    }

    .cta-heading {
        max-width: 46%;
    }

    .cta-text {
        max-width: 35%;
    }

    .footer-btn {
        display: flex;
        flex-direction: column;
    }

    .footer-btn .btn-blue {
        margin-bottom: 10px;
    }
}


@media screen and (max-width: 500px) {
    .footer-inner {
        flex-direction: column;
    }

    .footer-btn .btn-blue, .footer-btn .btn-white {
        width: fit-content;
    }

    .footer-btn {
        padding-top: 18px;
    }
}

.hide {
    display: block;
}

@media screen and (min-width: 820px) {
    .footer-privacy {
        display: flex;
        flex-direction: column;
    }

    .hide {
        display: none;
    }
}
