/* <!-- App Services Section Css Start --> */
.app-services-section {
    background-color: #fff;
    padding: 140px 0 70px;
}

.app-services-section__inner {
    width: 100%;
}

.app-services-section__heading {
    margin: 0 auto 72px;
    text-align: center;
    padding: 0 20px;
}

.app-services-section__title {
    margin: 0;
    color: #000;
    letter-spacing: -0.5px;
}

.app-services-section__highlight {
    color: #e53946;
    font-weight: 400;
}

.app-services-section__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
}

.app-services-section__stat-item {
    text-align: center;
    padding: 0 38px;
    border-right: 1px solid #d9d9d9;
}

.app-services-section__stat-item--last {
    border-right: 0;
}

.app-services-section__stat-number {
    margin: 0 0 22px;
    color: #e53946;
    font-size: 38px;
    line-height: 1;
    font-weight: bold;
}

.app-services-section__stat-text {
    margin: 0 auto;
    max-width: 230px;
    color: #7a7a7a;
    font-size: 17px;
    line-height: 1.7;
    font-weight: 400;
}

@media (max-width: 1199px) {
    .app-services-section {
        padding: 100px 0 60px;
    }

    .app-services-section__heading {
        margin-bottom: 60px;
    }

    .app-services-section__stat-item {
        padding: 0 24px;
    }

    .app-services-section__stat-text {
        font-size: 15px;
        line-height: 1.6;
    }
}

@media (max-width: 991px) {
    .app-services-section__stats {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 50px;
    }

    .app-services-section__stat-item {
        border-right: 0;
        padding: 0 24px;
    }

    .app-services-section__stat-item:nth-child(1),
    .app-services-section__stat-item:nth-child(3) {
        border-right: 1px solid #d9d9d9;
    }
}

@media (max-width: 767px) {
    .app-services-section {
        padding: 35px 0 45px;
    }

    .app-services-section__heading {
        margin-bottom: 20px;
        padding: 0;
    }

    .app-services-section__stats {
        grid-template-columns: 1fr;
        row-gap: 35px;
    }

    .app-services-section__stat-item,
    .app-services-section__stat-item:nth-child(1),
    .app-services-section__stat-item:nth-child(3) {
        border-right: 0;
        border-bottom: 1px solid #d9d9d9;
        padding: 0 20px 35px;
    }

    .app-services-section__stat-item--last {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .app-services-section__stat-number {
        margin-bottom: 15px;
        font-size: 24px;
    }

    .app-services-section__stat-text {
        font-size: 14px;
        line-height: 1.6;
        max-width: 100%;
    }
}

/* <!-- App Services Section Css End --> */

/* <!-- Healthcare Services Section Css Start --> */
.healthcare-services-section {
    background: #f6f6f6;
    padding: 40px 0 40px;
}

.healthcare-services-section__head {
    margin: 0 auto 46px;
    text-align: center;
}

.healthcare-services-section__title {
    margin: 0;
    color: #000;
    font-weight: 700;
}

.healthcare-services-section__title span {
    display: block;
    margin-top: 6px;
    color: #ef4056;
    font-size: inherit;
    font-weight: 400;
}

.healthcare-services-section__desc {
    margin: 22px auto 0;
    color: #565656;
    font-size: 18px;
    line-height: 22px;
    font-weight: 400;
}

.healthcare-services-section__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px 25px;
    margin: 0 auto;
}

.healthcare-services-section__card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 20px 70px;
    box-shadow: inset 0 -7px 0 #e75c6c;
    height: 100%;
}

.healthcare-services-section__icon {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 25px;
}

.healthcare-services-section__icon .svg-wrapper {
    max-width: 75px;
    width: 100%;
    height: 75px;
    border-radius: 100%;
    background: #f6f6f6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.healthcare-services-section__card-title {
    color: #000;
    font-size: 20px;
    line-height: 25px;
    font-weight: bold;
    margin: 0;
}

.healthcare-services-section__card-text {
    margin: 0;
    color: #000;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
}

.healthcare-services-section__action {
    text-align: center;
    margin-top: 34px;
}

