:root {
    --color-white-bg: #ffffff;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-black-bg: #000000;
    --primary-color-bg: #0253DB;
    --primary-color-text: #0253DB;
    --primary-color-border: #0253DB;

}


/* Common Style Start Here */
.wrapmxwd {
    max-width: 1920px;
}

.section-heading {
    font-size: 60px;
    font-weight: 600;
    color: #000000;
    line-height: 72px;
    margin-bottom: 18px;
    font-family: 'Manrope-600';
    letter-spacing: -4.45px;
}

.section-heading span {
    color: var(--primary-color-text);
}

.section-sub-heading {
    font-size: 20px;
    color: #000000;
    line-height: 24px;
    font-family: 'Inter-400';
}

.common-btn-blue {
    background-color: var(--primary-color-bg);
    border: 1px solid var(--primary-color-border);
    padding: 22px 40px;
    box-shadow: none;
    font-size: 20px;
    font-family: 'Manrope-600';
    border-radius: 36px;
    color: #fff;
    transition: all 400ms linear;
}

.outline-btn {
    background-color: transparent !important;
    border: 1px solid var(--primary-color-border);
    color: #fff;
}

.common-btn-blue svg {
    margin-left: 10px;
}

.common-btn-blue:hover {
    color: #c5d2e0;
    text-decoration: none;
}

/* Common Style End Here */

.service-pages-wrapper {
    position: relative;
}

/* Banner Section Start Here */
.service-pages-wrapper .wrapmxwd {
    max-width: 1920px;
}

.service-pages-wrapper .banleftv.industypg {
    padding-right: 70px;
}

.pillars-ban {
    padding-top: 100px;
    background-color: #8080801a;
}

.service-pages-wrapper .pillars-ban h1 {
    font-size: 74px;
    line-height: 80px;
}

.service-pages-wrapper .pillars-ban h1 span {
    color: var(--primary-color-text);
}

.service-pages-wrapper .pillars-ban h5 {
    font-size: 24px;
    font-family: 'Manrope-600';
    margin-bottom: 30px;
}

.service-pages-wrapper .pillars-ban h5 span {
    color: #0083CA;
}

.service-pages-wrapper .pillars-ban p {
    font-size: 15px;
    line-height: 26px;
    font-family: 'Figtree-400';
}

.service-pages-wrapper .white-ban-btn-rw.hero-ban .get-touch-btn {
    background-color: var(--primary-color-bg) !important;
    border: 1px solid var(--primary-color-border);
    padding: 22px 40px;
    box-shadow: none;
    font-size: 22px;
    font-family: 'Manrope-600';
}

.service-pages-wrapper .industry-banner-app {
    top: 90px;
}

.service-pages-wrapper .head-industry-circle {
    border: 40px solid var(--primary-color-border);
}

