/**
 1. Root
 2. Initial
 3. Reusable Classes
 4. Components
 5. Layout
 6. Pages
 7. Utilities
 8. Media Queries
**/

/* 2. Initial */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
}

body {
    color: var(--paragraph-color);
    font-family: var(--inter-font);
    font-size: 1rem;
    line-height: 1.5;
}

html,
body {
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

a {
    display: inline-block;
    text-decoration: none;
    color: inherit;

    &.underline {
        text-decoration: underline;
    }
}

span {
    display: inline-block;
}

p {
    margin-bottom: 0;
}

img {
    max-width: 100%;
}

/*=============== 3. Reusable Classes ===================*/
.unset {
    all: unset;
}

.custom-ul {
    list-style: none;
    padding: 0;
    margin: 0;

    li {
        display: flex;
        gap: 8px;

        &::before {
            content: "\f00c";
            font-family: "Font Awesome 6 Free";
            color: var(--white);
            font-weight: 900;
            font-size: 10px;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background-color: var(--primary-color);
            display: inline-flex;
            justify-content: center;
            align-items: center;
            flex-shrink: 0;
            margin-top: 2px;
            display: none;
        }

        &.check {
            &::before {
                content: "\f00c";
            }
        }

        &.cross {
            &::before {
                content: "\f00d";
            }
        }
    }

    &.withIcon li {
        &::before {
            display: inline-flex;
        }
    }
}

.bgHasImage {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Speacing */
.mb-12 {
    margin-bottom: 12px;
}

.custom-container {
    max-width: 1224px;
    padding-inline: 12px;
    margin: 0 auto;
}

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

.flex-between {
    display: flex;
    justify-content: space-between;

    &.center {
        align-items: center;
    }
}

.flex-1 {
    flex: 1;
}

.flex-180 {
    flex: 1 1 180px;
}

.flex-220 {
    flex: 1 1 220px;
}

.max-w-200 {
    max-width: 200px;
}

.cursor-pointer {
    cursor: pointer;
}

.custom-scroll-bar {
    &::-webkit-scrollbar {
        width: 6px;
    }

    &::-webkit-scrollbar-track {
        background-color: transparent;
    }

    &::-webkit-scrollbar-thumb {
        background-color: var(--border-color);
        border-radius: 10px;
        transition: all 0.3s ease-in-out;
    }

    &::-webkit-scrollbar-thumb:hover {
        background-color: #777777;
    }
}

/* Padding */
.pat-120 {
    padding-top: 120px;
}

.pab-120 {
    padding-bottom: 120px;
}

.pat-60 {
    padding-top: 60px;
}

.pab-60 {
    padding-bottom: 60px;
}

.p-32 {
    padding: 32px;
}

/*Margin*/

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

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

/*Width*/
.mw-600 {
    max-width: 600px;
}

.mw-560 {
    max-width: 560px;
}

/*Text setting*/
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--secondary-color);
    margin-bottom: 0;
}

.main-title {
    font-size: 4rem;
    line-height: 1;
    font-weight: 600;
}

.section-title {
    font-size: 2.75rem;
    line-height: 1.18;
    font-weight: 600;
}

.sub-title-4 {
    font-size: 2.5rem;
    line-height: 1.18;
    font-weight: 600;
}

.sub-title-5 {
    font-size: 2rem;
    line-height: 1.18;
    font-weight: 600;
}

.sub-title-6 {
    font-size: 1.5rem;
    line-height: 1.17;
    font-weight: 600;
}

/* Font Size */
.fs-22 {
    font-size: 1.375rem;
    line-height: 1.4;
}

.fs-20 {
    font-size: 1.25rem;
    line-height: 1.4;
}

.fs-18 {
    font-size: 1.125rem;
    line-height: 1.4;
}

.fs-16 {
    font-size: 1rem;
    line-height: 1.4;
}

.fs-14 {
    font-size: 0.875rem;
    line-height: 1.4;
}

.fs-12 {
    font-size: 0.75rem;
    line-height: 1.4;
}

.fw-700 {
    font-weight: 700;
}

.fw-600 {
    font-weight: 600;
}

.fw-500 {
    font-weight: 500;
}

.fw-400 {
    font-weight: 400;
}

.lh-1 {
    line-height: 1;
}

