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

:root {
    --primary-gradient: linear-gradient(135deg, #EAF4FF, #E0F5FF);
    --bg-texture: url('../images/noise.svg');
    --border-gradient: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 50%, #FFFFFF 100%);
    --text-color: #3f3f3f;
    --card_-gradient: #FFFFFF;
    --card_bg: #AFAFAF;
    --page_bg: #EFEFEF;
    --primary-light: #E6E6E6;
    --primary-light-hover: #D9D9D9;
    --primary-light-active: #B0B0B0;
    --primary-normal: #000000;
    --blue---light: #F1F8FC;
    --blue---light-hover: #E9F5FA;
    --blue---light-active: #D2E9F5;
    --blue---normal: #6FB9DE;
    --blue---normal-hover: #64A7C8;
    --blue---normal-active: #5994B2;
    --blue---dark: #538BA7;
}

ul {
    list-style: none;
}

li,
p,
h2,
h5,
span,
ul {
    margin: 0;
    padding: 0;
}

.mb-16 {
    margin-bottom: 16px;
}

.mt-16 {
    margin-bottom: 16px;
}

section {
    margin: 120px 0;
}

.gradient_bg {
    background-image: var(--bg-texture), var(--primary-gradient);
    background-repeat: repeat;
    background-size: cover;
    border: 2px solid transparent;
    position: relative;
    border-radius: 16px;
    --border-width: 2px;
}

.gradient_bg::before {
    content: '';
    position: absolute;
    top: calc(-3 * var(--border-width));
    left: calc(-3 * var(--border-width));
    right: calc(-3 * var(--border-width));
    bottom: calc(-3 * var(--border-width));
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 50%, #FFFFFF 100%);
    background-size: 400% 400%;
    border-radius: calc(16px + var(--border-width));
    z-index: -1 !important;
    animation: gradientMove 2s ease infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

.main_btn {
    max-height: 40px;
    padding: 12px 28px;
    border-radius: 4px;
    border: 2px solid var(--primary-gradient);
    background: var(--primary-normal);
    text-decoration: none;
    font-size: 16px;
    color: var(--primary-light);
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
}

.secondary_btn {
    max-height: 40px;
    padding: 12px 28px;
    border-radius: 4px;
    border: 2px solid var(--primary-gradient);
    background: transparent;
    text-decoration: none;
    font-size: 16px;
    color: var(--primary-normal);
    display: flex;
    justify-content: center;
    align-items: center;
}

.brush-bg {
    position: relative;
    display: inline-block;
    z-index: 2;
}

.brush-bg::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -40px;
    transform: translateY(-50%);
    width: 0%;
    height: 120%;
    background: url('../images/brush.svg') no-repeat center center;
    background-size: 90px;
    z-index: -1;
    opacity: 0;
    animation: brushSwipe 1s ease-out forwards;
    animation-delay: 3s;
    overflow: hidden;
}

.sticky-card {
    position: sticky;
    top: 20px
}

@keyframes brushSwipe {
    0% {
        width: 0%;
    }
    100% {
        width: 120%;
        opacity: 1;
    }
}

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

/*To Top*/
.to-top-btn {
    position: fixed;
    bottom: 40px;
    right: -60px;
    background-color: var(--primary-normal);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 999;
    transition: right 0.4s ease;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.to-top-btn.show {
    right: 20px;
}

.to-top-btn img {
    transform: rotate(180deg);
    filter: invert(10);
    width: 16px;
}

/*BODY*/
body {
    position: relative;
    background-color: #F3FDFF;
    font-family: 'Lama Sans', sans-serif;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;

    background: url("../images/pattern.svg") repeat;
    opacity: 0.16; /* 20% */
    z-index: -1;
}

/*Navbar*/
nav .container {
    padding: 16px 20px;
    border-radius: 16px;
    margin-top: 24px;
}

nav .container img {
    max-height: 36px;
}

.nav-link {
    color: var(--primary-normal);
}

/*.nav-link.active {*/
/*    font-weight: 500;*/
/*    position: relative;*/
/*    color: var(--blue---normal) !important;*/
/*}*/

/*.nav-link.active:before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    bottom: -10px;*/
/*    left: 50%;*/
/*    transform: translateX(-50%);*/
/*    width: 8px;*/
/*    height: 8px;*/
/*    background-color: var(--blue---normal);*/
/*    border-radius: 20px;*/

/*}*/

nav .container img {
    max-height: 32px;
}

/*HERO*/

.hero-card {
    margin-top: 20px;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 16px;
    position: relative;
    border-radius: 16px;

}

.hero h1 {
    font-size: 40px;
    line-height: 37px;
    font-weight: 700;
    color: var(--primary-normal);
    margin: 0;
    position: relative;
    z-index: 2;
}

.hero p {
    max-width: 628px;
    font-size: 16px;
    line-height: 24px;
    margin: 0;
    color: var(--text-color);
    position: relative;
    z-index: 2;
}

.hero .countdown {
    gap: 16px;
    position: relative;
    z-index: 2;
}

.hero .count-number {
    background-color: var(--primary-normal);
    color: white;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 4px;
}

.hero .count-number * {
    font-size: 16px;
}

.top-right {
    top: -300px;
    right: -300px;
    transform: translate(0, 0);
}

.bottom-left {
    bottom: -300px;
    left: -300px;
    transform: translate(0, 0);
}

@keyframes floatMerge {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-50px, 50px);
    }
    100% {
        transform: translate(0, 0);
    }
}