/* Banner Section end Here */
.service-pages-wrapper .digital-first-experince {
    background-image: url('../../images/services/health-care/why-health-bg.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.service-pages-wrapper .digital-first-experince .wrapmxwd .digital-experince-box .digital-first-app img {
    border-radius: 30px;
}

.service-pages-wrapper .powerfull-features-section .digital-experince-box {
    position: sticky;
    top: calc(50vh - 160px);
    transform: none;
}

.service-pages-wrapper .digital-experince-box .get-touch-btn {
    background-color: var(--primary-color-bg);
    border: 1px solid var(--primary-color-border);
    padding: 22px 40px;
    box-shadow: none;
    max-width: fit-content;
    margin: 0 auto;
    font-family: 'Figtre-600';
}

.service-pages-wrapper .digital-exp-option-box .digital-exp-option-row {
    background-color: #fff;
}

.service-pages-wrapper .digital-exp-option-box .digital-exp-option-row h3 {
    font-size: 30px;
    font-family: 'Manrope-500';
}

.service-pages-wrapper .digital-exp-option-box .digital-exp-option-row p {
    font-size: 18px;
    font-family: 'Manrope-400';
}

.service-pages-wrapper .digital-exp-option-row p:after {
    background-color: #5C5C5C;
}

/* =============================================================
   COMPLIANCE & SECURITY SECTION
============================================================= */
.compliance-security-section {
    background-color: #f6f6f6;
    padding: 80px 0 80px 0;
}

.compliance-header-row {
    margin-bottom: 50px;
}

.compliance-header-row p {
    padding-bottom: 30px;
}

.compliance-desc-box {
    padding-left: 20px;
}

.compliance-line {
    height: 1px;
    background-color: #E0E0E0;
    width: 100%;
    margin-top: 30px;
}

/* Tabs */
.compliance-tabs-wrapper {
    margin-bottom: 50px;
}

.compliance-tabs {
    display: flex;
    gap: 20px;
    border: none;
    padding: 0;
    margin: 0;
    list-style: none;
}

.compliance-tabs li {
    margin-bottom: 10px;
}

.comp-tab-btn {
    font-size: 20px;
    font-weight: 600;
    font-family: 'Manrope-600';
    color: var(--primary-color-text);
    background-color: transparent;
    border: 1px solid var(--primary-color-border);
    border-radius: 40px;
    padding: 16px 40px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.comp-tab-btn:hover {
    background-color: rgba(0, 97, 255, 0.05);
}

.comp-tab-btn.active {
    background-color: var(--primary-color-bg);
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 97, 255, 0.2);
    text-decoration: none !important;
}

/* Tab Content Visibility */
.comp-tab-pane {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.comp-tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tab Content */
.compliance-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    column-count: 3;
    column-gap: 30px;
    display: block;
}

.compliance-features li {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 18px;
    font-weight: 600;
    color: #000E16;
    font-family: 'Figtre-600';
    break-inside: avoid-column;
    margin-bottom: 24px;
}

.compliance-features li .asterisk-icon {
    width: 18px;
    height: 18px;
}

.compliance-features li .asterisk-icon img {
    width: 100%;
    height: 100%;
}

/* Infinite Marquee Logos */
.compliance-logos-marquee {
    padding: 60px 0;
    border-top: 0px solid #E0E0E0;
    overflow: hidden;
    position: relative;
    width: 100%;
    background-color: #ffffff;
}

.compliance-logos-marquee::before,
.compliance-logos-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.compliance-logos-marquee::before {
    left: 0;
    background: linear-gradient(to right, #F8F9FA 0%, transparent 100%);
}

.compliance-logos-marquee::after {
    right: 0;
    background: linear-gradient(to left, #F8F9FA 0%, transparent 100%);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scrollMarquee 40s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.marquee-item img {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.marquee-item img:hover {
    transform: scale(1.05);
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 991px) {
    .compliance-features ul {
        column-count: 2;
    }


    .compliance-desc-box {
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    .compliance-features ul {
        column-count: 1;
    }



    .compliance-tabs {
        flex-direction: column;
    }

    .compliance-tabs .nav-link {
        text-align: center;
    }
}

/* =============================================================
   DIGITAL HEALTHCARE SOLUTIONS SECTION
============================================================= */
.digital-health-solutions-section {
    background-color: #F8F9FA;
    padding: 80px 0;
}

.dhs-header {
    margin-bottom: 60px;
}


.digital-health-solutions-section .owl-stage {
    display: flex;
}

.digital-health-solutions-section .owl-stage-outer .owl-stage .owl-item {
    display: flex;
    height: auto;
}

.dhs-owl-slider .item {
    padding: 50px 40px;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.dhs-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    height: 100%;
    width: 100%;
}

.dhs-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin-bottom: 30px;
    font-family: 'Manrope-700' !important;
}



.dhs-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dhs-card li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    font-family: 'Inter-400';
    line-height: 1.5;
}

.dhs-card li:last-child {
    margin-bottom: 0;
}

.dhs-card li .asterisk-icon {
    width: 18px;
    height: 18px;
    margin-top: 3px;
}

.dhs-card li .asterisk-icon img {
    width: 100%;
    height: 100%;
}

.dhs-custom-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.dhs-custom-nav button {
    background: transparent;
    border: none;
    color: #B0C4DE;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dhs-custom-nav button.active-arrow,
.dhs-custom-nav button:hover {
    color: #0061FF;
}

.dhs-custom-nav button:hover {
    transform: scale(1.1);
}

@media (max-width: 767px) {

    .dhs-card {
        padding: 30px 20px;
    }
}

/* =============================================================
   AGILE PROCESS SECTION
============================================================= */
.agile-process-hc-section {
    background-color: #EAF6F9;
    padding: 80px 0;
}

.agile-header-row {
    margin-bottom: 60px;
}

.agile-desc-box {
    padding-left: 20px;
}

.agile-desc-box p {
    padding-bottom: 0px;
    margin-top: 50px;
}

.agile-line {
    height: 1px;
    background-color: #D1E8ED;
    width: 100%;
    margin-top: 30px;
}

.agile-cards-row {
    margin-top: 30px;
}

.agile-cards-row .col-lg-4.col-md-6 {
    margin-bottom: 30px;
}

.agile-hc-card {
    background-color: #ffffff;
    border-radius: 32px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.agile-hc-card:hover {
    transform: translateY(-8px);
}

.agile-hc-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: #111;
    margin-bottom: 24px;
    font-family: 'Manrope-700';
    line-height: 1.3;
}

.agile-hc-card p {
    font-size: 18px;
    color: #515F74;
    line-height: 1.7;
    font-family: 'Inter-400';
    margin: 0;
}

@media (max-width: 991px) {

    .agile-desc-box {
        padding-left: 0;
    }

    .agile-hc-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .agile-hc-card {
        padding: 30px 20px;
    }
}

/* =============================================================
   WHY HEALTHCARE CHOOSE US SECTION
============================================================= */
.why-choose-hc-section {
    background: linear-gradient(to bottom, #f0f8fb 0%, #e1f4fa 100%);
    padding: 80px 0 80px 0;
}

.why-hc-header {
    margin-bottom: 0px;
    margin-top: 20px;
}

.why-hc-header .section-heading {
    margin-bottom: 70px;
}

.why-hc-white-box {
    background: #fff;
    border-radius: 60px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.why-hc-image {
    height: 100%;
    min-height: 500px;
}

.why-hc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 60px 60px 0px 0px !important;
}

.common-tabs-wrapper {
    padding: 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.common-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 0px;
}

.common-tab-btn {
    font-size: 18px;
    font-weight: 700;
    font-family: 'Manrope-700';
    color: var(--primary-color-text);
    background-color: #fff;
    border: 1px solid var(--primary-color-border);
    border-radius: 40px;
    padding: 18px 24px;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
}

.common-tab-btn:hover {
    background-color: rgba(0, 97, 255, 0.05);
}

.common-tab-btn.active {
    background-color: var(--primary-color-bg);
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 97, 255, 0.2);
}

.common-tab-pane {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.common-tab-pane.active {
    display: block;
}

.common-tab-pane h3 {
    font-size: 30px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 15px;
    font-family: 'Manrope-600';
}

.common-tab-pane p {
    font-size: 18px;
    color: #515F74;
    line-height: 1.6;
    margin-bottom: 30px;
    font-family: 'Manrope-400';
}

.common-tab-pane ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.common-tab-pane li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 18px;
    color: #252525;
    font-family: 'Manrope-500';
    margin-bottom: 15px;
    line-height: 1.6;
}

.common-tab-pane li .asterisk-icon {
    width: 16px;
    height: 16px;
    margin-top: 0px;
}

.common-tab-pane li .asterisk-icon img {
    width: 100%;
    height: 100%;
}

@media (max-width: 991px) {

    .why-hc-image {
        min-height: 300px;
    }

    .common-tabs-wrapper {
        padding: 30px 20px;
        flex-direction: row;
    }
}

.tech-stack-tab-content .tech-stack-img-wrap {
    width: 70%;
    margin: 0 auto;
}

.tech-stack-tab-content .tech-stack-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tech-stack-section .section-headings-wrap .section-heading {
    margin-bottom: 20px;
}

.tech-stack-section .section-headings-wrap .section-subheading {
    max-width: 60%;
    margin: 10px auto 40px auto;
}

/* =============================================================
   SERVICES WE PROVIDE SECTION (Slider / Carousel Form)
   ============================================================= */
.services-provide-hc {
    background-color: #E2F2F9;
    padding: 80px 0;
}

.sp-hc-header {
    margin-bottom: 50px;
}

.sp-hc-slider-container {
    position: relative;
    width: 100%;
}

/* Base card style */
.sp-hc-card {
    position: relative;
    border-radius: 40px;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    min-height: 280px;
    transition: all 0.3s ease;
    margin: 10px 0;
}

/* Owl Carousel center zoom effect */
.sp-owl-slider .owl-item {
    opacity: 0.5;
    transform: scale(0.92);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.sp-owl-slider .owl-item.center {
    opacity: 1;
    transform: scale(1);
}

/* Custom Navigation Arrows */
.sp-custom-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
}

.sp-custom-nav button {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sp-custom-nav button.sp-prev {
    color: #A3C9E2;
}

.sp-custom-nav button.sp-next {
    color: var(--primary-color-text);
}

.sp-custom-nav button.sp-prev:hover {
    color: var(--primary-color-text);
    transform: scale(1.15);
}

.sp-custom-nav button.sp-next:hover {
    color: var(--primary-color-text);
    transform: scale(1.15);
}

.sp-custom-nav button svg {
    width: 40px;
    height: 40px;
}

/* Card White Theme default */
.sp-hc-card.card-white {
    background-color: #fff;
    color: #333;
    transition: all 0.4s ease;
}

.sp-hc-card.card-white h3 {
    color: #111;
}

/* Dynamic Active State: Center item card is blue */
.sp-owl-slider .owl-item.center .sp-hc-card {
    background-color: var(--primary-color-bg) !important;
    color: #fff !important;
    box-shadow: 0 15px 45px rgba(0, 163, 255, 0.25);
}

.sp-owl-slider .owl-item.center .sp-hc-card h3 {
    color: #fff !important;
}

.sp-owl-slider .owl-item.center .sp-hc-card p {
    color: #fff !important;
}

.sp-owl-slider .owl-item.center .sp-hc-card .sp-hc-features li {
    color: #fff !important;
}

.sp-owl-slider .owl-item.center .sp-hc-card .sp-hc-features ul {
    border-top: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.sp-owl-slider .owl-item.center .sp-hc-card .sp-hc-features li .asterisk-icon img {
    filter: brightness(0) invert(1);
}

.sp-hc-card h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Manrope-600';
    color: #000000;
    transition: all 0.4s ease;
}

.sp-hc-card p {
    font-size: 20px;
    line-height: 1.6;
    margin: 0;
    color: #000000;
    font-family: 'Manrope-400';
    transition: all 0.4s ease;
}

.sp-hc-features ul {
    list-style: none;
    padding: 30px 0 0 0;
    margin: 30px 0 0 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    border-top: 1px solid #E0E0E0;
    transition: all 0.4s ease;
}

.sp-hc-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
    color: #000E16;
    font-family: 'Figtre-600';
    transition: all 0.4s ease;
}

.sp-hc-features li .asterisk-icon {
    width: 18px;
    height: 18px;
}

.sp-hc-features li .asterisk-icon img {
    width: 100%;
    height: 100%;
}

@media (max-width: 991px) {
    .services-provide-hc {
        padding: 60px 0;
    }

    .sp-hc-header {
        margin-bottom: 30px;
    }

    .sp-hc-features ul {
        grid-template-columns: repeat(2, 1fr);
    }

    .sp-hc-card {
        padding: 40px;
    }

    .sp-owl-slider .owl-item {
        transform: scale(0.95);
    }

    .sp-owl-slider .owl-item.center {
        transform: scale(1);
    }
}

@media (max-width: 767px) {
    .services-provide-hc {
        padding: 40px 0;
    }

    .sp-hc-header {
        margin-bottom: 20px;
    }

    .sp-hc-features ul {
        grid-template-columns: 1fr;
        padding-top: 20px;
        margin-top: 20px;
        gap: 12px;
    }

    .sp-hc-card {
        padding: 30px 20px;
        border-radius: 24px;
        margin: 5px 0;
    }

    .sp-hc-card h3 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .sp-hc-card p,
    .scalable-header p {
        font-size: 16px !important;
    }




    .sp-hc-features li {
        font-size: 15px !important;
    }

    .sp-owl-slider .owl-item {
        transform: scale(0.97);
    }

    .sp-owl-slider .owl-item.center {
        transform: scale(1);
    }

    .sp-custom-nav {
        margin-top: 20px;
        gap: 16px;
    }

    .sp-custom-nav button svg {
        width: 32px;
        height: 32px;
    }
}

/* =============================================================
   SCALABLE HEALTHCARE SOFTWARE SECTION (Sticky Horizontal Scroll)
============================================================= */
.scalable-healthcare-section {
    background-image: url('../../images/services/health-care/scalable-bg.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    padding-top: 50px !important;
    padding: 0;
}

.scalable-healthcare-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 10% 50%, rgba(255, 100, 200, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 50%, rgba(100, 200, 255, 0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
}

.sticky-scroll-container {
    /* Height determines total scroll budget: more = slower horizontal scroll */
    /* Responsive: clamp between 250vh and 350vh */
    height: clamp(250vh, 300vh, 350vh);
}

.sticky-scroll-wrapper {
    position: sticky;
    top: 0;
    /* Use 100dvh for dynamic viewport (handles mobile browser chrome) */
    height: 100vh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding-top: 40px;
    /* REMOVED min-height: 1000px — it caused overflow on short screens */
}

.scalable-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    /* Responsive bottom margin based on viewport height */
    margin-bottom: clamp(20px, 4vh, 50px);
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.scalable-header p {
    font-size: 18px;
    color: #444;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 800px;
    font-family: 'Manrope-400';
}

.sticky-scroll-track {
    display: flex;
    gap: 30px;
    padding: 0 10px;
    width: max-content;
    will-change: transform;
    position: relative;
    z-index: 2;
    /* Responsive bottom padding */
    padding-bottom: clamp(20px, 5vh, 80px);
}

.scalable-card {
    width: 100%;
    background: #fff;
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sc-card-img {
    width: 100%;
    /* Responsive card image height */
    height: clamp(280px, 45vh, 360px);
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 24px;
}

.sc-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sc-card-content {
    text-align: center;
    padding: 0 10px 10px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

}

.sc-card-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #000E16;
    margin: 0;
    line-height: 1.4;
    font-family: 'Figtre-600';
}

@media (max-width:1480px) {
    .sc-card-content h3 {
        font-size: 20px;
    }

    .sc-card-img {
        height: clamp(190px, 45vh, 310px);
    }
}

@media (max-width:1380px) {
    .sc-card-content h3 {
        font-size: 18px;
    }

    .sc-card-img {
        height: clamp(170px, 45vh, 290px);
    }
}

@media (max-width: 991px) {
    .sticky-scroll-container {
        height: auto !important;
    }

    .service-pages-wrapper .industry-banner-app {
        top: 30px;
    }

    .head-industry-circle {
        display: none;
    }


    .sticky-scroll-wrapper {
        position: relative;
        height: auto;
        padding: 80px 0;
        display: block;
    }

    .sticky-scroll-track {
        transform: none !important;
        overflow-x: auto;
        padding: 0 20px 40px;
        scroll-snap-type: x mandatory;
        gap: 20px;
        width: 100%;
    }

    .scalable-card {
        scroll-snap-align: center;
    }

    .sc-card-img {
        height: 220px;
    }
}

@media (max-width: 767px) {}

/* =============================================================
   AI-POWERED HEALTHCARE APPS SECTION
============================================================= */
.ai-powered-healthcare-section {
    padding: 80px 0 40px 0;
    background-color: #F8F9FA;
}

.ai-hc-header-row {
    margin-bottom: 60px;
    align-items: flex-start !important;
}

.ai-hc-desc-box {
    padding-bottom: 24px;
    border-bottom: 1px solid #E0E0E0;
    width: 100%;
}

.ai-hc-desc-box p {
    padding-bottom: 20px;
}

.ai-hc-app-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ai-hc-app-list li {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 16px;
    font-weight: 600;
    color: #000E16;
    margin-bottom: 24px;
    font-family: 'Figtre-600';
}

.ai-hc-app-list li .asterisk-icon {
    width: 18px;
    height: 18px;

}

.ai-hc-app-list li .asterisk-icon img {
    width: 100%;
    height: 100%;

}

@media (max-width: 991px) {
    .ai-hc-title {
        font-size: 40px;
        margin-bottom: 30px;
    }

    .ai-hc-desc-box {
        padding-bottom: 20px;
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .ai-hc-title {
        font-size: 32px;
    }
}

/* =============================================================
   OUR RECENT WORK SECTION (Healthcare)
============================================================= */
.hc-recent-work-section {
    position: relative;
    padding: 80px 0 80px;
    overflow: hidden;
    color: #fff;

}

.video-banner {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.video-banner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.video-banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: 1;

}

.hc-recent-work-section>.wrapmxwd {
    position: relative;
    z-index: 2;
}

.hc-recent-work-header {
    margin-bottom: 50px;
}

.hc-recent-work-header .section-heading,
.hc-recent-work-header .section-sub-heading {
    color: #ffffff;
}

.hc-recent-work-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
}

.hc-rw-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
    background: #fff;
    border-radius: 52px;
    min-height: 480px;
}

.hc-rw-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hc-rw-card-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
    border-radius: 52px 52px 0 0;
}

/* Card gradients */
.hc-rw-card:nth-child(1) .hc-rw-card-visual {
    background: linear-gradient(180deg, #729B6E, #4E7459);
}

.hc-rw-card:nth-child(2) .hc-rw-card-visual {
    background: linear-gradient(180deg, #00A2FF, #007CE6);
}

.hc-rw-card:nth-child(3) .hc-rw-card-visual {
    background: linear-gradient(180deg, #1C274A, #111832);
}

.hc-rw-card:nth-child(4) .hc-rw-card-visual {
    background: linear-gradient(180deg, #376EC4, #2A5BA6);
}

.hc-rw-card-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    padding: 0;
    align-self: flex-start;
    margin-bottom: 30px;
}

.hc-rw-logo-icon {
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
}

/* Base icon shape for placeholder */
.medicare-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2L2 22h20L12 2zm0 4.5l6.5 13h-13L12 6.5z'/%3E%3C/svg%3E");
}

.lifewell-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2L2 22h20L12 2zm0 4.5l6.5 13h-13L12 6.5z'/%3E%3C/svg%3E");
}

.wellcare-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2L2 22h20L12 2zm0 4.5l6.5 13h-13L12 6.5z'/%3E%3C/svg%3E");
}

.mediplus-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2L2 22h20L12 2zm0 4.5l6.5 13h-13L12 6.5z'/%3E%3C/svg%3E");
}

.hc-rw-logo-text {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    font-family: "Manrope", sans-serif;
}

.hc-rw-card-mockup {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex: 1;
    width: 100%;

}

.hc-rw-card-mockup img {
    width: auto;
    width: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.25));
    transition: transform 0.4s ease;
}

