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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

:root {
    --dark-grey: #000000;
    --medium-grey: #636363;
    --light-grey: #e3e3e3;
    --ash: #f4f4f4;
    --primary-color: #6D4DFF;
    --secondary-color: #2a2a72;
    --white: #ffffff;
    --border: 1px solid var(--light-grey);
    --shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
        rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}


body {
    background-color: var(--white);
    color: var(--dark-grey);
}

a {
    text-decoration: none;
}

a,
button {
    cursor: pointer;
}

/* ============== Responsive CSS ============ */

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {

    .container,
    .container-sm {
        max-width: 540px;
    }
}

@media (min-width: 768px) {

    .container,
    .container-md,
    .container-sm {
        max-width: 720px;
    }
}

@media (min-width: 992px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1320px;
    }
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -0.5);
    margin-left: calc(var(--bs-gutter-x) * -0.5);
}

.row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
}

.col-auto {
    flex: 0 0 auto;
    width: auto;
}

.col-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
}

.col-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
}

.col-3 {
    flex: 0 0 auto;
    width: 25%;
}

.col-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
}

.col-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
}

.col-6 {
    flex: 0 0 auto;
    width: 50%;
}

.col-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
}

.col-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
}

.col-9 {
    flex: 0 0 auto;
    width: 75%;
}

.col-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
}

.col-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
}

.col-12 {
    flex: 0 0 auto;
    width: 100%;
}

.ml-auto {
    margin-left: auto !important
}

.order-0 {
    -ms-flex-order: 0;
    order: 0
}

.order-1 {
    -ms-flex-order: 1;
    order: 1
}

.order-2 {
    -ms-flex-order: 2;
    order: 2
}

@media (min-width: 576px) {
    .col-sm-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-sm-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-sm-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-sm-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-sm-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-sm-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-sm-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-sm-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-sm-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-sm-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-sm-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-sm-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (min-width: 768px) {
    .col-md-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-md-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-md-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-md-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-md-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-md-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-md-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-md-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-md-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-md-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-md-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    .order-md-0 {
        -ms-flex-order: 0;
        order: 0
    }

    .order-md-1 {
        -ms-flex-order: 1;
        order: 1
    }

    .order-md-2 {
        -ms-flex-order: 2;
        order: 2
    }
}

@media (min-width: 992px) {
    .col-lg-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-lg-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-lg-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    .offset-lg-1 {
        margin-left: 8.333333%
    }
}

.align-items-center {
    align-items: center !important;
}

.justify-content-center {
    justify-content: center !important;
}

.mt-0 {
    margin-top: .0 !important
}

.mt-1 {
    margin-top: .25rem !important
}

.mt-2 {
    margin-top: .5rem !important
}

.mt-3 {
    margin-top: 1rem !important
}

.mt-4 {
    margin-top: 1.5rem !important
}

.mt-5 {
    margin-top: 3rem !important
}

.mb-1 {
    margin-bottom: .25rem !important
}

.mb-2 {
    margin-bottom: .5rem !important
}

.mb-3 {
    margin-bottom: 1rem !important
}

.mb-4 {
    margin-bottom: 1.5rem !important
}

.mb-5 {
    margin-bottom: 3rem !important
}

.pt-0 {
    padding-top: 0 !important
}

.pt-1 {
    padding-top: .25rem !important
}

.pt-2 {
    padding-top: .5rem !important
}

.pt-3 {
    padding-top: 1rem !important
}

.pt-4 {
    padding-top: 1.5rem !important
}

.pt-5 {
    padding-top: 3rem !important
}

.pb-0 {
    padding-bottom: 0 !important
}

.pb-1 {
    padding-bottom: .25rem !important
}

.pb-2 {
    padding-bottom: .5rem !important
}

.pb-3 {
    padding-bottom: 1rem !important
}

.pb-4 {
    padding-bottom: 1.5rem !important
}

.pb-5 {
    padding-bottom: 3rem !important
}

.pe-0 {
    padding-right: 0 !important
}

.pe-1 {
    padding-right: .25rem !important
}

.pe-2 {
    padding-right: .5rem !important
}

.pe-3 {
    padding-right: 1rem !important
}

.pe-4 {
    padding-right: 1.5rem !important
}

.pe-5 {
    padding-right: 3rem !important
}

.ps-0 {
    padding-left: 0 !important
}

.ps-1 {
    padding-left: .25rem !important
}

.ps-2 {
    padding-left: .5rem !important
}

.ps-3 {
    padding-left: 1rem !important
}

.ps-4 {
    padding-left: 1.5rem !important
}

.ps-5 {
    padding-left: 3rem !important
}

.m-auto {
    margin: auto !important
}

.p-0 {
    padding: 0 !important
}

.p-1 {
    padding: .25rem !important
}

.p-2 {
    padding: .5rem !important
}

.p-3 {
    padding: 1rem !important
}

.p-4 {
    padding: 1.5rem !important
}

.p-5 {
    padding: 3rem !important
}

.offset-1 {
    margin-left: 8.333333%
}

.offset-2 {
    margin-left: 14%;
}

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

/* ============== Responsive End ============ */

/* ============== Navbar CSS ================ */

.main_nav {
    background-color: var(--white);
}

.main_nav ul {
    list-style: none;
}

.main_nav a {
    text-decoration: none;
    color: inherit;
    white-space: nowrap;
    font-weight: 500;
}

.main_nav button {
    border: none;
    background-color: transparent;
    cursor: pointer;
    color: inherit;
}

.main_nav .btn {
    display: block;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 0.6rem 1.4rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 25px;
}

.main_nav .icon {
    padding: 0.5rem;
    background-color: var(--light-grey);
    border-radius: 10px;
}

.main_nav .logo {
    margin-right: 1.5rem;
    display: flex;
    align-items: center;
}

.main_nav .logo img {
    width: 150px;
}

#nav-menu {
    border-bottom: var(--border);
    position: sticky;
    top: 0;
    z-index: 999;
}