.hero .animated-svg {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);

}

.hero .animated-svg path {
    stroke-dasharray: 20;
    stroke-dashoffset: 400;
    opacity: .3;
    animation: draw 3s alternate forwards linear;

}

.path1 {
    animation-delay: 0s;
    fill: #325364;
    fill-opacity: 0;
}

.path2 {
    animation-delay: 3s;
    fill: #6FB9DE;
    fill-opacity: 0;
}

.path3 {
    animation-delay: 5s;
    fill: #6FB9DE;
    fill-opacity: 0;
}

@keyframes draw {
    0% {
        fill-opacity: 0;
        stroke-dashoffset: 400;
    }
    33.33% {
        fill-opacity: 0;
        stroke-dashoffset: 100;
        stroke-dasharray: 100;
    }
    66.66% {
        fill-opacity: 0;
        stroke-dashoffset: 0;
        stroke-dasharray: 400;
        opacity: .3;
    }
    100% {
        stroke-dasharray: 400;
        fill-opacity: 1;
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

/* aldhary */
.aldhary h2 {
    margin-bottom: 16px;
}

.aldhary p {
    font-size: 18px;
    color: var(--text-color);
}

.aldhary img {
    box-shadow: 0 208px 58px 0 rgba(4, 28, 31, 0.00), 0 133px 53px 0 rgba(4, 28, 31, 0.00), 0 75px 45px 0 rgba(4, 28, 31, 0.01), 0 33px 33px 0 rgba(4, 28, 31, 0.02), 0 8px 18px 0 rgba(4, 28, 31, 0.02);

}

/* target-audience */
.target-audience .card {
    background: var(--primary-gradient);
    border-radius: 16px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 28px;
    min-height: 220px;
    cursor: pointer;
}

.target-audience .card * {
    margin: 0;
    padding: 0;
}


.target-audience .card div {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.target-audience .card p {
    max-height: 0;
    overflow: hidden;
    transition: .5s ease-in-out;
}

.target-audience .card:hover p {
    max-height: 120px;
}

.target-audience .card img {
    box-shadow: 0 26px 7px 0 rgba(130, 145, 161, 0.00), 0 17px 7px 0 rgba(130, 145, 161, 0.01), 0 9px 6px 0 rgba(130, 145, 161, 0.03), 0 4px 4px 0 rgba(130, 145, 161, 0.04), 0 1px 2px 0 rgba(130, 145, 161, 0.05);
}

.target-audience p {
    color: var(--text-color);
}

/*features*/
.features {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.features .toggle-btn {
    padding: 4px;
    border-radius: 8px;
    box-shadow: 0 125px 35px 0 rgba(111, 123, 149, 0.00), 0 80px 32px 0 rgba(111, 123, 149, 0.01), 0 45px 27px 0 rgba(111, 123, 149, 0.03), 0 20px 20px 0 rgba(111, 123, 149, 0.04), 0 5px 11px 0 rgba(111, 123, 149, 0.05);
}

.features .toggle-btn .main_btn {
    width: 120px;
}

.features .row {
    align-items: stretch;
}

.features .col-md-4 {
    display: flex;
    flex-direction: column;
    gap: 20px;

}

.features .col-md-4 .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 240px;
    gap: 16px;
    position: relative !important;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    padding: 24px;
}

.features .col-md-4 .card div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.features .col-md-4 .card *:not(a) {
    margin: 0;
    padding: 0;
}

.features .full-height-card {
    flex: 1;
}

.features .tab {
    display: none;
}

.features .tab.active {
    display: block !important;
}

.features .tab .card:before {
    display: none;
}

.features .tab .card.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Steps Section */
.steps{
    position: relative;
}
.steps h2 {
    max-width: 480px;
    margin: 0 auto 40px;
    position: sticky;
    top: 0;
    padding-top: 20px;
    background-color: #f3fdff;
    z-index: 99;
}

.steps .d-flex {
    gap: 160px;
    position: relative;
}

.steps .card {
    width: 100%;
    max-width: 700px;
    min-height: 240px;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 20px 40px 20px #F3FDFF, 0 -20px 20px 0 #F3FDFF;
    position: sticky;
    top: 100px;
    z-index: 1;
    transition: transform 0.4s ease, z-index 0.4s ease;
    gap: 20px;
}

.steps .card * {
    margin: 0;
}

.steps .card > div {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.steps .card:before {
    display: none;
}

.steps .step_number {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    background: white;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    color: var(--blue---normal);
}

.steps .line-vertical {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background-image: repeating-linear-gradient(
            to bottom,
            transparent 0 5px,
            #aad0f5 5px 10px,
            transparent 10px 15px,
            #aad0f5 15px 20px,
            transparent 20px 25px,
            #aad0f5 25px 30px
    );
    transform: translateX(-50%);
    z-index: 0;
}

/*FAQ*/
.faq .card {
    min-height: 60px;
    padding: 24px;
    cursor: pointer;
}

.faq .card h5 {
    font-size: 20px;
    font-weight: 500;
}

.faq .card .answer {
    max-height: 0;
    overflow: hidden;
    transition: .3s ease-in-out;

}

.faq .card.open .answer {
    max-height: 200px;
    padding-top: 16px;
    color: #3f3f3f;
}

.faq .card img {
    transition: .3s ease-in-out;
}

.faq .card.open img {
    transform: rotate(180deg);
}

/*Advanced platform*/
.advanced h2 {
    margin-bottom: 40px;
}

.advanced .header {
    margin-bottom: 12px;
}

.advanced .card img {
    margin-left: 16px;
}

.advanced .body {
    align-items: stretch;
    flex-wrap: nowrap;
    overflow-x: scroll;
}

.advanced .card {
    height: 100%;
    padding: 24px;
    margin: auto;
    max-width: 800px;
}
.advanced .card ul{
    width: 100%;
}
.advanced .card ul li{
    padding: 28px 0;
    max-height: 60px;
    border-bottom: 2px solid var(--blue---light-active);
    display: flex;
    align-items: center;
}
.advanced .card ul:not(:first-of-type) li{
    justify-content: center !important;
    text-align: center;
}
.advanced .card ul li:first-child {
    font-size: 16px !important;
    font-weight: 500;
}
.advanced .card ul:last-child li:nth-last-child(n+3) {
    font-size: 32px;
}

.advanced li:hover {
    cursor: url("../images/hand.svg"), auto;
}

.advanced li:last-child {
    margin: 0;
}

.advanced .body ul li.hovered {
    background-color: var(--blue---light);
    border-radius: 8px;

}

.advanced .body .card {
    padding: 24px 0;
}


    /*Form*/
.audience-form .input-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.audience-form .input-container:not(:last-child) {
    margin-bottom: 20px;
}

.audience-form .input-container input {
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid var(--primary-normal);
}

/*banner*/
.banner .card {
    padding: 80px 24px;

}

.banner .card .bg-white {
    border-radius: 8px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, .03);
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;

}

.banner .card .bg-white img {
    object-fit: cover;
    max-height: 120px;
}

.banner a {
    color: var(--primary-normal);
    margin-top: 12px;
    display: block;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
}

/*footer*/
footer .card {
    padding: 80px 24px;
}

footer .card h5 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 16px;
}

footer .card a {
    color: var(--primary-normal);
    display: block;
    text-decoration: none;
    margin: 2px 0;
    padding: 4px 0;
}

/*copyright*/
.copyright {
    text-align: center;
    padding: 40px 0;
}

/*Responsive*/
/*Mobile*/
@media (max-width: 767px) {
    p {
        font-size: 14px;
    }

    section {
        margin: 75px 0;
    }

    .to-top-btn {
        display: none;
    }

    .sticky-card {
        position: relative;
        top: 0;
    }

    .brush-bg::before {
        display: none;
    }

    nav .container {
        padding: 8px 16px;
        max-width: calc(100% - 28px) !important;
        margin: 12px auto 0;
    }

    nav .container img {
        max-height: 32px;
    }

    .navbar-toggler {
        padding: 12px;
        border: none;
    }

    .navbar-toggler:focus {
        text-decoration: none;
        outline: 0;
        box-shadow: none;
    }

    #particles-js {
        display: none;
    }

    .hero-card {
        max-width: calc(100% - 28px) !important;
        margin: 12px auto 0;
        gap: 8px;
        overflow: hidden;
        height: 500px;
    }

    .hero h1 {
        font-size: 24px;
        max-width: 250px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero .animated-svg {
        position: absolute;
        bottom: -40px;
        left: 50%;
        transform: translateX(-50%);
        max-width: 120px;

    }

    /*    ===== */
    .aldhary p {
        font-size: 16px;
    }

    .aldhary img {
        margin-top: 24px;
    }

    /*   === */
    .target-audience .audience {
        margin-top: 20px;
    }

    .target-audience .audience .card {
        min-height: auto;
        gap: 8px;
        padding: 16px 8px;
        flex-direction: row;
        justify-content: flex-start;
    }

    .target-audience .audience .card h5 {
        font-size: 16px;
    }

    .target-audience .card p {
        display: none;
    }

    /*  ====  */
    .features .col-md-4 {
        gap: 0px;
    }

    .features .col-md-4 .card {
        margin: 8px 0;
    }

    /*    ===== */
    .steps .d-flex {
        gap: 100px;
        position: relative;
    }

    /*    ==== */
    .steps .card {
        width: 100%;
        max-width: calc(100% - 28px) !important;
        min-height: 180px;
        gap: 12px;
    }

    .steps .card > div {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    /*    ====*/
    .faq h2 {
        margin-bottom: 40px;
        text-align: center;
    }

    .faq h5 {
        font-size: 16px !important;
        font-weight: 600;
        line-height: 1.5;
    }

    /*    ==== */
    .advanced > .container{
        overflow-y: hidden;
        overflow-x: scroll;
    }
    .advanced .card {
        height: 100%;
        padding: 16px 6px !important;
        margin: auto;
        min-width: 400px;
    }
    .advanced h2{
        text-align: center;
    }
    .advanced .card img {
        margin-left: 8px;
        max-width: 16px;
    }
    .advanced .row > div {
        margin-bottom: 16px;
    }
    /* ======   */
    .audience-form h2 {
        margin-bottom: 40px;
        font-size: 20px;
        line-height: 1.5;
    }

    .audience-form .input-container {
        margin-bottom: 16px;
    }

    /*    ====*/
    .banner .card {
        padding: 40px 20px;
    }

    .banner h2 {
        margin-bottom: 8px;
        font-size: 20px;
    }

    .banner p {
        margin-bottom: 8px;
    }

    .banner a {
        color: var(--primary-normal);
        margin-top: 8px;
        display: block;
        text-align: center;
        font-size: 12px;
        font-weight: 400;
    }

    /*    ==== */
    footer .card {
        padding: 40px 20px;
    }

    footer .card h5 {
        font-size: 18px;
        font-weight: 600;
        margin: 16px 0 8px;
    }
}

/*tablet*/
@media (min-width: 768px) and (max-width: 1024px) {

}