:root {
    --heading-color: #171717;
    --font-color: #060606;
    --white-color: #fff;
    --green-heading-color: #1FB680;
    --green-background-color: #1FB680;
    --light-green-bg-color: #E9F8F2;
    --blue-background-color: #100F2F;
    --dark-bg-color: #060525;
    --heading-font-size: 26px;
    --font-size-small: 12px;
    --font-size-medium: 14px;
    --font-size-large: 16px;
    --heading-font-weight: 600;
}

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

/******** 
Industry Page
********/
.industries-page {
    .page-header {
        background: url(../images/industry/industry-banner.webp) no-repeat center center / cover;
    }

    .industry-about {
        padding: 60px 0;

        .about-image {
            width: 100%;
        }

        .about-content {
            h2 {
                color: var(--heading-color);
                font-size: var(--heading-font-size);
                font-weight: var(--heading-font-weight);
            }

            p {
                padding-top: 0.5em;
                color: var(--font-color);
                font-size: var(--font-size-large);
                line-height: 1.8;
            }
        }

        .about-logo {
            img {
                max-width: 100%;
                height: auto;

                @media screen and (min-width: 1024px) and (max-width: 1400px) {
                    max-width: 18%;
                }
            }
        }
    }

    .industry-healthcare {
        padding: 60px 0;

        .section-heading {
            text-align: center;
            padding-bottom: 2em;

            h2 {
                color: var(--heading-color);
                font-size: var(--heading-font-size);
                font-weight: var(--heading-font-weight);
            }

            p {
                padding-top: 0.5em;
                color: var(--font-color);
                font-size: var(--font-size-large);
                line-height: 1.8;
            }
        }

        .healthcare-card {
            box-shadow: 0px 0px 10px 2px #0606062e;
            border: none;
            border-radius: 1em;
            margin-bottom: 1.2em;
            min-height: 270px;
            height: calc(100% - 30px);

            .card-body {
                padding: 2em 2em;
                text-align: center;

                img {
                    margin-bottom: 1em;
                }

                h3 {
                    color: var(--heading-color);
                    font-size: 22px;
                    font-weight: var(--heading-font-weight);
                    text-align: center;
                }

                p {
                    padding-top: 0.5em;
                    color: var(--font-color);
                    font-size: var(--font-size-large);
                    line-height: 1.6;
                    text-align: center;
                }
            }

            &:hover {
                box-shadow: 0px 0px 15px 3px #0606063d;
                transition: all 0.3s ease-in-out;
                background: url('../images/industry/healthcare-card-bg.webp') no-repeat center;

                img {
                    filter: brightness(0) invert(1);
                }

                h3 {
                    color: var(--green-heading-color);
                }

                p {
                    color: #fff;
                }
            }

            @media screen and (min-width: 1024px) and (max-width: 1300px) {
                min-height: 310px;
                height: calc(100% - 30px);
                margin-bottom: 0em;
            }
        }

        .ac-recive-bg {
            &:hover {
                background: url('../images/industry/ac-recivable-card-bg.webp') no-repeat center !important;
            }
        }

        .payment-bg {
            &:hover {
                background: url('../images/industry/payment-post-card-bg.webp') no-repeat center !important;
            }
        }

        .denial-bg {
            &:hover {
                background: url('../images/industry/denial-card-bg.webp') no-repeat center !important;
            }
        }

        .soap-bg {
            &:hover {
                background: url('../images/industry/soap-card-bg.webp') no-repeat center !important;
            }
        }
    }

    .payers-section {
        background-color: #1fb6812d;

        .healthcare-card {
            min-height: 360px;
            height: calc(100% - 30px);

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

            @media screen and (min-width: 1024px) and (max-width: 1300px) {
                min-height: 360px;
                height: calc(100% - 30px);
            }
        }
    }

    .pharmaceutical-section {
        background: url('../images/industry/pharmacetical-industry-bg.webp') no-repeat center;
        background-size: cover;

        .section-heading {

            h2,
            p {
                color: var(--white-color);
            }
        }

        .healthcare-card {
            min-height: 290px;
            height: calc(100% - 30px);

            .footer-top-shape {
                background-color: #ffffff;
                transform: rotate(0deg);
                width: 62px;
                left: 0px;
                top: 3px;
                height: 50px;

                &::before {
                    content: "";
                    position: absolute;
                    background-color: transparent;
                    top: -36px;
                    left: -44px;
                    width: 50px;
                    height: 20px;
                    -webkit-box-shadow: 24px 0 0 0 #191825;
                    box-shadow: 25px 0 0 0 #0b0019;
                    border-radius: 0 40px 0 0;
                    z-index: -1;
                }

                &::after {
                    content: "";
                    position: absolute;
                    background-color: transparent;
                    top: -36px;
                    width: 50px;
                    height: 20px;
                    -webkit-box-shadow: 24px 0 0 0 #191825;
                    box-shadow: 24px 0 0 0 #0e0020;
                    border-radius: 0 24px 0 0;
                    z-index: -1;
                    left: auto;
                    right: -54px;
                    -webkit-transform: scaleX(-1);
                    -ms-transform: scaleX(-1);
                    transform: scaleX(-1);
                }
            }

            img {
                position: relative;
                background: #0c0026;
                padding: 0.5em 0.5em;
                border-radius: 10px;
                position: absolute;
                left: 44%;
                top: 0px;
                width: 60px;
            }

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

                img {
                    filter: none;
                }

                h3 {
                    color: var(--green-heading-color);
                }

                p {
                    color: var(--font-color);

                    ::before {
                        content: '';
                        background: var(--green-heading-color);
                        position: absolute;
                        left: 0;
                        bottom: 0;
                        width: 100%;
                        height: 4px;
                    }
                }

                p::before {
                    content: '';
                    background: var(--green-heading-color);
                    position: absolute;
                    left: 0px;
                    bottom: 0px;
                    width: 100%;
                    border-radius: 0px 0px 10px 10px;
                    height: 12px;
                    transition: all 0.3s ease-in-out;
                }
            }

            @media screen and (min-width: 1024px) and (max-width: 1300px) {
                min-height: 310px;
            }
        }
    }

    .retail-section {
        .healthcare-card {
            background: var(--light-green-bg-color);
            box-shadow: 0px 0px 0px #fcfcfc;
            min-height: 200px;

            &:hover {
                background: var(--dark-bg-color);

                img {
                    filter: brightness(0) invert(1);
                }

                h3 {
                    color: var(--green-heading-color);
                }

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

    .financial-accounting-section {
        background: url('../images/industry/financial-accouting-bg.webp') no-repeat center;
        background-size: cover;

        .section-heading {

            h2,
            p {
                color: var(--white-color);
            }
        }

        .healthcare-card {
            min-height: 200px;

            &:hover {
                background: var(--light-green-bg-color);

                img {
                    filter: none
                }

                p {
                    color: var(--font-color);
                }
            }
        }
    }

    /* Responsive Media */
    @media screen and (max-width: 767px) {
        width: 100%;
        overflow: hidden;

        .container {
            padding: 30px 15px !important;

        }

        .industry-about {
            .about-logo {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1em;
                margin-top: 1em;
                background: #1fb6801f;
                border-radius: .5em;
                padding: 1em 1em;
                align-items: center;
                justify-items: center;

                img {
                    max-width: 100px;
                }
            }

            .about-content {
                margin-top: 1em;
            }
        }

        .industry-healthcare {
            padding: 0px 0px;

            .section-heading {
                padding-bottom: 1em;
            }

            .healthcare-card {
                .card-body {
                    img {
                        max-height: 60px;
                        object-fit: contain;
                    }
                }
            }
        }

        .payers-section,
        .retail-section {
            padding: 0px 0px;
        }
    }

    @media screen and (max-width: 1024px) {
        .industry-about {
            .about-logo {
                display: flex;
                justify-content: space-between;
                flex-wrap: wrap;
                gap: 3em;
                background: #1fb6801f;
                padding: 1em 2em;
                margin-top: 0.5em;
                border-radius: 0.5em;
                width: 100%;

                img {
                    max-width: 100px;
                    height: auto;
                }
            }

            .about-image {
                img {
                    max-height: 260px;
                    object-fit: cover;
                    border-radius: 0.5em;
                }
            }
        }
    }

    @media screen and (max-width: 320px) {
        .pharmaceutical-section {
            .healthcare-card {
                .footer-top-shape {
                    width: 50px;
                    left: 0px;
                    top: 3px;
                    height: 50px;

                    &::before {
                        top: -35px;
                        left: -54px;
                    }

                    &::after {
                        top: -35px;
                        right: -55px;
                    }
                }

                img {
                    left: 40%;
                    top: 0px;
                }
            }
        }
    }

    @media screen and (min-width: 321px) and (max-width: 374px) {
        .pharmaceutical-section {
            .healthcare-card {
                .footer-top-shape {
                    width: 50px;
                    left: 0px;
                    top: 3px;
                    height: 50px;

                    &::before {
                        top: -35px;
                        left: -60px;
                    }

                    &::after {
                        top: -35px;
                        right: -60px;
                    }
                }

                img {
                    left: 40%;
                    top: 0px;
                }
            }
        }
    }

    @media screen and (min-width: 375px) and (max-width: 424px) {
        .pharmaceutical-section {
            .healthcare-card {
                .footer-top-shape {
                    width: 50px;
                    left: 0px;
                    top: 3px;
                    height: 50px;

                    &::before {
                        top: -35px;
                        left: -60px;
                    }

                    &::after {
                        top: -35px;
                        right: -50px;
                    }
                }

                img {
                    left: 40%;
                    top: 0px;
                }
            }
        }
    }

    @media screen and (min-width: 425px) and (max-width: 767px) {
        .pharmaceutical-section {
            .healthcare-card {
                .footer-top-shape {
                    width: 50px;
                    left: 0px;
                    top: 3px;
                    height: 50px;

                    &::before {
                        top: -35px;
                        left: -65px;
                    }

                    &::after {
                        top: -35px;
                        right: -45px;
                    }
                }

                img {
                    left: 40%;
                    top: 0px;
                }
            }
        }
    }

    @media screen and (min-width: 768px) and (max-width: 1023px) {
        .pharmaceutical-section {
            .healthcare-card {
                .footer-top-shape {
                    width: 60px;
                    left: 0px;
                    top: 3px;
                    height: 50px;

                    &::before {
                        top: -35px;
                        left: -48px;
                    }

                    &::after {
                        top: -35px;
                        right: -52px;
                    }
                }

                img {
                    left: 46%;
                }
            }
        }
    }

    @media screen and (min-width: 1024px) and (max-width: 1440px) {
        .pharmaceutical-section {
            .healthcare-card {
                height: -webkit-fill-available;
                height: -moz-fill-available;
                min-height: 360px;

                .footer-top-shape {
                    width: 60px;
                    left: 0px;
                    top: 3px;
                    height: 50px;

                    &::before {
                        top: -35px;
                        left: -32px;
                    }

                    &::after {
                        top: -35px;
                        right: -68px;
                    }
                }

                img {
                    left: 46%;
                }
            }
        }
    }

    @media screen and (min-width: 991px) {
        .industry-about {
            .about-image {
                img {
                    width: 100%;
                    height: 260px;
                    object-fit: cover;
                    border-radius: 10px;
                }
            }
        }

        .about-logo {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 3em;
            margin-top: 4em;
            background: #1fb6801f;
            padding: 1.2em 2em;
            border-top-right-radius: 0.5em;
            border-bottom-right-radius: 0.5em;
            position: absolute;
            transform: translate(-25px, 0px);
            bottom: 0px;
            width: 100%;
        }
    }
}

/******** 
Blogs Page 
********/
.blogs-page,
.case-study-page,
.career-page {
    .page-header {
        background: url(../images/blogs/blog-banner.webp) no-repeat center center / cover;
    }

    .container {
        padding: 60px 0px;
    }

    .blog-right {
        .blog-card {
            &:last-child {
                margin-bottom: 0em;
            }
        }
    }

    .blog-card {
        box-shadow: 0px 0px 10px 2px #0606061a;
        border: none;
        border-radius: 1em;
        margin-bottom: 1.2em;
        height: fit-content;

        .card-body {
            padding: 1.5em 1.5em;

            img {
                margin-bottom: 1em;
            }

            h4 {
                color: var(--font-color);
                font-size: 22px;
                font-weight: var(--heading-font-weight);
            }

            span {
                padding-top: 0.5em;
                color: var(--font-color);
                font-size: var(--font-size-large);
                line-height: 1.6;
            }

            .blog-author {
                margin-bottom: 1em;
                font-weight: 600;
                font-size: 14px;
                padding-bottom: 1em;
                border-bottom: 1px solid var(--green-background-color);
            }

            p {
                padding-top: 0.5em;
                color: var(--font-color);
                font-size: var(--font-size-large);
                line-height: 1.6;
            }

            .blog-post-action {
                margin-top: 1.2em;
                display: flex;
                justify-content: space-between;
                align-items: center;

                .blog-share-icons {
                    display: flex;
                    align-items: center;
                    gap: 1em;
                }

                .btn {
                    font-size: var(--font-size-large);
                    --bs-btn-color: #fff;
                    --bs-btn-bg: var(--green-background-color);
                    --bs-btn-border-color: var(--green-background-color);
                    --bs-btn-hover-color: var(--font-color);
                    --bs-btn-hover-bg: #1dab78;
                    --bs-btn-hover-border-color: var(--green-background-color);
                    --bs-btn-focus-shadow-rgb: 49, 132, 253;
                    --bs-btn-active-color: #fff;
                    --bs-btn-active-bg: #1dab78;
                    --bs-btn-active-border-color: var(--green-background-color);
                    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
                    --bs-btn-disabled-color: #fff;
                    --bs-btn-disabled-bg: var(--green-background-color);
                    --bs-btn-disabled-border-color: var(--green-background-color);

                    i {
                        margin-left: 6px;
                    }
                }
            }
        }

        &:hover {
            transition: all 0.3s ease-in-out;
            background: var(--light-green-bg-color);
        }
    }

    .blog-left {
        position: sticky;
        top: 80px;

        .blog-card {
            box-shadow: 0px 0px 10px 2px #0606061a;
            border: none;
            border-radius: 1em;
            margin-bottom: 1.2em;
            height: fit-content;

            .card-body {
                padding: 1.5em 1.5em;

                img {
                    margin-bottom: 0em;
                }

                h4 {
                    color: var(--white-color);
                    font-size: 18px;
                    font-weight: var(--heading-font-weight);
                }

                span {
                    padding-top: 0.5em;
                    color: var(--font-color);
                    font-size: var(--font-size-large);
                    line-height: 1.6;
                }

                p {
                    padding-top: 0.5em;
                    color: var(--font-color);
                    font-size: var(--font-size-large);
                    line-height: 1.6;
                }
            }
        }

        .search-card {
            background-color: var(--blue-background-color);
        }

        .related-card {
            background-color: var(--blue-background-color);

            h4 {
                padding-bottom: 10px;
                border-bottom: 1px solid var(--white-color);
            }

            .related-posts {
                margin-top: 1em;

                img {
                    border-radius: 0.5em;
                    object-fit: cover;
                }

                p {
                    color: var(--white-color);
                    font-size: var(--font-size-large);
                    line-height: 1.6;
                }

                .related-date {
                    font-size: var(--font-size-small);
                    color: var(--gray-color);
                    text-align: end;
                    padding-top: 8px;
                    display: block;
                    margin-top: 10px;
                }
            }
        }

        .category-card {
            background-color: var(--blue-background-color);

            .category-posts {
                ul {
                    list-style: none;
                    padding-top: 1em;

                    li {
                        padding: 0.5em 1em;
                        background: var(--white-color);
                        color: var(--font-color);
                        border-radius: 6px;
                        font-size: var(--font-size-large);
                        font-weight: 500;
                        line-height: 1.6;
                        margin-bottom: 0.5em;
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                        cursor: pointer;

                        &:last-child {
                            margin-bottom: 0em;
                        }

                        &:hover {
                            background: var(--light-green-bg-color);
                            color: var(--font-color);
                        }
                    }

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

        .tags-card {
            background-color: var(--blue-background-color);

            .tags-posts {
                ul {
                    list-style: none;
                    padding-top: 1em;
                    display: grid;
                    grid-template-columns: 1fr 1fr 1fr 1fr;
                    justify-items: stretch;
                    align-items: stretch;
                    justify-content: space-between;
                    column-gap: 0.3em;

                    li {
                        padding: 0.2em 0.5em;
                        border: 1px solid var(--green-background-color);
                        background: transparent;
                        color: var(--white-color);
                        border-radius: 6px;
                        font-size: var(--font-size-large);
                        font-weight: 500;
                        line-height: 1.6;
                        margin-bottom: 0.5em;
                        cursor: pointer;
                        text-align: center;

                        &:hover {
                            background: var(--light-green-bg-color);
                            color: var(--font-color);
                        }
                    }

                    .active {
                        background: var(--green-background-color);
                        color: var(--text-color);
                    }
                }
            }
        }

        .video-card {
            background-color: var(--blue-background-color);

            .card-body {
                padding: 0px;

                .video-posts {
                    iframe {
                        border-radius: 10px;
                        min-height: 240px;
                    }
                }
            }
        }

        .input-group {
            input {
                border: 1px solid #e4dfdf;
                border-radius: 0.5em;
                padding: 0.5em 1em;
                font-size: var(--font-size-large);
                color: var(--font-color);

                &:focus {
                    outline: none;
                    border-color: #767676;
                }
            }

            .input-group-text {
                border: 1px solid #e4dfdf;
                border-radius: 0.5em 0.5em;
                padding: 0.5em 1em;
                color: var(--font-color);
                font-size: var(--font-size-large);
            }
        }
    }

    /* Responsive Layout */
    @media screen and (max-width: 768px) {
        .container {
            padding: 30px 15px;
        }

        .blog-card {
            .card-body {
                padding: 1em 1em;

                .blog-post-action {
                    margin-top: 1.2em;
                    display: block;

                    .blog-share-icons {
                        margin-top: 0.5em;
                    }
                }
            }
        }

        .blog-left {
            position: relative;
            top: 0px;

            .related-card {
                .related-posts {
                    .related-date {
                        text-align: start;
                    }
                }
            }

            .tags-card {
                .tags-posts {
                    ul {
                        grid-template-columns: 1fr 1fr 1fr;
                    }
                }
            }

            .video-card {
                .card-body {
                    .video-posts {
                        iframe {
                            min-height: 180px;
                        }
                    }
                }
            }
        }
    }

    @media screen and (min-width: 770px) {
        .page-header {
            .container {
                transform: translate(0px, 40px);
            }
        }
    }
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: calc(var(--chars) * 12.5px);
    }
}

@keyframes blink-caret {
    50% {
        border-color: transparent;
    }
}

/******** 
Case Studies Page 
********/
.case-study-page {
    .page-header {
        background: url(../images/case-study/case-study-banner.webp) no-repeat center center / cover;
    }

    .case-study-posts {
        .post-separate {
            margin-bottom: 4em;

            &:last-child {
                margin-bottom: 0em;
            }

            .case-study-left {
                position: relative;
                height: fit-content;

                img {
                    height: fit-content;
                    object-fit: cover;
                    border-radius: 10px;

                    @media screen and (max-width: 991px) {
                        margin-bottom: 1.5em;
                    }
                }

                .case-study-info {
                    background: var(--white-color);
                    padding: 0.3em 0.8em 0.2em;
                    box-shadow: 0px 0px 10px 2px #0606061a;
                    border-radius: 8px 8px;
                    float: inline-end;
                    position: absolute;
                    right: 5px;
                    bottom: 5px;

                    .post-user {
                        color: var(--font-color);
                        font-size: var(--font-size-large);
                        display: inline-block;
                        font-weight: 600;
                    }

                    .post-share {
                        p {
                            margin-bottom: 0px;
                        }

                        a {
                            &:hover {
                                color: var(--green-heading-color);
                            }
                        }
                    }
                }
            }

            .case-study-right {
                .case-study-desc {
                    h2 {
                        color: var(--font-color);
                        font-size: 26px;
                        font-weight: 600;
                        margin-bottom: 1em;
                        text-transform: capitalize;
                    }

                    h4 {
                        color: var(--font-color);
                        font-size: 22px;
                    }

                    ul {
                        list-style: none;
                        padding-left: 20px;
                        color: var(--font-color);
                        margin-bottom: 1.5em;
                        font-size: var(--font-size-large);

                        li {
                            padding-top: 0.5em;
                            position: relative;

                            &::before {
                                content: "";
                                background-image: url(../images/li-arrow-right.png);
                                filter: grayscale(10);
                                background-position: center;
                                background-repeat: no-repeat;
                                background-size: 10px;
                                position: absolute;
                                left: -14px;
                                right: 0px;
                                top: 12px;
                                width: 10px;
                                height: 10px;
                            }
                        }
                    }

                    p {
                        color: var(--font-color);
                        font-size: var(--font-size-large);
                        margin-bottom: 10px;
                    }
                }
            }
        }
    }

    @media screen and (max-width: 768px) {
        .case-study-posts {}
    }
}

/************** 
Career Page 
**************/
.career-page {
    .page-header {
        background: url(../images/career/career-banner.webp) no-repeat center center / cover;

        @media screen and (max-width: 991px) {
            background-size: auto;
        }
    }

    .career-posts {
        @media screen and (min-width: 768px) {
            padding-inline: 15px;
        }

        .post-separate {
            margin-bottom: 2em;
            position: relative;

            &:last-child {
                margin-bottom: 0em;
            }

            .section-heading {
                margin-bottom: 0.2em;

                h2 {
                    font-size: 26px;
                    color: var(--blue-background-color);
                    font-weight: 600;
                }

                p {
                    color: var(--blue-background-color);
                    padding-top: 0.5em;
                    font-weight: 500;
                }
            }

            .career-center-image {
                position: relative;

                img {
                    position: absolute;
                    transform: translate(38.3em, -15.5em);
                }
            }

            .career-details {
                display: grid;
                grid-template-columns: 1fr 1fr;
                column-gap: 16px;

                @media screen and (max-width: 991px) {
                    display: block;
                }

                h5 {
                    font-size: 18px;
                    color: var(--blue-background-color);
                    font-weight: 600;
                    margin-bottom: 0.6em;

                    @media screen and (min-width: 991px) and (max-width: 1300px) {
                        font-size: 17px;
                    }
                }

                .career-post-card {
                    border: 1px solid var(--green-background-color);
                    padding: 0.8em 1em;
                    border-radius: 0.5em;
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    margin-bottom: 0.8em;
                    gap: 0.5em;

                    @media screen and (max-width: 460px) {
                        flex-wrap: wrap;
                        display: block;
                        gap: 0.8em;
                    }

                    h5 {
                        font-weight: 400;

                        strong {
                            font-weight: 700;
                        }
                    }

                    p {
                        padding-top: 0em;
                        margin-bottom: 0px;
                    }

                    .career-apply-btn {
                        .btn {
                            color: var(--font-color);
                            font-weight: 500;
                            min-width: 100px;

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

                        @media screen and (max-width: 460px) {
                            margin-top: 10px
                        }
                    }

                    &:hover {
                        background: var(--light-green-bg-color);
                    }
                }

                p {
                    color: var(--blue-background-color);
                    padding-top: 0.5em;
                }

                .text-truncate {
                    overflow: hidden;
                    text-overflow: ellipsis;
                    white-space: nowrap;
                    display: block;
                    max-width: 400px;
                }
            }
        }
    }

    .current-opening {
        background-color: var(--light-green-bg-color);

        .section-heading {
            h2 {
                font-size: 18px;
                background: var(--green-heading-color);
                color: var(--font-color);
                width: fit-content;
                padding: 0.5em 1em;
                border-radius: 0.3em;
                font-weight: 600;
            }

            p {
                color: var(--blue-background-color);
                padding-top: 0.5em;
                font-weight: 500;

                strong {
                    font-family: 'Outfit';
                }
            }

            .post-share {
                display: flex;
                justify-content: space-between;
                align-items: center;

                @media screen and (max-width: 767px) {
                    flex-wrap: wrap;
                    gap: 0.5em;
                }

                p {
                    margin-bottom: 0px;
                    padding-top: 0px;
                    font-size: 22px;
                    display: flex;
                    align-items: center;
                    gap: 0.8em;
                }
            }
        }

        .career-details {
            h5 {
                font-size: 16px;
                color: var(--font-color);
                font-weight: 600;
                margin-bottom: 0px;
                min-width: 160px;
            }

            p {
                color: var(--blue-background-color);
                font-weight: 500;
                margin-bottom: 0px;
            }

            .carrer-post-heading {
                display: flex;
                align-items: center;
                justify-content: flex-start;
                flex-wrap: wrap;
                gap: 0.5em;
                margin-bottom: 0.8em;

                @media screen and (max-width: 767px) {
                    flex-wrap: wrap;
                    gap: 0.5em;
                }
            }
        }
    }

    .current-opening-details {
        .section-heading {
            margin-bottom: 1em;

            h2 {
                color: var(--green-heading-color);
                font-size: 22px;
                font-weight: 600;
                margin-bottom: 1em;
            }

            p {
                color: var(--blue-background-color);
                font-weight: 500;
            }

            .qualification {
                margin-top: 2em;

                .text-strong {
                    font-weight: 600;
                }

                ul {
                    list-style: none;
                    padding-left: 0;

                    li {
                        position: relative;
                        color: var(--blue-background-color);
                        font-weight: 500;
                        padding-left: 16px;
                        margin-bottom: 10px;

                        &::before {
                            content: "";
                            font-family: "Font Awesome 6 Free";
                            background-image: url(../images/li-arrow-right.png);
                            filter: brightness(0);
                            background-position: center;
                            background-repeat: no-repeat;
                            background-size: 10px;
                            position: absolute;
                            left: 0;
                            right: 0;
                            top: 8px;
                            width: 10px;
                            height: 10px;
                        }
                    }
                }
            }
        }

        .contact-form-box {
            @media screen and (min-width: 991px) {
                padding-left: 2em;
            }

            .inner {
                padding: 0px;
                position: sticky;
                top: 100px;

                .sec-heading {
                    padding: 1em 1em 1em;
                    margin-bottom: 0em;
                    background: #052537;
                    border-radius: 10px 10px 0px 0px;

                    h2 {
                        color: var(--white-color) !important;
                        font-size: 24px;
                        font-weight: 600;
                    }
                }

                form {
                    padding: 1.2em 1em 1.2em;
                    background: var(--light-green-bg-color);

                    label {
                        color: var(--font-color);
                    }

                    .linkedin-label {
                        left: 20px;
                    }

                    .form-check-inline {
                        padding-left: 3.2em;

                        @media screen and (max-width: 767px) {
                            padding-left: 25px;
                        }
                    }

                    .form-group {
                        .form-select {
                            height: 46px;
                        }

                        .custom-file-upload {
                            display: flex;
                            align-items: center;
                            border: 1px solid #ddd;
                            border-radius: 6px;
                            overflow: hidden;
                        }

                        .custom-file-label {
                            flex: 1;
                            padding: 11px 15px;
                            background: #fff;
                            font-size: 14px;
                            cursor: pointer;
                        }

                        .custom-file-label span {
                            color: red;
                            margin-left: 4px;
                        }

                        .custom-file-btn {
                            background: #21b87c;
                            color: #000;
                            font-weight: 600;
                            border: none;
                            padding: 10px 20px;
                            cursor: pointer;
                            white-space: nowrap;
                        }

                        input[type="file"] {
                            display: none;
                        }
                    }

                    #dropZone {
                        border: 2px dashed #21b87c;
                        border-radius: 8px;
                        padding: 4px;
                        text-align: center;
                        transition: background 0.3s ease;
                    }

                    #dropZone.dragover {
                        background: rgba(33, 184, 124, 0.1);
                        border-color: #21b87c;
                    }
                }
            }
        }
    }

    @media screen and (max-width: 768px) {
        .post-separate {
            .section-heading {
                margin-bottom: 0em !important;
            }

            .career-center-image {
                display: none;
            }
        }
    }
}

.jeeno-slider-section {
    position: relative;

    .swiper-wrapper {
        .swiper-slide {
            position: relative;

            .slider-title-area {
                .type-write-text {
                    padding: 10px 14px;
                    border-radius: 6px;
                    display: block;
                    background: rgba(255, 255, 255, 0.2);
                    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
                    backdrop-filter: blur(5px);
                    -webkit-backdrop-filter: blur(5px);
                    border: 1px solid rgb(100 100 125);
                    width: fit-content;

                    p {
                        display: block;
                        margin: 0;
                        white-space: nowrap;
                        overflow: hidden;
                        font-size: 22px;
                        font-weight: 600;
                        color: #fff;
                        border-right: 2px solid rgba(255, 255, 255, 0.95);
                        padding-right: .25rem;
                        animation: typing 4s steps(var(--chars)) forwards, blink-caret .75s step-end infinite;
                        --chars: 26;

                        @media screen and (min-width: 1024px) and (max-width: 1300px) {
                            font-size: 18px;
                            --chars: 23;
                        }
                    }

                    @media screen and (max-width: 768px) {
                        width: 100%;

                        .type-text {
                            font-size: 18px !important;
                        }
                    }

                    @media screen and (min-width: 991px) {
                        position: absolute;
                        top: 50%;
                        left: 60%;
                        transform: translate(0%, -50%);
                    }
                }

                .btn-inner {
                    width: max-content;
                    transition: all 0.3s ease;
                }
            }
        }
    }
}

#mobile-menu {
    ul {
        li {
            .btn-primary {
                padding: 10px 14px;

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

.ai-services-sec1 {
    .aiservices-card-img img {
        object-fit: cover;
    }
}


.fact-sheet {
    .page-header {
        background: url(../images/fact-sheet/banner.webp) no-repeat center center / cover;

        &::after {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            left: 0;
            top: 0;
            background: #01101B99;
        }
    }

    .factSheet-section {
        background: #1FB68026;
        padding: 50px 0;

        h2 {
            font-family: Raleway;
            font-weight: 700;
            font-size: 28px;
            line-height: 52px;
            text-align: center;
            color: #000;
        }

        p {
            font-family: Raleway;
            font-weight: 400;
            font-style: Regular;
            font-size: 14px;
            line-height: 28px;
            letter-spacing: 0%;
            text-align: center;
            color: #000;
        }
    }
}

.founders {
    .profile-image {
        .quote-box {
            bottom: 80px;

            @media screen and (max-width: 767px) {
                width: 100%;

                &::before {
                    display: none;
                }

                &::after {
                    display: none;
                }
            }

            @media screen and (min-width: 470px) and (max-width: 1024px) {
                bottom: 0px;
                right: 0px;
                left: 0px;
                min-width: auto;
            }
        }
    }

    .founder-image {
        img {
            max-height: 430px;
            object-fit: cover;
        }

        .quote-box {
            bottom: 80px;
        }
    }
}

.fact-sheet {
    .bg-green {
        img {
            max-width: 70%;
            margin: 0 auto;
            display: flex;
        }
    }
}

.contact-map-box {
    .inner {
        iframe {
            border-radius: 8px;
        }
    }
}

.header-main {
    @media screen and (max-width: 767px) {
        .header-wrapper {
            .site_logo {
                .logo {
                    width: 130px;
                }

                img {
                    padding-top: 16px;
                }
            }
        }
    }
}

.tech-offer-con {
    @media screen and (max-width: 767px) {
        p {
            font-size: 14px;
        }
    }
}

.header-duplicate.header-sticky {
    .site_logo {
        .logo {
            @media screen and (max-width: 768px) {
                max-width: 130px;
            }

            img {
                padding: 12px 0px 6px;
                max-width: max-content;

                @media screen and (min-width: 460px) and (max-width: 1024px) {
                    width: 100%;
                    padding: 18px 0px 6px;
                }
            }
        }
    }
}

.jeeno-slider-section {
    .hero-navigation {

        .slider-next {
            font-size: inherit;

            .anim-icon {
                &:hover {
                    filter: invert(10);
                }
            }
        }

        .slider-prev {
            font-size: inherit;
            border-radius: 0 14px 14px 0;

            .anim-icon {
                &:hover {
                    filter: invert(10);
                }
            }
        }
    }
}

/* Career Page */
.contact-form-wrap {
    padding: 50px 0 0;
}

.contact-form-box .sec-heading {
    margin: 0px 0px 30px;
}

.contact-info-map .sec-heading {
    margin: 0px;
}

.contact-form-box .sec-heading h2 {
    font-size: 28px;
    line-height: 32px;
    margin: 0px;
    color: #000;
}

.contact-form-box .inner {
    background: #fff;
    padding: 24px;
    border: 1px solid #e7e7e7;
    border-radius: 10px;
}

.contact-input .customLabel.activeLabel,
.contact-input .inputText:focus~.customLabel {
    color: #000;
    top: -22px;
    font-weight: 600;
    display: none;
}

.checkbox-label {
    font-size: 12px;
    color: #000;
}

#career_form label.error,
#career_form .error {
    font-size: 12px;
    color: red;
}

.contact-map-box .contact-info-map {
    padding: 20px;
    background: #1FB68026;
    margin-bottom: 20px;
    border-radius: 10px;
}

.contact-map-box .contact-info-map .contact-icon {
    padding: 10px 0 10px 70px;
    margin-top: 20px;
}

.contact-map-box .contact-info-map .contact-icon h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}

.contact-map-box .contact-info-map .contact-icon p {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #000;
}

.contact-map-box .contact-info-map .loc-icon {
    background: url(./asset/images/loc-icon.png) no-repeat top left;
}

.contact-map-box .contact-info-map .email-icon {
    background: url(./asset/images/mail-icon.png) no-repeat top left;
}

.contact-map-box .contact-info-map .mobile-icon {
    background: url(./asset/images/phone-icon.png) no-repeat top left;
}

#position_applied[readonly] {
    pointer-events: none;
    opacity: 0.8;
    background-color: #f9f9f9e8;
    color: #000000;
}