/* Color Settings */
/* Text Colors */
.primary-text {
    color: var(--primary-color);
}

.black-text {
    color: var(--secondary-color);
}

.white-text {
    color: var(--white);
}

.off-white-text {
    color: var(--off-white);
}

.paragraph-color {
    color: var(--paragraph-color);
}

.gradient-text {
    background: linear-gradient(90deg, var(--secondary-color), rgba(255, 255, 255, 0.1), var(--secondary-color));
    background-size: 50% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 2s infinite linear;
    font-weight: 500;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

/* Background color settings */
.bg-gray {
    background-color: var(--sc-light-gray);
}

.bg-dark-gray {
    background-color: var(--sc-dark-gray);
}

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

.bg-light-blue {
    background-color: var(--sc-light-blue);
}

.bg-dark1 {
    background-color: var(--secondary-color);
}

/* Image settings */
.base-20 {
    --image-base-size: 20px;
}

.base-24 {
    --image-base-size: 24px;
}

.base-30 {
    --image-base-size: 30px;
}

.base-40 {
    --image-base-size: 40px;
}

.base-48 {
    --image-base-size: 48px;
}

.base-50 {
    --image-base-size: 50px;
}

.rounded-image {
    width: var(--image-base-size);
    aspect-ratio: 1/1;
    flex-shrink: 0;
    border-radius: 50%;
    display: inline-flex;

    img {
        border-radius: 50%;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}

/* Slick */
.slick-track {
    display: flex;
    align-items: stretch;
}

.slick-slide {
    margin-inline: 12px;
    height: auto;

    &>div {
        height: 100%;
    }

    &>div>div {
        height: 100%;
    }
}

.slider-dot-nav {
    margin-top: 60px;
}

.slick-dots {
    padding: 0;
    bottom: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1px;

    li {
        height: 24px;
        width: 24px;
        border-radius: 50%;
        background-color: var(--primary-color);
        border: 8px solid var(--white);
        outline: 1px solid transparent;
        transition: all 0.3s ease-in-out;
        cursor: pointer;

        button {
            display: none;
        }

        &.slick-active {
            outline: 1px solid var(--primary-color);
        }
    }
}

/* Form setting */
.custom-label {
    line-height: 1.4;
    color: var(--secondary-color);
    font-size: 0.875rem;
}

.custom-input {
    padding: 12px 16px;
    border: 1px solid #6c727833;
    background-color: var(--white);
    border-radius: 6px;
    color: var(--secondary-color);
    font-size: 0.875rem;

    &:focus {
        outline: none;
        box-shadow: none;
    }
}

.icon-wtih-input {
    position: relative;

    .custom-input {
        padding-right: 48px;
    }

    .icon {
        position: absolute;
        top: 50%;
        right: 16px;
        transform: translateY(-50%);
    }
}

/* Account Management */
.account-management-wraper {
    width: 100%;
    min-height: 100svh;
    display: flex;

    .account-management-left-wraper,
    .account-management-right-wraper {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 24px;
    }

    .account-management-left {
        max-width: 484px;
        width: 100%;
        margin-inline: auto;
    }

    .account-management-right-wraper {
        background-image: linear-gradient(135deg, #2361ce, #2361ce80);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center top;

        .right-image-wrapper {
            max-width: 600px;
            width: 100%;
            max-height: 448px;
        }
    }
}

/*========= Components ==========*/
/* Button */
.cmn-btn {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 12px 24px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease-in-out;

    &:focus {
        outline: none;
        box-shadow: none;
    }

    &.md-btn {
        padding: 9px 20px;
    }
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--white);

    &:hover {
        background-color: var(--white);
        color: var(--primary-color);
        border-color: var(--primary-color);
    }
}

.primary-btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);

    &:hover {
        background-color: var(--primary-color);
        color: var(--white);
    }
}

.secondary-btn {
    background-color: var(--secondary-color);
    color: var(--white);

    &:hover {
        background-color: var(--primary-color);
        color: var(--white);
    }
}

.white-btn {
    background-color: var(--white);
    color: var(--primary-color);

    &:hover {
        background-color: var(--primary-color);
        color: var(--white);
    }
}

.white-btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);

    &:hover {
        background-color: var(--white);
        color: var(--primary-color);
    }
}