.hc-rw-card:hover .hc-rw-card-mockup img {
    transform: scale(1.04) translateY(-4px);
}

.hc-rw-card-info {
    padding: 24px 28px 28px;
    background: #fff;
    position: relative;
    z-index: 2;
    border-radius: 0 0 52px 52px;
}

.hc-rw-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 18px;
    font-weight: 700;
    color: #004BCA;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-family: 'Inter-500';
}

.hc-rw-location-dot {
    width: 6px;
    height: 6px;
    background-color: #004BCA;
    border-radius: 50%;
    display: inline-block;
}

.hc-rw-project-name {
    font-size: 30px;
    font-weight: 700;
    color: #191C1E;
    margin: 16px 0 0px 0px;
    line-height: 1.15;
    font-family: 'Manrope-700';
}

.hc-rw-case-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
    color: #424656;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Inter-500';
}

.hc-rw-case-link span {
    transition: transform 0.3s ease;
}

.hc-rw-case-link:hover {
    color: #191C1E;
    text-decoration: none;
}

.hc-rw-case-link:hover span {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1380px) {
    .hc-recent-work-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .hc-rw-location {
        font-size: 16px;
    }

    .hc-rw-card {
        border-radius: 40px;
    }

    .hc-rw-project-name {
        font-size: 18px !important;
    }
}

