/* ================= ROOT VARIABLES ================= */
:root {
    --color-bg-dark: #131313;
    --color-bg-light: #ffffff;
    --color-primary: #7b3fe4;
    --color-secondary: #ff3b7a;
    --color-text-light: #ffffff;
    --color-text-muted: #b5b5b5;

    --gradient-purple: linear-gradient(91deg, #6026C0 -2.53%, #8C2FC8 88.58%);
    --gradient-red: linear-gradient(86deg, #EE0A3F 3.26%, #D6037E 96.74%);

    --font-main: 'Arial', sans-serif;
    --font-title: 'Nimsara', sans-serif;
    --font-body-alt: 'Sathara', sans-serif;
    --font-ui: 'Poppins', sans-serif;

    --radius-pill: 100px;
    --radius-lg: 32px;
}

/* ================= END ROOT ================= */


/* ================= FONTS ================= */
@font-face {
    font-family: 'Nimsara';
    src: url('/fonts/SINHA_Nimsara_2012_0.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Sathara';
    src: url('/fonts/SINHA_Sathara_2012_0.woff2') format('woff2');
    font-display: swap;
}

/* ================= END FONTS ================= */


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

body {
  background-color: #0f0d12;
  background-image:
    radial-gradient(ellipse at 15% 10%, #2a1a3e 0%, transparent 50%),
    radial-gradient(ellipse at 90% 50%, #3d0a1e 0%, transparent 50%);
  background-attachment: fixed;
  min-height: 100vh;
  color: var(--color-text-light);
  font-family: var(--font-main);
}

.container {}

/* ================= END BASE ================= */


/* ================= HEADER ================= */
.header {
    padding: 1rem 0;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 48px;
    padding: 8px 24px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--color-primary);
    background: var(--gradient-purple);
    color: var(--color-text-light);
    text-decoration: none;
}

.contact-btn img {
    width: 24px;
    height: 24px;
}

/* ================= END HEADER ================= */


/* ================= HERO ================= */
.hero {
    padding-bottom: 30px;
}

.hero-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.hero-text h1 {
    font-family: var(--font-title);
    font-size: 30px;
    font-weight: 400;
    background: -webkit-linear-gradient(45deg, #c269ff, #d1b4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: normal;
    padding-bottom: 10px;
    margin: 0;
}

.hero-text .about-title {
    font-family: var(--font-title);
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-bottom: 10px;
    margin: 0;
}

.hero-text p .sinhala-text {
    font-family: var(--font-body-alt);
    font-size: 16px;
    line-height: 22px;
    text-align: justify;
}



/* ================= END HERO ================= */


/* ================= APP SECTIONS ================= */
.main-card {
    padding: 0;
    display: block;
    column-gap: 40px;

}

.app-section {
    height: 675px;
}

.app-section .mosan-mobile {
    height: 675px;
}

.app-section {
    position: relative;
    height: 675px;
    overflow: hidden;
    margin-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;

}

.app-section .mosan-desktop {
    display: none;
}

.app-section .mosan-mobile {
    position: relative;
    inset: 0;
    width: 100%;
    height: 675px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.app-section-text {
    position: absolute;
    inset: 0;
    padding: 0 20px 10px 20px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    max-width: 100%;
}

.app-text {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.app-text h2 {
    font-family: var(--font-title);
    font-size: 24px;
    line-height: 40px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 400;
    line-height: 36px;

}

.app-section--purple h2 {
    max-width: 270px;
}

.app-section--red h2 {
    max-width: 290px;

}

.app-logo {
    width: 77.311px;
    height: 36px;
    margin-bottom: 10px;
}

.app-image img {
    width: 188.646px;
    height: 248px;
}

.store-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}


.store-buttons .btn-purple {
    width: 128.413px;
    height: 42.385px;
    border-radius: 55px;
    border: 2px solid transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-buttons .btn-red {
    width: 128.413px;
    height: 42.385px;
    border-radius: 55px;
    border: 2px solid transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-buttons .btn-purple img {
    max-height: 28px;
}

.store-buttons .btn-red img {
    max-height: 28px;
}


.store-buttons--purple .btn-purple {
    background:
        var(--gradient-purple) padding-box,
        conic-gradient(from var(--angle, 0deg),
            transparent,
            #ffffff 12%,
            transparent 25%) border-box;
}


.store-buttons--red .btn-red {
    background:
        var(--gradient-red) padding-box,
        conic-gradient(from var(--angle, 0deg),
            transparent,
            #ffffff 12%,
            transparent 25%) border-box;
}

.social {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.social h6 {
    font-family: var(--font-ui);
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.social img {
    width: 40px;
    height: 40px;
}

/* ================= END APP SECTIONS ================= */


/* ================= SUBSCRIBE ================= */
.subscribe {
    padding: 20px 20px;
}

.subscribe-box {
    background: var(--gradient-purple);
    border-radius: var(--radius-lg);
    text-align: center;
    padding: 20px 20px;
}

.subscribe-box h2 {
    color: #ffffff;
    font-family: var(--font-title);
    font-size: 30px;
    line-height: 48px;
}

.subscribe-box p .sinhala-font {
    font-family: var(--font-body-alt);
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.subscribe-form input {
    width: 100%;
    padding: 14px 25px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--color-text-light);
    background: transparent;
    color: var(--color-text-light);
    font-family: var(--font-ui);
}

.subscribe-form input::placeholder {
    color: #fff;
}

.subscribe-form button {
    height: 48px;
    padding: 8px 24px;
    border-radius: var(--radius-pill);
    border: 1px solid #fff;
    background: #fff;
    color: #6026C0;
    font-family: var(--font-ui);
}

#subscribeMessage {
    margin-top: 12px;
    color: #fff;
    font-weight: 500;
    width: 100%;
}

/* ================= END SUBSCRIBE ================= */


/* ================= FOOTER ================= */
.footer {
    background:
        linear-gradient(91deg,
            rgba(96, 38, 192, 0.20) -2.53%,
            rgba(140, 47, 200, 0.20) 88.58%),
        #000;
    padding: 2rem 0;
    text-align: center;
}

.footer-content h3 {
    color: #FFF;
    font-family: var(--font-ui);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    padding-bottom: 20px;
}

.footer a {
    color: var(--color-text-light);
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    text-decoration: none;
}

.footer a:hover {
    opacity: 0.8;
}

.footer-social {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 30px 0 50px;
}

.footer-social img {
    width: 25px;
    height: 25px;
}

.copyright-text {
    padding-top: 20px;
    border-top: 0.5px solid #fff;
    font-family: var(--font-ui);
    font-size: 14px;
    text-transform: uppercase;
    padding-left: 20px;
    padding-right: 20px;
}

.copyright-text a {
    color: #FFF;
    font-family: var(--font-ui);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    font-size: 14px;
}

.contact-section p,
.footer-social p {
    font-family: var(--font-ui);
    color: #FFF;
    font-weight: 700;
    font-size: 16px;
    line-height: normal;
    margin: 0;
    padding-bottom: 10px;
}

.contact-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact-section {
    display: flex;
    column-gap: 20px;
}

.contact-info .call,
.mail {
    display: flex;
    column-gap: 20px;
}

.call img {
    width: 20px;
    height: 20px;
}

.mail img {
    width: 20px;
    height: 20px;
}

/* ================= END FOOTER ================= */


/* ================= BREAKPOINTS ================= */
@media (max-width: 767px) {
    .app-section {
        height: 670px;
    }

    .app-section .mosan-mobile {
        height: 670px;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {

    /* HERO */
    .hero {
        padding-bottom: 60px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 42px;
    }

    /* APP SECTIONS */
    .main-card {
        display: flex;
        flex-direction: row;
        gap: 60px;
        justify-content: center;
    }

    .app-section {
        height: 580px;
    }

    .app-section-text {
        padding: 30px;
    }

    .app-text h2 {
        font-size: 22px;
    }

    .store-buttons button {
        width: 140px;
        height: 30px;

    }

    .app-text button img {
        width: 70px;
        height: auto;
    }

    /* SUBSCRIBE */
    .subscribe-box {
        padding: 50px;
    }

    .subscribe-form {
        flex-direction: row;
        justify-content: center;
    }

    .subscribe-form input {
        width: 60%;
    }

}

@media (min-width: 1200px) and (max-width: 1399px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* ================= APP SECTIONS ================= */
    .main-card {
        padding: 0;
        display: flex;
        column-gap: 40px;

    }

    .app-section {
        position: relative;
        height: 624px;
        overflow: hidden;
        margin-bottom: 80px;
        width: 50%;
    }

    .app-section .mosan-desktop {
        display: block;
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 24px;
    }

    .app-section .mosan-mobile {
        display: none;
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 24px;
    }

    .app-section-text {
        position: absolute;
        inset: 0;
        padding: 0 20px 50px 20px;
        display: flex;
        justify-content: space-between;
        align-items: end;
        max-width: 100%;
        flex-direction: row;
    }

    .app-text {
        max-width: 45%;
        display: flex;
        flex-direction: column;
        justify-content: left;
        align-items: start;
    }

    .app-text h2 {
        font-family: var(--font-title);
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 20px;
        text-align: start;
    }

    .app-logo {
        width: 124px;
        height: 48px;
        margin-bottom: 10px;
    }

    .app-image img {
        width: 120px;
        height: 224px;
        border-radius: 24px;
    }

    .store-buttons {
        display: flex;
        gap: 15px;
        margin-bottom: 20px;
    }

    .store-buttons .btn-purple {
        width: 172px;
        height: 48px;
        border-radius: 55px;
        border: 2px solid transparent;
        cursor: pointer;

        display: flex;
        align-items: center;
        justify-content: center;
    }

    .store-buttons .btn-red {
        width: 172px;
        height: 48px;
        border-radius: 55px;
        border: 2px solid transparent;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .store-buttons .btn-purple {
        width: 172px;
        height: 48px;
        border-radius: 55px;
        border: 2px solid transparent;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .store-buttons .btn-purple .btn-red img {
        max-height: 28px;
    }

    .store-buttons--purple .btn-purple {
        background:
            var(--gradient-purple) padding-box,
            conic-gradient(from var(--angle, 0deg),
                transparent,
                #ffffff 12%,
                transparent 25%) border-box;
    }


    .store-buttons--red .btn-red {
        background:
            var(--gradient-red) padding-box,
            conic-gradient(from var(--angle, 0deg),
                transparent,
                #ffffff 12%,
                transparent 25%) border-box;
    }

    .social {
        display: flex;
        align-items: center;
        flex-direction: row;
        gap: 20px;
    }

    .social h6 {
        font-family: var(--font-ui);
        font-size: 20px;
        font-weight: 700;
        margin: 0;
    }

    .social img {
        width: 40px;
        height: 40px;
    }

    /* ================= END APP SECTIONS ================= */
    .subscribe-form {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    .subscribe-form input {
        width: 45%;

    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }


    /* ================= HEADER ================= */
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }

    .header {
        padding: 20px 20px 80px 20px;
    }

    .header-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .contact-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        height: 48px;
        padding: 8px 24px;
        border-radius: var(--radius-pill);
        border: 1px solid var(--color-primary);
        background: var(--gradient-purple);
        color: var(--color-text-light);
        text-decoration: none;
    }

    .contact-btn img {
        width: 24px;
        height: 24px;
    }

    /* ================= END HEADER ================= */
    /* ================= HERO ================= */
    .hero {
        padding-bottom: 100px;
    }

    .hero-grid {
        display: grid;
        gap: 2rem;
        align-items: center;
    }

    .hero-image {
        height: 490px;
    }

    .hero-image img {
        width: 100%;
        height: 490px;
        object-fit: cover;
        border-radius: 24px;
    }

    .hero-text h1 {
        font-family: var(--font-title);
        font-size: 64px;
        font-weight: 400;
        background: -webkit-linear-gradient(45deg, #c269ff, #d1b4ff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        line-height: normal;
        padding-bottom: 10px;
    }

    .hero-text .about-title {
        font-family: var(--font-title);
        font-size: 28px;
        font-weight: 400;
        line-height: 40px;
        padding-bottom: 20px;
    }

    .hero-text p .sinhala-text {
        font-family: var(--font-body-alt);
        font-size: 16px;
        line-height: 22px;
        text-align: justify;
        padding-top: 10px;
    }



    /* ================= END HERO ================= */
    /* ================= APP SECTIONS ================= */
    .main-card {
        padding: 0;
        display: flex;
        column-gap: 40px;

    }

    .app-section {
        position: relative;
        height: 624px;
        overflow: hidden;
        margin-bottom: 80px;
        width: 50%;
        padding-left: 0;
        padding-right: 0;
    }

    .app-section .mosan-desktop {
        display: block;
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 24px;
    }

    .app-section .mosan-mobile {
        display: none;
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 24px;
    }

    .app-section-text {
        position: absolute;
        inset: 0;
        padding: 0 50px 50px 50px;
        display: flex;
        justify-content: space-between;
        align-items: end;
        max-width: 100%;
        flex-direction: row;
    }

    .app-text {
        max-width: 793%;
        display: flex;
        flex-direction: column;
        justify-content: left;
        align-items: start;
    }

    .app-text h2 {
        font-family: var(--font-title);
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 20px;
        text-align: start;
    }

    .app-logo {
        width: 124px;
        height: 48px;
        margin-bottom: 10px;
    }

    .app-image img {
        width: 170.813px;
        height: 224.562px;
        border-radius: 24px;
    }

    .store-buttons {
        display: flex;
        gap: 15px;
        margin-bottom: 20px;
    }

    .store-buttons .btn-purple {
        width: 172px;
        height: 48px;
        border-radius: 55px;
        border: 2px solid transparent;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .store-buttons .btn-red {
        width: 172px;
        height: 48px;
        border-radius: 55px;
        border: 2px solid transparent;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .store-buttons .btn-purple .btn-red img {
        max-height: 28px;
    }

    .store-buttons--purple .btn-purple {
        background:
            var(--gradient-purple) padding-box,
            conic-gradient(from var(--angle, 0deg),
                transparent,
                #ffffff 12%,
                transparent 25%) border-box;
    }


    .store-buttons--red .btn-red {
        background:
            var(--gradient-red) padding-box,
            conic-gradient(from var(--angle, 0deg),
                transparent,
                #ffffff 12%,
                transparent 25%) border-box;
    }

    .social {
        display: flex;
        align-items: center;
        flex-direction: row;
        gap: 20px;
    }

    .social h6 {
        font-family: var(--font-ui);
        font-size: 20px;
        font-weight: 700;
        margin: 0;
    }

    .social img {
        width: 40px;
        height: 40px;
    }

    .app-section--purple h2 {
        max-width: unset;
    }

    .app-section--red h2 {
        max-width: unset;

    }

    /* ================= END APP SECTIONS ================= */
    /* ================= SUBSCRIBE ================= */
    .subscribe {
        padding: 0;
    }

    .subscribe-box {
        background: var(--gradient-purple);
        border-radius: var(--radius-lg);
        text-align: center;
        padding: 80px 205px;
        margin-bottom: 100px;
    }

    .subscribe-box h2 {
        font-family: var(--font-title);
        font-size: 40px;
        line-height: 48px;
        padding-bottom: 30px;
    }

    .subscribe-box p .sinhala-font {
        font-family: var(--font-body-alt);
        font-size: 18px;
        line-height: 24px;
        padding-bottom: 30px;
    }

    .subscribe-form {
        display: flex;
        flex-direction: row;
        gap: 20px;
        justify-content: center;
        padding-top: 30px;
    }

    .subscribe-form input {
        width: 45%;
        padding: 14px 25px;
        border-radius: var(--radius-pill);
        border: 1px solid var(--color-text-light);
        background: transparent;
        color: var(--color-text-light);
        font-family: var(--font-ui);
    }

    .subscribe-form button {
        height: 48px;
        padding: 8px 24px;
        border-radius: var(--radius-pill);
        border: 1px solid #fff;
        background: #fff;
        color: #6026C0;
        font-family: var(--font-ui);
    }

    /* ================= END SUBSCRIBE ================= */
    /* ================= FOOTER ================= */
    .footer {
        background:
            linear-gradient(91deg,
                rgba(96, 38, 192, 0.20) -2.53%,
                rgba(140, 47, 200, 0.20) 88.58%),
            #000;
        padding: 2rem 0;
        text-align: center;
    }

    .footer-content h3 {
        font-size: 28px;
        line-height: 48px;
        padding-bottom: 40px;
    }

    .footer a {
        color: var(--color-text-light);
        font-family: var(--font-ui);
        font-size: 20px;
        font-weight: 500;
        line-height: 24px;
        text-decoration: none;
    }

    .footer a:hover {
        opacity: 0.8;
    }

    .footer-social {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 25px;
        padding: 30px 0 50px;
        align-items: center;
    }

    .footer-social h4 {
        margin: 0;

    }

    .footer-social img {
        width: 40px;
        height: 40px;
    }

    .logo-footer {
        margin-bottom: 30px;

    }

    .social-set {
        display: flex;
        gap: 20px;

    }

    .copyright-text {
        padding-top: 20px;
        border-top: 0.5px solid #fff;
        font-family: var(--font-ui);
        font-size: 14px;
        text-transform: uppercase;
    }

    .copyright-text a {
        line-height: 24px;
        font-size: 14px;
    }

    .contact-section p,
    .footer-social p {
        font-size: 20px;
        line-height: 24px;
        margin: 0;
        padding-bottom: 0;
    }

    .contact-section {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .contact-section {
        display: flex;
        flex-direction: row;
        column-gap: 20px;
    }

    .contact-info .call,
    .mail {
        display: flex;
        justify-content: center;
        align-items: center;
        column-gap: 20px;
    }

    .contact-section .call,
    .mail {
        display: flex;
        justify-content: center;
        align-items: center;
        column-gap: 20px;
    }


    .call img {
        width: 32px;
        height: 32px;
    }

    .mail img {
        width: 32px;
        height: 32px;
    }

    #subscribeMessage {
        margin-top: 12px;
        color: #fff;
        font-weight: 500;
        width: 60%;
    }

    .success-message {
        color: #0ED284;
    }

    .error-message {
        color: #EF1F1F;
    }






    /* ================= END FOOTER ================= */

}