@media (max-width: 991px) {
    .healthcare-services-section {
        padding: 75px 0 60px;
    }

    .healthcare-services-section__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .healthcare-services-section__desc {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .healthcare-services-section {
        padding: 60px 0 50px;
    }

    .healthcare-services-section__head {
        margin-bottom: 34px;
    }

    .healthcare-services-section__title span {
        margin-top: 8px;
    }

    .healthcare-services-section__desc {
        font-size: 14px;
        line-height: 20px;
        margin-top: 18px;
    }

    .healthcare-services-section__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .healthcare-services-section__card {
        min-height: auto;
        padding: 24px 18px 22px;
    }

    .healthcare-services-section__card-text {
        font-size: 14px;
        line-height: 20px;
    }

    .healthcare-services-section__action {
        margin-top: 26px;
    }

    .healthcare-services-section__icon {
        flex-wrap: wrap;
    }

    .healthcare-services-section__card-title {
        font-size: 18px;
        line-height: 23px;
    }
}

/* <!-- Healthcare Services Section Css End --> */

/* Healthcare Cost Breakdown Section Css Start  */
.healthcare-cost-breakdown-section {
    background: #fff;
    padding: 76px 0 34px;
}

.healthcare-cost-breakdown-section__heading {
    margin: 0 auto 36px;
    text-align: center;
}

.healthcare-cost-breakdown-section__title {
    margin: 0;
    color: #000;
    font-weight: 400;
}

.healthcare-cost-breakdown-section__title-highlight {
    color: #de253a;
    font-weight: bold;
}

.healthcare-cost-breakdown-section__description {
    margin: 18px auto 0;
    color: #565656;
    font-size: 18px;
    line-height: 32px;
    font-weight: 400;
}

.healthcare-cost-breakdown-section__table-wrap {
    margin: 0 auto;
}

.healthcare-cost-breakdown-section__table {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: #f6f6f6;
}

.healthcare-cost-breakdown-section__table--head {
    margin-bottom: 12px;
}

.healthcare-cost-breakdown-section__table--body {
    padding: 4px 0;
}

.healthcare-cost-breakdown-section__row {
    display: grid;
    grid-template-columns: 190px repeat(3, 1fr);
}

.healthcare-cost-breakdown-section__cell {
    padding: 28px 18px;
    text-align: center;
    color: #000;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
}

.healthcare-cost-breakdown-section__table--head .healthcare-cost-breakdown-section__cell {
    padding: 32px 18px;
    font-size: 18px;
    line-height: 22px;
    font-weight: bold;
}

.healthcare-cost-breakdown-section__table--body .healthcare-cost-breakdown-section__cell:not(:last-child) {
    border-right: 1px solid #e0d9d9;
}

.healthcare-cost-breakdown-section__cell--feature,
.healthcare-cost-breakdown-section__cell--label {
    width: 100%;
}

.healthcare-cost-breakdown-section__cell--label {
    color: #2c2c2c;
}

@media (max-width: 991px) {
    .healthcare-cost-breakdown-section {
        padding: 64px 0 28px;
    }

    .healthcare-cost-breakdown-section__heading {
        margin-bottom: 30px;
        padding: 0 20px;
    }

    .healthcare-cost-breakdown-section__description {
        font-size: 14px;
        line-height: 1.7;
    }

    .healthcare-cost-breakdown-section__table-wrap {
        overflow-x: auto;
        padding: 0 20px;
    }

    .healthcare-cost-breakdown-section__table {
        min-width: 860px;
    }
}

@media (max-width: 767px) {
    .healthcare-cost-breakdown-section {
        padding: 52px 0 24px;
    }

    .healthcare-cost-breakdown-section__heading {
        margin-bottom: 24px;
        padding: 0 16px;
    }

    .healthcare-cost-breakdown-section__description {
        margin-top: 14px;
        font-size: 13px;
        line-height: 1.7;
    }

    .healthcare-cost-breakdown-section__table-wrap {
        padding: 0 16px;
    }

    .healthcare-cost-breakdown-section__table {
        min-width: 820px;
        border-radius: 14px;
    }

    .healthcare-cost-breakdown-section__cell {
        padding: 22px 14px;
        font-size: 14px;
    }

    .healthcare-cost-breakdown-section__table--head .healthcare-cost-breakdown-section__cell {
        padding: 18px 14px;
        font-size: 14px;
    }
}

/* Healthcare Cost Breakdown Section Css End  */

/* Exploring Success Stories Section Start */
.exploring-success-stories {
    padding: 50px 0;
    overflow: hidden;
}

.exploring-success-stories__title {
    text-align: center;
    font-weight: 400;
}

.exploring-success-stories__title span {
    color: #de253a;
    font-weight: bold;
}

.exploring-success-stories__description {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    text-align: center;
    color: #565656;
    margin-top: 20px;
}

.success-slider {
    position: relative;
    margin-top: 50px;
}

.success-slides {
    position: relative;
}

.success-slide {
    display: none;
    animation: fadeSlide 0.5s ease;
}

.success-slide.active {
    display: block;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.success-slide__row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.success-slide__content {
    width: 50%;
}

.success-slide__image {
    width: 50%;
}

.success-slide__image img {
    width: 100%;
    margin-left: auto;
}

.story-title {
    font-weight: bold;
    font-size: 28px;
    line-height: 32px;
    color: #000;
    margin-bottom: 30px;
}

.section-heading {
    font-weight: 600;
    font-size: 28px;
    line-height: 32px;
    color: #000;
    position: relative;
    margin: 0 0 22px;
    padding-bottom: 14px;
}

.section-heading::after {
    content: "";
    width: 170px;
    height: 4px;
    background: #d9d9d9;
    border-radius: 20px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.impact-heading::after {
    right: auto;
    left: auto;
    width: 369px;
    bottom: 0;
    top: -10px;
    margin: auto;
    margin-left: 8px;
}

.section-text {
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: #565656;
    margin-bottom: 30px;
}

.impact-heading {
    margin-top: 10px;
}

.impact-list {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.impact-item {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
}

.impact-item h5 {
    font-weight: 600;
    font-size: 32px;
    line-height: 36px;
    color: #000;
    margin-bottom: 12px;
}

.impact-item h6 {
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: #000;
    margin-bottom: 12px;
}

.impact-item p {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #000;
    margin: 0;
}

.success-slider__nav {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
    margin-top: 35px;
}

.slider-btn {
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #de253a;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: #de253a;
    color: #fff;
}

.slider-btn.next {
    background: #de253a;
    color: #fff;
}

.slider-btn.next:hover {
    background: #b81d2f;
}

/* Responsive */
@media (max-width: 1199px) {
    .success-slide__row {
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .exploring-success-stories {
        padding: 30px 0;
    }

    .success-slide__row {
        flex-direction: column;
    }

    .success-slide__content,
    .success-slide__image {
        width: 100%;
    }

    .success-slide__image img {
        max-width: 100%;
        height: auto;
        margin: 0 auto;
    }

    .impact-item {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .success-slider__nav {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .exploring-success-stories__description {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 40px;
    }

    .slider-btn {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }

    .success-slider {
        margin-top: 20px;
    }

    .story-title {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 20px;
    }

    .section-heading {
        font-size: 18px;
        line-height: 24px;
        margin: 0 0 15px;
    }

    .section-heading::after {
        width: 120px;
    }

    .impact-heading::after {
        width: 139px;
    }

    .section-text {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 20px;
    }

    .impact-item h5 {
        font-size: 25px;
        line-height: 30px;
    }

    .impact-item p {
        font-size: 14px;
    }

    .impact-list {
        gap: 20px;
    }

    .success-slide__row {
        gap: 20px;
    }

    .success-slider__nav {
        margin-top: 15px;
    }
}

/* Exploring Success Stories Section End */

/* Lets Discuss Cta Section Css Start*/
.project-discussion-section {
    padding: 70px 0 80px;
    background: #ffffff;
}

.project-discussion-section .project-discussion-section-box {
    position: relative;
    border-radius: 20px;
    min-height: 322px;
    padding: 66px 62px;
    display: flex;
    align-items: center;
    background: url("../img//healthcare/lets-cta-bg.webp") center center / cover no-repeat;
}

.project-discussion-section .project-discussion-section-content {
    position: relative;
    z-index: 3;
    max-width: 420px;
}

.project-discussion-section .project-discussion-section-title {
    font-size: 27px;
    line-height: 1.3;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
}

.project-discussion-section .project-discussion-section-description {
    font-size: 16px;
    line-height: 1.55;
    font-weight: 400;
    color: #ffffff;
    max-width: 355px;
    margin-bottom: 34px;
}

.project-discussion-section .project-discussion-section-btn {
    min-width: 216px;
    height: 66px;
    padding: 0 28px;
    border-radius: 16px;
    background: #ef2338;
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.project-discussion-section .project-discussion-section-btn:hover {
    transform: translateY(-2px);
    color: #fff;
}

.project-discussion-section .project-discussion-section-image-wrap {
    position: absolute;
    right: -8px;
    bottom: -12px;
    width: 62%;
    max-width: 530px;
    z-index: 2;
    pointer-events: none;
}

@media (max-width: 1199px) {
    .project-discussion-section .project-discussion-section-box {
        min-height: 300px;
        padding: 56px 46px;
    }

    .project-discussion-section .project-discussion-section-image-wrap {
        width: auto;
        right: -20px;
        max-width: 100%;
    }
}

@media (max-width: 991px) {
    .project-discussion-section {
        padding: 30px 0 30px;
    }

    .project-discussion-section .project-discussion-section-box {
        min-height: 290px;
        padding: 48px 15px 0;
    }

    .project-discussion-section .project-discussion-section-title {
        font-size: 24px;
    }

    .project-discussion-section .project-discussion-section-description {
        font-size: 15px;
        max-width: 100%;
        margin-bottom: 28px;
    }

    .project-discussion-section .project-discussion-section-image-wrap {
        width: 58%;
        margin-bottom: -8px;
        position: static;
    }

    .project-discussion-section .project-discussion-section-btn {
        font-size: 14px;
    }

    .project-discussion-section .project-discussion-section-content {
        max-width: 100%;
    }

    .project-discussion-section-image-wrap img {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .project-discussion-section .project-discussion-section-box {
        min-height: auto;
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .project-discussion-section .project-discussion-section-content {
        max-width: 100%;
    }

    .project-discussion-section .project-discussion-section-title {
        font-size: 24px;
        margin-bottom: 14px;
    }

    .project-discussion-section .project-discussion-section-description {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 24px;
    }

    .project-discussion-section .project-discussion-section-image-wrap {
        max-width: none;
    }
}

@media (max-width: 480px) {
    .project-discussion-section .project-discussion-section-box {
        border-radius: 18px;
    }

    .project-discussion-section .project-discussion-section-title {
        font-size: 20px;
    }

    .project-discussion-section .project-discussion-section-description {
        font-size: 14px;
    }

    .project-discussion-section .project-discussion-section-btn {
        padding: 0 22px;
        border-radius: 14px;
    }
}

/* Lets Discuss Cta Section Css End*/

/* Healthcare Devlopment Process Section Css Start*/
.healthcare-process-section {
    --transition: 0.3s ease;
    padding: 35px 0 50px;
}

.healthcare-process-section .hp-container {
    max-width: 1180px;
    margin: 0 auto;
}

.healthcare-process-section .hp-heading {
    margin: 0 0 18px;
    font-weight: 400;
    text-align: center;
}

.healthcare-process-section .hp-heading .hp-accent {
    color: #de253a;
    font-weight: bold;
}

.healthcare-process-section .hp-description {
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    color: #565656;
}

.healthcare-process-section .hp-tabs-wrap {
    margin-top: 45px;
}

.healthcare-process-section .hp-tab-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 0.4px solid #00000066;
    border-radius: 999px;
    background: #fff;
    padding: 6px;
    overflow: hidden;
}

.healthcare-process-section .hp-tab-btn {
    border: 0;
    background: transparent;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    padding: 18px 16px;
    border-radius: 999px;
    cursor: pointer;
    transition:
        background var(--transition),
        color var(--transition),
        transform var(--transition);
    min-height: 72px;
}

.healthcare-process-section .hp-tab-btn:hover,
.healthcare-process-section .hp-tab-btn:focus-visible {
    background: rgba(230, 50, 70, 0.08);
    outline: none;
}

.healthcare-process-section .hp-tab-btn.active {
    background: #de253a;
    color: #fff;
}

.healthcare-process-section .hp-tab-panels {
    margin-top: 40px;
}

.healthcare-process-section .hp-tab-panel {
    display: none;
    background: #f6f6f6;
    border-radius: 24px;
    padding: 22px;
    animation: hpFadeUp 0.35s ease;
}

.healthcare-process-section .hp-tab-panel.active {
    display: block;
}

.healthcare-process-section .hp-panel-grid {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 34px;
    align-items: center;
}



.healthcare-process-section .hp-arrow-icon {
    position: relative;
    width: 28px;
    height: 28px;
    transform: rotate(-45deg);
    border-top: 7px solid #de253a;
    border-right: 7px solid #de253a;
}

.healthcare-process-section .hp-arrow-icon::before {
    content: "";
    position: absolute;
    top: -2px;
    right: -2px;
    width: 7px;
    height: 28px;
    background: #de253a;
    transform: rotate(45deg) translate(8px, 9px);
    transform-origin: top;
    border-radius: 6px;
}

.healthcare-process-section .hp-panel-content h3 {
    margin: 0 0 14px;
    font-size: clamp(1.4rem, 2vw, 2rem);
    font-weight: 700;
}

.healthcare-process-section .hp-panel-content p {
    margin: 0;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 2%;
    text-transform: capitalize;
    color: #565656;
    max-width: 420px;
}

.healthcare-process-section .hp-cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.healthcare-process-section .hp-cta-wrap .btn-primary svg {
    margin-left: 10px;
}

@keyframes hpFadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .healthcare-process-section .hp-tab-buttons {
        grid-template-columns: repeat(2, 1fr);
        border-radius: 28px;
    }

    .healthcare-process-section .hp-panel-grid {
        grid-template-columns: 1fr;
    }

    .healthcare-process-section .hp-panel-content p {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .healthcare-process-section .hp-heading h2 {
        font-size: 1.85rem;
    }

    .healthcare-process-section .hp-tab-buttons {
        grid-template-columns: 1fr;
        padding: 8px;
        border-radius: 22px;
    }

    .healthcare-process-section .hp-tab-btn {
        min-height: auto;
        padding: 16px 14px;
        font-size: 0.96rem;
    }

    .healthcare-process-section .hp-tab-panel {
        padding: 16px;
        border-radius: 18px;
    }

    .healthcare-process-section .hp-cta-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .healthcare-process-section .hp-panel-content p {
        font-size: 14px;
    }

    .healthcare-process-section .hp-panel-grid {
        gap: 22px;
    }

    .healthcare-process-section .hp-tabs-wrap {
        margin-top: 25px;
    }

    .healthcare-process-section .hp-description {
        font-size: 14px;
        line-height: 20px;
    }
}

.healthcare-process-section .hp-accordion-btn {
    display: none;
}

.healthcare-process-section .hp-tab-panel {
    display: none;
}

.healthcare-process-section .hp-tab-panel.active {
    display: block;
}

/* Mobile Accordion */
@media (max-width: 991px) {
    .healthcare-process-section .hp-tab-buttons {
        display: none;
    }

    .healthcare-process-section .hp-tab-panels {
        display: block;
    }

    .healthcare-process-section .hp-accordion-btn {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
        padding: 16px 0;
        background: #f6f6f6;
        border: 0;
        cursor: pointer;
        text-align: left;
        font-size: 18px;
        font-weight: 600;
        color: inherit;
        padding: 15px;
        border-radius: 12px;
        margin: 15px 0;
    }

    .healthcare-process-section .hp-accordion-icon {
        flex: 0 0 auto;
        font-size: 24px;
        line-height: 1;
        transition: transform 0.3s ease;
    }

    .healthcare-process-section .hp-accordion-item.active .hp-accordion-icon {
        transform: rotate(45deg);
    }

    .healthcare-process-section .hp-tab-panel {
        display: none;
    }

    .healthcare-process-section .hp-accordion-item.active .hp-tab-panel {
        display: block;
    }

    .healthcare-process-section .hp-panel-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .healthcare-process-section .hp-panel-media img {
        width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
    }


    .healthcare-process-section .hp-accordion-item.active .hp-accordion-btn {
        background: #DE253A;
        color: #fff;
    }
    .healthcare-process-section .hp-accordion-item .hp-accordion-btn span br{
        display: none;
    }
}

/* Healthcare Devlopment Process Section Css End*/

/* Clients We Serve Section  Start*/
.clients-we-serve {
    padding: 40px 0 60px;
}

.clients-we-serve .cws-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 42px;
}

.clients-we-serve .cws-heading {
    margin: 0;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.clients-we-serve .cws-heading span {
    color: #de253a;
    font-weight: bold;
}

.clients-we-serve .cws-desc {
    flex: 0 0 413px;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    text-align: right;
    color: #565656;
    text-align: right;
}

.clients-we-serve .cws-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.clients-we-serve .cws-card {
    background: #f6f6f6;
    border-radius: 20px 0 20px 0;
    min-height: 255px;
    padding: 28px 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition:
        background-color 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.clients-we-serve .cws-card:hover {
    background: #de253a;
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

.clients-we-serve .cws-card .icon-wrap {
    width: 78px;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.clients-we-serve .cws-card h3 {
    margin: 0;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    color: #000;
    transition: color 0.35s ease;
}

.clients-we-serve .cws-card:hover h3 {
    color: #ffffff;
}

.clients-we-serve .cws-card:hover .icon-wrap svg path {
    fill: #fff;
}

.clients-we-serve .cws-card.is-active h3 {
    color: #ffffff;
}

.clients-we-serve .cws-card.is-active .icon-wrap img {
    filter: brightness(0) invert(1);
}

/* ==============
       Responsive
    ============== */
@media (max-width: 1199px) {
    .clients-we-serve .cws-heading h2 {
        font-size: 36px;
    }

    .clients-we-serve .cws-desc {
        font-size: 16px;
    }

    .clients-we-serve .cws-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .clients-we-serve .cws-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        margin-bottom: 0;
    }

    .clients-we-serve .cws-desc {
        max-width: 100%;
        text-align: left;
    }

    .clients-we-serve .cws-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .clients-we-serve .cws-card {
        min-height: 200px;
    }

    .clients-we-serve .cws-desc {
        flex: auto;
    }
}

@media (max-width: 575px) {
    .clients-we-serve {
        padding: 28px 15px 40px;
    }

    .clients-we-serve .cws-heading h2 {
        font-size: 30px;
    }

    .clients-we-serve .cws-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .clients-we-serve .cws-card {
        min-height: 180px;
        padding: 24px 18px;
    }

    .clients-we-serve .cws-card h3 {
        font-size: 20px;
    }

    .clients-we-serve .cws-card .icon-wrap {
        width: 68px;
        height: 68px;
        margin-bottom: 14px;
    }

    .clients-we-serve .cws-card .icon-wrap img {
        max-width: 50px;
        max-height: 50px;
    }
}

/* Clients We Serve Section  End*/

/* ===========================  Healthcare Roadmap Section Css Start=========================== */
.healthcare-roadmap-section {
    padding: 50px 0 50px;
}

.healthcare-roadmap-section .hrs-header {
    margin: 0 auto 50px;
    text-align: center;
}

.healthcare-roadmap-section .hrs-header h2 {
    margin: 0 0 18px;
    font-weight: 400;
    color: #000;
}

.healthcare-roadmap-section .hrs-header h2 span {
    color: #de253a;
    font-weight: bold;
}

.healthcare-roadmap-section .hrs-header p {
    margin: 0;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: #565656;
}

.healthcare-roadmap-section .hrs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-radius: 20px;
    overflow: hidden;
    background: #f6f6f6;
}

.healthcare-roadmap-section .hrs-card {
    min-height: 300px;
    padding: 42px 26px;
    text-align: center;
    border-right: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.healthcare-roadmap-section .hrs-card:nth-child(3n) {
    border-right: none;
}

.healthcare-roadmap-section .hrs-card:nth-last-child(-n + 3) {
    border-bottom: none;
}

.healthcare-roadmap-section .hrs-card h3 {
    margin: 0 0 30px;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: #000;
    transition: color 0.35s ease;
}

.healthcare-roadmap-section .hrs-card p {
    margin: 0;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #000;
    transition: color 0.35s ease;
}

.healthcare-roadmap-section .hrs-card:hover {
    background: #de253a;
    border-radius: 20px;
}

.healthcare-roadmap-section .hrs-card:hover h3,
.healthcare-roadmap-section .hrs-card:hover p {
    color: #ffffff;
}

.healthcare-roadmap-section .hrs-btn-wrap {
    text-align: center;
    margin-top: 32px;
}

.healthcare-roadmap-section .hrs-btn-wrap svg {
    margin-left: 10px;
}

/* ===========================
   Responsive
=========================== */
@media (max-width: 991px) {
    .healthcare-roadmap-section .hrs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .healthcare-roadmap-section .hrs-card:nth-child(3n) {
        border-right: 1px solid #d9d9d9;
    }

    .healthcare-roadmap-section .hrs-card:nth-child(2n) {
        border-right: none;
    }

    .healthcare-roadmap-section .hrs-card:nth-last-child(-n + 3) {
        border-bottom: 1px solid #d9d9d9;
    }

    .healthcare-roadmap-section .hrs-card:nth-last-child(-n + 2) {
        border-bottom: none;
    }
}

@media (max-width: 767px) {
    .healthcare-roadmap-section {
        padding: 0;
    }

    .healthcare-roadmap-section .hrs-grid {
        grid-template-columns: 1fr;
    }

    .healthcare-roadmap-section .hrs-card {
        min-height: auto;
        padding: 30px 20px;
        border-right: none;
        border-bottom: 1px solid #d9d9d9;
    }

    .healthcare-roadmap-section .hrs-card:last-child {
        border-bottom: none;
    }

    .healthcare-roadmap-section .hrs-card h3 {
        margin-bottom: 20px;
    }

    .healthcare-roadmap-section .hrs-card p {
        font-size: 14px;
        line-height: 20px;
    }

    .healthcare-roadmap-section .hrs-header {
        margin-bottom: 30px;
    }
}

/* ===========================  Healthcare Roadmap Section Css End=========================== */

/* Healthcare Streamline CTA Section Start  */
.streamlined-discussion-section {
    padding-bottom: 0;
}

.streamlined-discussion-section .project-discussion-section-box {
    background: url("../img//healthcare/streamline-cta-bg.webp") center center / cover no-repeat;
}

.streamlined-discussion-section .project-discussion-section-image-wrap {
    right: 40px;
    bottom: -5px;
}

.streamlined-discussion-section .project-discussion-section-image-wrap img {
    width: 100%;
}

/* Healthcare Streamline CTA Section End  */

/* Healthcare Feedback Section Start */
.feedback-section {
    padding: 70px 0 80px;
}

.feedback-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.feedback-section .section-header h2 {
    font-weight: bold;
    color: #e62b3a;
    margin-bottom: 14px;
}

.feedback-section .section-header p {
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #565656;
}

.feedback-section .carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
}

.feedback-section .carousel-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #e62b3a;
    font-size: 22px;
    cursor: pointer;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feedback-section .carousel-btn:hover {
    transform: translateY(-2px);
}

.feedback-section .carousel-btn.next {
    background: #e62b3a;
    color: #fff;
}

.feedback-section .carousel-viewport {
    width: 100%;
    overflow: hidden;
}

.feedback-section .carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.feedback-section .slide {
    width: 50%;
    padding: 0 12px;
    flex-shrink: 0;
}

.feedback-section .testimonial-card {
    background: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 20px;
    padding: 30px 25px;
    display: flex;
    gap: 24px;
    min-height: 400px;
    height: 100%;
}

.feedback-section .testimonial-image {
    border-radius: 20px;
    overflow: hidden;
}

.feedback-section .testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.feedback-section .testimonial-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    padding-top: 8px;
}

.feedback-section .testimonial-title {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 20px;
    color: #000;
}

.feedback-section .testimonial-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #565656;
    margin-bottom: 30px;
}

.feedback-section .testimonial-footer h4 {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #000;
    margin-bottom: 6px;
}

.feedback-section .testimonial-footer p {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #000;
}

.feedback-section .cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.feedback-section .cta-wrap svg {
    margin-left: 10px;
}

@media (max-width: 1299px) {
    .feedback-section .testimonial-image {
        max-width: 50%;
    }
}

@media (max-width: 1199px) {
    .feedback-section .slide {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .feedback-section {
        padding: 0;
    }

    .feedback-section .section-header {
        margin-bottom: 35px;
    }

    .feedback-section .section-header p {
        font-size: 15px;
    }

    .feedback-section .carousel-wrapper {
        gap: 10px;
    }

    .feedback-section .carousel-btn {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .feedback-section .testimonial-card {
        padding: 16px;
        gap: 18px;
        flex-direction: column;
    }

    .feedback-section .testimonial-title {
        font-size: 18px;
    }

    .feedback-section .testimonial-text {
        font-size: 14px;
    }

    .feedback-section .testimonial-footer h4 {
        font-size: 16px;
    }

    .feedback-section .testimonial-footer p {
        font-size: 14px;
    }

    .feedback-section .testimonial-image {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .feedback-section .carousel-wrapper {
        flex-wrap: wrap;
        justify-content: center;
    }

    .feedback-section .carousel-viewport {
        order: 1;
        width: 100%;
    }

    .feedback-section .carousel-btn {
        order: 2;
    }
}

/* Healthcare Feedback Section End */

/* Healthcare Why Choose Section Start */
.why-choose-section {
    padding: 60px 0 40px;
}

.why-choose-section .top-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 48px;
}

.why-choose-section .section-title {
    font-weight: bold;
    color: #e42439;
    letter-spacing: -0.5px;
    max-width: 40%;
}

.why-choose-section .section-desc {
    max-width: 420px;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    text-align: right;
    color: #565656;
    text-align: right;
}

.why-choose-section .cards-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-choose-section .info-card {
    position: relative;
    background: #f6f6f6;
    border-radius: 20px;
    min-height: 430px;
    padding: 34px 24px 28px;
    overflow: hidden;
    transition:
        transform 0.35s ease,
        background 0.35s ease;
    cursor: pointer;
}

.why-choose-section .info-card:hover {
    transform: translateY(-6px);
}

.why-choose-section .card-default,
.why-choose-section .card-hover {
    position: absolute;
    inset: 0;
    padding: 34px 24px 28px;
    display: flex;
    flex-direction: column;
    transition: all 0.35s ease;
}

.why-choose-section .card-default {
    justify-content: flex-end;
    opacity: 1;
    visibility: visible;
}

.why-choose-section .card-hover {
    justify-content: center;
    align-items: center;
    background: #de253a;
    color: #fff;
    opacity: 0;
    visibility: hidden;
}

.why-choose-section .info-card:hover .card-default {
    opacity: 0;
    visibility: hidden;
}

.why-choose-section .info-card:hover .card-hover {
    opacity: 1;
    visibility: visible;
}

.why-choose-section .icon-wrap {
    margin-bottom: 28px;
}

.why-choose-section .icon-wrap img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    display: block;
}

.why-choose-section .card-title {
    font-weight: 400;
    font-size: 24px;
    line-height: 30px;
    color: #000;
    margin-bottom: 40px;
}

.why-choose-section .card-hover p {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    max-width: 250px;
    color: #fff;
}

@media (max-width: 1199px) {
    .why-choose-section .cards-wrap {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet */
@media (max-width: 991px) {
    .why-choose-section {
        padding-top: 30px;
    }

    .why-choose-section .why-choose {
        padding: 50px 30px 30px;
    }

    .why-choose-section .top-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 36px;
    }

    .why-choose-section .section-desc {
        max-width: 100%;
        text-align: center;
        font-size: 16px;
    }

    .why-choose-section .section-title {
        text-align: center;
        max-width: 100%;
    }

    .why-choose-section .cards-wrap {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-choose-section .info-card {
        min-height: 320px;
    }
}

@media (max-width: 767px) {
    .why-choose-section .card-title {
        font-size: 18px;
    }

    .why-choose-section .card-hover p {
        font-size: 14px;
        line-height: 20px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .why-choose-section .why-choose {
        padding: 40px 0 24px;
    }

    .why-choose-section .section-desc {
        font-size: 15px;
        line-height: 1.6;
    }

    .why-choose-section .cards-wrap {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .why-choose-section .info-card {
        min-height: 280px;
        border-radius: 16px;
    }

    .why-choose-section .card-default,
    .why-choose-section .card-hover {
        padding: 26px 20px 22px;
    }
}

/* Healthcare Why Choose Section End */

/* Awards & Recognition Section Css End */
.standard-app-dev-company {
    @media (max-width: 991px) {
        padding: 0;
    }
}

.standard-app-dev-company .img-cont {
    border-radius: 14px;
    background: #fff;
    min-height: 325px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.standard-app-dev-company .text-cont .section-title {
    font-weight: 400;
    text-align: center;
    color: #000;
}

.standard-app-dev-company .text-cont .section-title span {
    color: #de253a;
    font-weight: bold;
}

@media (max-width: 991px) {
    .standard-app-dev-company .img-cont {
        margin-bottom: 20px;
        min-height: auto;
        padding: 10px;
    }
}

@media (min-width: 992px) {
    .standard-app-dev-company.clients-logo-sec {
        padding: 60px 0 85px;
    }
}

.standard-app-dev-company .text-cont .section-content {
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    color: #565656;
    margin-top: 30px;
}

@media (max-width: 767px) {
    .standard-app-dev-company .text-cont .section-content {
        font-size: 14px;
        line-height: 20px;
        margin-top: 15px;
    }
}

.standard-app-dev-company.clients-logo-sec-industry {
    background: #f8f8f8 url(../img/industry/trango-bg-logo.webp) no-repeat center left / 45% 100%;
}

@media (min-width: 992px) {
    .standard-app-dev-company.clients-logo-sec-industry {
        padding: 60px 0 85px;
    }
}

@media (max-width: 991px) {
    .standard-app-dev-company.clients-logo-sec-industry {
        background-size: 100%;
        background-position: bottom center;
    }
}

/* custom slider */
.standard-app-dev-company .client-slider-wrapper {
    position: relative;
    margin-top: 30px;
}

.standard-app-dev-company .client-slider-viewport {
    overflow: hidden;
    width: 100%;
}

.standard-app-dev-company .client-slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
    will-change: transform;
}

.standard-app-dev-company .client-slide {
    flex: 0 0 calc((100% - 60px) / 4);
    box-sizing: border-box;
}

@media (max-width: 1199px) {
    .standard-app-dev-company .client-slide {
        flex: 0 0 calc((100% - 20px) / 3);
    }
}

@media (max-width: 991px) {
    .standard-app-dev-company .client-slide {
        flex: 0 0 calc((100% - 20px) / 2);
    }
}

@media (max-width: 599px) {
    .standard-app-dev-company .client-slide {
        flex: 0 0 100%;
    }
}

.standard-app-dev-company .client-slider-wrapper .card {
    min-height: 390px;
    padding: 0;
    border-radius: 14px;
    border-color: #fff;
    overflow: hidden;
    position: relative;
}

@media (max-width: 991px) {
    .standard-app-dev-company .client-slider-wrapper .card {
        margin-bottom: 20px;
    }
}

.standard-app-dev-company .client-slider-wrapper .card .img-cont {
    display: block;
    min-height: 250px;
    background: none;
    padding: 0;
}

.standard-app-dev-company .client-slider-wrapper .card .img-cont img {
    display: block;
    margin: 0;
    object-fit: cover;
    width: 100% !important;
}

.standard-app-dev-company .client-slider-wrapper .card .card-content {
    padding: 50px 20px 32px;
    text-align: center;
    border-radius: inherit;
    background: #f5f5f5;
    margin-bottom: -2px;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.standard-app-dev-company .client-slider-wrapper .card .card-content .rating ul {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    background: #fafafa;
    box-shadow: 0px 7px 25px rgba(0, 0, 0, 0.08);
    border-radius: 13.3656px;
    width: 75%;
    margin: 0;
}

.standard-app-dev-company .client-slider-wrapper .card .card-content .rating ul li .rating-number {
    margin: 0 0 0 10px;
}

.standard-app-dev-company .client-slider-wrapper .card .card-content .rating ul li .rating-number span {
    font-size: 16px;
    font-weight: 500;
    color: #000;
}

.standard-app-dev-company .client-slider-wrapper .card .card-content .rating ul li .rating-number span:last-child {
    color: #929292;
}

.standard-app-dev-company .client-slider-wrapper .card .card-content .rating ul li.sm-title p {
    font-size: 12px;
    margin-bottom: 0;
}

.standard-app-dev-company .client-slider-wrapper .card .card-content .title {
    font-weight: bold;
    font-size: 18px;
    line-height: 23px;
    text-align: center;
    margin-bottom: 0;
    min-height: 65px;
    color: #565656;
}

@media (max-width: 767px) {
    .standard-app-dev-company .client-slider-wrapper .card .card-content .title {
        min-height: auto;
        font-size: 16px;
    }
}

.standard-app-dev-company .client-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    background: #fff;
    border: 1px solid #fff;
    box-shadow: 0px 7px 6px rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    z-index: 2;
    transition: 0.3s ease;
    color: #de253a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.standard-app-dev-company .client-slider-btn:hover {
    background: #de253a;
    border-color: #de253a;
    color: #fff;
}

.standard-app-dev-company .client-slider-btn.prev {
    left: -60px;
}

.standard-app-dev-company .client-slider-btn.next {
    right: -60px;
}

.standard-app-dev-company .client-slider-btn.next svg {
    transform: rotate(180deg);
}

.standard-app-dev-company .client-slider-btn:hover svg path {
    fill: #fff;
}

@media (min-width: 992px) and (max-width: 1024px) {
    .standard-app-dev-company .client-slider-btn.prev {
        left: -20px;
    }

    .standard-app-dev-company .client-slider-btn.next {
        right: -20px;
    }
}

@media (max-width: 991px) {
    .standard-app-dev-company .client-slider-wrapper {
        padding-bottom: 40px;
    }

    .standard-app-dev-company .client-slider-btn {
        top: auto;
        bottom: 0;
        transform: none;
    }

    .standard-app-dev-company .client-slider-btn.prev {
        left: calc(50% - 50px);
    }

    .standard-app-dev-company .client-slider-btn.next {
        right: calc(50% - 50px);
    }
}

/* Awards & Recognition Section Css End */