body {
    font-family: "Manrope", -apple-system, Roboto, Helvetica, sans-serif;
}

:root {
    --encureit-blue: #1F3B75;
    --encureit-cyan: #1DB9DD;
    --gray-section: #ECF0F4;
    --dark-text: #1F1F1F;
    --gray-text: #666666;
}

@media (min-width: 1024px) {
    .lg-gap-110 {
        gap: 110px;
    }
}

/* Smooth scrolling for logo container */
.logo-container {
    scroll-behavior: smooth;
}

/* Logo hover effects */
.logo-item {
    transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
}

.logo-item:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

.dropdown-enter {
    opacity: 0;
    transform: translateY(-10px);
}

.dropdown-enter-active {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.2s ease-out;
}

.dropdown-exit {
    opacity: 1;
    transform: translateY(0);
}

.dropdown-exit-active {
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.2s ease-in;
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.mobile-submenu.open {
    max-height: 300px;
}

.arrow-rotate {
    transition: transform 0.2s ease;
}

.arrow-rotate.open {
    transform: rotate(180deg);
}

.stroke-text-white {
    -webkit-text-stroke: 3px white;
    text-stroke: 3px white;
}

.stroke-text-black {
    -webkit-text-stroke: 3px black;
    text-stroke: 3px black;
}

.bg-encure-navy-90 {
    background-color: rgba(31, 59, 117, 0.9);
}

.text-brand-yellow {
    color: #fbbc05;
}

.text-encure-dark {
    color: #333333;
}

.bg-brand-yellow {
    background-color: #fbbc05;
}

.hover\:bg-yellow-400:hover {
    background-color: #fbbf24;
}

.group:hover .group-hover\:translate-x-1 {
    transform: translateX(0.25rem);
}

.gradient-text {
    background: linear-gradient(180deg, #1db9dd 0%, #1f3b75 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slider-container {
    transition: transform 0.5s ease-in-out;
}

.bottom-position {
    bottom: -1px !important;
}

/* Custom styles for curved date badge shadows */
.date-badge-left::before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 20px;
    height: 40px;
    background: transparent;
    border-radius: 0 0 20px 0;
    box-shadow: 0 20px 0 0 white;
}

*/ .date-badge-right::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 20px;
    height: 40px;
    background: transparent;
    border-radius: 0 0 0 20px;
    box-shadow: 0 20px 0 0 white;
}


/* .date-badge-left::before {
    content: '';
    position: absolute;
    bottom: 0px;
    width: 20px;
    right: -1px;
    height: 47px;
    background: transparent;
    border-radius: 0 0 20px 0;
    box-shadow: 0 20px 0 0 white;
}

.date-badge-right::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: -1px;
    width: 25px;
    height: 42px;
    background: transparent;
    border-radius: 0 0 0 20px;
    box-shadow: 0 20px 0 0 white;
} */

@media (max-width: 640px) {

    .date-badge-left::before,
    .date-badge-right::after {
        width: 16px;
        height: 32px;
        border-radius: 0 0 16px 0;
        box-shadow: 0 16px 0 0 white;
    }

    .date-badge-right::after {
        border-radius: 0 0 0 16px;
    }
}