.gray-btn-outline {
    background-color: transparent;
    color: var(--secondary-color);
    border: 1px solid var(--border-color);

    &:hover {
        background-color: var(--sc-light-gray);
    }
}

/* Border Settings */
.bordered {
    border: 1px solid var(--border-color);
}

.bordered-top {
    border-top: 1px solid var(--border-color);
}

.bordered-bottom {
    border-bottom: 1px solid var(--border-color);
}

.bordered-right {
    border-right: 1px solid var(--border-color);
}

.bordered-left {
    border-left: 1px solid var(--border-color);
}

.bordered-2 {
    border: 2px solid var(--border-color-two);
}

.rounded-sm {
    border-radius: 6px;
}

.rounded-md {
    border-radius: 8px;
}

.rounded-lg {
    border-radius: 12px;
}

/*=========== Card Settings ==========*/
/* Feature Card */
.features-card {
    padding: 38px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background-color: #f5f9ff;
    text-align: center;
    overflow: hidden;

    .img-wraper {
        height: 80px;
        width: 80px;
        margin-inline: auto;
        margin-bottom: 32px;
        position: relative;
        z-index: 1;

        &::before {
            content: "";
            position: absolute;
            width: 80px;
            height: 80px;
            background-color: var(--shade-color);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            filter: blur(100px);
            z-index: -1;
        }

        .img {
            height: 100%;
            width: 100%;
            background-color: var(--white);
            border-radius: 50%;
            display: inline-flex;
            justify-content: center;
            align-items: center;
        }

        img {
            max-width: 100%;
            max-height: 100%;
        }
    }

    .para {
        margin-top: 10px;
    }
}

/* Solution card */
.solution-card {
    .content-part {
        .descripotion {
            .para:has(+ .para) {
                margin-bottom: 24px;
            }
        }
    }

    .img-wrapper {
        width: 100%;
        aspect-ratio: 1.4/1;
        max-height: 420px;
        border: 1px solid var(--border-color);
        border-radius: 16px;
        box-shadow: 0px 10px 20px 0 #9d9b9b14;
        background: var(--white);
        overflow: hidden;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
}

/* Review Card */
.review-card {
    padding: 24px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background-color: var(--sc-light-gray);
    display: flex;
    flex-direction: column;
    height: 100%;

    .reviewer {
        display: flex;
        gap: 16px;

        .img {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: var(--border-color);
            overflow: hidden;

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }

        .reviewer-name {
            align-self: center;

            .name {
                font-size: 1.125rem;
                font-weight: 600;
                line-height: 1.4;
            }
        }
    }

    .content-part {
        display: flex;
        flex-direction: column;
        flex: 1 1 0;
    }

    .review-text {
        font-size: 1.125rem;
        margin-block: 24px;
    }

    .review-star {
        margin-top: auto;
        color: var(--sc-orange-light);
    }
}

/* Pricing Plan Card */
.pricingPlan-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--white);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease-in-out;

    .pricingPlan-header {
        padding: 24px;
        border-bottom: 1px solid var(--border-color);
        background-color: var(--sc-light-gray);
    }

    .pricingPlan-body {
        padding: 24px;
        flex: 1 1 0;
    }

    .pricingPlan-footer {
        padding: 24px;
    }

    &.active,
    &:hover {
        border-color: var(--primary-color);
    }
}

/* core-value-card */
.core-value-card {
    background-color: #f5f9ff;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;

    .icon-wraper {
        height: 80px;
        width: 80px;
        position: relative;
        z-index: 1;
        flex-shrink: 0;

        &::before {
            content: "";
            position: absolute;
            width: 80px;
            height: 80px;
            background-color: var(--shade-color);
            border-radius: 50%;
            top: 50%;
            left: 150%;
            transform: translate(-50%, -50%);
            filter: blur(100px);
            z-index: -1;
        }

        .img {
            height: 100%;
            width: 100%;
            background-color: var(--white);
            border-radius: 50%;
            display: inline-flex;
            justify-content: center;
            align-items: center;
        }

        img {
            max-width: 60%;
            max-height: 60%;
        }
    }

    .core-value-content {
        flex: 1;
    }
}

/* Header */
.header-cover {
    height: 100px;
}

.asbolute-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1024;
}

.navbar {
    padding: 0 0;
}