.main_nav .menu_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 2rem;
    height: 70px;
}

.main_nav .menu {
    position: relative;
    background: var(--white);
}

.main_nav .menu-bar li:first-child .dropdown {
    flex-direction: initial;
    /* min-width: 480px; */
}

/* .main_nav .menu-bar li:first-child ul:nth-child(1) {
    border-right: var(--border);
} */

.main_nav .menu-bar li:nth-child(n + 2) ul:nth-child(1) {
    border-bottom: var(--border);
}

.main_nav .menu-bar .dropdown-link-title {
    font-weight: 600;
    white-space: nowrap;
}

.main_nav .menu-bar .nav-link {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: -0.6px;
    padding: 0.3rem;
    min-width: 60px;
    margin: 0 0.6rem;
}

.main_nav .menu-bar .nav-link:hover,
.main_nav .dropdown-link:hover {
    color: var(--primary-color);
}

.main_nav .nav-start,
.main_nav .nav-end,
.main_nav .menu-bar,
.main_nav .right-container,
.main_nav .right-container .search {
    display: flex;
    align-items: center;
}

.search {
    margin-right: 18px;
}

.nav-end {
    position: relative;
}

.main_nav .dropdown {
    display: flex;
    flex-direction: column;
    /* min-width: 230px; */
    background-color: var(--white);
    border-radius: 10px;
    position: absolute;
    top: 50px;
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    transform: scale(0.97) translateX(-5px);
    transition: 0.1s ease-in-out;
    /* box-shadow: var(--shadow); */
    border: 1px solid var(--light-grey);
}

.main_nav .dropdown.active {
    visibility: visible;
    opacity: 1;
    transform: scale(1) translateX(5px);
}

.main_nav .dropdown ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
    font-size: 0.95rem;
}

.main_nav .dropdown-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.15rem;
}

.main_nav .dropdown-link {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem 0;
    border-radius: 7px;
    transition: 0.1s ease-in-out;
    align-items: center;
}

.main_nav .dropdown-link img {
    width: 28px;
}

.main_nav .dropdown-link p {
    font-size: 0.8rem;
    color: var(--medium-grey);
}

.main_nav .right-container {
    display: flex;
    align-items: center;
    /* column-gap: 1rem; */
}

.main_nav .right-container .search {
    position: relative;
}

.main_nav .right-container img {
    border-radius: 50%;
    width: 40px;
    min-width: 40px;
    height: 40px;
    cursor: pointer;
}