@media (max-width: 767px) {
    .hc-recent-work-grid {
        grid-template-columns: 1fr;
    }

    .hc-recent-work-title {
        font-size: 36px;
    }
}

/* =============================================================
   FAQ SECTION (Healthcare)
============================================================= */
.faq-hc-section {
    background-color: #f4f6fb;
    padding: 80px 0;
}

.faq-hc-header {
    margin-bottom: 60px;
}

.faq-hc-subtitle {
    font-size: 13px;
    font-weight: 700;
    color: #0061FF;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-family: "Inter", sans-serif;
}

.hc-faq-header-row .section-heading {
    margin: 0;

}

.hc-faq-header-row .section-heading span {
    color: #191C1E;
}

.faq-hc-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    font-family: "Inter", sans-serif;
    margin: 0;
}

/* Accordion */
.faq-hc-accordion .card {
    background: #fff;
    border: none !important;
    border-radius: 16px !important;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.faq-hc-accordion .card-header {
    background: transparent;
    border: none;
    padding: 0;
}

.faq-hc-accordion .btn-link {
    width: 100%;
    text-align: left;
    padding: 24px 30px;
    font-size: 18px;
    font-weight: 700;
    color: #111;
    font-family: "Manrope", sans-serif;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    white-space: normal;
    transition: all 0.3s ease;
}

.faq-hc-accordion .btn-link:hover,
.faq-hc-accordion .btn-link:focus {
    text-decoration: none;
    color: #111;
}

.faq-hc-accordion .btn-link .down-arrow-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-hc-accordion .btn-link[aria-expanded="true"] .down-arrow-icon {
    transform: rotate(180deg);
}

.faq-hc-accordion .card-body {
    padding: 0 30px 24px 30px;
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    font-family: "Inter", sans-serif;
    border: none;
}

/* CTA Box */
.faq-hc-cta-box {
    background-color: #0061FF;
    border-radius: 24px;
    padding: 40px;
    color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.faq-hc-cta-box .icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.faq-hc-cta-box h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: "Manrope", sans-serif;
    line-height: 1.2;
}

.faq-hc-cta-box p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    font-family: "Inter", sans-serif;
    opacity: 0.9;
}

