* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #F9EAFD;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    background-color: #FFFFFF;
    border-bottom: 1px solid #ECECEC;
    height: 90px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0px 5px 8px rgba(178, 0, 237, 0.2);
}

.logo {
    width: 90px;
    height: auto;
    margin-left: 20px;
}

nav {
    flex: 1;
    display: flex;
    justify-content: right;
    margin-right: 15px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
}

nav ul li a {
    text-decoration: none;
    color: #616161;
    font-size: 14px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #B200ED;
}

.language-switch {
    display: flex;
    align-items: center;
    background: #FFFFFF;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25) inset;
    border-radius: 50px;
    padding: 5px;
    gap: 10px;
    margin-right: 160px;
    margin-left: 60px
}

.language-switch label {
    cursor: pointer;
    padding: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.language-switch input[type="radio"] {
    display: none;
}

.language-switch input[type="radio"]:checked+label {
    background: #B200ED;
    color: #FFFFFF;
    border-radius: 50px;
    padding: 5px 10px;
    font-weight: bold;
}

.section {
    padding: 20px;
    background-color: #FFFFFF;
    scroll-margin-top: 92px;
    position: relative;
    height: 650px;
    display: flex;
    align-items: center;
    z-index: 0;
}

#landing-section {
    background-color: #FFFFFF;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.landing-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.landing-left {
    flex: 3;
    padding: 0 20px;
    text-align: left;
}

.landing-right {
    flex: 2;
    text-align: center;
}

.landing-left h1 {
    font-size: 2.5rem;
    color: #B200ED;
    font-weight: bold;
    margin-bottom: 1rem;
}

.landing-left p {
    font-size: 1rem;
    color: #616161;
    margin-bottom: 2rem;
}

.landing-left .btn {
    padding: 15px 70px;
    border-radius: 15px;
    background-color: #B200ED;
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn img {
    vertical-align: middle;
}

.landing-left .btn:hover {
    background-color: #9200C9;
}

.landing-topright .btn {
    /* padding: 15px; */
    border-radius: 15px;
    background-color: #B200ED;
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s;
    width: 154px;
    height: 41px;
    text-align: center;
}

.btn img {
    vertical-align: middle;
}

.landing-topright .btn:hover {
    background-color: #9200C9;
}

.landing-right img {
    max-width: 100%;
    height: auto;
}

.landing-background-image {
    position: absolute;
    z-index: -1;
}

.landing-top-right {
    top: 0;
    right: 0;
    overflow: hidden;
}

.landing-bottom-left {
    bottom: 0;
    left: 0;
    overflow: hidden;

}

#about-fomo {
    background-color: #F9EAFD;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    position: relative;
}

#about-fomo .content-box {
    background-color: rgba(255, 255, 255, 0.8);
    width: 70%;
    padding: 20px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#about-fomo .content-box h2 {
    position: relative;
    margin-bottom: 20px;
    font-size: 36px;
    white-space: nowrap;
    line-height: 0.5;
    top: -85px;
}

#about-fomo .content-box .first-line,
#about-fomo .content-box .second-line {
    position: relative;
    color: #B200ED;
    display: inline-block;
}

#about-fomo .content-box .first-line::before,
#about-fomo .content-box .second-line::before {
    content: attr(data-text);
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    color: rgb(255, 255, 255);
    z-index: -1;
    font-weight: 900;
}

#about-fomo .content-box .first-line {
    font-weight: bold;
    top: -10px;
    width: 100%;
    margin-bottom: -5px;
}

#about-fomo .content-box .first-line::before {
    font-weight: 900;
}

#about-fomo .content-box .second-line {
    font-weight: 800;
    width: 100%;
    top: 10px;
    margin-top: -50px;
}

#about-fomo .content-box .second-line::before {
    font-weight: 900;
}

#about-fomo p {
    color: #616161;
    font-size: 1rem;
    margin-top: -10px;
    margin-bottom: 25px;
    padding: 20px 15%;
}

.about-quotation-image {
    position: relative;
    z-index: 2;
}

.about-quotation-left {
    top: -55px;
    right: 40%;
}

.about-quotation-right {
    top: -130px;
    left: 40%;
    margin-bottom: -110px;
}

.background-image {
    position: absolute;
    z-index: -1;
}

.about-top-right {
    top: 20px;
    right: 0;
    overflow: hidden;
}

.about-bottom-left {
    bottom: 0;
    left: 0;
    overflow: hidden;
}

.product-top-left {
    top: 0;
    left: 0;
    overflow: hidden;
}

.product-bottom-right {
    bottom: 0;
    right: 0;
    overflow: hidden;
}

.download-top-right {
    top: 0;
    right: 0;
    overflow: hidden;
    z-index: -1;
}

#product {
    background-color: #B707F2;
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#product .section-content {
    max-width: 1200px;
    margin: 0 auto;
}

#product h1 {
    text-align: center;
    color: #FFFFFF;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 900;
}

.product-grid {
    display: flex;
    justify-content: space-between;
}

.product-item {
    flex: 0 0 calc(33.33% - 20px);
    background-color: #FFFFFF;
    padding: 30px;
    margin-bottom: 20px;
    margin-left: 20px;
    text-align: left;
    border-radius: 50px;
}

.product-item img {
    max-width: 100%;
    height: 45%;
    margin-bottom: 10px;
}

.product-item h3 {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 10px;
    color: #616161;
}

.product-item p {
    font-size: 14px;
    color: #616161;
}

#download {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 150px;
    flex-wrap: wrap;
}

.download-left {
    flex: 3;
    order: 1;
}

.download-right {
    flex: 2;
    display: flex;
    justify-content: flex-end;
    order: 2;
}

.download-left h2 {
    color: #424242;
    font-weight: bold;
    font-size: 40px;
    margin-bottom: 10px;
}