.main_nav .search input {
    background-color: var(--ash);
    border: none;
    border-radius: 6px;
    padding: 0.7rem;
    padding-left: 2.4rem;
    font-size: 16px;
    width: 100%;
    border: var(--border);
}

.main_nav .search .bx-search {
    position: absolute;
    left: 10px;
    top: 50%;
    font-size: 1.3rem;
    transform: translateY(-50%);
    opacity: 0.6;
}

.main_nav #hamburger {
    display: none;
    padding: 0.1rem;
    margin-left: 15px;
    font-size: 1.9rem;
}

.settingsCard ul {
    background-color: var(--white);
    border: 1px solid var(--light-grey);
    position: absolute;
    top: 56px;
    right: -10px;
    border-radius: 10px;
    padding: 1.5rem;
    font-size: 0.95rem;
}

.settingsCard ul li {
    font-size: 14px;
}

.settingsCard ul li a {
    display: inline-flex;
    gap: 10px;
    align-items: center;
}

.settingsCard ul li a:hover {
    color: var(--primary-color);
}

.settingsCard ul li a img {
    width: 20px !important;
    min-width: 20px !important;
    height: 20px !important;
    border-radius: inherit !important;
}

.settingsCard ul li:not(:last-child) {
    margin-bottom: 20px;
}

.hiddenCard {
    display: none;
}

.settingsCard ul::before {
    content: "";
    width: 20px;
    height: 20px;
    background: var(--white);
    transform: rotate(45deg);
    position: absolute;
    top: -11px;
    border-top: 1px solid var(--light-grey);
    border-left: 1px solid var(--light-grey);
    right: 20px;
}

@media(min-width: 991px) {
    .main_nav .dropdown::before {
        content: "";
        width: 20px;
        height: 20px;
        background: var(--white);
        transform: rotate(45deg);
        position: absolute;
        top: -10px;
        border-top: 1px solid var(--light-grey);
        border-left: 1px solid var(--light-grey);
        left: 25px;
    }
}



@media (max-width: 991px) {
    .main_nav #hamburger {
        display: block;
    }

    /* .main_nav .menu_container {
        padding: 1.2rem;
    } */

    .main_nav .menu {
        display: none;
        position: absolute;
        top: 71px;
        left: 0;
        min-height: 100vh;
        width: 100vw;
    }

    .main_nav .menu-bar li:first-child ul:nth-child(1) {
        border-right: none;
        border-bottom: var(--border);
    }

    .main_nav .dropdown {
        display: none;
        min-width: 100%;
        border: none !important;
        border-radius: 5px;
        position: static;
        top: 0;
        left: 0;
        visibility: visible;
        opacity: 1;
        transform: none;
        box-shadow: none;
    }

    .main_nav .menu.show,
    .main_nav .dropdown.active {
        display: block;
    }

    .main_nav .dropdown ul {
        padding-left: 0.3rem;
    }

    .main_nav .menu-bar {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        row-gap: 1rem;
        padding: 1rem;
    }

    .main_nav .menu-bar .nav-link {
        display: flex;
        justify-content: space-between;
        width: 100%;
        font-weight: 600;
        font-size: 1.2rem;
        margin: 0;
    }

    .main_nav .menu-bar li:first-child .dropdown {
        min-width: 100%;
    }

    .main_nav .menu-bar>li:not(:last-child) {
        padding-bottom: 0.5rem;
        border-bottom: var(--border);
    }

    .settingsCard ul {
        right: 40px;
    }
}

@media (max-width: 600px) {
    .main_nav .right-container .search {
        display: none;
    }
}

/* ============== Navbar End ================ */

/* ============= Footer CSS ============= */

.footer {
    padding: 100px 0 40px;
    background-color: var(--dark-grey);
}

.footerCredit {
    margin-top: 100px;
    border-top: 1px solid var(--medium-grey);
    text-align: center;
    padding-top: 40px;
    color: var(--medium-grey);
    font-size: 15px;
}

.footerCredit span {
    color: var(--primary-color);
    font-weight: 500;
}

.footerCompany img {
    width: 150px;
    margin-bottom: 10px;
}

.footerCompany p {
    margin-bottom: 40px;
    color: var(--light-grey);
}

.footerCompany ul {
    display: flex;
    font-size: 1.75rem;
    gap: 20px;
}

