#form-link {
    display: none !important;
}
button {
    outline: none !important;
    height: auto !important;
}

/* for header changes */
.headerWrapper{background: #fff !important;}
.navigation-section.headerNav>.menu-my-menu-container>ul>li>a{color: #000 !important}
.header-call-number{border: 1px solid #000 !important;background: #000 !important;color: #fff !important;}
.header-call-icon{border:1px solid #000 !important;}
.header-call .fa-phone, .headerWrapper .nav_button span i {color: #000 !important; }
.headerWrapper .white-logo{display: none !important;}
.headerWrapper .blue-logo{display: block !important; }
.getStartedBtn:hover{border:1px solid #2571f0 !important;}
/*End*/

/* ========================================
   RCM HERO SECTION
   ======================================== */

.rcm-hero-section {
    /* background-image: url('../img/rcm-product-page-hero-background.jpg'); */
    /* background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
    padding: 80px 20px 80px;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    background: linear-gradient(270deg, #0F2557 0%, #173571 100%);
}

.rcm-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(26,109,249,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.rcm-hero-container {
    max-width: 1330px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* ── Left ── */
.rcm-hero-left {
    flex: 1;
    max-width: 800px;
}

.rcm-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.rcm-hero-badge  span{
    opacity: 0.7;
}
.rcm-hero-badge::before {
    content: '';
    width: 12px;
    height: 12px;
    background: #1A6DF9;
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0px 0px 4px 0px #1A6DF980;
    opacity: 1;
}

.rcm-hero-title h1 {
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 62px;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 20px;
}

.rcm-hero-highlight { color: #5B9EFF; }

.rcm-hero-description {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    max-width: 100%;
}

.rcm-hero-btn {
    display: inline-block;
    background: #fff;
    color: #1A6DF9 !important;
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 18px;
    padding: 13px 32px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #fff;
}
.rcm-hero-btn:hover {
    background: transparent;
    color: #fff !important;
    text-decoration: none;
}



/* ========================================
   RIGHT PROCESS BOX
   ======================================== */

.rcm-hero-right {
    flex: 0 0 460px;
    max-width: 460px;
}



.rcm-process-track {
    border: 2px solid #1A6DF980;
    background: #061D5180;
    padding: 25px 40px;
    box-shadow: 0px 0px 10px 0px #00000026;
    border-radius: 10px;
}

.rcm-process-item {
    /* border-bottom: 1px solid #FFFFFF1A; */
    padding: 26px 20px;
    /* outline: 1px solid transparent; */
    transition: all 0.3s ease-in-out;
    position: relative;
}
.rcm-process-item::after{
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: #FFFFFF1A;
    bottom: 0;
    left: 0;
    transition: all 0.3s ease-in-out;
}

.rcm-process-item:last-child::after {
    opacity: 0;
}

.rcm-process-item:hover{
    border-color: #fff !important;
}

.rcm-process-item:hover::after {
    height: 2px;
    background: #fff;
}
.rcm-process-item:last-child:hover::after {
    opacity: 1;
}
.rcm-process-label {
    font-family: Inter;
    font-weight: 600;
    font-size: 28px;
    letter-spacing: 0%;
    /* text-transform: uppercase; */
    color: #fff;
    margin-bottom: 6px;
    transition: all 0.3s ease-in-out;
}

.rcm-process-item:hover .rcm-process-label{
    color: #3676F7;
}

.rcm-process-title {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
    color: #fff;
    opacity: .7;
}

/* ── Trusted By ── */
.rcm-trusted-section {
    margin-top: 80px;
    padding-top: 40px;
    /* border-top: 1px solid rgba(255,255,255,0.1); */
}

.rcm-trusted-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.rcm-trusted-label {
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 0.8px;
    color: #fff;
    text-transform: uppercase;
    white-space: nowrap;
}

.rcm-trusted-logos {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.rcm-trusted-logos img {
    height: auto;
    /* max-height: 40px; */
    width: auto;
    object-fit: contain;
    /* opacity: 0.7; */
    transition: opacity 0.3s ease;
    filter: brightness(0) invert(1);
}
.rcm-trusted-logos img:hover { opacity: 1; }

@media only screen and (max-width: 1200px) {
    .rcm-hero-container { gap: 60px; }
    .rcm-hero-title h1     { font-size: 52px; }
    .rcm-hero-right     { flex: 0 0 380px; max-width: 380px; }
}

@media only screen and (max-width: 1024px) {
    .rcm-hero-section        { padding: 100px 20px 60px; }
    .rcm-hero-container      { flex-direction: column; gap: 30px; }
    .rcm-hero-left           { max-width: 100%; text-align: center; }
    .rcm-hero-title h1          { font-size: 48px; }
    .rcm-hero-description    { margin-left: auto; margin-right: auto; }
    .rcm-hero-btn            { display: block; width: fit-content; margin: 0 auto; }
    .rcm-hero-right          { flex: none; max-width: 560px; width: 100%; }
    .rcm-trusted-section     { margin-top: 40px; }
}

@media only screen and (max-width: 768px) {
    .rcm-hero-section        { padding: 80px 20px 50px; }
    .rcm-hero-title h1          { font-size: 36px; }
    .rcm-hero-description    { font-size: 16px; }
    .rcm-hero-right          { max-width: 100%; }
    .rcm-process-track       { padding: 20px 24px; }
    .rcm-process-label       { font-size: 22px; }
    .rcm-process-title       { font-size: 15px; }
    .rcm-process-item        { padding: 20px 14px; }
    .rcm-trusted-label       { font-size: 16px; }
    .rcm-trusted-logos       { gap: 20px; }
    .rcm-trusted-logos img   { max-height: 28px; }
}

@media only screen and (max-width: 600px) {
    .rcm-hero-section        { padding: 60px 16px 40px; }
    .rcm-hero-title h1          { font-size: 28px; }
    .rcm-hero-description    { font-size: 15px; }
    .rcm-hero-btn            { font-size: 15px; padding: 12px 28px; width: 100%; text-align: center; }
    .rcm-process-track       { padding: 16px 18px; }
    .rcm-process-label       { font-size: 20px; }
    .rcm-process-title       { font-size: 13px; }
    .rcm-process-item        { padding: 18px 10px; }
    .rcm-trusted-section     { margin-top: 0; padding-top: 30px; }
    .rcm-trusted-container   { gap: 16px; }
    .rcm-trusted-logos       { gap: 16px; }
    .rcm-trusted-logos img   { max-height: 22px; }
}

@media only screen and (max-width: 400px) {
    .rcm-hero-title h1          { font-size: 24px; }
    .rcm-hero-description    { font-size: 14px; }
    .rcm-process-track       { padding: 14px 14px; }
    .rcm-process-label       { font-size: 18px; }
    .rcm-process-title       { font-size: 12px; }
    .rcm-trusted-logos       { gap: 12px; }
    .rcm-trusted-logos img   { max-height: 18px; }
}

/* ========================================
   AI USE CASES SECTION
   ======================================== */

.problem-section {
    padding: 90px 20px;
    background-color: #F0F2F8;
}

.problem-wrap {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.problem-title {
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 52px;
    color: #252840;
    margin-bottom: 16px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.problem-subtitle {
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.6;
    color: #252840B2;
    margin-bottom: 48px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* ── 3-col grid ── */
.problem-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

/* ── Card ── */
.problem-stat-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px 28px 32px;
    text-align: left;
    border: 1px solid #1A6DF94D;
    outline: 2px solid transparent;
    position: relative;
    overflow: hidden;
    transition: all 0.6s ease-in-out;
}

.problem-stat-card:hover {
    box-shadow: 0px 4px 15px 0px #00000040;
    border: 1px solid #fff;
}

/* ── Icon — top-right corner ── */
.problem-stat-icon {
    width: 100px;
    height: 100px;
    background: #074EB90D;
    padding-top: 18px;
    padding-left: 35px;
    position: absolute;
    right: 0;
    top: 0;
    border-bottom-left-radius: 200px;
    transition: all 0.4s ease-in-out;
}

.problem-stat-icon .problem-stat-icon-img-wr {
    max-width: 50px;
    transition: all 0.4s ease-in-out;
}

.problem-stat-icon .problem-stat-icon-img-wr img {
    width: 100%;
}

.problem-stat-card:hover .problem-stat-icon {
    width: 140px;
    height: 140px;
    padding-top: 21px;
    padding-left: 46px;
}

.problem-stat-card:hover .problem-stat-icon .problem-stat-icon-img-wr {
    max-width: 60px;
}

/* ── Card heading ── */
.problem-stat-card h4 {
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 30px;
    color: #252840;
    margin-bottom: 14px;
    margin-right: 80px;
    padding-top: 4px;
}

/* ── List ── */
.problem-stat-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.problem-stat-card ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: #252840;
}

.problem-stat-card ul li::before {
    content: '';
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background-image: url("../img/AI-Use-Cases-check_circle.png");
    background-size: contain;
    background-repeat: no-repeat;
}

/* ── CTA ── */
.problem-cta {
    text-align: center;
}

/* ========================================
   RESPONSIVE — AI USE CASES SECTION
   ======================================== */

@media only screen and (max-width: 1024px) {
    .problem-section         { padding: 70px 20px; }
    .problem-title           { font-size: 34px; line-height: 44px; }
    .problem-subtitle        { font-size: 18px; }
    .problem-stats           { gap: 20px; }
    .problem-stat-card h4    { font-size: 18px; }
    .problem-stat-card ul li { font-size: 15px; }
    .problem-stat-icon       { width: 80px; height: 80px; padding-left: 24px; padding-top: 12px; }
    .problem-stat-icon .problem-stat-icon-img-wr { max-width: 40px; }
    .problem-stat-card:hover .problem-stat-icon  { width: 110px; height: 110px; padding-top: 13px;
        padding-left: 31px; }
}

@media only screen and (max-width: 768px) {
    .problem-section         { padding: 60px 20px; }
    .problem-title           { font-size: 28px; line-height: 38px; }
    .problem-subtitle        { font-size: 16px; margin-bottom: 36px; }
    .problem-stats           { grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 36px; }
    .problem-stat-card       { padding: 24px 22px 28px; }
}

@media only screen and (max-width: 600px) {
    .problem-section         { padding: 50px 16px; }
    .problem-title           { font-size: 24px; line-height: 34px; }
    .problem-subtitle        { font-size: 15px; margin-bottom: 28px; }
    .problem-stats           { grid-template-columns: 1fr; gap: 14px; margin-bottom: 32px; }
    .problem-stat-card       { padding: 22px 18px 26px; }
    .problem-stat-card h4    { font-size: 17px; margin-right: 70px; }
    .problem-stat-card ul li { font-size: 14px; gap: 8px; }
    .problem-stat-icon       { width: 70px; height: 70px; padding-left: 20px; padding-top: 10px; }
    .problem-stat-icon .problem-stat-icon-img-wr { max-width: 34px; }
    .problem-cta .ai-service-btn { width: 100%; justify-content: center; font-size: 14px; }
}

@media only screen and (max-width: 400px) {
    .problem-title           { font-size: 22px; line-height: 30px; }
    .problem-stat-card h4    { font-size: 16px; }
    .problem-stat-card ul li { font-size: 13px; }
}

/* ========================================
   SECTION 3 — FAQ (Bootstrap 4 Accordion)
   ======================================== */

.faq-section {
    background: #fff;
    padding: 90px 20px;
}

.faq-wrap {
    max-width: 1400px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-title {
}

/* Each accordion item */
.faq-item {
    border: none !important;
    border-radius: 0px !important;
    overflow: hidden;
    background: #fff;
    transition: border-color 0.3s ease;
    margin-bottom: 16px;
}


/* Question row */
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 25px;
    cursor: pointer;
    user-select: none;
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
    color: #252840;
    background: #fff;
    transition: background 0.2s ease;
    text-decoration: none;
    border: 1px solid #E8E8EA !important;
    outline: 1px solid transparent !important;
    background-color: #F0F2F8;
    border-radius: 8px !important;
    margin: 4px;
    box-shadow: none !important;
}

/* .faq-question:hover {
    background: #F8FAFF;
    text-decoration: none;
    color: #252840;
} */

/* Active/open state — blue tinted background matching design */
.faq-question[aria-expanded="true"] {
    background: #EEF4FF;
    border: 1px solid #1A6DF9 !important;
    outline: 1px solid #1A6DF9 !important;
}

/* Icon — show plus or minus based on state */
.faq-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #25284080;
    border: 1px solid #E5E9F1;
    border-radius: 50%;
    background-color: #fff;
}

.faq-icon svg {
    width: 16px;
    height: 16px;
    color: #25284080;
}

.faq-question[aria-expanded="true"] .faq-icon svg {
    stroke: #1B3FAB;
}

/* Show minus when open, plus when collapsed */
.faq-question[aria-expanded="true"] .icon-plus  { display: none; }
.faq-question[aria-expanded="true"] .icon-minus { display: block; }
.faq-question[aria-expanded="false"] .icon-plus  { display: block; }
.faq-question[aria-expanded="false"] .icon-minus { display: none; }
.faq-question.collapsed .icon-plus  { display: block; }
.faq-question.collapsed .icon-minus { display: none; }
.faq-question:not(.collapsed) .icon-plus  { display: none; }
.faq-question:not(.collapsed) .icon-minus { display: block; }

/* Answer body */
.faq-answer {
    padding: 22px 26px;
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 1px 6px 0px #00000040;
    margin: 4px;
    margin-top: 14px;
    color: #252840B2;
}

/* Responsive */
@media only screen and (max-width: 768px) {
    .faq-section    { padding: 60px 20px; }
    .faq-question   { font-size: 14px; padding: 16px; }
    .faq-answer     { font-size: 14px; padding: 14px 16px 18px; }
}

@media only screen and (max-width: 480px) {
    .faq-question   { font-size: 13px; }
}

/* ========================================
   COMMON BASE STYLES
   ======================================== */

/* Common Section Heading */
.common-section-heading {
    font-family: Inter;
    font-weight: 700;
    font-size: 40px;
    line-height: 52px;
    vertical-align: middle;
    color: #252840;
}

/* Common Section Subheading */
.common-section-subheading {
    font-family: Inter;
    font-weight: 500;
    font-size: 20px;
    line-height: 34px;
    color: #252840B2;
}

/* Responsive - Common Heading & Subheading */
@media only screen and (max-width: 1024px) {
    .common-section-heading {
        font-size: 32px;
        line-height: 44px;
    }
    .common-section-subheading {
        font-size: 18px;
        line-height: 30px;
    }
}

@media only screen and (max-width: 768px) {
    .common-section-heading {
        font-size: 28px;
        line-height: 38px;
    }
    .common-section-subheading {
        font-size: 16px;
        line-height: 28px;
    }
}

@media only screen and (max-width: 600px) {
    .common-section-heading {
        font-size: 24px;
        line-height: 34px;
    }
    .common-section-subheading {
        font-size: 15px;
        line-height: 26px;
    }
}

.common-body-text h1{
    font-family: Inter;
    font-weight: 500;
    font-size: 66px;
    line-height: 80px;
    letter-spacing: -2%;
    color: #FFFFFF;
    margin-bottom: 15px;
}
.common-body-text h1 span{
    display: block;
}
.common-body-text h2{
    font-family: Inter;
    font-weight: 700;
    font-size: 40px;
    line-height: 52px;
    vertical-align: middle;
    color: #252840;
    margin-bottom: 14px;
    max-width: 1020px;
    margin: 0 auto;
}
.common-body-text p{
    font-family: Inter;
    font-weight: 500;
    margin-bottom: 0;
}
.core-btn.home-comm-btn{
    border: 2px solid #FFFFFF;
    padding: 13px 24px;
    border-radius: 4px;
    font-family: Inter;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -1%;
    text-align: center;
    color: #fff !important;
    background-color: transparent !important;
    margin: 0 !important;
}
.common-mx-width{
    max-width: 1400px;
    width: 100%;
    padding: 70px 20px;    
    margin: 0 auto;
}

/* ========================================
   SOLUTIONS WE DELIVERED SECTION
   ======================================== */
.home-case-study-wr .common-mx-width{
    padding-bottom: 80px;
}
.home-case-study-wr h2{
    margin-bottom: 40px;
}
.home-case-study-wr .grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    padding: 0;
}

.home-case-study-wr .grid-item {
    border: 1px solid #DDDDDD;
    outline: 2px solid #fff;
    padding: 20px;
    cursor: default;
    padding-bottom: 25px;
}

.home-case-study-wr .content-to-hide {
    display: none;
}
.case-card-flex{
    display: flex;
    align-items: stretch;
    margin-bottom: 24px;
}
.case-card-flex .left-info{
    border: 1px solid #DDDDDD;
    background-color: #fff;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}
.case-card-flex .left-info span{
    font-family: Inter;
    font-weight: 800;
    font-size: 36px;
    line-height: 24px;
    color: #074EB9;
    display: inline-block;
}

.home-case-study-wr .grid-item .case-card-flex .left-info p{
    font-family: Inter;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #333333;
    margin-bottom: 0;
    text-transform: uppercase;
}
.card-img-wr{
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    flex: 1;
    overflow: hidden;
    max-height: 200px;
}
.card-img-wr img{
    width: 100%;
    height: 100%;
}
.home-case-study-wr .core-btn.home-comm-btn{
    border: 1px solid #074EB9;
    border-radius: 4px;
    color: #074EB9 !important;
    font-family: Inter;
    font-weight: 600;
    font-size: 16px;
    line-height: 32px;
    padding: 2px 20px;
    margin-bottom: 10px !important;
}

.home-case-study-wr .grid-item h3{
    font-family: Inter;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: #333333;
    margin-bottom: 10px;
}

.home-case-study-wr .grid-item p{
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    color: #333333;
    margin-bottom: 20px;
}

.case-image-wr{
    margin-bottom: 26px;
    min-height: 60px;
    display: inline-flex;
    align-items: center;
}
.case-image-wr img{
    filter: grayscale(100%);
    opacity: 0.5;
}
.home-case-study-wr .grid-item:hover{
    border-color: #074EB9;
    outline-color: #074EB9;
    box-shadow: 0px 4px 50px 0px #0000002B;
}
.home-case-study-wr .grid-item:hover .case-image-wr img{
    filter: none;
    opacity: 1;
}
.home-case-study-wr .grid-item:hover h3{
    color: #074EB9;
}
.home-case-study-wr .grid-item:hover .core-btn.home-comm-btn{
    background-color: #074EB9 !important;
    color: #fff !important;
}

.button-container {
    text-align: center;
    margin-top: 14px;
}

#toggleButton{
    border: 1px solid #074EB9;
    border-radius: 4px;
    color: #fff !important;
    background-color: #074EB9 !important;
    font-family: Inter;
    font-weight: 600;
    font-size: 16px;
    line-height: 32px;
    padding: 2px 20px;
    height: 40px;
    outline: 0;
    box-shadow: none;
}

#toggleButton:hover{
    background-color: #fff !important;
    color: #074EB9 !important;
}

/* ========================================
   LATEST TALKS SECTION
   ======================================== */
.latest-talk-section-wr.common-mx-width{
    padding: 80px 20px;
}

.lt-img-cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.lt-img-card {
    position: relative;
    border-radius: 21px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    aspect-ratio: 3 / 4;
    background-color: #0d2d5e;
    flex: 1 1 calc(33.333% - 16px);
    max-width: calc(33.333% - 16px);
}

.lt-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.lt-img-card:hover img {
    transform: scale(1.1);
}

.lt-img-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px 18px;
    transition: background 0.3s ease;
}

.lt-img-card:hover .lt-img-card-overlay {
    background: linear-gradient(
        to bottom,
        rgba(5, 21, 42, 0) 10%,
        rgba(5, 21, 42, 0.92) 100%
    );
}



.lt-img-card-overlay h4 {
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #ffffff;
    margin: 0;
    margin-bottom: 0;
    transition: color 0.25s ease;
}

.lt-img-card-overlay p {
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    color: #ffffff;
    margin: 0;
    margin-top: 14px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
    display: -webkit-box;
    /* -webkit-line-clamp: 3; */
    -webkit-box-orient: vertical;
}

.lt-img-card:hover .lt-img-card-overlay p {
    max-height: 500px;
    opacity: 1;
    margin-top: 10px;
}

/* ========================================
   FORM SECTION
   ======================================== */
.sln-form-bg{
    background-color: #F0F2F8;
}
.home-form-wr{
    padding: 100px 20px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    gap: 20px 60px;
}
.home-form-wr .form-left-side{
    width: 100%;
}
.home-form-wr .form-left-side h2{
    text-transform: none;
    margin-bottom: 12px;
    max-width: 100%;
}
.home-form-wr .form-left-side h2 span{
    color: #074EB9;
}
.home-form-wr .form-left-side .listing {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.home-form-wr .form-left-side .listing-item {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.home-form-wr .form-left-side .listing-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 26px;
    color: #25284080;
    text-transform: uppercase;
}

.home-form-wr .form-left-side .listing-label::before {
    content: '';
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    background-color: #074EB9;
    border-radius: 2px;
}

.home-form-wr .form-left-side .listing-item p {
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    color: #252840;
    margin: 0 !important;
    padding-left: 18px;
}
.home-form-wr .form-left-side p{
    margin-bottom: 32px;
}
.home-form-wr .form-right-side{
    /* min-width: 500px; */
    width: 100%;
    max-width: 700px;
    padding: 49px 40px;
    border-radius: 10px;
    box-shadow: 0px 4px 14px 0px #00000040;
    background-color: #fff;
}
.home-form-wr .form-right-side h3{
    font-family: Inter;
    font-weight: 600;
    font-size: 22px;
    line-height: 22px;
    color: #323232;
    text-align: center;
    margin-bottom: 24px;
}
.home-form-wr .form-right-side .form-dec-txt{
    font-family: Inter;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #666666;
    text-align: center;
    margin-top: 12px;
}
.home-form-wr .form-group{
    margin-bottom: 24px !important;
    padding: 0 7px !important;
    display: block;
    width: 100%;
}
.home-form-wr .form-group input, textarea.form-control{
    border: 1px solid #CCCCCC !important;
    border-radius: 5px !important;
    font-family: Inter !important;
    font-weight: 400 !important;
    font-size: 15px !important;
    color: #333333 !important;
    padding: 21px 20px !important;
}
.home-form-wr .form-group input::placeholder{
    color: #666666 !important;
    font-weight: 400 !important;
    font-size: 15px !important;
    font-family: Inter !important;
}
.home-form-wr .form-group textarea.form-control{
    height: 100px !important;
    padding: 14px 20px !important;
}
.home-form-wr .form-group textarea.form-control::placeholder{
    color: #666666 !important;
    font-weight: 400 !important;
    font-size: 15px !important;
    font-family: Inter !important;
}
.core-btn.talent-btn{
    width: 100% !important;
    display: inline-block !important;
    outline: 0;
    box-shadow: none;
    text-align: center;
    height: 44px;
    padding: 8px;
    background-color: #074EB9 !important;
    border-color: #074EB9 !important;
    border-radius: 4px !important;
    font-family: Inter !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    color: #fff !important;
}

/* ========================================
   RESPONSIVE - SOLUTIONS WE DELIVERED
   ======================================== */
   @media only screen and (max-width: 1024px) {
    .lt-img-card{
        flex: 1 1 calc(50% - 8px);
        max-width: calc(50% - 8px);
    }
    .lt-img-card-overlay h4{
        font-size: 20px;
    }
    .lt-img-card-overlay p{
        font-size: 15px;
        line-height: 20px;
    }
}
@media only screen and (max-width: 991px) {
    .home-case-study-wr .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .home-case-study-wr .grid-container {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* ========================================
   RESPONSIVE - LATEST TALKS
   ======================================== */
@media only screen and (max-width: 768px) {
    .lt-img-cards-grid {
        gap: 16px;
    }
    
    .lt-img-card {
        flex: 1 1 calc(50% - 8px);
        max-width: calc(50% - 8px);
    }
    
    .lt-img-card-overlay p {
        max-height: 500px;
        opacity: 1;
        margin-top: 10px;
        font-size: 14px;
        line-height: 20px;
        -webkit-line-clamp: 8;
    }
    .latest-talks-title {
        font-size: 26px;
    }
}

@media only screen and (max-width: 600px) {
    .lt-img-cards-grid {
        gap: 16px;
    }
    
    .lt-img-card {
        flex: 1 1 100%;
        max-width: 400px;
    }
    
    .lt-img-card-overlay h4 {
        font-size: 20px;
    }
    
    .lt-img-card-overlay p {
        font-size: 14px;
        line-height: 20px;
    }
}

/* ========================================
   RESPONSIVE - FORM SECTION
   ======================================== */
@media only screen and (max-width: 1200px) {
    .home-form-wr {
        padding: 60px 20px;
        gap: 20px 40px;
        align-items: center;
    }
}

@media only screen and (max-width: 1024px) {
    .home-form-wr {
        flex-wrap: wrap;
    }
    .home-form-wr .form-right-side {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
    }
}

@media only screen and (max-width: 600px) {
    .home-form-wr {
        padding: 50px 16px !important;
    }
    .home-form-wr .form-right-side {
        padding: 24px 16px !important;
    }
}

/* ========================================
   WORKS WITH WHAT YOU ALREADY USE SECTION
   ======================================== */

.works-with-section {
    background: #F8F9FB;
    padding: 80px 20px;
    overflow: hidden;
}

.works-with-wrap {
    max-width: 100%;
    margin: 0 auto;
}

.works-with-title {
    text-align: center;
    margin-bottom: 16px;
}
.works-with-sub-title{
    max-width: 1020px;
    margin: 0 auto;
    margin-bottom: 60px;
    text-align: center;
}

.works-with-scroll-container {
    overflow: hidden;
    position: relative;
    margin-top: 80px;
}

.works-with-logos {
    display: flex;
    align-items: center;
    gap: 120px;
    animation: scrollLogos 30s linear infinite;
    width: fit-content;
}

.works-with-logos:hover {
    animation-play-state: paused;
}
.works-with-scroll-reverse .works-with-logos img{
    max-height: 30px;
}
.works-with-scroll-reverse .works-with-logos {
    animation: scrollLogosReverse 30s linear infinite;
}
.works-with-scroll-reverse .works-with-logos:hover {
    animation-play-state: paused;
}
.built-learn-more{
    font-family: Inter;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 31px;
    letter-spacing: -1%;
    color: #1A6DF9;
    padding: 1px 16px;
    border-radius: 5px;
    background-color: #fff;
    text-transform: capitalize;
    width: max-content;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
    margin-top: 0;
}

.lt-img-card:hover .built-learn-more {
    max-height: 100px;
    opacity: 1;
    margin-top: 14px;
}
.works-with-logos img {
    height: auto;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    opacity: 1;
    transition: opacity 0.3s ease;
    max-height: 30px;
}

.works-with-logos img:hover {
    opacity: 1;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollLogosReverse {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Responsive */
@media only screen and (max-width: 768px) {
    .works-with-section {
        padding: 60px 20px;
    }
    
    .works-with-logos {
        gap: 40px;
    }
    
    .works-with-logos img {
        height: 40px;
    }
}

@media only screen and (max-width: 480px) {
    .works-with-section {
        padding: 50px 16px;
    }
    
    .works-with-logos {
        gap: 30px;
    }
    
    .works-with-logos img {
        height: 35px;
    }
}

/* ========================================
   HEAR FROM OUR CLIENTS SECTION
   ======================================== */

.home-client-section {
    padding: 60px 0;
    background-color: #F4F8FF;
}

.home-client-section h2 {
    text-align: center;
}

.home-client-section .swiper {
    width: 100%;
    padding-bottom: 20px;
    padding-top: 40px;
}

.home-client-section .swiper-wrapper {
    display: flex;
    align-items: center;
}

.home-client-section .swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    padding: 30px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease-in-out, opacity 0.5s;
    opacity: 0.6;
    transform: scale(0.9);
}

.home-client-section .swiper-slide-active {
    transform: scale(1);
    opacity: 1;
    z-index: 2;
    border: 3px solid #007bff;
    box-shadow: 0px 4px 50px 0px #0000002B;
}

.home-client-section .quote {
    margin-left: 0;
    margin-right: auto;
    margin-bottom: 24px;
    padding: 0 30px;
}

.home-client-section .testimonial-text {
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 32px;
    color: #333333;
    padding: 0 30px;
    margin-bottom: 0;
}

.testimonial-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 0 30px;
    padding-top: 34px;
    border-top: 1px solid #EEEEEE;
    margin-top: 40px;
}

.home-client-section .testimonial-author {
    display: flex;
    align-items: center;
}

.home-client-section .testimonial-author img {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    margin-right: 16px;
}

.home-client-section .swiper-button-next,
.home-client-section .swiper-button-prev {
    color: #007bff;
    position: absolute;
    top: unset !important;
    bottom: 0 !important;
}

.home-client-section .swiper-button-next {
    position: relative !important;
    right: unset !important;
    top: unset !important;
    left: 57px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    margin-top: 0;
    width: 45px;
}

.home-client-section .swiper-button-next:after {
    content: '' !important;
    height: 45px;
    width: 45px;
    background-image: url('../img/slider-next-icon.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.home-client-section .swiper-button-next:hover:after {
    filter: brightness(0) saturate(100%) invert(30%) sepia(87%) saturate(2048%) hue-rotate(202deg) brightness(95%) contrast(99%);
}

.home-client-section .swiper-button-prev {
    position: relative;
    left: unset !important;
    top: 45px !important;
    margin-left: auto;
    margin-right: auto;
    margin-top: 17px;
    width: 45px;
}

.home-client-section .swiper-button-prev:after {
    content: '' !important;
    height: 45px;
    width: 45px;
    background-image: url('../img/slider-prev-icon.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.home-client-section .swiper-button-prev:hover:after {
    filter: brightness(0) saturate(100%) invert(30%) sepia(87%) saturate(2048%) hue-rotate(202deg) brightness(95%) contrast(99%);
}

.home-client-section .swiper-pagination-bullet {
    background: #007bff;
}

.client-name {
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #323232;
}

.client-designation {
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    color: #333333;
}

/* Responsive */
@media only screen and (max-width: 768px) {
    .home-client-section {
        padding: 50px 20px;
    }
    
    .home-client-section .swiper-slide {
        padding: 20px 0;
    }
    
    .home-client-section .testimonial-text {
        font-size: 16px;
        line-height: 28px;
    }
    
    .home-client-section .testimonial-author img {
        width: 80px;
        height: 80px;
    }
    
    .testimonial-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

@media only screen and (max-width: 480px) {
    .home-client-section .testimonial-text {
        font-size: 15px;
        line-height: 26px;
        padding: 0 20px;
    }
    
    .home-client-section .quote {
        padding: 0 20px;
    }
    
    .testimonial-flex {
        padding: 0 20px;
        padding-top: 24px;
        margin-top: 30px;
    }
}

/* ========================================
   REUSABLE BUTTON — .ai-service-btn
   height 46px, hover: bold text + slight scale
   ======================================== */

.ai-service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    padding: 0 28px;
    border-radius: 7px;
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    border: none;
    outline: none;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    letter-spacing: -0.01em;
    overflow: hidden;
}

.ai-service-btn span {
    display: inline-block;
    transition: all 0.3s ease;
}

.ai-service-btn:hover {
    text-decoration: none;
}

.ai-service-btn:hover span {
    font-weight: 700;
}

/* Variant: solid blue (primary) */
.ai-service-btn--primary {
    background-color: #074EB9;
    color: #fff !important;
}
.ai-service-btn--primary:hover {
    /* background-color: #0643a0; */
    /* color: #fff !important; */
    box-shadow: 0 4px 14px rgba(7, 78, 185, 0.35);
}

/* Variant: white on dark bg (hero) */
.ai-service-btn--white {
    background-color: #fff;
    color: #074EB9 !important;
    border: 2px solid #fff;
}
.ai-service-btn--white:hover {
    color: #2571F0 !important;
    box-shadow: 0 4px 14px rgba(7, 78, 185, 0.35);
}

/* Variant: outlined blue */
.ai-service-btn--outline {
    background-color: transparent;
    color: #074EB9 !important;
    border: 2px solid #074EB9;
}
.ai-service-btn--outline:hover {
    background-color: #074EB9;
    color: #fff !important;
}

.ai-service-btn--light-outline {
    background-color: transparent;
    color: #fff !important;
    border: 2px solid #fff;
    border-radius: 4px;
}
.ai-service-btn--light-outline:hover {
    background-color: #fff;
    color: #074EB9 !important;
    box-shadow: 0 4px 14px rgba(255,255,255,0.2);
}

@media only screen and (max-width: 600px) {
    .ai-services-cta .ai-service-btn{
        height: auto;
        min-height: 48px;
        padding-top: 8px;
        padding-bottom: 8px;
    }
}

/* ========================================
   WHY MOST HEALTHCARE AI PROJECTS SECTION
   ======================================== */

.why-ai-section {
    background: #F0F2F8;
    padding: 90px 20px;
}

.why-ai-wrap {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.why-ai-title {
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 14px;
}

.why-ai-subtitle {
    max-width: 1200px;
    margin: 0 auto 40px;
}

/* Outer card */
.why-ai-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0px 4px 4px 0px #00000040;
    display: grid;
    grid-template-columns: 1fr 1fr 410px;
    gap: 0;
    text-align: left;
}

/* Left 2-col grid pane */
.why-ai-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column: span 2;
    margin-right: 50px;
}

.why-ai-cell {
    padding: 20px;
    border-bottom: 1px solid #F0F2F8;
    border-right: 1px solid #F0F2F8;
}

/* Remove borders on last row */
.why-ai-cell:nth-child(3),
.why-ai-cell:nth-child(4) {
    border-bottom: none;
}

/* Remove right border on every second cell */
.why-ai-cell:nth-child(even) {
    border-right: none;
}

.why-ai-cell:nth-child(odd) {
    padding-left: 0;
}

.why-ai-cell-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 14px;
}
.why-ai-cell-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.why-ai-cell h4 {
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 32px;
    color: #252840;
    margin-bottom: 8px;
}

.why-ai-cell p {
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: #252840B2;
    margin: 0;
}

/* Right highlighted pane */
.why-ai-highlight {
    border: 1px solid #0000000D;
    background: #F0F2F8;
    border-radius: 10px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
}

.why-ai-highlight-icon {
    width: 60px;
    height: 60px;
    background: #F07030;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.why-ai-highlight-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.why-ai-highlight h4 {
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 32px;
    color: #252840;
    margin-bottom: 8px;
}

.why-ai-highlight p {
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 32px;
    color: #252840B2;
    margin-bottom: 30px;
}
.why-ai-highlight .ai-service-btn.ai-service-btn--primary {
    text-align: center;
    line-height: 1.2;
}
/* ========================================
   WHY AI SECTION — RESPONSIVE FIXES
   ======================================== */

/* ── Tablet: 1024px ── */
@media only screen and (max-width: 1024px) {

    .why-ai-card {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .why-ai-grid {
        grid-column: span 1;
        grid-template-columns: 1fr 1fr;
        margin-right: 0;
        border-bottom: 1px solid #EAEDF3;
        padding-bottom: 30px;
        margin-bottom: 0;
    }

    /* Reset all cell borders then re-apply for 2-col layout */
    .why-ai-cell {
        border-right: 1px solid #F0F2F8;
        border-bottom: 1px solid #F0F2F8;
    }

    .why-ai-cell:nth-child(even) {
        border-right: none;
    }

    .why-ai-cell:nth-child(3),
    .why-ai-cell:nth-child(4) {
        border-bottom: none;
    }

    .why-ai-cell:nth-child(odd) {
        padding-left: 20px;
    }

    .why-ai-highlight {
        border-radius: 10px;
        margin-top: 30px;
        align-items: flex-start;
        padding: 30px;
    }
}

/* ── Small tablet / large mobile: 768px ── */
@media only screen and (max-width: 768px) {

    .why-ai-section {
        padding: 60px 20px;
    }

    .why-ai-card {
        padding: 24px;
    }

    .why-ai-cell h4 {
        font-size: 18px;
        line-height: 26px;
    }

    .why-ai-cell p {
        font-size: 15px;
        line-height: 24px;
    }

    .why-ai-highlight h4 {
        font-size: 18px;
        line-height: 26px;
    }

    .why-ai-highlight p {
        font-size: 15px;
        line-height: 26px;
        margin-bottom: 24px;
    }

    .why-ai-highlight {
        padding: 24px;
    }
}

/* ── Mobile: 600px ── */
@media only screen and (max-width: 600px) {

    .why-ai-section {
        padding: 50px 16px;
    }

    .why-ai-card {
        padding: 20px;
        border-radius: 12px;
    }

    /* Stack grid to single column */
    .why-ai-grid {
        grid-template-columns: 1fr;
        padding-bottom: 20px;
    }

    /* Reset all cell borders for single column */
    .why-ai-cell {
        border-right: none !important;
        border-bottom: 1px solid #F0F2F8;
        padding: 16px 0 !important;
    }

    .why-ai-cell:last-child {
        border-bottom: none;
    }

    /* Override nth-child bottom-border resets from desktop */
    .why-ai-cell:nth-child(3),
    .why-ai-cell:nth-child(4) {
        border-bottom: 1px solid #F0F2F8;
    }

    .why-ai-cell:nth-child(4) {
        border-bottom: none;
    }

    .why-ai-highlight {
        padding: 20px;
        margin-top: 20px;
    }

    .why-ai-highlight-icon {
        width: 50px;
        height: 50px;
        border-radius: 8px;
    }

    .why-ai-highlight-icon img {
        width: 24px;
        height: 24px;
    }

    .why-ai-highlight h4 {
        font-size: 16px;
        line-height: 24px;
    }

    .why-ai-highlight p {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 20px;
    }

    /* Full-width button on mobile */
    .why-ai-highlight .ai-service-btn {
        width: 100%;
        justify-content: center;
        font-size: 14px;
        padding: 0 16px;
    }
}

/* ── Very small mobile: 400px ── */
@media only screen and (max-width: 400px) {

    .why-ai-cell h4 {
        font-size: 16px;
    }

    .why-ai-cell p {
        font-size: 14px;
    }
}

/* ========================================
   BUILD & INTEGRATE AI SOLUTIONS SECTION
   ======================================== */

.build-ai-section {
    background: #F0F2F8;
    padding: 90px 20px;
}

.build-ai-wrap {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.build-ai-title {
    margin-bottom: 16px;
}

.build-ai-subtitle {
    max-width: 1200px;
    margin: 0 auto 48px;
}

/* Grid: 3 cols, highlight card spans rows 2–3 in col 3 */
.build-ai-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto auto;
    /* border: 1px solid #E8ECF4; */
    gap: 16px;
    border-radius: 12px;
    overflow: hidden;
    text-align: left;
}

/* Regular service cells */
.build-ai-cell {
    padding: 30px 25px;
    border-radius: 10px;
    border: 1px solid #0000001A;
    transition: background 0.25s ease;
    background-color: #fff;
}

.build-ai-cell:hover {
    background: #003AA5;
}
.build-ai-cell:hover h4, .build-ai-cell:hover p{
    color: #fff !important;
}
/* Remove right border on every 3rd cell (before highlight col) */
.build-ai-cell:nth-child(3n) {
    border-right: none;
}

/* Last two cells (row 3, cols 1 & 2) — no bottom border */
.build-ai-cell:nth-last-child(1),
.build-ai-cell:nth-last-child(2) {
    border-bottom: none;
}

/* Cell icon */
.build-ai-cell-icon {
    width: 60px;
    height: 60px;
    border: 1px solid #074EB94D;
    background: #074EB90F;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: background 0.25s ease;
}
.build-ai-cell:hover .build-ai-cell-icon {
    background: #D8E8FF;
}
.build-ai-cell-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.build-ai-cell h4 {
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 32px;
    color: #252840;
    margin-bottom: 8px;
}

.build-ai-cell p {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #252840B2;
    margin: 0;
}

/* Highlighted card — column 3, rows 2–3 */
.build-ai-highlight {
    padding: 25px;
    grid-column: 3;
    grid-row: 2 / 4;
    background: #074EB9;
    box-shadow: 0px 2px 2px 0px #0000001F;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.build-ai-highlight-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 10px;
}

.build-ai-highlight-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.build-ai-highlight:hover .build-ai-highlight-img img {
    transform: scale(1.05);
}

.build-ai-highlight-body {
    flex: 1;
    padding-top: 18px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
}

.build-ai-highlight-body p {
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 33px;
    color: #fff;
    margin-bottom: 10px;
}

.build-ai-highlight-body .build-ai-highlight-span p {
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    color: #fff;
    display: block;
    margin-bottom: 24px;
}

/* ========================================
   RESPONSIVE — BUILD AI SECTION
   ======================================== */

/* ── Tablet: 1024px ── */
@media only screen and (max-width: 1024px) {

    .build-ai-section {
        padding: 70px 20px;
    }

    .build-ai-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: unset;
        overflow: visible;
    }

    /* Reset desktop nth-child border rules */
    .build-ai-cell:nth-child(3n) {
        border-right: 1px solid #0000001A;
    }
    .build-ai-cell:nth-child(2n) {
        border-right: none;
    }
    .build-ai-cell:nth-last-child(1),
    .build-ai-cell:nth-last-child(2) {
        border-bottom: 1px solid #0000001A;
    }

    /* Highlight spans full width, switches to row layout */
    .build-ai-highlight {
        grid-column: span 2;
        grid-row: unset;
        flex-direction: row;
        align-items: stretch;
        gap: 24px;
    }

    .build-ai-highlight-img {
        flex: 0 0 280px;
        height: auto;
        min-height: 220px;
    }

    .build-ai-highlight-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .build-ai-highlight-body {
        padding-top: 0;
        justify-content: center;
    }
}

/* ── Small tablet: 768px ── */
@media only screen and (max-width: 768px) {

    .build-ai-section {
        padding: 60px 20px;
    }

    .build-ai-grid {
        grid-template-columns: 1fr;
    }

    /* Reset all cell borders for single column */
    .build-ai-cell {
        border-right: none !important;
        border-bottom: 1px solid #0000001A !important;
    }

    .build-ai-cell:last-of-type {
        border-bottom: none !important;
    }

    /* Highlight stacks back to column */
    .build-ai-highlight {
        grid-column: span 1;
        flex-direction: column;
        gap: 0;
    }

    .build-ai-highlight-img {
        flex: none;
        width: 100%;
        height: 220px;
    }

    .build-ai-highlight-img img {
        height: 100%;
        object-fit: cover;
    }

    .build-ai-highlight-body {
        padding-top: 20px;
    }

    .build-ai-highlight-body p {
        font-size: 20px;
        line-height: 28px;
    }

    .build-ai-highlight-body .build-ai-highlight-span p {
        font-size: 15px;
        line-height: 24px;
    }

    .build-ai-cell h4 {
        font-size: 18px;
        line-height: 26px;
    }

    .build-ai-cell p {
        font-size: 15px;
        line-height: 24px;
    }
}

/* ── Mobile: 600px ── */
@media only screen and (max-width: 600px) {

    .build-ai-section {
        padding: 50px 16px;
    }

    .build-ai-subtitle {
        font-size: 15px;
    }

    .build-ai-highlight-img {
        height: 180px;
    }

    .build-ai-highlight-body p {
        font-size: 18px;
        line-height: 26px;
    }

    .build-ai-highlight-body .build-ai-highlight-span p {
        font-size: 14px;
        margin-bottom: 18px;
    }

    /* Full width button on mobile */
    .build-ai-highlight .ai-service-btn {
        width: 100%;
        justify-content: center;
        font-size: 14px;
    }
}

/* ── Very small mobile: 480px ── */
@media only screen and (max-width: 480px) {

    .build-ai-cell {
        padding: 22px 18px;
    }

    .build-ai-cell-icon {
        width: 50px;
        height: 50px;
    }

    .build-ai-cell-icon img {
        width: 26px;
        height: 26px;
    }

    .build-ai-cell h4 {
        font-size: 16px;
        line-height: 24px;
    }

    .build-ai-highlight {
        padding: 20px;
    }

    .build-ai-highlight-img {
        height: 160px;
    }

    .build-ai-highlight-body p {
        font-size: 16px;
        line-height: 24px;
    }
}

/* ========================================
   ADVANCED AI AGENTS SECTION
   ======================================== */

.ai-agents-section {
    background: #fff;
    padding: 90px 20px;
}

.ai-agents-wrap {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 70px;
}

/* ── Left image column ── */
.ai-agents-img-col {
    flex: 0 0 600px;
    max-width: 600px;
}

.ai-agents-img-wrapper {
    border-radius: 20px;
    overflow: hidden;
    line-height: 0;
}

.ai-agents-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.ai-agents-img-wrapper:hover img {
    transform: scale(1.03);
}

/* ── Right content column ── */
.ai-agents-content-col {
    flex: 1;
}

.ai-agents-title {
    margin-bottom: 16px;
}

.ai-agents-desc {
    margin-bottom: 28px;
}

/* 2×2 feature card grid */
.ai-agents-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px 14px;
    margin-bottom: 32px;
}

.ai-agents-card {
    padding: 2px 15px;
    border-left: 2px solid #E6E8EE;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    position: relative;
}

/* .ai-agents-card:hover {
    border-color: #074EB9;
    box-shadow: 0 2px 12px rgba(7, 78, 185, 0.1);
} */

.ai-agents-card h4 {
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: #074EB9;
    margin-bottom: 6px;
}

.ai-agents-card p {
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 25px;
    color: #252840B2;
    margin: 0;
}

/* ========================================
   RESPONSIVE — AI AGENTS SECTION
   ======================================== */

/* ── Large desktop trim: 1200px ── */
@media only screen and (max-width: 1200px) {

    .ai-agents-img-col {
        flex: 0 0 420px;
        max-width: 420px;
    }

    .ai-agents-wrap {
        gap: 50px;
    }

    .ai-agents-card h4 {
        font-size: 18px;
        line-height: 26px;
    }

    .ai-agents-card p {
        font-size: 15px;
        line-height: 23px;
    }
}

/* ── Tablet: 1024px ── */
@media only screen and (max-width: 1024px) {

    .ai-agents-section {
        padding: 70px 20px;
    }

    .ai-agents-wrap {
        flex-direction: column;
        gap: 36px;
    }

    .ai-agents-img-col {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .ai-agents-img-wrapper {
        border-radius: 16px;
        max-height: 420px;
        overflow: hidden;
    }

    .ai-agents-img-wrapper img {
        width: 100%;
        height: 420px;
        object-fit: cover;
        border-radius: 16px;
    }

    /* Content col takes full width */
    .ai-agents-content-col {
        width: 100%;
    }

    /* Keep 2-col card grid on tablet */
    .ai-agents-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px 14px;
    }
}

/* ── Small tablet: 768px ── */
@media only screen and (max-width: 768px) {

    .ai-agents-section {
        padding: 60px 20px;
    }

    .ai-agents-img-wrapper {
        max-height: 340px;
    }

    .ai-agents-img-wrapper img {
        height: 340px;
    }

    .ai-agents-grid {
        gap: 16px 12px;
    }

    .ai-agents-card h4 {
        font-size: 16px;
        line-height: 24px;
    }

    .ai-agents-card p {
        font-size: 14px;
        line-height: 22px;
    }
}

/* ── Mobile: 600px ── */
@media only screen and (max-width: 600px) {

    .ai-agents-section {
        padding: 50px 16px;
    }

    .ai-agents-wrap {
        gap: 28px;
    }

    .ai-agents-img-wrapper {
        border-radius: 12px;
        max-height: 280px;
    }

    .ai-agents-img-wrapper img {
        height: 280px;
        border-radius: 12px;
    }

    /* Stack cards to single column */
    .ai-agents-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 28px;
    }

    .ai-agents-card {
        padding: 2px 14px;
    }

    .ai-agents-card h4 {
        font-size: 16px;
        line-height: 22px;
    }

    .ai-agents-card p {
        font-size: 14px;
        line-height: 21px;
    }

    /* Full width button */
    .ai-agents-content-col .ai-service-btn {
        width: 100%;
        justify-content: center;
        font-size: 14px;
    }
}

/* ── Very small mobile: 400px ── */
@media only screen and (max-width: 400px) {

    .ai-agents-img-wrapper img {
        height: 220px;
    }

    .ai-agents-card h4 {
        font-size: 15px;
    }

    .ai-agents-card p {
        font-size: 13px;
    }
}

/* ========================================
   AI-POWERED MEDICAL BILLING SECTION
   ======================================== */

.rcm-billing-section {
    background: #F0F2F8;
    padding: 90px 20px;
}

.rcm-billing-wrap {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 70px;
}

/* ── Left content ── */
.rcm-billing-content {
    flex: 1;
}

.rcm-billing-title {
    margin-bottom: 16px;
}

.rcm-billing-desc {
    margin-bottom: 32px;
}

/* 2×3 feature grid */
.rcm-billing-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 32px;
}

.rcm-billing-feature-item {
    display: flex;
    align-items: center;
    gap: 11px;
    background: #fff;
    border-radius: 8px;
    padding: 16px 18px;
    transition: border-color 0.25s ease, box-shadow 0.20s ease;
}

.rcm-billing-feature-item:hover {
   box-shadow: 0px 2px 4px 0px #00000026;
}

.rcm-billing-feature-item img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    object-fit: contain;
}

.rcm-billing-feature-item span {
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: #252840;
}

/* ── Right stats card ── */
.rcm-billing-stats-col {
    flex: 0 0 600px;
    max-width: 600px;
}

.rcm-billing-image-col {
    border-radius: 20px;
    overflow: hidden;
    line-height: 0;
}
.rcm-billing-image-col img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.rcm-billing-image-col:hover img {
    transform: scale(1.03);
}

.rcm-billing-stats-card {
    background-color: #074EB9;
    border-radius: 10px;
    padding: 45px 62px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.rcm-billing-stat {
    padding: 25px 20px;
    position: relative;
    transition: all 0.6s ease;
}

.rcm-billing-stat::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.6s ease;
}

.rcm-billing-stat:last-child::after {
    display: none;
}

.rcm-billing-stat:hover::after {
    background: #fff;
    height: 2px;
    display: block;
}

.rcm-billing-stat-number {
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 4px;
}

.rcm-billing-stat-label {
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
}

.rcm-billing-stat-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    width: 100%;
}

/* ========================================
   RESPONSIVE — BILLING SECTION
   ======================================== */

/* ── Large desktop trim: 1200px ── */
@media only screen and (max-width: 1200px) {

    .rcm-billing-wrap {
        gap: 50px;
    }

    .rcm-billing-stats-col {
        flex: 0 0 420px;
        max-width: 420px;
    }

    .rcm-billing-stats-card {
        padding: 36px 44px;
    }

    .rcm-billing-stat {
        border: none !important;
        padding: 22px 16px;
    }

    .rcm-billing-stat-number {
        font-size: 30px;
    }

    .rcm-billing-stat-label {
        font-size: 16px;
    }

    .rcm-billing-feature-item span {
        font-size: 16px;
        line-height: 24px;
    }
}

/* ── Tablet: 1024px ── */
@media only screen and (max-width: 1024px) {

    .rcm-billing-section {
        padding: 70px 20px;
    }

    .rcm-billing-wrap {
        flex-direction: column;
        gap: 40px;
    }

    .rcm-billing-content {
        width: 100%;
    }

    .rcm-billing-stats-col {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .rcm-billing-stats-card {
        padding: 32px 36px;
    }

    .rcm-billing-stat {
        border: none !important;
        padding: 20px 14px;
    }

    .rcm-billing-stat-number {
        font-size: 32px;
    }

    .rcm-billing-stat-label {
        font-size: 15px;
    }
}

/* ── Small tablet: 768px ── */
@media only screen and (max-width: 768px) {

    .rcm-billing-section {
        padding: 60px 20px;
    }

    .rcm-billing-stats-card {
        padding: 28px 28px;
    }

    .rcm-billing-stat {
        border: none !important;
        padding: 18px 0;
    }

    .rcm-billing-features {
        gap: 10px;
    }

    .rcm-billing-feature-item {
        padding: 13px 14px;
    }

    .rcm-billing-feature-item span {
        font-size: 15px;
        line-height: 22px;
    }

    .rcm-billing-stat-number {
        font-size: 28px;
    }

    .rcm-billing-stat-label {
        font-size: 14px;
    }
}

/* ── Mobile: 600px ── */
@media only screen and (max-width: 600px) {

    .rcm-billing-section {
        padding: 50px 16px;
    }

    .rcm-billing-features {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 28px;
    }

    .rcm-billing-feature-item span {
        font-size: 15px;
    }

    .rcm-billing-stats-card {
        padding: 24px 22px;
    }

    .rcm-billing-stat {
        border: none !important;
        padding: 16px 0;
    }

    .rcm-billing-stat-number {
        font-size: 26px;
    }

    .rcm-billing-stat-label {
        font-size: 14px;
        line-height: 1.5;
    }

    .rcm-billing-content .ai-service-btn {
        width: 100%;
        justify-content: center;
        font-size: 14px;
    }
}

/* ── Very small mobile: 400px ── */
@media only screen and (max-width: 400px) {

    .rcm-billing-stats-card {
        padding: 20px 18px;
    }

    .rcm-billing-stat {
        border: none !important;
        padding: 14px 0;
    }

    .rcm-billing-stat-number {
        font-size: 24px;
    }

    .rcm-billing-feature-item {
        padding: 12px 12px;
    }

    .rcm-billing-feature-item span {
        font-size: 14px;
    }
}

/* ========================================
   HEALTHCARE AI SOFTWARE DEVELOPMENT SERVICES SECTION
   ======================================== */

.ai-services-section {
    background-image: url('../img/ai-services-section-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 70px 0 70px;
    padding-bottom: 80px;
    position: relative;
    width: 100%;
}

/* Header — constrained width, centred */
.ai-services-header {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px 41px;
}
.ai-services-header h2{
    margin-bottom: 10px;
}
/* Grid — full viewport width with fixed empty edge columns */
.ai-services-grid {
    display: grid;
    grid-template-columns: 200px repeat(3, 1fr) 200px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    border-left: 1px solid rgba(255, 255, 255, 0.10);
    width: 100%;
}

/* Empty edge cells — decorative border columns */
.ai-services-edge {
    border-right: 1px solid rgba(255, 255, 255, 0.10);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

/* Individual card */
.ai-services-card {
    padding: 45px 45px;
    border-right: 1px solid rgba(255, 255, 255, 0.10);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    transition: background-color 0.3s ease;
    cursor: default;
}

.ai-services-card:hover {
    background-color: #003AA5;
}

/* Icon box */
.ai-services-icon {
    width: 60px;
    height: 60px;
    background: #003AA5;
    border: 1px solid #FFFFFF4D;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    transition: background-color 0.3s ease;
}

.ai-services-card:hover .ai-services-icon {
    border: 1px solid #FFFFFF80;
}

.ai-services-icon img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Card text */
.ai-services-card h4 {
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 32px;
    color: #fff;
    margin-bottom: 10px;
}

.ai-services-card p {
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 32px;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
}

/* CTA row */
.ai-services-cta {
    text-align: center;
    padding: 50px 20px;
    border-bottom: 1px solid #FFFFFF1A;
}

/* ========================================
   RESPONSIVE — AI SERVICES SECTION
   ======================================== */

/* ── Hide edge columns at 1300px ── */
@media only screen and (max-width: 1300px) {

    .ai-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .ai-services-edge {
        display: none;
    }

    .ai-services-card {
        padding: 40px 36px;
    }

    .ai-services-card h4 {
        font-size: 20px;
        line-height: 28px;
    }

    .ai-services-card p {
        font-size: 18px;
        line-height: 28px;
    }
}

/* ── Tablet: 1024px ── */
@media only screen and (max-width: 1024px) {

    .ai-services-section {
        padding: 60px 0;
    }

    .ai-services-header {
        padding: 0 20px 36px;
    }

    .ai-services-card {
        padding: 32px 26px;
    }

    .ai-services-icon {
        width: 52px;
        height: 52px;
    }

    .ai-services-icon img {
        width: 28px;
        height: 28px;
    }

    .ai-services-card h4 {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 8px;
    }

    .ai-services-card p {
        font-size: 16px;
        line-height: 26px;
    }

    .ai-services-cta {
        padding: 40px 20px;
    }
}

/* ── Small tablet: 768px ── */
@media only screen and (max-width: 768px) {

    .ai-services-section {
        padding: 50px 0;
    }

    .ai-services-header {
        padding: 0 20px 32px;
    }

    /* Switch to 2-col grid */
    .ai-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ai-services-card {
        padding: 28px 24px;
    }

    .ai-services-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 12px;
    }

    .ai-services-icon img {
        width: 26px;
        height: 26px;
    }

    .ai-services-card h4 {
        font-size: 16px;
        line-height: 24px;
    }

    .ai-services-card p {
        font-size: 14px;
        line-height: 22px;
    }

    .ai-services-cta {
        padding: 36px 20px;
    }

    /* Full width button on small tablet */
    .ai-services-cta .ai-service-btn {
        width: 100%;
        max-width: 480px;
        justify-content: center;
        font-size: 14px;
    }
}

/* ── Mobile: 600px ── */
@media only screen and (max-width: 600px) {

    .ai-services-section {
        padding: 46px 0;
    }

    .ai-services-header {
        padding: 0 16px 28px;
    }

    /* Single column */
    .ai-services-grid {
        grid-template-columns: 1fr;
    }

    .ai-services-card {
        padding: 26px 20px;
    }

    .ai-services-icon {
        width: 46px;
        height: 46px;
    }

    .ai-services-icon img {
        width: 24px;
        height: 24px;
    }

    .ai-services-card h4 {
        font-size: 16px;
        line-height: 22px;
    }

    .ai-services-card p {
        font-size: 14px;
        line-height: 21px;
    }

    .ai-services-cta {
        padding: 30px 16px;
    }

    .ai-services-cta .ai-service-btn {
        width: 100%;
        justify-content: center;
        font-size: 14px;
        padding: 0 16px;
    }
    .ai-services-cta{
        padding: 32px 20px;
    }
}

/* ── Very small mobile: 400px ── */
@media only screen and (max-width: 400px) {

    .ai-services-section {
        padding: 40px 0;
    }

    .ai-services-header {
        padding: 0 16px 24px;
    }

    .ai-services-card {
        padding: 22px 16px;
    }

    .ai-services-icon {
        width: 42px;
        height: 42px;
        border-radius: 8px;
    }

    .ai-services-icon img {
        width: 22px;
        height: 22px;
    }

    .ai-services-card h4 {
        font-size: 15px;
    }

    .ai-services-card p {
        font-size: 13px;
    }
}

/* ========================================
   CONNECTED AI WORKFLOWS WITH EHR SECTION
   ======================================== */

.ai-ehr-section {
    background: #fff;
    padding: 90px 20px;
}

.ai-ehr-wrap {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* ── Left blue card ── */
.ai-ehr-left-card {
    flex: 0 0 600px;
    max-width: 600px;
    background: linear-gradient(93.22deg, rgba(26, 109, 249, 0.15) 21.27%, rgba(18, 29, 53, 0.15) 99.76%);
    background-image: url('../img/What-integration-unlocks-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 10px;
    padding: 40px 40px;
    padding-top: 60px;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.ai-ehr-left-card h3 {
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 47px;
    color: #fff;
    margin-bottom: 28px;
}

.ai-ehr-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ai-ehr-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    color: #FFFFFF;
}


.ai-ehr-check-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-top: 1px;
    object-fit: contain;
}

/* ── Right content ── */
.ai-ehr-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ai-ehr-right .common-section-heading {
    margin-bottom: 12px;
}

.ai-ehr-right .common-section-subheading {
    margin-bottom: 16px;
}

/* Standards & protocols card */
.ai-ehr-standards-card {
    border: 1px solid #0000000D;
    border-radius: 6px;
    padding: 22px 25px;
    background: #074EB912;
    margin-bottom: 30px;
}

.ai-ehr-standards-block,
.ai-ehr-platforms-block {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ai-ehr-standards-label {
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.01em;
    color: #252840;
    text-transform: uppercase;
}

/* Tags */
.ai-ehr-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.ai-ehr-tag {
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
    color: #074EB9;
    background: #074EB90D;
    border: 1px solid #00000014;
    border-radius: 6px;
    padding: 4px 16px;
    opacity: 0.8;
}

/* EHR platform logos */
.ai-ehr-logos {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.ai-ehr-logos img {
    height: auto;
    max-height: 28px;
    width: auto;
    object-fit: contain;
    opacity: 1;
    transition: opacity 0.25s ease;
}

.ai-ehr-logos img:hover {
    opacity: 0.8;
}

/* ========================================
   RESPONSIVE — EHR SECTION
   ======================================== */

/* ── Large desktop trim: 1200px ── */
@media only screen and (max-width: 1200px) {

    .ai-ehr-wrap {
        gap: 44px;
    }

    .ai-ehr-left-card {
        flex: 0 0 440px;
        max-width: 440px;
        padding: 44px 36px;
    }

    .ai-ehr-left-card h3 {
        font-size: 24px;
        line-height: 36px;
        margin-bottom: 24px;
    }

    .ai-ehr-checklist {
        gap: 24px;
    }

    .ai-ehr-checklist li {
        font-size: 16px;
        line-height: 24px;
    }
}

/* ── Tablet: 1024px ── */
@media only screen and (max-width: 1024px) {

    .ai-ehr-section {
        padding: 70px 20px;
    }

    .ai-ehr-wrap {
        flex-direction: column;
        gap: 32px;
    }

    .ai-ehr-left-card {
        flex: none;
        max-width: 100%;
        width: 100%;
        align-self: auto;
        padding: 40px 36px;
        padding-top: 50px;
    }

    .ai-ehr-left-card h3 {
        font-size: 22px;
        line-height: 32px;
        margin-bottom: 22px;
    }

    .ai-ehr-checklist {
        gap: 22px;
    }

    .ai-ehr-checklist li {
        font-size: 16px;
        line-height: 24px;
    }

    .ai-ehr-right {
        width: 100%;
    }

    /* Full width button on tablet */
    .ai-ehr-right .ai-service-btn {
        width: 100% !important;
        justify-content: center;
    }
}

/* ── Small tablet: 768px ── */
@media only screen and (max-width: 768px) {

    .ai-ehr-section {
        padding: 60px 20px;
    }

    .ai-ehr-left-card {
        padding: 32px 28px;
        padding-top: 40px;
        border-radius: 8px;
    }

    .ai-ehr-left-card h3 {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 20px;
    }

    .ai-ehr-checklist {
        gap: 18px;
    }

    .ai-ehr-checklist li {
        font-size: 15px;
        line-height: 22px;
        gap: 12px;
    }

    .ai-ehr-check-icon {
        width: 20px;
        height: 20px;
    }

    .ai-ehr-standards-card {
        padding: 20px 22px;
    }

    .ai-ehr-tags {
        gap: 10px;
        margin-bottom: 20px;
    }

    .ai-ehr-tag {
        font-size: 13px;
        padding: 4px 12px;
    }

    .ai-ehr-logos {
        gap: 20px;
    }

    .ai-ehr-logos img {
        max-height: 24px;
    }
}

/* ── Mobile: 600px ── */
@media only screen and (max-width: 600px) {

    .ai-ehr-section {
        padding: 50px 16px;
    }

    .ai-ehr-left-card {
        padding: 28px 20px;
        padding-top: 34px;
    }

    .ai-ehr-left-card h3 {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 18px;
    }

    .ai-ehr-checklist {
        gap: 16px;
    }

    .ai-ehr-checklist li {
        font-size: 14px;
        line-height: 21px;
        gap: 10px;
    }

    .ai-ehr-standards-card {
        padding: 18px 16px;
        margin-bottom: 24px;
    }

    .ai-ehr-standards-label {
        font-size: 13px;
    }

    .ai-ehr-tags {
        gap: 8px;
        margin-bottom: 18px;
    }

    .ai-ehr-tag {
        font-size: 12px;
        padding: 3px 10px;
    }

    .ai-ehr-logos {
        gap: 16px;
        flex-wrap: wrap;
    }

    .ai-ehr-logos img {
        max-height: 20px;
    }

    .ai-ehr-right .ai-service-btn {
        width: 100% !important;
        justify-content: center;
        font-size: 14px;
    }
}

/* ── Very small mobile: 400px ── */
@media only screen and (max-width: 400px) {

    .ai-ehr-left-card {
        padding: 24px 16px;
        padding-top: 28px;
    }

    .ai-ehr-left-card h3 {
        font-size: 17px;
        line-height: 24px;
    }

    .ai-ehr-checklist li {
        font-size: 13px;
        line-height: 20px;
    }

    .ai-ehr-check-icon {
        width: 18px;
        height: 18px;
    }

    .ai-ehr-tag {
        font-size: 11px;
        padding: 3px 8px;
    }

    .ai-ehr-logos img {
        max-height: 18px;
    }
}

/* ========================================
   RESPONSIBLE AI, HIPAA, PRIVACY & SECURITY SECTION
   ======================================== */

.ai-hipaa-section {
    background: #F0F2F8;
    padding: 90px 20px;
}

.ai-hipaa-wrap {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 70px;
}

/* ── Left image column ── */
.ai-hipaa-img-col {
    flex: 0 0 600px;
    max-width: 600px;
}

.ai-hipaa-img-wrapper {
    border-radius: 20px;
    overflow: hidden;
    line-height: 0;
}

.ai-hipaa-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.ai-hipaa-img-wrapper:hover img {
    transform: scale(1.05);
}

/* ── Right content ── */
.ai-hipaa-content {
    flex: 1;
}

.ai-hipaa-content .common-section-heading {
    margin-bottom: 14px;
}

.ai-hipaa-content .common-section-subheading {
    margin-bottom: 28px;
}

/* 2-col feature grid */
.ai-hipaa-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px 30px;
    margin-bottom: 32px;
}

.ai-hipaa-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 15px;
    padding-right: 0 !important;
    border-left: 3px solid #074EB94D;
}

/* Remove right border on every second column */
.ai-hipaa-feature-item:nth-child(even) {
    border-right: none;
    padding-left: 20px;
}

.ai-hipaa-feature-item img {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    object-fit: contain;
}

.ai-hipaa-feature-item span {
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #074EB9;
    line-height: 28px;
}

/* ── Large desktop trim: 1200px ── */
@media only screen and (max-width: 1200px) {
    .ai-hipaa-wrap {
        gap: 50px;
    }

    .ai-hipaa-img-col {
        flex: 0 0 420px;
        max-width: 420px;
    }

    .ai-hipaa-feature-item span {
        font-size: 16px;
        line-height: 24px;
    }
}

/* ── Tablet: 1024px ── */
@media only screen and (max-width: 1024px) {
    .ai-hipaa-section {
        padding: 70px 20px;
    }

    .ai-hipaa-wrap {
        flex-direction: column;
        gap: 36px;
    }

    .ai-hipaa-img-col {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .ai-hipaa-img-wrapper {
        border-radius: 16px;
        max-height: 420px;
        overflow: hidden;
    }

    .ai-hipaa-img-wrapper img {
        width: 100%;
        height: 420px;
        object-fit: cover;
        border-radius: 16px;
    }

    .ai-hipaa-content {
        width: 100%;
    }

    .ai-hipaa-content .ai-service-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ── Small tablet: 768px ── */
@media only screen and (max-width: 768px) {
    .ai-hipaa-section {
        padding: 60px 20px;
    }

    .ai-hipaa-img-wrapper {
        max-height: 340px;
    }

    .ai-hipaa-img-wrapper img {
        height: 340px;
    }

    .ai-hipaa-features {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 28px;
    }

    .ai-hipaa-feature-item,
    .ai-hipaa-feature-item:nth-child(even) {
        padding: 8px 12px 8px 15px;
        border-left: 3px solid #074EB94D;
    }

    .ai-hipaa-feature-item span {
        font-size: 16px;
        line-height: 24px;
    }
}

/* ── Mobile: 600px ── */
@media only screen and (max-width: 600px) {
    .ai-hipaa-section {
        padding: 50px 16px;
    }

    .ai-hipaa-img-wrapper {
        border-radius: 12px;
        max-height: 260px;
    }

    .ai-hipaa-img-wrapper img {
        height: 260px;
        border-radius: 12px;
    }

    .ai-hipaa-features {
        gap: 12px;
        margin-bottom: 24px;
    }

    .ai-hipaa-feature-item,
    .ai-hipaa-feature-item:nth-child(even) {
        padding: 7px 10px 7px 13px;
    }

    .ai-hipaa-feature-item span {
        font-size: 15px;
        line-height: 22px;
    }

    .ai-hipaa-content .ai-service-btn {
        width: 100%;
        justify-content: center;
        font-size: 14px;
    }
}

/* ── Very small mobile: 400px ── */
@media only screen and (max-width: 400px) {
    .ai-hipaa-section {
        padding: 40px 14px;
    }

    .ai-hipaa-img-wrapper {
        max-height: 220px;
    }

    .ai-hipaa-img-wrapper img {
        height: 220px;
    }

    .ai-hipaa-feature-item img {
        width: 18px;
        height: 18px;
    }

    .ai-hipaa-feature-item span {
        font-size: 14px;
        line-height: 20px;
    }
}