@import url("https://fonts.googleapis.com/css2?family=Inter&family=Plus+Jakarta+Sans:wght@200&display=swap");

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

img {
    opacity: 1;
    transition: opacity 1s;
}

img[data-src] {
    opacity: 0;
}

/* navbar */
nav {
    width: 100%;
    position: fixed;
    z-index: 1000;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 80px;
    width: 80%;
    border-radius: 10px;
    background: linear-gradient(rgba(255, 255, 255, 0.3),
            rgba(255, 255, 255, 0.5));
    box-shadow: 0px 0px 10px 0px rgba(158, 158, 158, 0.25) inset 0 0 10px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px) saturate(180%) contrast(120%);
    -webkit-backdrop-filter: blur(8px) saturate(180%) contrast(120%);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-items {
    display: flex;
    justify-content: space-around;
    width: 70%;
}

.nav-items span a {
    color: #000000;
    font-family: "Inter", sans-serif;
    font-size: 20px;
    text-decoration: none;
}

a {
    text-decoration: none;
    color: #000000;
}

.hamburger {
    width: 1.5rem;
    display: none;
    background-color: transparent;
    border: none;
}

.closeButtonRow {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0.5rem 15%;
}

.closeButton {
    border: none;
    background-color: transparent;
}

.closeButton img {
    width: 1.5rem;
}

.mobmenu {
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.4);
    z-index: 1000;
    padding: 5vh 0 35vh 0;
    display: none;
}