.footerCompany ul li {
    list-style: none;
}

.footerCompany ul li a {
    color: var(--white);
}

.footerCompany ul li a:hover {
    color: var(--primary-color);
}

.footerMenus h4 {
    color: var(--white);
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 40px;
}

.footerMenus ul li {
    margin-top: 25px;
    font-size: 15px;
}

.footerMenus ul li a {
    color: var(--medium-grey);
}

.footerMenus ul li a:hover {
    color: var(--white);
}

/* =========== Footer CSS End ========== */

.heroBanner {
    padding: 100px 0;
    background-image: url('/media/site/hero-banner.svg');
    background-size: cover;
    background-position: center;
}

.bannerData {
    text-align: center;
}

.magicBar {
    background-color: #e8e7ff;
    padding: 10px 20px;
    display: inline-flex;
    gap: 7px;
    margin-bottom: 1rem;
    border-radius: 5px;
}

.magicBar i {
    font-size: 20px;
}

.bannerData h1 {
    font-size: 3.75rem;
    font-weight: 600;
}

.bannerData h1 span {
    color: var(--primary-color);
}

.bannerData p {
    font-size: 1.25rem;
    line-height: 1.5em;
    margin: 20px 0 40px;
}

.bannerBtn {
    background-color: var(--primary-color);
    padding: 15px 30px;
    border: none;
    color: var(--white);
    font-size: 1.15rem;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    line-height: inherit;
    transition: .2s ease-in-out;
}

.bannerBtn i {
    font-size: 25px;
    line-height: inherit;
}

.bannerBtn:hover {
    padding: 15px 40px;

}

.brandSlider {
    position: relative;
    margin-bottom: 0 !important;
}

.brandSlider img {
    margin: 0 15px !important;
}

.sliderHeading h3 {
    text-align: center;
    margin-top: 40px;
    font-size: 1.35rem;
    font-weight: 500;
}

.sliderHeading h3 span {
    color: var(--primary-color);
    font-weight: 600;
}