.nav-container {
    padding: 12px 16px;
    border-radius: 12px;
    background-color: var(--white);
}

.responsive-mobile-menu {
    .click-nav-right-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 34px;
        width: 34px;
        font-size: 16px;
        line-height: 1;
        background-color: var(--scolor1);
        border: 1px solid var(--border-color-two);
        color: var(--main-color-one);
        border-radius: 6px;
    }

    .navbar-toggler {
        font-size: 16px;
        color: var(--main-color-one);
        background-color: var(--scolor2);
        border: 1px solid var(--border-color-two);
        outline: none;
        padding: 0;
        height: 34px;
        width: 34px;
        display: inline-flex;
        align-items: center;
        justify-content: center;

        &:focus {
            box-shadow: none;
        }
    }
}

.navbar-nav {
    flex: 1;
    display: flex;
    align-self: center;
    justify-content: center;
}

.navbar {
    padding: 16px 12px;
}

.navbar-area .navbar-nav {
    li {
        position: relative;
        padding: 4px 20px;

        a {
            font-weight: 600;
            color: var(--secondary-color);
            line-height: 1.5;
            transition: all 0.3s ease-in-out;

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

        &.menu-item-has-children {
            position: relative;

            &::after {
                content: "\f107";
                font-family: "Font Awesome 6 Free";
                font-weight: 900;
                position: absolute;
                top: 1rem;
                right: 0;
                transform: translateY(-50%);
                transform-origin: center top;
                transition: all 0.3s ease-in-out;
            }
        }

        .sub-menu {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 200px;
            width: 100%;
            background-color: var(--white);
            border-radius: 8px;
            padding: 0;
            list-style: none;
            z-index: 3;
            display: block;
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: opacity 0.3s ease-in-out, max-height 0.3s ease-in-out;

            li {
                padding: 10px 16px;

                &.menu-item-has-children::after {
                    top: 24px;
                    right: 12px;
                }
            }

            li a {
                color: var(--main-color-one);
                line-height: 1.5;
                transition: all 0.3s ease-in-out;

                &:hover {
                    color: var(--primary-color);
                }
            }

            .sub-menu {
                z-index: 4;
                min-width: 100px;
            }
        }

        @media only screen and (min-width: 992px) {
            &:hover {
                a {
                    color: var(--primary-color);
                }

                &.menu-item-has-children::after {
                    color: var(--primary-color);
                }
            }

            &.menu-item-has-children .sub-menu {
                overflow: unset;
            }

            &.menu-item-has-children:hover {
                &>.sub-menu {
                    opacity: 1;
                    max-height: 250px;
                    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out 0.3s;

                    .sub-menu {
                        left: 100%;
                        top: 0;
                    }
                }

                &::after {
                    rotate: 180deg;
                }
            }
        }

        @media only screen and (max-width: 991.98px) {
            &.menu-item-has-children.active {

                &>a,
                &::after {
                    color: var(--primary-color);
                }

                &>.sub-menu {
                    position: static;
                    opacity: 1;
                    max-height: 250px;
                    overflow: auto;
                    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out 0.3s;
                }

                &::after {
                    rotate: 180deg;
                }
            }
        }
    }
}

.single-right-content .navbar-right-flex {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

/* Footer */
.footer-area-top {
    padding: 100px 0 80px 0;

    .footer-social-link-list {
        margin-top: 44px;
    }

    .footer-social-link-item a {
        height: 38px;
        width: 38px;
        border-radius: 50%;
        border: 1px solid #6c727880;
        color: var(--white);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.3s ease-in-out;

        &:hover {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
    }
}

.footer-link-list a{
    &:hover{
        color: var(--primary-color);
    }
}

.footer-area-bottom {
    padding: 25px 0;
    border-top: 1px solid #6c7278;
}

/*============== Pages Design ===============*/
/*==== Home Page==== */
/*Banner/hero section*/
.banner-section {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    padding-top: 85px;
}

.hero-content-part {
    .trusted-users {
        display: inline-flex;
        gap: 8px;
        padding: 7px 8px;
        border-radius: 100px;
        border: 1px solid #ffffff66;
        background-color: #ffffff33;

        .images {
            display: inline-flex;
            align-items: center;

            .img {
                border: 1px solid var(--border-color);

                &:not(:last-child) {
                    margin-right: -8px;
                }
            }
        }

        .text {
            color: var(--secondary-color);
            font-size: 0.875rem;
            line-height: 1.4;
            font-weight: 500;
        }
    }

    .main-title {
        max-width: 810px;
        margin-inline: auto;
        margin-block: 16px;
    }

    .hero-para {
        max-width: 450px;
        margin-inline: auto;
        margin-bottom: 42px;
        color: var(--white);
        font-size: 1.125rem;
        font-weight: 500;
    }
}

.hero-img {
    max-width: 1060px;
    margin-inline: auto;
    margin-top: 80px;
    max-height: 458px;
    overflow: hidden;

    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* Streamline Your Support operations */
.streamline-wraper {
    max-width: 1096px;
    margin-inline: auto;
}

.streamline-card {
    background-color: #f5f9ff;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    z-index: 1;

    &::before {
        content: "";
        position: absolute;
        width: 130px;
        height: 130px;
        background-color: var(--shade-color);
        border-radius: 50%;
        top: 24px;
        left: 50%;
        transform: translateX(-50%);
        filter: blur(170px);
        z-index: -1;
    }

    .content-part {
        .title {
            margin-bottom: 16px;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .para {
            color: var(--pragraph-color);
            line-height: 1.5;
            margin-bottom: 24px;
        }
    }

    .img {
        border: 1px solid var(--border-color);
        border-radius: 12px;
        height: 100%;
        display: flex;
        max-height: 332px;
        box-shadow: 0 10px 20px 0 #00000014;
        overflow: hidden;

        img {
            width: 100%;
            height: 100%;
            max-height: 100%;
            object-fit: cover;
            border-radius: 12px;
        }
    }
}

/* Unique Features */

/* Coming Soon Section */
.coming-soon-wraper {
    background-image: linear-gradient(to right, #2361ce, #87a4e7);
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    gap: 48px;

    .coming-soon-content {
        padding: 60px;

        .para {
            margin: 16px 0 32px 0;
        }
    }

    .coming-soon-img {
        flex: 1;
        align-self: self-end;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
}

/* Newslatter Section */
.newlatter-wraper {
    padding: 60px;
    border-radius: 16px;
    background-color: var(--primary-color);
    text-align: center;

    .section-title {
        max-width: 738px;
        color: var(--white);
        margin-inline: auto;
        margin-bottom: 40px;
    }

    .input-wraper {
        display: flex;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;

        .custom-input {
            padding: 15px 16px;
            border: 1px solid var(--white);
            border-radius: 8px;
            background-color: transparent;
            color: var(--white);
            font-weight: 600;
            max-width: 380px;
            width: 100%;
            flex: 1 1 180px;

            &:focus {
                outline: none;
            }

            &::placeholder {
                color: var(--pragraph-color);
            }
        }
    }
}

/* ===========About Page========== */
/* Breadcrumb Section */
.bradecrumb-section {
    padding: 38px;
    background-image: linear-gradient(to right, #2361ce, #2361ce80);
}

.custom-bradecrumb {
    --bs-breadcrumb-divider: "\2022";
    --bs-breadcrumb-divider-color: var(--white);
    justify-content: center;
}

/* Trusted Brand Slider-Section */
.trusted-brands-wrapper {
    display: flex;
    gap: 24px;
    align-items: center;

    .title-wrapper {
        max-width: 300px;
        flex-shrink: 0;
    }
}

.trusted-brands-logo-slider-wrapper {
    display: flex;
    align-items: center;
    overflow: hidden;

    .brands-logo-slider {
        display: flex;
        flex-shrink: 0;
        animation: slider 15s linear infinite;

        .brands-logo-card {
            flex-shrink: 0;
            padding: 16px 50px;

            img {
                width: 100%;
                height: 100%;
                object-fit: contain;
            }
        }
    }
}

@keyframes slider {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* FAQ Section */
.custom-accordion-item {
    .custom-accordion-title {
        cursor: pointer;
    }

    .icon-wraper {
        .plus {
            display: block;
        }

        .minus {
            display: none;
        }
    }

    &.active {
        .icon-wraper .plus {
            display: none;
        }

        .icon-wraper .minus {
            display: block;
        }
    }
}

/* ==========Contact Page========== */
.get-in-touch-content-wraper {
    .bottom-text {
        .icon {
            color: var(--primary-color);
            height: 48px;
            width: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--sc-lavender-mist);
        }
    }
}

/* Login Page */
.or-text {
    position: relative;
    z-index: 1;
    background-color: var(--white);
    display: block;
    text-align: center;
    margin-top: 32px;
    margin-bottom: 16px;

    span {
        position: relative;
        padding: 6px 12px;
        background: #fff;
    }

    &::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: var(--border-color);
        z-index: 0;
    }
}

/* Responsiveness */
@media only screen and (max-width: 1399.98px) {
    .custom-container {
        max-width: 1140px;
    }
}

@media only screen and (max-width: 1199.98px) {
    .custom-container {
        max-width: 960px;
    }
}

@media only screen and (max-width: 991.98px) {
    .custom-container {
        max-width: 720px;
    }

    .pat-120 {
        padding-top: 80px;
    }

    .pab-120 {
        padding-bottom: 80px;
    }

    .pat-60 {
        padding-top: 40px;
    }

    .pab-60 {
        padding-bottom: 40px;
    }

    .p-32 {
        padding: 20px;
    }

    .main-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .sub-title-4 {
        font-size: 2.25rem;
    }

    .sub-title-6 {
        font-size: 1.25rem;
    }

    /* Navbar */
    .navbar-area .navbar-nav {
        display: block;
    }

    .navbar-right-content {
        position: absolute;
        top: -200%;
        right: 10px;
        visibility: hidden;
        opacity: 0;
        margin: 16px;

        &.show-nav-content {
            top: 54px;
            opacity: 1;
            visibility: visible;
        }
    }

    /* Streamline */
    .streamline-card {
        padding: 24px;
    }

    /* Feature card */
    .features-card {
        padding: 24px;
    }

    /* core-value-card */
    .core-value-card {
        .icon-wraper {
            height: 36px;
            width: 36px;
            border-radius: 8px;
            margin-bottom: 24px;

            img,
            svg {
                width: 28px;
                height: 28px;
                object-fit: contain;
            }
        }
    }
}

@media only screen and (max-width: 767.98px) {
    body {
        font-size: 0.875rem;
    }

    .custom-container {
        max-width: 540px;
    }

    .main-title {
        font-size: 2.25rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .sub-title-4 {
        font-size: 1.5rem;
    }

    .fs-18 {
        font-size: 1rem;
    }

    .fs-16 {
        font-size: 0.875rem;
    }

    .fs-14 {
        font-size: 0.75rem;
    }

    .fs-12 {
        font-size: 0.625rem;
    }

    /* Streamline */
    .streamline-card {
        padding: 16px;
    }

    /* Feature card */
    .features-card {
        padding: 16px;

        .img-wraper {
            height: 60px;
            width: 60px;
            margin-bottom: 16px;
        }
    }

    /* Newslatter */
    .newlatter-wraper {
        padding: 32px;
    }

    /* Login/signup page */
    .account-management-wraper {
        flex-direction: column;
    }
}

@media only screen and (max-width: 575.98px) {
    .custom-container {
        max-width: 100%;
    }
}

@media only screen and (max-width: 475.98px) {
    .main-title {
        font-size: 2rem;
    }

    .cmn-btn {
        padding: 8px 18px;
    }
}

.chat-send-wrapper {
    padding: 0px 10px;
    background-color: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.chat-send-wrapper .chat-send-input {
    padding: 12px 16px;
    border: 1px solid #6c727833;
    background-color: var(--white);
    border-radius: 24px;
    color: var(--secondary-color);
    font-size: 0.875rem;
    width: 100%;

    &:focus {
        outline: none;
        box-shadow: none;
    }
}

.chat-send-btn {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;

    i {
        color: var(--white);
    }

}

.chat-send-btn:hover {
    background-color: var(--white);
    border-color: var(--primary-color);

    i {
        color: var(--primary-color);
    }

}


.training-statuses {
    display: none;
    padding: 10px;
    border-radius: 8px;
}

.knowledge-input-text {
    resize: vertical;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    line-height: 1.6;
}

.demo-chat-msg {
    min-height: 300px;
    max-height: 400px;
    overflow-y: auto;
}