.faq-hc-cta-box .btn-white-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #fff;
    color: #0061FF;
    padding: 16px 30px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 700;
    font-family: "Inter", sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-bottom: auto;
}

.faq-hc-cta-box .btn-white-call:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    color: #004ecc;
}

.faq-hc-cta-box .experts-online {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
}

.expert-avatars {
    display: flex;
}

.expert-avatars img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #0061FF;
    margin-right: -10px;
    object-fit: cover;
}

.expert-avatars img:last-child {
    margin-right: 0;
}

.faq-hc-cta-box .experts-online span {
    font-size: 13px;
    font-weight: 500;
    font-family: "Inter", sans-serif;
    opacity: 0.9;
}

@media (max-width: 991px) {
    .faq-hc-title {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .faq-hc-desc {
        margin-bottom: 40px;
    }

    .faq-hc-accordion {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .faq-hc-title {
        font-size: 32px;
    }

    .faq-hc-cta-box {
        padding: 30px 20px;
    }
}

/* =============================================================
   COMMON QUESTIONS (PRECISION SUPPORT) FAQ SECTION
============================================================= */
.hc-common-faq-section {
    background-color: #f0f2f8;
    padding: 80px 0;
}


.hc-faq-main-row .row .col-lg-8 {
    flex: 0 0 calc(100% - 500px);
    max-width: calc(100% - 500px);
    width: calc(100% - 500px);
}

.hc-faq-main-row .row .col-lg-4 {
    flex: 0 0 450px;
    max-width: 450px;

}

/* --- Header Row --- */
.hc-faq-header-row {
    margin-bottom: 50px;
    padding-bottom: 40px;
}

.hc-faq-label {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #004BCA;
    margin-bottom: 18px;
    font-family: 'Inter-700';
}



.hc-faq-main-title span {
    color: #C2C6D999;
}

.powerfull-features-section {
    background-color: #f6f6f6;
    background-image: none !important;
    padding-top: 100px !important;
}

.powerfull-features-section .digital-exp-option-row h3::after {
    display: none;
}

.powerfull-features-section .white-ban-btn-rw {
    text-align: left !important;
}

.powerfull-features-section .white-ban-btn-rw a.get-touch-btn {
    display: block;
    margin-right: auto;
    margin-left: 0;
}

.powerfull-features-section .digital-exp-option-box .digital-exp-option-row p {
    color: #000000;
}

.hc-faq-desc-block {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    height: 100%;
    padding-bottom: 6px;
}

.hc-faq-desc-block p {
    max-width: 60%;


}

/* --- Accordion Wrap --- */
.hc-faq-accordion-wrap {
    padding-right: 30px;
}

/* --- Accordion Cards --- */
.hc-faq-card {
    background: #ffffff !important;
    border: none !important;
    border-radius: 40px !important;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.hc-faq-card-header {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

/* The toggle button */
.hc-faq-btn {
    width: 100%;
    text-align: left !important;
    padding: 40px 28px !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #111 !important;
    font-family: 'Manrope-700' !important;
    text-decoration: none !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    white-space: normal !important;
    line-height: 1.4 !important;
    transition: color 0.2s ease !important;
    box-shadow: none !important;
}

.hc-faq-btn:hover,
.hc-faq-btn:focus {
    text-decoration: none !important;
    box-shadow: none !important;
    outline: none !important;
}

/* Chevron icon */
.hc-faq-chevron {
    flex-shrink: 0;
    margin-left: 16px;
    color: #aaa;
    transition: transform 0.3s ease, color 0.2s ease;
}

.hc-faq-btn[aria-expanded="true"] .hc-faq-chevron {
    transform: rotate(180deg);
    color: #0061FF;
}

/* Card body */
.hc-faq-body {
    padding: 0 28px 22px 28px !important;
    border: none !important;
}

.hc-faq-body p {
    font-size: 20px;
    color: #515F74;
    line-height: 1.7;
    font-family: 'Inter-400';
    margin: 0;
}

/* --- CTA Card --- */

.hc-faq-cta-card {
    background: linear-gradient(145deg, #0061FF 0%, #0048c4 100%);
    border-radius: 45px;
    padding: 36px 32px;
    color: #fff;
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 400px;
    position: sticky;
    top: 120px;
    max-width: 450px;
    box-shadow: 0px 37.04px 74.09px -17.78px #004BCA1A;

}

.hc-faq-cta-card .common-btn-blue {
    text-align: center;
}

.hc-faq-cta-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    flex-shrink: 0;
}

.hc-faq-cta-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    font-family: 'Manrope-700';
    line-height: 1.2;
    color: #fff;
}

.hc-faq-cta-desc {
    font-size: 20px;
    line-height: 1.65;
    margin-bottom: 28px;
    font-family: 'Inter-400';
    opacity: 0.88;
    color: #F1F2FFCC;

}

.hc-faq-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #0061FF !important;
    padding: 24px 24px;
    border-radius: 40px;
    width: 100%;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Manrope-700';
    text-decoration: none !important;
    transition: all 0.3s ease;
    align-self: center;
    margin-bottom: auto;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hc-faq-cta-btn:hover {
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    color: #003faa !important;
    text-decoration: none !important;
}

.hc-faq-cta-btn svg {
    transition: transform 0.3s ease;
}

.hc-faq-cta-btn:hover svg {
    transform: translateX(4px);
}

/* Experts row */
.hc-faq-cta-experts {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 36px;
    padding-top: 40px;
    border-top: 1.48px solid #FFFFFF1A
}

.hc-faq-expert-avatars {
    display: flex;
}

.hc-faq-expert-avatars img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    margin-right: -10px;
    object-fit: cover;
    background-color: #5a9de0;
}

.hc-faq-expert-avatars img:last-child {
    margin-right: 0;
}

.hc-faq-experts-label {
    font-size: 16px;
    font-weight: 500;
    font-family: 'Manrope-500';
    opacity: 0.9;
    color: #fff;
    margin-left: 6px;
}

/* =============================================================
   RESPONSIVE — Common Questions FAQ
============================================================= */
@media (max-width: 1199px) {
    .hc-faq-main-title {
        font-size: 42px;
    }

    .hc-faq-accordion-wrap {
        padding-right: 20px;
    }
}

@media (max-width: 991px) {
    .hc-common-faq-section {
        padding: 70px 0;
    }

    .hc-faq-main-title {
        font-size: 36px;
        margin-bottom: 16px;
    }

    .hc-faq-desc-block {
        align-items: flex-start;
        padding-top: 10px;
        padding-bottom: 0;
    }

    .hc-faq-accordion-wrap {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hc-faq-cta-card {
        position: static;
        min-height: auto;
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .hc-common-faq-section {
        padding: 40px 0;
    }

    .hc-faq-main-title {
        font-size: 30px;
        letter-spacing: -0.8px;
    }

    .hc-faq-header-row {
        margin-bottom: 36px;
        padding-bottom: 30px;
    }

    .hc-faq-btn {
        font-size: 18px !important;
        padding: 18px 20px !important;
    }

    .hc-faq-btn {
        font-size: 17px !important;
    }

    .hc-faq-body p {
        font-size: 16px !important;
    }

    .hc-faq-card {
        border-radius: 20px !important;
    }

    .hc-faq-body {
        padding: 0 20px 18px 20px !important;
    }

    .hc-faq-cta-card {
        padding: 28px 24px;
        border-radius: 20px;
    }

    .hc-faq-cta-title {
        font-size: 24px;
    }
}

/* =============================================================
   HERO CTA SECTION — "Let's Build Something Great Together"
============================================================= */
.hc-hero-cta-section {
    background-color: #eef0f5;
    padding: 0px 20px 80px;
}

.hc-hero-cta-card {
    max-width: 100%;
    margin: 0 auto;
    background-image: url('../../images/services/health-care/let-build-bg.webp');
    background-position: inherit;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 40px;
    padding: 70px 70px 150px 70px;
    position: relative;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0, 97, 255, 0.25);
}

/* --- Floating Glassmorphism Card (top-left) --- */


.hc-glass-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hc-glass-dot::after {
    content: '→';
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1;
}

.hc-glass-lines {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hc-glass-lines span {
    display: block;
    height: 3px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.3);
}

.hc-glass-lines span:nth-child(1) {
    width: 55px;
}

.hc-glass-lines span:nth-child(2) {
    width: 40px;
}

.hc-glass-lines span:nth-child(3) {
    width: 50px;
}

/* --- Floating Deployment Badge (bottom-right) --- */
.hc-hero-deployment-badge {
    position: absolute;
    bottom: 50px;
    right: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    padding: 24px 30px;
    z-index: 2;
}

.hc-deployment-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #2ecc71;
    /* box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.3); */
    flex-shrink: 0;
    /* animation: hcPulseGreen 2s ease-in-out infinite; */
}

@keyframes hcPulseGreen {

    0%,
    100% {
        box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.3);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(46, 204, 113, 0.15);
    }
}

.hc-deployment-text {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    font-family: 'Inter-500';
    white-space: nowrap;
}

/* --- Central Content --- */
.hc-hero-cta-inner {
    position: relative;
    z-index: 3;
    max-width: 1100px;
    margin: 0 auto;
}

.hc-hero-cta-inner .section-heading {
    color: #fff;
    font-size: 80px;
}

/* Pill badge */
.hc-hero-badge-pill {
    margin-top: 100px;
    margin-bottom: 60px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 40px;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Manrope-700';
    text-transform: uppercase;
    margin-bottom: 32px;
}

.hc-hero-badge-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #fff;
    flex-shrink: 0;
}