.brandSlider::before {
    content: "";
    width: 100px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9;
    background: #ffffff;
    background: -webkit-linear-gradient(to right, #ffffff, #ffffff00);
    background: linear-gradient(to right, #ffffff, #ffffff00);
}

.brandSlider::after {
    content: "";
    width: 100px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 9;
    background: #e9e8ff;
    background: -webkit-linear-gradient(to left, #e9e8ff, #ffffff00);
    background: linear-gradient(to left, #e9e8ff, #ffffff00);
}

.sectionPadding {
    padding: 100px 0;
}

.sectionHeading,
.darkHeading {
    text-align: center;
}

.sectionHeading h3,
.darkHeading h3 {
    font-size: 2.75rem;
}

.darkHeading h3 {
    color: var(--light-grey);
}

.sectionHeading h3 span {
    color: var(--primary-color);
}

.sectionHeading p {
    font-size: 1.15rem;
    line-height: 1.5em;
    margin: 0 0 40px;
}

.toolsList {
    padding: 50px;
    border-radius: 20px;
    background-image: url('/media/site/background-banner.png');
    background-position: center;
    background-size: cover;
}

.toolsList h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.toolsList p {
    color: var(--light-grey);
}

.toolsList ul li {
    display: inline-flex;
    margin-right: 5px;
    position: relative;
    padding-right: 10px;
    line-height: 1.75em;
}

.toolsList ul li::before {
    content: "";
    width: 1px;
    height: 12px;
    position: absolute;
    right: 0px;
    top: 8px;
    background-color: #b4a4ff;
}

.toolsList ul {
    margin: 20px 0;
}

.toolsList ul li a {
    color: #b4a4ff;
    font-size: 14px;
}

.toolsList ul li a:hover {
    color: var(--white);
}

.toolsList img {
    width: 100%;
    margin-top: 30px;
}

.productCard {
    padding: 50px;
    border-radius: 30px;
    border: 2px solid #b4a4ff50;
    background-image: url('/media/site/hero-banner.svg');
    background-size: cover;
    background-position: top;
    position: sticky;
    top: 100px;
    height: 100%;
}

.productText {
    padding-left: 20px;
}

.productText h3 {
    font-size: 2rem;
}

.productText p {
    font-size: 1.15rem;
    line-height: 1.5em;
    margin: 5px 0 20px;
}

.productMedia video {
    width: 100%;
    border-radius: 25px;
    border: 1px solid var(--light-grey);
}

.faqSection {
    background-image: url('/media/site/background-banner.png');
    background-size: cover;
    background-position: top;
}


.faqContent details {
    cursor: pointer;
}

.faqContent summary:focus-visible {
    outline: 2px solid orange;
    outline-offset: 8px;
    border-radius: 4px;
}

.faqContent summary {
    font-size: 20px;
    color: #f4f4f6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.faqContent summary::marker {
    display: none;
    content: "";
}

.faqContent details>p {
    color: #AEB9C6;
    font-size: 1rem;
    line-height: 1.5em;
    margin-bottom: 30px;
}

.faqContent details h4 {
    font-weight: 400;
    font-size: 1.15rem;
    color: var(--white);
}

.faqContent details:not(:last-of-type) {
    border-bottom: 1px solid #431791;
    margin-bottom: 20px;
}

.masonry {
    column-count: 3;
    column-gap: 1.25rem;
}

.reviewCard {
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    break-inside: avoid;
    background-image: url('/media/site/hero-banner.svg');
    background-size: cover;
    background-position: top;
    padding: 20px;
    border-radius: 15px;
    border: 2px solid #b4a4ff;
    margin-top: 1.25rem;
    transition: .3s all;
}

.reviewCard:hover {
    box-shadow: 0 0px 100px 0 #b4a4ff;
}

.reviewMeta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.reviewUsers {
    display: flex;
    align-items: center;
    gap: 7px;
}

.reviewUsers img {
    width: 50px;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: top;
    border-radius: 100px;
}

.reviewUsers h4 {
    font-weight: 600;
    font-size: 1.15rem;
}

.reviewUsers span {
    color: var(--medium-grey);
    font-size: 14px;
}

.reviewStars i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.reviewText p {
    line-height: 1.5em;
}

.aiForm textarea {
    min-width: 100%;
    max-width: 100%;
    min-height: 150px;
    border: 2px solid var(--light-grey);
    border-radius: 15px;
    outline: none;
    padding: 20px;
    font-size: 16px;
    line-height: 1.55em;
}

.aiForm textarea:focus {
    border: 2px solid var(--primary-color);
    box-shadow: 0 0px 100px 0 #cec3ff;
}

.aiForm button {
    background-color: var(--primary-color);
    padding: 15px 30px;
    border: none;
    color: var(--white);
    font-size: 1rem;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    line-height: inherit;
    transition: .2s ease-in-out;
    margin-top: 10px;
}

.aiForm button i {
    font-size: 1.25rem;
}

.aiForm button:hover {
    background-color: var(--dark-grey);
}

.featuresPills {
    text-align: center;
    margin-top: 10px;
}

.featuresPills ul li {
    display: inline-block;
    padding: 10px 20px;
    background-color: #e7e2ff;
    border-radius: 25px;
    margin: 6px 3px;
    color: var(--primary-color);
    cursor: pointer;
}

.featuresPills ul li a {
    color: var(--primary-color);
}

.featuresPills ul li:hover {
    background-color: var(--primary-color);
}

.featuresPills ul li:hover,
.featuresPills ul li:hover a {
    color: var(--white);
}

.featureImage img {
    width: 100%;
    border-radius: 20px;
}

.howToCard {
    background-image: url('/media/site/hero-banner.svg');
    background-size: cover;
    background-position: top;
    padding: 60px 25px 25px;
    border-radius: 15px;
    border: 2px solid #b4a4ff;
    margin-top: 24px;
    transition: .3s all;
    position: relative;
}

.howToCard:hover {
    box-shadow: 0 0px 100px 0 #b4a4ff;
}

.howToCard span {
    position: absolute;
    left: -2px;
    top: -2px;
    background-color: var(--primary-color);
    padding: 10px 15px;
    color: var(--white);
    border-radius: 12px 0 12px 0;
}

.howToCard h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.howToCard p {
    line-height: 1.5em;
}

.contentPage {
    padding: 50px 0;
}

.contentPage h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.contentPage h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contentPage h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contentPage p,
.contentPage li {
    font-size: 17px;
    line-height: 1.5em;
    margin-bottom: 1rem;
}

.contentPage ul,
.contentPage ol {
    padding-left: 18px;
}

.faqPage.faqContent details:not(:last-of-type) {
    border-bottom: 1px solid var(--dark-grey);
}

.faqPage.faqContent summary {
    color: var(--dark-grey);
}

.faqPage.faqContent details h4 {
    font-weight: 500;
    font-size: 1.15rem;
    color: var(--dark-grey);
}

.faqPage.faqContent details>p {
    color: var(--dark-grey);
}

/* =============  */

.pricing-section {
    padding: 50px 0 100px;
}

.pricing-header-area {
    text-align: center;
    margin-bottom: 36px;
}

.pricing-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-subtitle {
    color: var(--medium-grey);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.billing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.toggle-label {
    font-weight: 500;
    color: var(--medium-grey);
    cursor: pointer;
    transition: color 0.2s;
}

.toggle-label.active {
    color: var(--primary-color);
}

.discount-badge {
    background: #ffe066;
    color: #b8860b;
    font-size: 0.85em;
    padding: 2px 7px;
    border-radius: 12px;
    margin-left: 4px;
    font-weight: 600;
}

.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.switch input {
    display: none;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--light-grey);
    border-radius: 24px;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    transition: .4s;
}

.switch input:checked+.slider {
    background: linear-gradient(90deg, var(--primary-color), var(--dark-grey));
}

.switch input:checked+.slider:before {
    transform: translateX(20px);
}

.pricing-card {
    background: linear-gradient(135deg, #f3f2ff 80%, #f3f2ff 100%);
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.07);
    padding: 36px 24px 32px 24px;
    margin-bottom: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.18s;
    border: 2px solid #eae5ff;

}

.pricing-card:hover {
    box-shadow: 0 8px 40px rgba(89, 0, 255, 0.20);
}

.pricing-card.featured {
    border: 2.5px solid var(--primary-color);
    background: linear-gradient(135deg, #f3f2ff 60%, #d5cbff 100%);
    z-index: 2;
}

.plan-badge {
    display: inline-block;
    background: #e9e5ff;
    color: var(--primary-color);
    font-size: 1.05rem;
    font-weight: 500;
    border-radius: 25px;
    padding: 5px 18px;
    margin-bottom: 10px;
}

.plan-badge.popular {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.10);
}

.plan-badge.premium {
    background: #ffe066;
    color: #b8860b;
}

.plan-icon {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.plan-price span {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 400;
}

.plan-desc {
    color: var(--medium-grey);
    font-size: 1.05rem;
    margin-bottom: 20px;
    min-height: 44px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 22px 0;
    text-align: left;
    font-size: 1rem;
}

.plan-features li {
    padding: 8px 0 8px 0;
    border-bottom: 1px solid #ece8ff;
    color: var(--dark-grey);
    display: flex;
    align-items: center;
    gap: 8px;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features .bxs-check-circle {
    color: var(--primary-color);
}

.plan-features .bxs-x-circle {
    color: var(--medium-grey);
}

.plan-features .muted {
    color: var(--medium-grey);
    text-decoration: line-through;
}

.plan-btn {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 13px 36px;
    font-size: 1.13rem;
    font-weight: 600;
    cursor: pointer;
}

.pricing-trust {
    text-align: center;
    margin-top: 24px;
    color: var(--medium-grey);
    font-size: 1rem;
}

.pricing-trust img {
    height: 24px;
    margin: 0 12px;
    vertical-align: middle;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.pricing-trust img:hover {
    opacity: 1;
}

/* ======== Blog Css ========= */

.blogHeader {
    padding: 50px 0;
    background-image: url(/media/site/background-banner.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.tableofContent {
    position: sticky;
    top: 100px;
}

.tableofContent h3 {
    font-weight: 700;
    padding: 5px 0 5px 10px;
    border-left: 5px solid var(--dark-grey);
    line-height: 1;
    font-size: 1.5rem;
}

.tableofContent ul {
    padding-left: 18px;
}

.tableofContent ul li {
    list-style: square;
    margin: 15px 0;
    font-size: 14px;

}

.tableofContent ul li a {
    color: var(--dark-grey);
    font-weight: 400 !important;
}

.tableofContent ul li a:hover {
    color: var(--primary-color);
}

.tableofContent a.active {
    color: var(--primary-color);
}

.timeDate {
    margin-top: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--white);
}

.timeDate strong {
    font-weight: 600;
}

.timeReads {
    position: relative;
    padding-left: 20px;
}

.timeReads::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 8px;
    width: 5px;
    height: 5px;
    border-radius: 5px;
    background-color: var(--white);
}

span.blog_category a {
    padding: 7px 15px;
    font-size: 14px;
    background-color: var(--white);
    display: inline-block;
    margin-bottom: 5px;
    border-radius: 25px;
    color: var(--primary-color);
    font-weight: 600;
}

.blogCover img {
    width: 100%;
    border-radius: 15px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
}

.blogMeta h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin: 10px 0 20px;
}

.blog_user_meta {
    display: flex;
    align-items: center;
}

.blog_user_meta img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: top;
    border-radius: 100%;
}

.blog_user_meta span {
    color: var(--white);
    font-size: 14px;
}

.blog_user_meta h5 {
    font-size: 16px;
    margin-bottom: 2px;
    color: var(--white);
    font-weight: 600;
}

.blog_user_meta h5 a {
    color: var(--white);
}

.blogContent {
    padding: 50px 0;
}

.blog_content {
    padding: 0 0 0 40px;
}

.blog_content img {
    max-width: 100%;
    width: 100%;
    margin-bottom: 15px;
    height: auto;
    border: 1px solid var(--light-grey);
    border-radius: 10px;
}

.blog_content p {
    font-size: 17px;
    margin-bottom: 15px;
    line-height: 1.75em;
}

.blog_content h2 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 600;
}

.blog_content h3 {
    margin-bottom: 15px;
    font-size: 1.35rem;
    font-weight: 600;
}

.blog_content h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.blog_content ul {
    margin-bottom: 15px;
    padding-left: 18px;
}

.blog_content ul li {
    line-height: 1.75em;
    list-style: square;
    color: var(--dark-grey);
    font-size: 17px;
}

.blog_content ol {
    margin-bottom: 15px;
    padding-left: 18px;
}

.blog_content ol li {
    line-height: 1.75em;
    list-style: auto;
    color: var(--dark-grey);
    font-size: 17px;
}

.blog_content td,
.blog_content th {
    border: 1px solid var(--light-grey);
    padding: 10px;
}

.table {
    overflow-x: auto;
}

.blog_content table {
    border-collapse: collapse;
    margin-bottom: 20px;

}

.blog_content iframe {
    max-width: 100% !important;
    aspect-ratio: 16/9 !important;
    height: inherit;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 10px;
}

.blog_content a {
    text-decoration: underline;
    font-weight: 500 !important;
    color: var(--primary-color);
}

.blog_content strong {
    font-weight: 600;
}

.relatedArticles {
    padding: 50px 0;
    background-image: url('/media/site/hero-banner.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.allBtn {
    border: none;
    display: block;
    margin-left: auto;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 0.6rem 1.4rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 25px;
}

.relatedHead h3 {
    font-size: 1.75rem;
}

.blogCard {
    background-color: var(--white);
    border-radius: 20px;
    border: 1px solid var(--light-grey);
    position: relative;
    height: 100%;
}

.blogCard img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: center;
    border-radius: 20px 20px 0 0;
}

.cardMeta {
    padding: 30px 30px 35px;
}

.cardMeta span a {
    padding: 7px 15px;
    border-radius: 25px;
    background-color: #e7e1ff;
    display: inline-block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    z-index: 1;
    color: var(--primary-color);
}

.cardMeta h3 a {
    color: var(--dark-grey);
    font-weight: 600;
    font-size: 1.35rem;
    line-height: 1.3em;
    margin-bottom: 15px;
}

.cardMeta h3 a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.cardMeta p {
    font-size: 16px;
    line-height: 1.4em;
    margin-top: 15px;
}

.featuredArticle {
    padding: 30px;
    background-color: #00000040;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    position: relative;
}

.featuredArticle h3 a {
    color: var(--white);
    font-size: 2.5rem;
}

.featuredArticle h3 a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.featuredArticle span a {
    position: relative;
    z-index: 1;
}

.featuredArticle p {
    font-size: 17px;
    line-height: 1.5em;
    margin-top: 10px;
    color: var(--light-grey);
}

/* ======= Login Css ========== */

.authForm {
    border-left: 1px solid var(--light-grey);
    border-right: 1px solid var(--light-grey);
    padding: 60px 4rem 70px;
    color: var(--dark-grey);
}

.authForm h1 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.authForm h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.authForm input {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid var(--light-grey);
    background-color: var(--white);
    border-radius: 25px;
    outline: none;
    margin-bottom: 25px;
    font-size: 15px;
}

.authForm textarea {
    width: 100%;
    max-width: 100%;
    min-height: 150px;
    padding: 10px 15px;
    border: 2px solid var(--light-grey);
    background-color: var(--white);
    border-radius: 25px;
    outline: none;
    font-size: 15px;
}

.authForm p a {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
}

.authForm button {
    width: 100%;
    padding: 10px 15px;
    margin-top: 25px;
    border-radius: 25px;
    background-color: var(--primary-color);
    border: none;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
}

.progress-bar-container {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: 7px;
    background-color: #e3e3e3;
    z-index: 9999;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    transition: all 0.3s ease;
}

.successMessage {
    padding: 15px;
    margin-bottom: 20px;
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 25px;
    font-size: 14px;
}

.errorMessage {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 25px;
    font-size: 14px;
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.errorMessage p:not(:last-of-type) {
    margin-bottom: 10px;
}

.featureCard {
    text-align: center;
    padding: 30px;
    border: 3px solid var(--light-grey);
    border-radius: 20px;
    height: 100%;
    transition: .3s ease-in-out;
    transform: scale(.975);
}

.featureCard img {
    width: 45px;
}

.featureCard h3 {
    margin: 15px 0 10px;
    font-size: 1.35rem;
    font-weight: 600;

}

.featureCard:hover {
    box-shadow: 0 0px 100px 0 #b4a4ff;
    border: 3px solid #b4a4ff;
    transform: scale(1);
}

.featureCard p {
    font-size: 1.15rem;
    line-height: 1.5em;
}

/* ============= Media Query ============= */

@media(max-width: 1199px) {
    .bannerData h1 {
        font-size: 2.75rem;
    }

    .sectionHeading h3,
    .darkHeading h3 {
        font-size: 2.5rem;
    }

    .featuredArticle h3 a {
        font-size: 1.5rem;
    }

    .cardMeta h3 a {
        font-size: 1.25rem;
    }

    .blogMeta h1 {
        font-size: 2rem;
    }

    .tableofContent h3 {
        border-left: 4px solid var(--dark-grey);
        font-size: 1.25rem;
    }

    .masonry {
        column-count: 2;
    }
}

@media(max-width: 991px) {
    .bannerData h1 {
        font-size: 2.5rem;
    }

    .sectionHeading h3,
    .darkHeading h3 {
        font-size: 2rem;
    }

    .firstList {
        margin-bottom: 25px;
    }

    .productText h3 {
        font-size: 1.75rem;
    }

    .bannerBtn {
        padding: 10px 20px;
    }

    .footerCompany p {
        text-align: center;
    }

    .footerCompany img {
        display: block;
        margin: 0 auto 10px;
    }

    .footerCompany ul {
        justify-content: center;
        margin-bottom: 50px;
    }

    .footerMenus h4 {
        margin-bottom: 20px;
    }

    .blogMeta {
        margin-top: 25px;
    }

    .blogCover img {
        margin-top: 25px;
    }

    .relatedHead h3 {
        font-size: 1.5rem;
    }

}

@media(max-width: 767px) {
    .lastMenu {
        margin-top: 50px;
    }

    .bannerData p,
    .faqContent details h4,
    .productText p,
    .sectionHeading p {
        font-size: 18px;
    }

    .blog_content {
        padding: 0;
        margin-top: 50px;
    }

    .masonry {
        column-count: 1;
    }

}

@media(max-width: 575px) {
    .bannerData h1 {
        font-size: 2rem;
    }

    .sectionHeading h3,
    .darkHeading h3 {
        font-size: 1.75rem;
    }

    .productText h3 {
        font-size: 1.5rem;
    }
}