: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;
}


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

    .container {
        padding: 60px 0px;
    }

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

    .no-post-message {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 400px;
        background: #e7e7e7;
        color: #000;
        font-size: 20px;
        font-style: italic;
        text-transform: capitalize;
    }

    .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;
            color: var(--font-color);
            font-size: 14px;

            img {
                margin-bottom: 1em;
            }


            h2 {
                color: var(--font-color);
                font-size: 30px;
                font-weight: 600;
            }

            h3 {
                color: var(--font-color);
                font-size: 24px;
                font-weight: 500;
            }

            h4 {
                color: var(--font-color);
                font-size: 20px;
                font-weight: 500;
            }

            &>h4,
            h1 {
                color: var(--font-color);
                font-size: 35px;
                line-height: 42px;
                font-weight: 700;
            }

            span {
                padding-top: 0.5em;
                color: var(--font-color);
                font-size: var(--font-size-medium);
                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);
            }

            ul,
            ol {
                margin-bottom: 15px;
                padding-left: 15px;
            }

            p,
            li {
                padding-top: 0.5em;
                color: var(--font-color);
                font-size: var(--font-size-large);
                line-height: 1.6;
                cursor: pointer;

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

            .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 {
                    background-color: #21b573;
                    color: black;
                    font-weight: 600;
                    border-radius: 6px;
                    padding: 10px 18px;
                    display: inline-flex;
                    align-items: center;
                    gap: 6px;
                    border: 1px solid transparent;
                    transition: 0.7s;

                    i {
                        margin-left: 6px;
                    }

                    &:hover {
                        transition: 0.7s;
                        background-color: transparent;
                        border: 1px solid #21b573;
                        color: #21b573;
                    }
                }
            }
        }

        &: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-medium);
                    line-height: 1.6;
                    background-color: #fff;
                    border-left: none;
                }

                p {
                    padding-top: 0.5em;
                    color: var(--font-color);
                    font-size: var(--font-size-medium);
                    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-medium);
                    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;
                    padding-left: 0px;

                    li {
                        padding: 0.5em 1em;
                        background: var(--white-color);
                        color: var(--font-color);
                        border-radius: 6px;
                        font-size: var(--font-size-medium);
                        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);
                        }

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

                    .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-medium);
                        font-weight: 500;
                        line-height: 1.6;
                        margin-bottom: 0.5em;
                        cursor: pointer;
                        text-align: center;

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

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

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

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

        .video-card {
            background-color: transparent;
            box-shadow: none;

            .card-body {
                padding: 0px;

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

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

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

            .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-medium);
            }
        }
    }

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

        .container {
            padding: 0px 15px;
        }

        .blog-right {
            margin-top: 2rem;
        }

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

                img {
                    max-height: 260px !important;
                    border-radius: 8px;
                }

                .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;
                            height: 390px;
                        }
                    }
                }
            }
        }
    }

    @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;
    }

    .cs-page-title {
        h2 {
            font-size: 30px;
            font-weight: 600;
        }
    }

    .caregoryBoxWrap {
        .category-card {
            background: #0d2236;

            h4 {
                color: #fff;
            }
        }

        .category-posts {
            ul {
                display: flex;
                flex-wrap: wrap;
                gap: 10px;
                list-style: none;
                margin-top: 20px;

                li {
                    padding: 10px;
                    background: #fff;
                    font-weight: 400;
                    border-radius: 5px;
                    font-family: var(--jeeno-ff-outfit);
                    cursor: pointer;

                    a,
                    span {
                        display: inline-block;
                        font-family: var(--jeeno-ff-outfit);
                    }

                    &.current-category {
                        background: var(--green-background-color);

                        a,
                        span {
                            color: #fff;
                        }
                    }
                }
            }
        }
    }

    .case-study-posts {
        .post-separate {
            box-shadow: 0px 0px 10px 2px #0606061a;
            border: none;
            border-radius: 1em;
            padding: 24px 12px;
            margin-bottom: 2em;

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

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

                img {
                    height: fit-content;
                    object-fit: cover;
                    border-radius: 10px;
                    max-height: 280px;
                    width: 100%;


                    @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-medium);
                        display: inline-block;
                        font-weight: 600;
                        font-family: var(--jeeno-ff-outfit);
                    }

                    .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-medium);

                        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-medium);
                        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;
    }

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

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

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

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

                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 {
                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;
                        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);
                            }
                        }
                    }

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

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

    .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);
                    }

                    .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: 10px 15px;
                            background: #fff;
                            font-size: 14px;
                        }

                        .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: 12px;
                        text-align: center;
                        cursor: pointer;
                        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);
                }
            }
        }
    }
}

.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;
                }
            }
        }
    }
}

.blogs-page {
    .blog-card.card {
        .continue-reading {
            color: #1fb680 !important;
        }

        .card-body {
            img {
                max-width: 1000px;
                max-height: 400px;
                object-fit: cover;
            }

            .blog-share-icons p:hover a i {
                color: #1fb680 !important;
                transition: 0.5s;
            }

            .blog-share-icons p i {
                font-size: 20px;
            }

            .blog-share-icons p a i {
                font-size: 14px;
            }

            .main-blog-search .input-group input::placeholder {
                font-size: 10px !important;
            }

            .filter-category.current-category {
                background: #00ffbd;
            }

            .filter-category.current-category span {
                background-color: #00ffbd !important;
            }
        }

    }

}

@media only screen and (max-width: 991px) {
    .blogs-page .blog-left {
        position: unset;
        margin-top: 2rem;
    }
}

.blogs-page .jeeno-footer-section .container {
    padding: 10px 0px !important;
}

.case-study-posts .case-study-desc p {
    font-size: 16px !important;
}

.header-wrapper .mainmenu ul>li:hover a::after {
    color: var(--green-heading-color)
}

.hamburger-area .contact-info .contact-item span {
    color: #fff;
}

.jeeno-footer-section .copyright-text p {
    color: #fff;
}