/* Main headline */
.hc-hero-cta-title {
    font-size: 86px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 24px;
    font-family: 'Manrope-700';
    letter-spacing: -2px;
}

/* Description */
.hc-hero-cta-desc {
    font-size: 24px;
    color: #B4C5FF;
    line-height: 1.7;
    margin-top: 50px;
    margin-bottom: 50px;
    font-family: 'Inter-400';
}

/* Buttons row */
.hc-hero-cta-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 85px;
}

.hc-hero-btn-primary {
    background: #ffffff;
    color: #004BCA !important;
    padding: 24px 40px;
    border-radius: 100px;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Manrope-700';
    text-decoration: none !important;
    transition: all 0.3s ease;
    display: inline-block;
}

.hc-hero-btn-primary:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    transform: translateY(-2px);
    color: #004BCA !important;
    text-decoration: none !important;
}

.hc-hero-btn-outline {
    background: transparent;
    color: #ffffff !important;
    padding: 24px 40px;
    border-radius: 40px;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Manrope-700';
    text-decoration: none !important;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    display: inline-block;
}

.hc-hero-btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.8);
    color: #ffffff !important;
    text-decoration: none !important;
    transform: translateY(-2px);
}

/* Trust badges */
.hc-hero-trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.hc-trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff7d;
    font-family: 'Manrope-700';
}

.hc-trust-item img {
    opacity: 0.7;
    flex-shrink: 0;
}

.hc-hero-cta-section .outline-btn {

    border: 1px solid #fff !important;

}

.hc-faq-cta-card .common-btn-blue {
    background-color: #fff;
    color: #003faa;
}

.service-pages-wrapper .head-industry-circle {
    top: -70px;
    right: -215px;
    border: 40px solid #0253db59;
}

/* =============================================================
   RESPONSIVE — Hero CTA Section
============================================================= */
@media (max-width: 1480px) {
    .common-tabs-wrapper {
        padding: 25px 20px;
    }

    .common-tab-pane h3 {
        font-size: 24px;
    }

    .common-tabs-wrapper,
    .common-tab-pane li,
    .common-tab-pane p {
        font-size: 16px;
    }

    .common-tab-btn {
        border-radius: 30px;
        padding: 18px 10px;
    }
}

@media (max-width: 1348px) {}

@media (max-width: 991px) {
    .hc-hero-cta-card {
        padding: 70px 40px 60px;
    }

    .hc-hero-cta-title {
        font-size: 44px;
        letter-spacing: -1.5px;
    }

    .hc-hero-glass-card {
        width: 80px;
        height: 72px;
        top: 24px;
        left: 24px;
    }

    .hc-glass-lines span:nth-child(1) {
        width: 42px;
    }

    .hc-glass-lines span:nth-child(2) {
        width: 30px;
    }

    .hc-glass-lines span:nth-child(3) {
        width: 38px;
    }

    .hc-hero-deployment-badge {
        bottom: 24px;
        right: 24px;
    }

    .common-tab-pane p,
    .common-tab-pane li {
        font-size: 16px;
    }

    .common-tab-pane h3 {
        font-size: 20px;
    }

    .hc-hero-deployment-badge {
        position: absolute;
        bottom: 0px !important;
        right: auto !important;
        padding: 10px 25px !important;

    }

}