/* Smooth animations */
.hover-scale {
    transition: transform 0.2s ease-in-out;
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* Button gradient */
.gradient-button {
    background: #1db9dd;
    background: linear-gradient(135deg, #1db9dd 0%, #16a5c7 100%);
}

.star-field {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.star {
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
}

.slider-container {
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
}

.slider-item {
    min-width: 100%;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .slider-item {
        min-width: 420px;
    }
}

.gradient-health {
    background: linear-gradient(to bottom right, #2a3b74, #3b4b8e, #4c5ba8);
}

.gradient-govt {
    background: linear-gradient(to bottom right, #364b7d, #475c97, #5a6bb1);
}

.gradient-fintech {
    background: linear-gradient(to bottom right, #4a3b74, #5b4b8e, #6c5ba8);
}

.gradient-realestate {
    background: linear-gradient(to bottom right, #3a4b64, #4b5c77, #5c6d8a);
}

.gradient-telecom {
    background: linear-gradient(to bottom right, #2d4b74, #3e5c8e, #4f6da8);
}

/* Custom Swiper Styles */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    width: 100%;
}

/* Desktop: 3 slides per view */
@media (min-width: 1024px) {
    .swiper-slide {
        width: 420px !important;
    }
}

/* Custom navigation buttons */
.swiper-button-prev,
.swiper-button-next {
    position: static !important;
    margin: 0 !important;
    width: 48px !important;
    height: 48px !important;
    background: transparent !important;
    border: 1px solid #1f1f1f !important;
    border-radius: 10px !important;
    color: #1f1f1f !important;
    font-size: 12px !important;
    transition: all 0.3s ease !important;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: #f3f4f6 !important;
}

.swiper-button-disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    display: none !important;
}

/* Custom pagination */
.swiper-pagination {
    position: static !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 16px !important;
    margin-top: 50px !important;
}

@media (min-width: 1024px) {
    .swiper-pagination {
        justify-content: flex-end !important;
        margin-top: 32px !important;
    }
}

.swiper-pagination-bullet {
    width: 48px !important;
    height: 6px !important;
    border-radius: 9999px !important;
    background: #d4d6d8 !important;
    opacity: 1 !important;
    margin: 0 !important;
}

.swiper-pagination-bullet-active {
    background: #1db9dd !important;
    height: 6px !important;
}

/* Navigation container */
.navigation-container {
    display: none;
}

@media (min-width: 1024px) {
    .navigation-container {
        display: flex;
        position: absolute;
        top: 192px;
        right: 0;
        gap: 1px;
        border: 1px solid #1f1f1f;
        border-radius: 10px;
        padding: 1px;
        background: white;
    }
}

.mt-whatwedo {
    margin-top: 100px;
}

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

/* by medha */
/* casestudy page */
.gradient-stroke {
    font-size: 5rem;
    /* same as text-7xl */
    font-weight: 800;
    /* bold */
    color: transparent;
    /* keep inside empty */
    -webkit-text-stroke: 3px transparent;
    /* stroke width */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-stroke {
    -webkit-text-stroke: 2px #0ea5e9;
    /* fallback solid stroke */
    background-clip: border-box;
}

.process-step {
    margin-bottom: 10px !important;
}

.arrow1 {
    position: absolute !important;
    left: 19% !important;
}

.arrow2 {
    position: absolute !important;
    left: 43% !important;
}

.arrow3 {
    position: absolute !important;
    left: 69% !important;
}

.mt-whatwedo {
    margin-top: 100px;
}

.encureit_banner {
    width: 100%;
    position: absolute;
    top: 0px;
    height: 100%;
}

.mt-banner {
    margin-top: 120px !important;
}

/* top banner */
.sub_banner_container {
    height: 100%;
}

.top_banner_main_container {
    width: 98%;
    margin-top: 15px !important;
}

.career_apply_btn {
    padding: 6px 10px;
    text-align: center;

    font-size: 15px;
}

.career_apply_btn svg {
    display: inline;
}

.career_lang {
    padding: 4px 4px;
    border-radius: 5px;
}

.bg-cyan {
    background-color: var(--encureit-cyan);
}

.more_number {
    height: 25px;
    width: 35px;
    text-align: center;
}

.career_icons {
    width: 20px;
}

/* Testimonial blockquote scrollbar (thin, subtle) */
#mainQuote {
    scrollbar-width: thin;
    scrollbar-color: #9CA3AF #F3F4F6;
    /* thumb track */
}

#mainQuote::-webkit-scrollbar {
    width: 8px;
}

#mainQuote::-webkit-scrollbar-track {
    background: #F3F4F6;
    border-radius: 9999px;
}

#mainQuote::-webkit-scrollbar-thumb {
    background: #9CA3AF;
    border-radius: 9999px;
}

#mainQuote::-webkit-scrollbar-thumb:hover {
    background: #6B7280;
}

.text-container {
    font-size: 34px;
    color: #ffffff;
    font-weight: 600;
    display: flex;
    width: 100%;
    position: absolute;
    top: 40%;
    justify-content: center;
    width: 100%;
    align-items: center;
}

.custom-list {
    padding-left: 30px;
    list-style-type: disc !important;
    /* circle | disc | square | none */
}

.ccheadtext {
    font-size: 26px;
}

.ccptext {
    font-size: 20px;
}

.bg-encureit-db {
    background-color: #1f3b75;
}

.image_height {
    height: 341px;
}

/* Main container */
.case-study-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.main-content {
    width: 100%;
}

@media (max-width: 1023px) {
    .main-content {
        max-width: 100%;
    }

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

.content-wrapper {
    gap: 20px;
    display: flex;
}

@media (max-width: 991px) {
    .content-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
}

/* Navigation sidebar */
.navigation-sidebar {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    line-height: normal;
    width: 16%;
    margin-left: 0;
}

@media (max-width: 991px) {
    .navigation-sidebar {
        width: 100%;
    }
}

.nav-content {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    font: 400 16px/40px Sora, -apple-system, Roboto, Helvetica, sans-serif;
}

@media (max-width: 991px) {
    .nav-content {
        margin-top: 40px;
    }
}

.nav-sections {
    display: flex;
    align-items: stretch;
    color: var(--Dark, #333);
    padding: 0 2px;
}

.section-links {
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: 0;
    width: fit-content;
    padding: 30px 10px 30px 14px;
}

@media (max-width: 991px) {
    .section-links {
        margin-right: -11px;
        padding-right: 20px;
    }
}

.nav-link {
    color: var(--Dark, #333);
    text-decoration: none;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.nav-link:first-child {
    color: var(--EncureIT_LB, #1db9dd);
    font: 700 21px Manrope, -apple-system, Roboto, Helvetica, sans-serif;
    margin-top: 0;
}

.nav-link:hover {
    color: var(--EncureIT_LB, #1db9dd);
}

.nav-indicator {
    border-radius: 10px;
    align-self: start;
    display: flex;
    margin-top: 93px;
    width: 7px;
    flex-shrink: 0;
    height: 73px;
    background-color: var(--EncureIT_YL, #fbbc05);
}

@media (max-width: 991px) {
    .nav-indicator {
        margin-top: 40px;
    }
}

.share-section {
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    align-self: center;
    z-index: 10;
    display: flex;
    gap: 10px;
    overflow: hidden;
    color: rgba(255, 255, 255, 1);
    white-space: nowrap;
    background-color: var(--EncureIT_DB, #1f3b75);
    margin: -12px 0 0 45px;
    padding: 6px 30px;
}

@media (max-width: 991px) {
    .share-section {
        white-space: initial;
        padding: 0 20px;
    }
}

.share-text {
    align-self: stretch;
    margin: auto 0;
}

.share-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 26px;
    align-self: stretch;
    flex-shrink: 0;
    margin: auto 0;
}

/* Main section */
.main-section {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    line-height: normal;
    /* width: 84%; did 100 wrt coresmartai page*/
    width: 100%;

}

.caseStudy-margin-20 {
    margin-left: 20px;
}

@media (max-width: 991px) {
    .main-section {
        width: 100%;
    }
}

/* Project hero section */
.project-hero {
    display: flex;
    margin-top: 11px;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
}

@media (max-width: 991px) {
    .project-hero {
        max-width: 100%;
        /* margin-top: 40px; */
        margin-top: 10px;
    }
}

.hero-content {
    gap: 20px;
    display: flex;
}

@media (max-width: 1023px) {
    .hero-content {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    line-height: normal;
    width: 44%;
    margin-left: 0;
}

@media (max-width: 991px) {
    .hero-left {
        width: 100%;
    }
}

.project-header {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: start;
}

@media (max-width: 991px) {
    .project-header {
        max-width: 100%;
        /* margin-top: 40px; */
        margin-top: 10px;
    }
}

.project-image-section {
    width: 503px;
    max-width: 100%;
    gap: 20px;
    display: flex;
}

@media (max-width: 991px) {
    .project-image-section {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
}

.project-logo {
    aspect-ratio: 1.05;
    object-fit: contain;
    object-position: center;
    /* width: 158px; */
    width: 125px;
    border-radius: 25px;
    flex-shrink: 0;
    max-width: 100%;
    flex-grow: 1;
}

@media (max-width: 991px) {
    .project-logo {
        /* margin-top: 29px; */
        margin-top: 10px;
    }
}

.project-title {
    color: var(--Dark, #333);
    letter-spacing: -3px;
    /* font: 400 60px/70px Sora, -apple-system, Roboto, Helvetica, sans-serif; */
    font-size: 44px;
    font-weight: 500;
    /* margin-left: 20px; */
}

@media (max-width: 991px) {
    .project-title {
        margin-top: 29px;
        font-size: 40px;
        line-height: 52px;
        margin-left: 0;
    }
}

.title-highlight {
    color: rgba(29, 185, 221, 1);
}

.project-divider {
    background-color: rgba(51, 51, 51, 1);
    align-self: stretch;
    display: flex;
    margin-top: 13px;
    flex-shrink: 0;
    height: 1px;
}

@media (max-width: 991px) {
    .project-divider {
        max-width: 100%;
    }
}

.project-details {
    display: flex;
    margin-top: 22px;
    width: 514px;
    max-width: 100%;
    align-items: stretch;
    gap: 40px 78px;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: 0;
    width: fit-content;
}

.detail-label {
    color: rgba(17, 17, 17, 1);
    letter-spacing: -0.6px;
    align-self: start;
    font: 400 20px/1 Sora, -apple-system, Roboto, Helvetica, sans-serif;
}

.detail-description {
    color: rgba(149, 149, 149, 1);
    margin-top: 7px;
    font: 500 16px/30px Manrope, -apple-system, Roboto, Helvetica, sans-serif;
}

.hero-right {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    line-height: normal;
    width: 56%;
    margin-left: 20px;
}

@media (max-width: 991px) {
    .hero-right {
        width: 100%;
    }
}

.project-description {
    color: rgba(51, 51, 51, 1);
    font: 700 16px/33px Manrope, -apple-system, Roboto, Helvetica, sans-serif;
}

@media (max-width: 1023px) {
    .project-description {
        max-width: 100%;
        margin-top: 15px;
    }
}


.description-text {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
}

/* Project showcase */
.project-showcase {
    aspect-ratio: 2.77;
    object-fit: contain;
    object-position: center;
    width: 100%;
    align-self: center;
    margin-top: 45px;
    max-width: 933px;
}

@media (max-width: 991px) {
    .project-showcase {
        max-width: 100%;
        margin-top: 40px;
    }
}

/* Process section */
.process-section {
    margin-top: 51px;
}

@media (max-width: 991px) {
    .process-section {
        margin: 40px 0 0 2px;
    }
}

.process-label {
    color: var(--Dark, #333);
    align-self: start;
    font: 500 13px/2 Manrope, -apple-system, Roboto, Helvetica, sans-serif;
}

.process-title {
    color: #333333;
    letter-spacing: -3px;
    align-self: start;
    margin-top: 43px;
    font: 400 60px/70px Sora, -apple-system, Roboto, Helvetica, sans-serif;
}

@media (max-width: 991px) {
    .process-title {
        max-width: 100%;
        margin-top: 40px;
        font-size: 40px;
        line-height: 52px;
    }
}

.process-steps {
    margin-top: 30px;
    gap: 20px;
    display: flex;
}

@media (max-width: 991px) {
    .process-steps {
        max-width: 100%;
        margin-top: 40px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    line-height: normal;
    width: 25%;
    margin-left: 0;
    background: white;
}

@media (max-width: 991px) {
    .process-step {
        width: 100%;
        margin-top: 40px;
    }
}

.process-step:first-child {
    border-radius: 25px;
    /* background-color: rgba(244, 244, 244, 1); */
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    align-items: start;
    color: var(--Dark, #333);
    margin: 0 auto;
    padding: 0 10px 10px 10px;
    font: 600 16px Manrope, -apple-system, Roboto, Helvetica, sans-serif;
    width: 100%;
}

.process-step:nth-child(2) {
    border-radius: 25px;
    /* background-color: rgba(244, 244, 244, 1); */
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    font-weight: 600;
    margin: 0 auto;
    padding: 0 10px 10px 10px;
    width: 100%;
}

.process-step:nth-child(3),
.process-step:nth-child(4) {
    border-radius: 25px;
    /* background-color: rgba(244, 244, 244, 1); */
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    align-items: start;
    color: var(--Dark, #333);
    margin: 0 auto;
    padding: 0 10px 10px 10px;
    font: 600 16px Manrope, -apple-system, Roboto, Helvetica, sans-serif;
    width: 100%;
}

.step-header {
    display: flex;
    margin-left: 22px;
    width: 203px;
    max-width: 100%;
    align-items: start;
    letter-spacing: -0.48px;
    justify-content: start;
}

@media (max-width: 991px) {
    .step-header {
        margin-left: 10px;
    }
}

.step-icon-left,
.step-icon-right {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 20px;
    fill: var(--White, #fff);
    flex-shrink: 0;
}

.step-number {
    justify-content: center;
    align-items: center;
    border-radius: 0 0 25px 25px;
    display: flex;
    min-height: 38px;
    gap: 10px;
    background-color: var(--White, #fff);
    padding: 7px 37px;
}

@media (max-width: 991px) {
    .step-number {
        padding: 0 20px;
    }
}

.step-text {
    color: var(--Dark, #333);
    align-self: stretch;
    margin: auto 0;
}

.step-title {
    color: var(--EncureIT_LB, #1db9dd);
    letter-spacing: -0.72px;
    margin: 28px 0 0 10px;
    font: 24px/1 Sora, -apple-system, Roboto, Helvetica, sans-serif;
}

.step-description {
    color: var(--Dark, #333);
    line-height: 30px;
    margin-top: 12px;
    /* width: 264px; */
    font-size: 16px;
}

.step-illustration {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 60px;
    align-self: end;
    margin-top: auto;
}

.step-content {
    display: flex;
    margin-top: 28px;
    align-items: flex-start;
    gap: 20px;
    justify-content: space-between;
}

.step-info {
    align-self: start;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

/* Content sections */
.content-sections {
    align-self: end;
    display: flex;
    margin-top: 10px;
    width: 100%;
    max-width: 1441px;
    flex-direction: column;
    align-items: start;
}

@media (max-width: 991px) {
    .content-sections {
        max-width: 100%;
        margin: 40px 2px 0 0;
    }
}

/* Challenge section */
.challenge-section {
    width: 100%;
    max-width: 1337px;
    margin-top: 50px;
}

@media (max-width: 991px) {
    .challenge-section {
        max-width: 100%;
    }
}

.section-content {
    gap: 20px;
    display: flex;
}

@media (max-width: 991px) {
    .section-content {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    line-height: normal;
    width: 30%;
    margin-left: 0;
    position: relative;
}

@media (max-width: 991px) {
    .section-header {
        width: 100%;
    }
}

.section-title {
    color: rgba(17, 17, 17, 1);
    letter-spacing: -1px;
    /* font: 400 60px/1 Sora, -apple-system, Roboto, Helvetica, sans-serif; */
    font-size: 42px;
    font-weight: 500;
}

@media (max-width: 991px) {
    .section-title {
        margin-top: 40px;
        font-size: 40px;
    }
}

.section-body {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    line-height: normal;
    width: 70%;
    margin-left: 20px;
}

@media (max-width: 991px) {
    .section-body {
        width: 100%;
    }
}

.challenge-content {
    width: 100%;
}

@media (max-width: 991px) {
    .challenge-content {
        max-width: 100%;
        margin-top: 40px;
    }
}

.challenge-intro {
    color: rgba(51, 51, 51, 1);
    /* margin-right: 40px; */
    font-weight: 600;
    font-size: 18px;
    line-height: 25px;
}

@media (max-width: 991px) {
    .challenge-intro {
        max-width: 100%;
        margin-right: 10px;
    }
}

.challenge-points {
    display: flex;
    margin-top: 10px;
    align-items: stretch;
    gap: 4px;
    flex-wrap: wrap;
}

.challenge-icons {
    align-self: start;
    margin-top: 10px;
}

.challenge-bullet {
    aspect-ratio: 0.7;
    object-fit: contain;
    object-position: center;
    width: 7px;
    display: block;
    margin-bottom: 61px;
}

.challenge-bullet:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .challenge-bullet {
        margin-bottom: 40px;
    }
}

.challenge-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    color: rgba(51, 51, 51, 1);
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: 0;
    width: fit-content;
    font: 800 16px/30px Manrope, -apple-system, Roboto, Helvetica, sans-serif;
}

@media (max-width: 991px) {
    .challenge-list {
        max-width: 100%;
    }
}

.challenge-item {
    margin-bottom: 11px;
}

.challenge-item {
    position: relative;
    padding-left: 24px;
    /* space for bullet */
}

.challenge-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    /* align with title */
    width: 14px;
    height: 12px;
    background-image: url("https://api.builder.io/api/v1/image/assets/2e733db30cdc4084bf68f6f0f686ef1d/dced6f7c045de3438c5733207dcebb6b92ef5265?placeholderIfAbsent=true");
    /* your image */
    background-size: contain;
    background-repeat: no-repeat;
}

/* .challenge-item:last-child {
    margin-bottom: 0;
    margin-top: 10px;
} wrt to rings ai page*/

.challenge-title {
    font-size: 16px;
    font-weight: 800;
    /* display: inline; */
}

.challenge-description {
    font-weight: 400;
    /* display: inline; */
    font-size: 16px;
    line-height: 28px;
}

.challenge-conclusion {
    color: rgba(51, 51, 51, 1);
    /* align-self: end; */
    /* width: 882px; */
    margin: 7px 0 0 0;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
}

@media (max-width: 991px) {
    .challenge-conclusion {
        max-width: 100%;
        margin-right: 10px;
    }
}

/* Solution section */
.solution-section {
    align-self: stretch;
    margin-top: 50px;
}

@media (max-width: 991px) {
    .solution-section {
        max-width: 100%;
        margin-top: 40px;
    }
}

.solution-quote {
    border-radius: 20px;
    /* min-height: 684px; */
    width: 100%;
    color: rgba(51, 51, 51, 1);
    background-color: var(--Gray_Section_BG, #ecf0f4);
    margin: 0 auto;
    padding: 24px 22px 30px 22px;
    font: 800 16px/30px Manrope, -apple-system, Roboto, Helvetica, sans-serif;
}

@media (max-width: 991px) {
    .solution-quote {
        max-width: 100%;
        margin-top: 40px;
        padding: 24px 24px;
    }
}

@media (max-width: 1023px) {
    .stick-menucase {
        display: none;
    }

    .stick-menucasestudy {
        display: none;
    }
}

.solution-intro {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
}

@media (max-width: 991px) {
    .solution-intro {
        max-width: 100%;
        font-size: 18px;
    }
}

.solution-features {
    margin-top: 10px;
}

.solution-feature {
    display: flex;
    margin-top: 10px;
    align-items: stretch;
    gap: 18px;
    flex-wrap: nowrap;
}

.feature-bullet {
    aspect-ratio: 0.7;
    object-fit: contain;
    object-position: center;
    width: 7px;
    align-self: start;
    margin-top: 10px;
    flex-shrink: 0;
}

.feature-content {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: auto;
}

@media (max-width: 991px) {
    .feature-content {
        max-width: 100%;
    }
}

.feature-title {
    font-weight: 800;
    /* display: inline; */
    font-size: 16px;
    line-height: 30px;
}

.feature-description {
    font-size: 16px;
    font-weight: 500;
    /* display: inline; */
    line-height: 28px;
}

/* Results section */
.results-section {
    margin-top: 50px;
    width: 100%;
    max-width: 1377px;
}

@media (max-width: 991px) {
    .results-section {
        max-width: 100%;
        margin-top: 40px;
    }
}

.results-content {
    display: flex;
    margin-top: 5px;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
}

@media (max-width: 991px) {
    .results-content {
        max-width: 100%;
        margin-top: 40px;
    }
}

.results-intro {
    color: var(--Dark, #212529);
    align-self: start;
    font: 700 22px/1 Manrope, -apple-system, Roboto, Helvetica, sans-serif;
}

@media (max-width: 991px) {
    .results-intro {
        max-width: 100%;
    }
}

.results-grid {
    margin-top: 14px;
    gap: 20px;
    display: flex;
}

@media (max-width: 991px) {
    .results-grid {
        max-width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
}

.results-stats {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    line-height: normal;
    width: 26%;
    margin-left: 0;
}

@media (max-width: 991px) {
    .results-stats {
        width: 100%;
        margin-top: 40px;
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: start;
    font: 700 70px/1 Sora, -apple-system, Roboto, Helvetica, sans-serif;
}

@media (max-width: 991px) {
    .stat-item {
        font-size: 40px;
    }
}

.stat-number {
    /* -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #000; */
    letter-spacing: 1px;
}

.stat-number:nth-of-type(2) {
    margin-top: 40px;
}

@media (max-width: 991px) {
    .stat-number {
        font-size: 40px;
    }
}

.stat-description {
    color: rgba(17, 17, 17, 1);
    font: 600 14px/21px Manrope, -apple-system, Roboto, Helvetica, sans-serif;
}

.results-conclusion {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    line-height: normal;
    width: 49%;
    margin-left: 20px;
}

@media (max-width: 991px) {
    .results-conclusion {
        width: 100%;
        margin-top: 40px;
    }
}

.conclusion-text {
    color: rgba(51, 51, 51, 1);
    font: 500 16px/30px Manrope, -apple-system, Roboto, Helvetica, sans-serif;
}

/* Technologies section */
.technologies-section {
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    display: flex;
    margin-top: 50px;
    width: 100%;
    max-width: 1384px;
    flex-direction: column;
    background-color: var(--Gray_Section_BG, #ecf0f4);
    padding: 43px 80px;
}

@media (max-width: 991px) {
    .technologies-section {
        max-width: 100%;
        margin-top: 40px;
        padding: 20px 20px;
    }
}

.technologies-title {
    color: var(--Dark, #333);
    letter-spacing: -2px;
    font: 400 40px/70px Sora, -apple-system, Roboto, Helvetica, sans-serif;
}

.technologies-grid {
    display: flex;
    margin-top: 20px;
    align-items: center;
    gap: 40px 53px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .technologies-grid {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .technologies-grid {
        flex-direction: column;
        gap: 35px;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .technologies-grid {
        gap: 35px;
    }
}

.tech-logo {
    object-fit: contain;
    object-position: center;
    /* align-self: stretch; */
    flex-shrink: 0;
    margin: auto 0;
}

.tech-logo:nth-child(1) {
    aspect-ratio: 1.63;
    width: 98px;
    height: 50px;
}

.tech-logo:nth-child(2) {
    aspect-ratio: 3.42;
    width: 137px;
    height: 35px;
}

.tech-logo:nth-child(3) {
    aspect-ratio: 3.5;
    width: 130px;
    height: 40px;
}

.tech-logo:nth-child(4) {
    aspect-ratio: 4.1;
    width: 123px;
    height: 23px;
}

.tech-logo:nth-child(5) {
    aspect-ratio: 3.62;
    width: 145px;
    height: 35px;
}

/* CSS Variables */
:root {
    --Dark: #333;
    --EncureIT_LB: #1db9dd;
    --EncureIT_YL: #fbbc05;
    --EncureIT_DB: #1f3b75;
    --White: #fff;
    --Gray_Section_BG: #ecf0f4;
}

/* Accessibility improvements */
.nav-link:focus,
.share-section:focus {
    outline: 2px solid var(--EncureIT_LB);
    outline-offset: 2px;
}



/* Focus management for better keyboard navigation */
/* *:focus {
    outline: 2px solid var(--EncureIT_LB);
    outline-offset: 2px;
} */

/* High contrast mode support */
@media (prefers-contrast: high) {
    .title-highlight {
        color: #0066cc;
    }

    .nav-link:first-child {
        color: #0066cc;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {

    .nav-link {
        transition: none;
    }
}

.text-yellow {
    color: #fbbc05;
}

.bg-cyan {
    background-color: var(--encureit-cyan);
}

.more_number {
    height: 25px;
    width: 35px;
    text-align: center;
}

.career_icons {
    width: 20px;
}

/* Testimonial blockquote scrollbar (thin, subtle) */
#mainQuote {
    scrollbar-width: thin;
    scrollbar-color: #9CA3AF #F3F4F6;
    /* thumb track */
}

#mainQuote::-webkit-scrollbar {
    width: 8px;
}

#mainQuote::-webkit-scrollbar-track {
    background: #F3F4F6;
    border-radius: 9999px;
}

#mainQuote::-webkit-scrollbar-thumb {
    background: #9CA3AF;
    border-radius: 9999px;
}

#mainQuote::-webkit-scrollbar-thumb:hover {
    background: #6B7280;
}

.text-container {
    font-size: 34px;
    color: #ffffff;
    font-weight: 600;
    display: flex;
    width: 100%;
    position: absolute;
    top: 40%;
    justify-content: center;
    width: 100%;
    align-items: center;
}

.custom-list {
    padding-left: 30px;
    list-style-type: disc !important;
    /* circle | disc | square | none */
}

.ccheadtext {
    font-size: 26px;
}

.ccptext {
    font-size: 20px;
}

.bg-encureit-db {
    background-color: #1f3b75;
}

.image_height {
    height: 260px;
}

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

.text-yellow {
    color: #fbbc05;
}

.stat-number {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 1.875rem;
    letter-spacing: -0.025em;
}

@media (min-width: 1024px) {
    .stat-number {
        font-size: 1.875rem;
    }
}

.stat-description {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 1.556;
}

@media (min-width: 640px) {
    .stat-number {
        font-size: 1.875rem;
    }

    .stat-description {
        font-size: 1.125rem;
    }
}

.bg-project-delivery {
    background-image: url('../img/aboutLine1.svg');
}

.bg-project-eng {
    background-image: url('../img/aboutLine1.svg');
}

.bg-project-gobal {
    background-image: url('../img/aboutMap.svg');
}

.bg-project-cilent-retention {
    background-image: url('../img/cilentRetention.svg');
}

.bg-project-cilent-delivery {
    background-image: url('../img/cilentRetention.svg');
}