.download-left p {
    color: #B200ED;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 30px;
}

.btn-pill {
    display: inline-block;
    padding: 15px 60px;
    background-color: #B200ED;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s;
}

.btn-pill:hover {
    background-color: #9200C9;
}

.download-right img {
    margin-bottom: -83px;
}

footer {
    background-color: #EEEEEE;
    padding: 20px 0;
    border-top: 1px solid #ECECEC;
    height: 351px;
    z-index: 1000;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    flex-wrap: wrap;
}

.footer-logo {
    padding-left: 210px;
}

.footer-logo img {
    width: 80px;
    height: auto;
}

.footer-company-name {
    font-weight: bold;
    font-size: 16px;
    margin-top: 15px;
}

.footer-company-address {
    font-size: 14px;
    margin-top: 15px;
    text-align: left;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.footer-nav ul li a {
    text-decoration: none;
    color: #616161;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-nav ul li a:hover {
    color: #B200ED;
}

.footer-socials {
    display: flex;
    justify-content: left;
    flex-direction: column;
    align-items: left;
    gap: 20px;
}

.contact-us {
    text-align: center;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    text-decoration: none;
    color: inherit;
}

.social-icons img {
    width: 30px;
    height: 30px;
}

.footer-download {
    justify-content: center;
    margin-right: 180px;
}

.footer-download a {
    margin-right: 5px;
}

.footer-download img {
    margin-top: 5px;
    width: 152px;
    height: auto;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    color: #616161;
    font-size: 14px;
}

.footer-line {
    width: 70%;
    height: 0.2px;
    background-color: #9E9C9C;
    margin: 0 auto 10px auto;
}

.space-below-footer {
    height: 3vh;
    background-color: #250031;
}

@media (max-width: 768px) {
    .language-switch {
        display: flex;
        align-items: center;
        margin-right: 50px;
    }

    nav {
        position: relative;
    }

    #nav-toggle {
        display: block;
        background-color: transparent;
        border: none;
        cursor: pointer;
        padding: 10px;
        font-size: 16px;
        color: #616161;
    }

    #nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        background-color: #FFFFFF;
        box-shadow: 0px 5px 8px rgba(178, 0, 237, 0.2);
        padding: 10px;
        border-radius: 5px;
    }

    #nav-menu li {
        margin-bottom: 10px;
    }

    #nav-toggle[aria-expanded="true"]+#nav-menu {
        display: block;
    }

    .section {
        height: auto;
    }

    #landing-section {
        padding: 20px;
    }

    .landing-content {
        flex-direction: column-reverse;
        align-items: center;
    }

    .landing-left,
    .landing-right {
        flex: 1;
        text-align: center;
        margin-bottom: 2rem;
    }

    .landing-left h1 {
        font-size: 2rem;
    }

    .landing-left p {
        font-size: 0.875rem;
    }

    .landing-right img {
        max-width: 70%;
        height: auto;
    }

    .landing-top-right {
        max-width: 80%;
    }

    #about-fomo .content-box {
        width: 90%;
        padding: 15px;
    }

    #about-fomo .content-box h2 {
        font-size: 18px;
        line-height: 0.5;
        top: -10px;
    }

    #about-fomo p {
        font-size: 0.875rem;
    }

    .about-quotation-left {
        display: none;
    }

    .about-quotation-right {
        display: none;
    }

    .product-grid {
        flex-direction: column;
        align-items: center;
    }

    .product-item {
        flex: 0 0 100%;
        margin-left: 0;
    }

    #download {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .download-left,
    .download-right {
        width: 100%;
        text-align: center;
        order: unset;
    }

    .download-right {
        margin-top: 20px;
    }

    .download-right img {
        width: 80%;
        display: block;
        margin: 0 auto;
        margin-bottom: -20px;
    }

    footer {
        text-align: center;
        height: auto;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-logo,
    .footer-company-name,
    .footer-company-address {
        padding-left: 0;
        text-align: center;
    }

    .footer-socials {
        margin: 10px auto;
    }

    .footer-download {
        margin: 0 auto;
        text-align: center;
    }

    .footer-download img {
        display: block;
        margin: 0 auto;
    }
}

@media (min-width: 769px) and (max-width: 1440px) {
    #about-fomo .content-box {
        width: 90%;
        padding: 15px;
    }

    #about-fomo .content-box h2 {
        font-size: 24px;
        line-height: 0.5;
        top: -75px;
    }
}

@media (min-width: 769px) and (max-width: 1440px) {
    #download {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .download-left,
    .download-right {
        width: 100%;
        text-align: center;
        order: unset;
    }

    .download-right {
        margin-top: 10px;
    }

    .download-right img {
        width: 40%;
        display: block;
        margin: 0 auto;
        margin-bottom: -20px;
    }
}

@media (min-width: 769px) {
    #nav-toggle {
        display: none;
    }

    .landing-topright .btn {
        /* padding: 15px; */
        border-radius: 25px;
        background-color: #B200ED;
        color: #FFFFFF;
        font-size: 1rem;
        font-weight: 600;
        text-decoration: none;
        transition: background-color 0.3s;
        width: 154px;
        height: 41px;
        text-align: center;
    }

    header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 40px;
        background-color: #FFFFFF;
        box-shadow: 0px 5px 8px rgba(178, 0, 237, 0.1);
    }

    .nav-menu {
        display: flex;
        align-items: center;
    }

    #product h1 {
        font-size: 40px;
    }

    .content-scroll {
        width: 100%;
        overflow-x: auto;
        justify-content: center;
        align-items: center;
        /* white-space: nowrap; */
        display: flex;
    }

    .content-scroll .card {
        display: inline-block;
        vertical-align: top;
        white-space: normal;
    }
}