@media (max-width: 767px) {
    .hc-hero-cta-section {
        padding: 0px 0px 60px;
    }

    .hc-hero-cta-card {
        padding: 60px 24px 100px;
        border-radius: 20px;
    }

    .hc-hero-cta-title {
        font-size: 34px;
        letter-spacing: -1px;
    }

    .hc-hero-cta-desc {
        font-size: 15px;
    }

    .hc-hero-cta-btns {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 40px;
    }

    .hc-hero-btn-primary,
    .hc-hero-btn-outline {
        width: 100%;
        text-align: center;
        padding: 16px 28px;
    }

    .hc-hero-trust-badges {
        gap: 20px;
    }

    .hc-hero-glass-card {
        display: none;
    }

    .hc-hero-deployment-badge {
        position: static;
        margin: 0 auto 30px;
        display: inline-flex;
    }

    .hc-hero-cta-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        background-position: center;
    }

    .hc-hero-badge-pill {
        margin-top: 10px;
    }

    .hc-hero-deployment-badge {
        padding: 15px 20px;
    }

    .hc-deployment-text {
        font-size: 16px;

    }

    .hc-hero-cta-inner .section-heading {
        font-size: 30px;
        line-height: 50px;
    }

    .hc-trust-item {
        display: flex;
        align-items: center;
        gap: 15px;
        font-size: 16px;
    }

    .hc-hero-btn-outline {
        padding: 15px 30px;
    }

    .hc-hero-cta-inner .section-heading {
        font-size: 30px;
        line-height: 48px;
    }
}

@media (max-width: 1680px) {
    .section-heading {
        font-size: 55px;
        line-height: 65px;

    }

    .service-pages-wrapper .pillars-ban h1 {
        font-size: 70px;
        line-height: 75px;
    }

    .section-sub-heading {
        font-size: 18px;
        line-height: 22px;

    }

    .digital-health-solutions-section,
    .agile-process-hc-section,
    .compliance-security-section,
    .ai-powered-healthcare-section,
    .hc-recent-work-section,
    .why-choose-hc-section {
        padding: 70px 0 !important;
    }

    .powerfull-features-section,
    .why-choose-hc-section {
        padding-top: 70px !important;
    }

    .compliance-logos-marquee {
        padding: 55px 0;
    }


}

@media (max-width: 1480px) {

    .digital-health-solutions-section,
    .agile-process-hc-section,
    .compliance-security-section,
    .ai-powered-healthcare-section,
    .hc-recent-work-section,
    .why-choose-hc-section {
        padding: 60px 0 !important;
    }

    .powerfull-features-section,
    .why-choose-hc-section {
        padding-top: 60px !important;
    }

    .compliance-logos-marquee {
        padding: 50px 0;
    }

    .common-tab-btn {
        font-size: 16px;
    }

    .common-btn-blue {
        padding: 15px 30px;
        font-size: 18px;
    }

    .service-pages-wrapper .pillars-ban h1 {
        font-size: 65px;
        line-height: 70px;
    }

    .section-heading {
        font-size: 45px;
        line-height: 55px;
        letter-spacing: -2.45px;
    }

    .section-sub-heading {
        font-size: 16px;
        line-height: 20px;

    }

    .service-pages-wrapper .pillars-ban h1 {
        font-size: 60px;
        line-height: 70px;
    }

    .service-pages-wrapper .digital-exp-option-box .digital-exp-option-row h3,
    .hc-rw-project-name {
        font-size: 24px;
    }

    .digital-experince-box .white-ban-btn-rw a.get-touch-btn,
    .sp-hc-card p,
    .comp-tab-btn,
    .hc-faq-cta-desc,
    .hc-faq-cta-btn,
    .hc-hero-btn-primary,
    .hc-hero-btn-outline {
        font-size: 18px;
    }

    .hc-hero-btn-outline {
        padding: 20px 30px;
    }

    .hc-rw-case-link,
    .sp-hc-features li,
    .compliance-features li,
    .agile-hc-card p,
    .service-pages-wrapper .digital-exp-option-box .digital-exp-option-row p,
    .hc-faq-body p .why-tab-btn,
    .why-tab-pane li {
        font-size: 16px;
    }

    .sc-card-content h3,
    .dhs-card h3,
    .hc-faq-btn,
    .hc-hero-cta-desc {
        font-size: 20px;
    }

    .agile-hc-card h3,
    .why-tab-pane h3 {
        font-size: 24px;
    }

    .sp-hc-card h3 {
        font-size: 28px;
    }

    .hc-faq-cta-title {
        font-size: 30px;
    }

    .hc-hero-badge-pill {
        font-size: 14px;
    }

    .hc-hero-cta-inner .section-heading {
        font-size: 64px;
        line-height: 70px;

    }

    .hc-faq-btn {
        font-size: 19px !important;
        padding: 20px 25px !important;
        gap: 10px;
        line-height: 28px;
    }

    .hc-faq-body p {
        font-size: 18px;

    }

    .hc-hero-deployment-badge {
        position: absolute;
        bottom: 40px;
        right: 40px;
        padding: 18px 25px;

    }

    .hc-deployment-text,
    .hc-trust-item {
        font-size: 16px;
    }

    .hc-deployment-dot {
        width: 18px;
        height: 18px;
    }

    .service-pages-wrapper .pillars-ban h5 {
        font-size: 20px;
    }
}

@media (max-width: 1360px) {

    .digital-health-solutions-section,
    .agile-process-hc-section,
    .compliance-security-section,
    .ai-powered-healthcare-section,
    .hc-recent-work-section,
    .why-choose-hc-section {
        padding: 50px 0 !important;
    }

    .powerfull-features-section,
    .why-choose-hc-section {
        padding-top: 50px !important;
    }

    .compliance-logos-marquee {
        padding: 45px 0;
    }

    .common-tab-pane h3 {
        font-size: 22px;
    }

    .service-pages-wrapper .digital-exp-option-box .digital-exp-option-row h3,
    .hc-rw-project-name {
        font-size: 22px;
    }

    .section-heading {
        font-size: 44px;
        line-height: 55px;
        letter-spacing: -1.45px;
    }

    .why-tab-btn {
        font-size: 16px;
    }

    .service-pages-wrapper .pillars-ban h1 {
        font-size: 60px;
        line-height: 65px;
    }

    .section-sub-heading {
        font-size: 16px;
        line-height: 20px;

    }
}

@media (max-width: 1080px) {
    .section-heading {
        font-size: 40px;
        line-height: 50px;

    }

    .service-pages-wrapper .pillars-ban h1 {
        font-size: 50px;
        line-height: 65px;
    }

}

