.poppins {
    font-family: "Poppins", sans-serif;
}

.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
}

.poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
}

.poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
}

.poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
}

/* src/styles/fonts.css */
@font-face {
    font-family: "Arimo";
    src: url("/src/assets/fonts/Arimo/Arimo-VariableFont_wght.ttf") format("truetype");
    font-weight: 100 900;
    /* Variable font supports weights from 100 to 900 */
    font-style: normal;
}

@font-face {
    font-family: "Arimo";
    src: url("/src/assets/fonts/Arimo/Arimo-Italic-VariableFont_wght.ttf") format("truetype");
    font-weight: 100 900;
    /* Same weight range */
    font-style: italic;
}

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

body {
    overflow-x: hidden;
    font-family: "Arimo", sans-serif;
    /* Use Arimo as the default font */
}

.Arimo {
    font-family: "Arimo", sans-serif;
    /* Use Arimo as the default font */
}

@media (max-width: 846px) {
    .remove_border {
        border: 0px;
    }
}

@media (max-width: 493px) {
    .remove_border1 {
        border: 0px;
    }
}

@media (max-width: 640px) {
    .display_flex {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .finish_padding {
        padding-bottom: 0px !important;
    }

    .full_width {
        width: 100% !important;
    }

    .padding_left {
        padding-left: 30px !important;
    }
}

@media (max-width: 340px) {
    .review_card {
        width: 100%;
    }
}

@media (max-width: 1168px) {
    .flex_col {
        flex-direction: column !important;
    }

    .flex_col1,
    .flex_col2 {
        width: 100% !important;
    }

    .padding_left {
        padding-left: 50px;
        padding-top: 60px;
    }
}

.stories__after ::after {
    height: 100%;
    width: 1px;
    background-color: #8aaad2;
    content: "";
    position: absolute;
    top: 56%;
    left: 50%;
    transform: translateX(50%);
}

.transorm_translate {
    transform: translate(-50%, -50%);
}

.lenier_g {
    background-image: linear-gradient(to bottom right, #085c99, #0d99ff);
}

.lllll:hover .lll {
    display: block;
}

.shadowHigh {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.l:hover~.ll {
    display: block;
}

.transition {
    transition: all 0.3s !important;
}

.right_position {
    right: 0 !important;
}

.transition-five-second {
    transition: all 0.5s ease-in-out !important;
}

/* *****************   ANIMATIONS   *************** */

.header__main__heading {
    height: 70px;
    overflow: hidden;
    padding-top: 80px;
}

.herder__img {
    transform: scale(1.25) translateX(50%) translateY(10%);
    filter: brightness(1.3);
    opacity: 0;
}

.landing__on__scroll {
    position: relative;
    top: 100px;
    clip-path: inset(0 0 94% 0);
    opacity: 0;
    transition: all 1s;
}


@keyframes imageAnimation {
    0% {
        transform: scale(0.6) rotate(-180deg);
        opacity: 0;
    }

    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes textAnimation {
    0% {
        opacity: 0;
        transform: translateX(200px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.animated-element img {
    animation: imageAnimation 2s;
}

.animated-element h2,
.animated-element p {
    animation: textAnimation 2s;
}

/* ***** animation for header text ******* */
.landing__slide__up {
    animation: landing__slide__up 1s forwards;
}

@keyframes landing__slide__up {
    0% {
        height: 70px;
        overflow-x: hidden;
        padding-top: 80px;
        opacity: 0;
    }

    100% {
        height: auto;
        line-height: 1.1;
        opacity: 1;
        overflow: hidden;
        padding-top: 0;
    }
}

/* ***** animation for header img in home page   ******* */

.landing__zoom__out {
    animation: landing__zoom__out 1s forwards ease-in-out;
}

@keyframes landing__zoom__out {
    0% {
        transform: scale(1.25) translateX(50%) translateY(10%);
        filter: brightness(1.3);
        opacity: 0;
    }

    100% {
        opacity: 1;
        filter: brightness(1);
        transform: scale(1) translateX(0%) translateY(0%);
    }
}

/* ***** animation for other elements  ******* */

.landing__on__scroll__active {
    position: relative;
    top: 0px;
    clip-path: inset(0 0 0 0);
    opacity: 1;
}

.swiper-slide.selected {
    background: #0d99ff !important;
}

.swiper-slide.selected-stack button {
    background: #0d99ff !important;
    color: #fff;
}

.swiper-slide.selected svg {
    stroke: #fff !important;
}

.swiper-slide.selected p {
    color: #fff !important;
}

#techLogoWrapper .logo__containers {
    margin-top: 22px;
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

#techLogoWrapper .logo__containers img {
    width: 150px;
    height: 80px;
    object-fit: contain;
}

.tech__item__style {
    min-width: fit-content;
    background-color: #e8f0fa;
    border-radius: 6px;
    transition: all 500ms;
}

.tech__item__style:hover {
    background-color: #0d99ff;
}

.animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.animate-active {
    opacity: 1;
    transform: translateY(0);
}

/* Light effect on image */
.herder__img img {
    filter: brightness(0.9);
    transition: filter 1s ease;
}

.herder__img img.light-effect {
    filter: brightness(1.2);
}

/* Delayed animations */
.animate-heading {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 0.5s ease;
}

.animate-heading-active {
    opacity: 1;
    transform: translateY(0);
}

.animate-paragraph {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 0.5s ease;
}

.animate-paragraph-active {
    opacity: 1;
    transform: translateY(0);
}

.animate-button {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 0.5s ease;
}

.animate-button-active {
    opacity: 1;
    transform: translateY(0);
}

.scale-up-bottom {
    opacity: 0;
    transition: opacity 1s ease, transform 4s ease;
    transition: all 1.3s ease-in-out;
    transform: scale(0.95);
}

.scale-up-bottom-active {
    opacity: 1;
    transition: all 0.7s ease-in-out;
    transform: scale(1);
}

.animate-images1 {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 0.6s ease;
}

.animate-images1-active {
    opacity: 1;
    transform: translateY(0);
}

.animate-images2 {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 0.6s ease;
}

.animate-images2-active {
    opacity: 1;
    transform: translateY(0);
}

.animate-images3 {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 0.6s ease;
}

.animate-images3-active {
    opacity: 1;
    transform: translateY(0);
}

.animate-images4 {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 0.6s ease;
}

.animate-images4-active {
    opacity: 1;
    transform: translateY(0);
}

.blog__wrapper__container a {
    color: #0d99ff !important;
}

.heading__container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 52px;
    padding-bottom: 52px;
    gap: 32px;
    z-index: 30;
    flex-direction: column-reverse;
}

.heading-title {
    font-size: 32px;
    padding-bottom: 10px;
    color: #001436;
    font-weight: 600;
    text-align: start;
    line-height: 43px;
    position: relative;
    z-index: 30;
    font-family: "Arimo", sans-serif !important;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.heading--subtitle {
    font-size: 14px;
    color: #001436;
    margin-top: 16px;
    position: relative;
    z-index: 30;
    max-width: 37.8rem;
}

.heading--button {
    display: flex;
    align-items: center;
    gap: 14px;
    background-color: #0d99ff;
    border-radius: 1rem;
    padding-left: 22px;
    padding-right: 22px;
    padding-top: 8px;
    padding-bottom: 8px;
    cursor: pointer;
}

.heading__button-text {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    user-select: none;
}

.card-container {
    background-color: #e8f0fa;
    border-radius: 20px;
    padding: 1.5rem;
    width: 100%;
    max-width: 960px;
    scroll-behavior: smooth;
    /* Simulating the `landing__on__scroll` behavior */
}

.card-header {
    display: flex;
    gap: 0.5rem;
    justify-content: space-between;
    align-items: flex-start;
}

.card-title {
    margin-top: 8px;
    padding-bottom: 0.75rem;
    color: #0a0e19;
    font-size: 1.5rem;
    line-height: 1.5rem;
    font-weight: 600;
    width: 85%;
    border-bottom: 1px solid #0d99ff;
}

.card-icon {
    background-color: #0d99ff;
    border-radius: 12px;
    height: 50px;
    width: 50px;
    min-width: 50px;
    margin-left: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon-image {
    width: 30px;
    border-radius: 0.25rem;
    object-fit: contain;
}

.card-description {
    font-size: 1rem;
    line-height: 2rem;
    margin-top: 16px;
    color: #001436;
    max-width: 100%;
}

.detail_wrapper {
    max-width: 1300px;
    /* max-w-[1300px] */
    width: 95%;
    /* w-[95%] */
    margin: 0 auto;
    /* mx-auto */
    padding-left: 15px;
    /* px-[15px] */
    padding-right: 15px;
    /* px-[15px] */
    position: relative;
    /* relative */
    display: flex;
    /* flex */
    gap: 32px;
    /* gap-[32px] */
}

.text-heading {
    color: #0a0e19;
    /* text-[#0A0E19] */
    font-weight: 600;
    /* font-semibold */
    margin-top: 1.25rem;
    /* mt-5 */
    line-height: 2rem;
    /* leading-8 */
    max-width: 44rem;
    /* max-w-[44rem] */
    font-family: "Arimo", sans-serif;
    /* Arimo */
    font-size: 1.5rem;
    /* text-2xl */

    /* Responsive styles */
    @media (min-width: 640px) {
        /* sm breakpoint */
        line-height: 4rem;
        /* sm:leading-[4rem] */
        font-size: 1.875rem;
        /* sm:text-3xl */
    }

    @media (min-width: 768px) {
        /* md breakpoint */
        font-size: 3.38rem;
        /* md:text-[3.38rem] */
    }
}

.service_card:hover {
    transform: scale(1.05);
    /* box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); */
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 22px;
    margin-top: 52px;
}

.project__card {
    max-width: 540px;
    width: 100%;
}

.project__card-image-container {
    border-radius: 12px;
    width: 100%;
    padding-top: 20px;
    overflow: hidden;
}

.project__card-image {
    height: auto;
    max-height: 386px;
    width: 100%;
}

.project__card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-top: 12px;
}

.project__card-title {
    color: #0a0e19;
    font-size: 21px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.project__card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: #11335a;
    cursor: pointer;
}

.project__card-description {
    margin-top: 14px;
    font-size: 13px;
    color: #0a0e19;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.project__card-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 11px;
}

.project__card-tag {
    color: #0d99ff;
    font-size: 11px;
    font-weight: 500;
    background-color: #ddf0ff;
    border-radius: 30px;
    padding: 4px 11px;
}

/* Media query for md:px-[20px] */
@media (min-width: 768px) {
    .detail_wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.my_card {
    border: 1px solid #0D99FF;
    height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 20px;
    padding: 20px 40px;
}

.my_card h1 {
    font-weight: 700;
    font-size: 107.44px;
    line-height: 115.47px;
    background: linear-gradient(180deg, #0D99FF 0%, #085C99 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.my_card p {
    font-weight: 600;
    font-size: 22.35px;
    background: linear-gradient(90deg, #0D99FF 0%, #085C99 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.my_card:hover {
    background: linear-gradient(180deg, #0D99FF 0%, #085C99 100%);
}

.my_card:hover svg stop {
    stop-color: #fff !important;
}

.my_card:hover p,
.my_card:hover h1 {
    background: linear-gradient(180deg, #fff 0%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 1024px) {
    .my_card {
        padding: 20px;
    }

    .my_card h1 {
        font-size: 80px;
        line-height: 90px;
    }
}

@media (max-width: 768px) {
    .my_card {
        height: 200px;
    }

    .my_card h1 {
        font-size: 60px;
        line-height: 70px;
    }

    .active-bar {
        grid-column: span 12 / span 12 !important;
        padding: 16px 24px;
    }
}

.main_card_container {
    display: grid;
    grid-template-columns: repeat(1,
            minmax(0, 1fr));
    /* Default to single column */
    max-width: 960px;
    /* Equivalent to max-w-5xl */
    margin: 0 auto;
    /* Center horizontally */
    width: 100%;
    /* w-[95%] */
    align-items: stretch;
    /* items-stretch */
    justify-content: center;
    /* justify-center */
    gap: 22px;
    /* gap-[22px] */
    flex-wrap: wrap;
    /* flex-wrap */
    margin-top: 70px;
    /* mt-[70px] */
}

.service_head_card {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 10px 16px;
    gap: 14px;
    border-radius: 16px;
    width: 100%;
    max-width: 320px;
}

.service_head_card:hover {
    background: #e8f0fa;
}

.service_image {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 8px;
    background: #abdcff;
    width: 50px;
    height: 50px;
}

.service_image img {
    height: 30px;
    width: 30px;
}

.gradient_background {
    background: linear-gradient(180deg, #0D99FF 0%, #001436 100%) !important;
}

.gradient_background#web-app {
    background: url('/assets/images/web-page-banner.png') !important;
    background-size: cover !important;
    background-repeat: no-repeat;
}

.gradient_background#csd-banner {
    background: url('/assets/images/csd-banner.png') !important;
    background-size: cover !important;
    background-repeat: no-repeat;
}

.vertical-text {
    writing-mode: vertical-rl;
}

.active-bar {
    grid-column: span 9 / span 9;
    padding: 16px 24px;
    display: flex !important;
}

.card-content {
    display: none;
}

.active-bar .vertical-text {
    writing-mode: horizontal-tb;
    transform: rotate(0)
}

.active-bar .circle-icon {
    background-color: white;
}

.active-bar .btn-expand {
    display: none;
}

.active-bar .card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

.active-bar .active-head {
    flex-direction: row-reverse;
    justify-content: flex-start;
}


.progress-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #ddd;
}

.progress-bar {
    height: 100%;
    width: 0;
    background: #3498db;
    transition: width linear;
}


.crm-scrollbar {
    overflow-y: auto;
}

.crm-scrollbar::-webkit-scrollbar {
    width: 8px;
}

.crm-scrollbar::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #0D99FF 0%, #40AFFF 50%, #0D99FF 100%);
    border-radius: 50px;
}

.crm-scrollbar::-webkit-scrollbar-track {
    background: white;
    border: 2px solid #0D99FF;
    /* Blue border around the thumb */
    border-radius: 50px;
}

/* Scrollbar Thumb on Hover */
.crm-scrollbar::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #0A7ECC 0%, #0896FF 100%);
}

.crm-scrollbar .slide_active {
    background: linear-gradient(90deg, #0D99FF 0%, #085C99 100%);
    color: white;
}

@media (min-width: 540px) {
    .card-container {
        padding: 2.5rem;
    }

    .card-title {
        font-size: 2.5rem;
        line-height: 2.5rem;
        padding-bottom: 1.25rem;
    }

    .card-description {
        font-size: 1.25rem;
        width: 80%;
    }

    .card-icon {
        height: 70px;
        width: 70px;
        min-width: 70px;
    }

    .card-icon-image {
        width: 40px;
        border-radius: 0.25rem;
        object-fit: contain;
    }
}

@media (min-width: 640px) {
    .heading__container {
        gap: 60px;
        flex-direction: row;
    }

    .heading-title {
        font-size: 42px;
        line-height: 48px;
    }

    .heading--subtitle {
        font-size: 16px;
    }

    .heading--button {
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .heading__button-text {
        font-size: 18px;
    }
}

@media (min-width: 768px) {
    .heading__container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .heading-title {
        font-size: 52px;
        line-height: 60px;
    }

    .main_card_container {
        padding: 1rem;
    }

    .grid-container {
        grid-template-columns: repeat(2,
                minmax(0, 1fr));
        /* 2 columns for medium screens and above */
    }
}

@media (min-width: 1024px) {
    .main_card_container {
        grid-template-columns: repeat(2,
                minmax(0, 1fr));
        /* 2 columns for medium screens and above */
    }

    .heading-title {
        font-size: 70px;
        line-height: 70px;
    }
}