.mobmenu span {
    width: 100%;
    text-align: right;
    padding: 0 20% 0 0;
    opacity: 0;
    /* Start with 0 opacity */
    transform: translateY(20px);
    /* Start position */
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.mobmenu.show span {
    opacity: 1;
    /* End with full opacity when the menu is shown */
    transform: translateY(0);
    /* End position when the menu is shown */
}

.mobmenu span a {
    color: #000000;
    font-family: "Inter";
    font-size: 20px;
    text-decoration: none;
}

.container-header {
    padding: 7rem 5% 0rem 5%;
    text-align: center;
    color: #0A0A28;
    font-family: 'Inter', sans-serif;
    font-size: 4rem;
    font-weight: 900;
}

.container-1 {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.c1-image img {
    width: 70vw;
}

.shadow {
    width: 50vw;
}

.container-2 {
    padding: 2rem;
}

.c2-header {
    text-align: center;
    color: #0A0A28;
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    padding: 2rem;
}



.table-container {
    border-radius: 0.625rem;
    background: #0A0A28;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.table-header {
    margin-top: 25px;
    text-align: center;
    color: #FFF;
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 400;
}

table {
    border: none;
    width: 100%;
    font-family: 'Inter', sans-serif;
    border-collapse: collapse;

}

td,
th {
    color: white;

}

td {
    font-family: 'Plus Jakarta Sans';
    border-bottom: 1px dashed #fff;
    padding: 0.5rem;
}

th {
    border-bottom: 1px solid #fff;
    padding: 0.25rem;
}

.table-desc {
    border-right: 1px solid white;
}

.table-data {
    align-items: center;
    justify-content: center;
    display: flex;
}



.dot {
    height: 20px;
    width: 20px;
    background-color: #00A711;
    border-radius: 50%;
}

.dot1 {
    height: 20px;
    width: 20px;
    background-color: #A70000;
    border-radius: 50%;
}

.container-3 {
    margin-top: 20px;
}

.c3-header {
    text-align: center;
    color: #0A0A28;
    font-size: 40px;
    font-family: 'inter', sans-serif;
    font-weight: 400;
    text-transform: capitalize;
    word-wrap: break-word
}

.container-3 {
    display: flex;
    flex-direction: column;
    gap: 5vh;
    padding: 10vh 8%;
}

.c3-title {
    color: #0a0a28;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 2.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}

.c3-mid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10%;
    flex: 1 0 0;
    align-self: stretch;
    flex-wrap: nowrap;
}

.c3-head {
    color: #000;
    text-align: center;
    font-family: 'Plus Jakarta Sans';
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
}

.c3-cards img {
    width: 100%;
}

.robo {
    height: 25vh;
}

.c3-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 25%;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.video-frame {
    height: 720px;
    width: 100%;
}

.container-4 {
    display: flex;
    flex-direction: column;
    gap: 5vh;
    padding: 10vh 8%;
}

.c4-title {
    color: #0a0a28;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 2.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}

.c4-mid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10%;
    flex: 1 0 0;
    align-self: stretch;
    flex-wrap: nowrap;
}

.c4-head {
    color: #000;
    text-align: center;
    font-family: 'Plus Jakarta Sans';
    font-size: 1rem;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-transform: capitalize;
}


.c4-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 20%;
}

.c4-cards img {
    width: 70px;
}

.btnWrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.button {
    display: flex;
    padding: 1rem 2rem;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    font-weight: 300;
    border-radius: 0.625rem;
    background: #4747d1;
    cursor: pointer;
    width: 150px;
    align-self: center;
    border: none;
}

.trialLicense {
    font-family: 'Plus Jakarta Sans';
    /* color: red; */
    text-decoration: underline;
    font-weight: 600;
}

.container-5 {
    border-top: 1px solid #A5A5A5;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10%;
    align-self: stretch;
    padding: 10vh 5%;
}

.c5-titles {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.c5-title {
    color: #0a0a28;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}

.c5-subtitle {
    color: #5e5e5e;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 100;
    line-height: normal;
    text-transform: capitalize;
}

.button1 {
    display: flex;
    padding: 1rem 2rem;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    font-weight: 300;
    text-transform: capitalize;
    border-radius: 0.625rem;
    background: #4747d1;
    cursor: pointer;
}

.footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    background-color: #e8e8e8;
}

.footer-top {
    display: flex;
    padding: 1.25rem 5%;
    align-items: center;
    gap: 4.6875rem;
    width: 100%;
}

.follow-text {
    color: #000;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.footer-social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.social-icon {
    height: 2rem;
}

.footer-mid {
    display: flex;
    padding: 1.25rem 5%;
    align-items: flex-start;
    align-self: stretch;
    justify-content: space-between;
}

.footer-mid-right-section {
    display: flex;
    gap: 2rem;
}

.footer-mid-header {
    color: #404040;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.detail-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-s2-detailtext {
    color: #404040;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.275rem;
}

.footer-qlink {
    color: #404040;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.875rem;
}

.footer-low {
    display: flex;
    padding: 1.25rem 10%;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.low-p1 {
    color: #000;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.low-p2 {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2.5625rem;
    color: #000;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
}

.scrollUpBtn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    position: fixed;
    left: 50%;
    bottom: 30px;
    transform: translate(-50%, 0);
    z-index: 5;
}


.modal {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border: 1px solid #888;
    border-radius: 8px;
    width: 30%;
    padding: 2rem;
    font-family: "Inter", sans-serif;
}

.form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .7rem;
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-self: flex-end;
}

.formInput {
    width: 100%;
    border: 1px solid #b8b8b8;
    border-radius: 0.425rem;
    background: #E6E6E6;
    padding: 0.5rem 0.7rem;
    font-size: 1rem;
    outline: none;
}

.formSaveBtn {
    background-color: #2D5BFF;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

@media only screen and (max-width: 768px) {
    .nav-inner {
        justify-content: space-between;
        padding: 0 5%;
    }

    .logoimg {
        width: 120px;
    }

    .nav-items {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hamburger img {
        width: 30px;
    }

    .c2-table {
        padding: 1rem;
    }

    .table {
        font-size: 0.5rem;
    }

    .table-data {
        display: table-cell;
        padding-left: 2rem;
    }


    .container-3 {
        padding: 0;
    }

    .c3-cards {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .c3-head {
        width: 80vw;
    }

    .c3-mid {
        flex-direction: column;
        gap: 2rem;
    }

    .robo {
        height: auto;
    }

    .c4-mid {
        flex-direction: column;
        gap: 1rem;
    }

    .c4-cards {
        width: 100%;
        gap: 0.5rem;
    }

    .container-5 {
        flex-direction: column;
        gap: 1rem;
    }

    .c5-title {
        font-size: 1.5rem;
    }

    .c5-subtitle {
        font-size: 1rem;
    }

    .footer-top {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-mid {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-low {
        gap: 1rem;
    }

    .low-p1 {
        font-size: .75rem;
    }

    .low-p2 {
        font-size: .75rem;
    }

    .modal-content {
        width: 80%;
    }

}