@media (max-width: 991px) {

    .digital-health-solutions-section,
    .agile-process-hc-section,
    .compliance-security-section,
    .ai-powered-healthcare-section,
    .hc-recent-work-section,
    .why-choose-hc-section {
        padding: 40px 0 !important;
    }

    .powerfull-features-section,
    .why-choose-hc-section {
        padding-top: 40px !important;
    }

    .compliance-logos-marquee {
        padding: 40px 0;
    }

    .agile-cards-row {
        margin-top: 0px;
    }

    .dhs-header {
        margin-top: 0px;
        margin-bottom: 40px;
    }

    .compliance-header-row {
        margin-bottom: 30px;
    }

    .agile-desc-box p {
        padding-bottom: 0 !important;
    }

    .agile-hc-card {
        margin-bottom: 0;
        border-radius: 20px;
    }

    .agile-header-row {
        margin-bottom: 30px;
    }

    .section-heading {
        font-size: 30px;
        line-height: 40px;
        letter-spacing: 0;

    }

    .common-tabs {
        display: flex;
        flex-wrap: nowrap;
        /* Items ek line me rahenge */
        overflow-x: auto;
        /* Horizontal scroll */
        overflow-y: hidden;
        white-space: nowrap;
        gap: 15px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Firefox */
    }

    .common-tab-btn {
        font-size: 16px;
    }

    .common-tabs::-webkit-scrollbar {
        display: none;
        /* Chrome/Safari */
    }

    .common-tabs>* {
        flex: 0 0 auto;
        width: fit-content !important;
        /* Items shrink nahi honge */
    }

    .tech-stack-section {
        display: none;
    }

    .tech-stack-section .section-headings-wrap .section-subheading {
        max-width: 100%;
        margin: 10px auto 20px auto;
    }

    .common-tabs li {
        flex: 0 0 auto;
    }

    .why-hc-white-box {
        border-radius: 20px;
    }

    .compliance-features li {
        gap: 15px;
    }

    .asterisk-icon img {
        width: 17px;
        height: 17px;
    }

    .hc-rw-card {
        border-radius: 20px;
    }

    .hc-rw-project-name {
        padding-bottom: 0 !important;
    }

    .compliance-header-row p {
        padding-bottom: 15px;
    }

    .sticky-scroll-wrapper {
        min-height: auto;
    }

    .common-btn-blue {
        padding: 16px 20px;
        font-size: 16px;
    }

    .digital-exp-option-row {
        padding: 30px 20px;
        border-radius: 20px;
        margin-bottom: 20px;
    }

    .service-pages-wrapper .pillars-ban h1 {
        font-size: 36px;
        line-height: 40px;
    }

    .service-pages-wrapper .banleftv.industypg {
        padding-right: 0px;
    }

    .service-pages-wrapper .white-ban-btn-rw.hero-ban .get-touch-btn {
        font-size: 16px;
    }

    .digital-exp-option-row p:after {
        left: 0;
    }

    .service-pages-wrapper .digital-exp-option-box .digital-exp-option-row p {
        padding-left: 25px;
    }

    .hc-rw-location {
        font-size: 16px;
    }

    .hc-rw-project-name {
        font-size: 20px;
    }

    .ai-hc-header-row {
        margin-bottom: 0px;

    }

    .sticky-scroll-wrapper,
    .compliance-security-section {
        padding: 40px 0;
    }

    .sp-hc-card h3 {
        font-size: 20px;
    }

    .compliance-security-section {
        background-color: #f6f6f6;
        padding: 150px 0 40px 0;
    }

    .dhs-owl-slider .item {
        padding: 40px 20px;
    }

    .agile-desc-box p,
    .service-pages-wrapper .digital-exp-option-box .digital-exp-option-row h3,
    .hc-rw-project-name {
        padding-bottom: 20px;
    }

    .agile-hc-card h3,
    .why-tab-pane h3 {
        font-size: 18px;
    }

    .agile-hc-card h3 br,
    .why-tab-pane h3 br {
        display: none;
    }

    .row.agile-cards-row .col-lg-4.col-md-6 {
        margin-bottom: 30px;
    }

    .powerfull-features-section .white-ban-btn-rw a.get-touch-btn .comp-tab-btn {
        padding: 15px 20px;

    }

    .service-pages-wrapper .digital-exp-option-box .digital-exp-option-row h3 {
        font-size: 20px;
    }

    .why-tab-btn {
        font-size: 16px;
    }

    .ai-hc-desc-box p {
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .service-pages-wrapper .pillars-ban h5 {
        font-size: 18px;
    }

    .hc-faq-card {
        border-radius: 20px;
    }

    .hc-faq-desc-block p {
        max-width: 100%;
    }

    .hc-faq-main-row .row .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .hc-faq-header-row {
        margin-bottom: 10px;
        padding-bottom: 20px;
    }

    .hc-faq-header-row .section-heading br {
        display: block;
    }

    .hc-faq-main-row .row .col-lg-8 {
        flex: 0 0 calc(100% - 0px);
        max-width: calc(100% - 0px);
        width: calc(100% - 0px);
    }

    .hc-faq-cta-card {
        max-width: 100%;
    }

    .hc-faq-cta-card .common-btn-blue {
        background-color: #ffffff;
        text-align: center;
        color: #0048c4;
    }

    .hc-deployment-dot {
        width: 14px;
        height: 14px;
    }

    .hc-hero-cta-inner .section-heading {
        font-size: 40px;
    }

    .pillars-ban {
        padding: 50px 15px;
    }

    .digital-first-experince .row .col-md-6 {
        padding-left: 15px;
    }

    .powerfull-features-section .digital-exp-option-row p {
        padding-left: 0px !important;
    }

    .sp-hc-card {
        margin: 0;
    }

    .sp-hc-card {
        position: relative;
    }

    #sp-card-1,
    #sp-card-2,
    #sp-card-3 {
        top: 0px;
        margin-bottom: 30px;
    }

    .sp-hc-header {

        top: 0px;
    }

    .sp-hc-cards-container {
        top: 20px;
    }

    .services-provide-hc {
        padding-bottom: 40px;
    }

    .compliance-tabs-wrapper {
        margin-bottom: 20px;
    }

    .compliance-tabs {
        gap: 15px;
    }

    .comp-tab-btn {
        padding: 16px 15px;
        font-size: 16px;
    }

    .sp-hc-slider-container {
        padding: 0 20px;
    }

    .why-hc-header .section-heading {
        margin-bottom: 40px;
    }

    .service-pages-wrapper .wrapmxwd {
        padding: 0 15px !important;
    }
}