.paragraph {
    font-size: 16px;
    justify-content: center;
    text-align: justify;
    font-family: "Inter", sans-serif;
    line-height: 25.6px;
    font-weight: 350;
}

/* Management hero section styles */
.management-hero {
    padding: 80px 0;
    background: #ffffff;
}

.management-hero h2 {
    font-size: 2.4rem;
    color: #06214e;
    font-weight: 700;
    margin-bottom: 1rem;
}

.management-hero .lead {
    font-size: 1.05rem;
    color: #33363b;
}

.management-hero img {
    max-width: 100%;
    box-shadow: 0 10px 30px rgba(6, 33, 78, 0.08);
}

.management-hero .common-btn {
    margin-top: 20px;
}

@media (max-width: 991px) {
    .management-hero {
        padding: 60px 0
    }

    .management-hero h2 {
        font-size: 1.6rem
    }
}

/* Hero Image Custom Style */
.hero-image-style {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(6, 33, 78, 0.08);
    /* Following similar shadow pattern */
    transition: transform 0.3s ease;
}

.hero-image-style:hover {
    transform: translateY(-5px);
}

.data-entry-section {
    padding: 40px 20px;
}

.data-entry-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.data-entry-section p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

.data-entry-section b {
    font-weight: 700;
}

/* 
--------------------------- */



.data-services-section {
    padding: 20px;
    background: #ffffff;
}

.data-services-section .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.data-services-section h2 {
    font-size: 2.3rem;
    font-weight: 700;
    color: #06214e;
    margin-bottom: 20px;
    font-family: "Inter", sans-serif;
}

.data-services-section .paragraph {
    font-size: 16px;
    line-height: 25.6px;
    color: #33363b;
    font-family: "Inter", sans-serif;
    margin-bottom: 20px;
    text-align: justify;
}

.data-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.service-card {
    background: #f9fafc;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all .3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.service-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #06214e;
    margin-bottom: 8px;
    font-family: "Inter", sans-serif;
}

.service-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

@media(max-width:768px) {

    .data-services-grid {
        grid-template-columns: 1fr;
    }

    .data-services-section h2 {
        font-size: 1.7rem;
    }

}

.migration-section {
    padding: 80px 0;
    background: #f7f7f7;
    font-family: "Inter", sans-serif;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.migration-section h2 {
    text-align: center;
    font-size: 2.4rem;
    color: #06214e;
    margin-bottom: 15px;
}

.migration-intro {
    text-align: center;
    max-width: 850px;
    margin: auto;
    font-size: 16px;
    line-height: 26px;
    color: #333;
    margin-bottom: 60px;
}

.migration-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.migration-image img {
    width: 100%;
    border-radius: 25px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.service-box {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
    position: relative;
}

.service-box:hover {
    transform: translateY(-6px);
}

.service-box h4 {
    font-size: 18px;
    color: #06214e;
    margin-bottom: 6px;
}

.service-box p {
    font-size: 15px;
    color: #555;
}

/* ICON STYLE */

.icon-circle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 2px dashed #ff7a18;
    margin-bottom: 15px;
    position: relative;
    transition: 0.3s;
}

.icon-circle i {
    color: #ff7a18;
    font-size: 22px;
}

/* rotating dotted ring */

.service-box:hover .icon-circle {
    animation: spin 4s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* responsive */

@media(max-width:991px) {

    .migration-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

}

.digitization-section {
    padding: 80px 0;
    background: #ffffff;
    font-family: "Inter", sans-serif;
    text-align: center;
    /* center heading + paragraph */
}

.digitization-section .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.digitization-section h2 {
    font-size: 2.4rem;
    color: #06214e;
    font-weight: 700;
    margin-bottom: 15px;
}

.digitization-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* center pills horizontally */
    gap: 20px;
    margin-top: 25px;
    margin-bottom: 25px;
}

.digit-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 22px;
    border-radius: 40px;
    border: 1px solid #e3e3e3;
    background: #fff;
    font-size: 16px;
    color: #333;
    transition: 0.3s;
}

.digit-pill i {
    color: #06214e;
    font-size: 18px;
}

.digit-pill:hover {
    border-color: #06214e;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

/* mobile */

@media(max-width:768px) {

    .digitization-points {
        flex-direction: column;
        align-items: center;
    }

}

.industry-data-section {
    padding: 80px 0;
    background: #ffffff;
    font-family: "Inter", sans-serif;
}

.industry-data-section .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.industry-data-section h2 {
    text-align: center;
    font-size: 2.4rem;
    color: #06214e;
    font-weight: 700;
    margin-bottom: 50px;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.industry-card {
    background: #fff;
    padding: 35px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.industry-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    margin-bottom: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f7fb;
    font-size: 26px;
    color: #06214e;
}

.industry-card h3 {
    font-size: 20px;
    color: #06214e;
    margin-bottom: 12px;
}

.industry-card p {
    font-size: 16px;
    line-height: 25.6px;
    color: #33363b;
}

/* responsive */

@media (max-width:991px) {

    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width:600px) {

    .industry-grid {
        grid-template-columns: 1fr;
    }

    .industry-data-section h2 {
        font-size: 1.8rem;
    }

}

.benefits-section {
    padding: 80px 0;
    background: #ffffff;
    font-family: "Inter", sans-serif;
}

.benefits-section .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.benefits-image img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.benefits-content h2 {
    font-size: 2.4rem;
    color: #06214e;
    font-weight: 700;
    margin-bottom: 20px;
}

.benefits-content p {
    font-size: 16px;
    line-height: 26px;
    color: #33363b;
    margin-bottom: 20px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.benefits-list li {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 10px;
    color: #33363b;
}

/* Responsive */

@media(max-width:991px) {

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefits-content h2 {
        font-size: 1.9rem;
    }

}

.data-management-section {
    padding: 90px 0;
    background: #ffffff;
    text-align: center;
    font-family: "Inter", sans-serif;
    position: relative;
}

.data-management-section .container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

.section-tag {
    font-size: 14px;
    font-weight: 600;
    color: #b4642a;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.section-tag span {
    width: 10px;
    height: 10px;
    background: #b4642a;
    border-radius: 50%;
    display: inline-block;
}

.data-management-section h2 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #06214e;
    margin-bottom: 20px;
}

.section-text {
    font-size: 16px;
    line-height: 26px;
    color: #33363b;
    max-width: 900px;
    margin: auto;
    margin-bottom: 20px;
}

.dashboard-image {
    margin-top: 40px;
    margin-bottom: 40px;
}

.dashboard-image img {
    max-width: 700px;
    width: 100%;
}

.cta-btn a {
    display: inline-block;
    background: #b4642a;
    color: #fff;
    padding: 14px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
}

.cta-btn a:hover {
    background: #8d4a1f;
}

/* responsive */

@media(max-width:768px) {

    .data-management-section h2 {
        font-size: 1.9rem;
    }

    .section-text {
        font-size: 15px;
    }

    .dashboard-image img {
        max-width: 100%;
    }

}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: auto;
}

/* center the 5th item */

.services-grid .service-card:nth-child(5) {
    grid-column: 1 / span 2;
    max-width: 500px;
    margin: auto;
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: 0.3s;
}

.service-box:hover {
    transform: translateY(-6px);
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px dashed #ff7a18;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 15px;
}

.icon-circle i {
    font-size: 24px;
    color: #ff7a18;
}

.hr-support-section {
    padding: 0px 0;
    font-family: "Inter", sans-serif;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.support-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 40px;
}

.support-list {
    flex: 1;
}

.support-item {
    padding: 18px 22px;
    background: #f4f4f4;
    border-radius: 12px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 17px;
}

.support-item.active {
    background: #eadfd5;
}

.support-image {
    flex: 1;
    position: relative;
}

.support-image img {
    width: 100%;
    display: none;
}

.support-image img.active {
    display: block;
}

.support-bottom {
    margin-top: 30px;
    font-size: 16px;
    line-height: 26px;
}

/* MOBILE */

@media(max-width:900px) {

    .support-wrapper {
        flex-direction: column;
    }

    .support-image {
        order: -1;
    }

}

.support-image {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    /* light background like your first image */
    border-radius: 20px;
    padding: 40px;
}

.support-image img {
    max-width: 420px;
    /* controls image size */
    width: 100%;
    height: auto;
    display: none;
}

.support-image img.active {
    display: block;
}

.operational-support {
    background: #f9f9f9;
    padding: 80px 0;
    font-family: "Inter", sans-serif;
    text-align: center;
}

.operational-support .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.operational-support h2 {
    font-size: 2.4rem;
    color: #06214e;
    font-weight: 700;
    margin-bottom: 20px;
}

.operational-support p {
    font-size: 16px;
    line-height: 26px;
    color: #33363b;
    margin-bottom: 15px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.operational-support h3 {
    margin-top: 30px;
    margin-bottom: 40px;
    font-size: 1.4rem;
    font-weight: 600;
    color: #06214e;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    justify-content: center;
}

.support-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.support-card:hover {
    transform: translateY(-5px);
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 20px;
}

.icon-circle i {
    font-size: 26px;
    color: #06214e;
}

.support-card h4 {
    font-size: 18px;
    color: #06214e;
    line-height: 1.4;
}

.bottom-text {
    margin-top: 40px;
}

/* responsive */

@media(max-width:1024px) {
    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .support-grid {
        grid-template-columns: 1fr;
    }
}

.remote-backoffice {
    padding: 80px 0;
    background: #ffffff;
    font-family: "Inter", sans-serif;
}

.remote-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.remote-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* IMAGE */

.remote-image {
    flex: 1;
    text-align: center;
    animation: fadeUp 1s ease forwards;
}

.remote-image img {
    max-width: 420px;
    width: 100%;
    border-radius: 12px;
}

/* CONTENT */

.remote-content {
    flex: 1;
    animation: fadeUp 1.2s ease forwards;
}

.remote-content h3 {
    font-size: 1.9rem;
    color: #06214e;
    font-weight: 700;
    margin-bottom: 20px;
}

.remote-content p {
    font-size: 16px;
    line-height: 26px;
    color: #33363b;
    margin-bottom: 15px;
}

/* Animation */

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile */

@media(max-width:900px) {

    .remote-grid {
        flex-direction: column;
        text-align: center;
    }

    .remote-image img {
        max-width: 300px;
    }

}

.bo-benefits-section {
    background: #f9f9f9;
    padding: 90px 20px;
    font-family: "Inter", sans-serif;
}

.bo-benefits-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.bo-benefits-title {
    font-size: 2.4rem;
    color: #06214e;
    font-weight: 700;
    margin-bottom: 15px;
}

.bo-benefits-intro {
    max-width: 800px;
    margin: auto;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 20px;
}

.bo-benefits-subtitle {
    font-size: 1.4rem;
    margin-bottom: 60px;
    color: #06214e;
}

/* timeline line */

.bo-timeline {
    position: relative;
}

.bo-timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    border-left: 2px dashed #d66c2b;
    transform: translateX(-50%);
}

/* items */

.bo-timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box;
}

.bo-left {
    left: 0;
    text-align: right;
}

.bo-right {
    left: 50%;
    text-align: left;
}

/* boxes */

.bo-box {
    border: 2px dashed #d66c2b;
    padding: 20px 25px;
    border-radius: 10px;
    display: inline-block;
    background: white;
    max-width: 400px;
    font-weight: 500;
}

/* numbers */

.bo-number {
    width: 60px;
    height: 60px;
    background: #c86b2c;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    position: absolute;
    top: 15px;
}

.bo-left .bo-number {
    right: -30px;
}

.bo-right .bo-number {
    left: -30px;
}

.bo-benefits-bottom {
    margin-top: 40px;
    font-size: 16px;
}

/* mobile */

@media(max-width:768px) {

    .bo-timeline::before {
        display: none;
    }

    .bo-timeline-item {
        width: 100%;
        left: 0;
        text-align: center;
        padding: 20px 0;
    }

    .bo-number {
        position: relative;
        margin: 0 auto 10px auto;
        left: auto;
        right: auto;
    }

}

.data-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: #f5f6f8;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.service-card h4 {
    margin: 0;
    font-size: 20px;
    color: #0c2d59;
}

/* Center the 7th card */
.data-services-grid .service-card:nth-child(7) {
    grid-column: 1 / span 2;
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
}

.digital-branding-title {
    font-family: 'Poppins', sans-serif;
    font-size: 25px;
    font-weight: 50px;
    letter-spacing: 1px;
    text-align: center;
}

.center-service {
    grid-column: 1 / span 2;
    max-width: 420px;
    margin: 0 auto;
    text-align: center;
}

/* HEADING */

.bsr-heading {
    font-size: 2.4rem;
    color: #06214e;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    text-align: center;
}


/* MAIN SECTION */

.bsr-section {
    padding: 40px 0;
}

.bsr-container {
    display: flex;
    align-items: center;
    gap: 60px;
}


/* LEFT SIDE */

.bsr-left {
    width: 45%;
}

.bsr-item {
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    background: #eef2f7;
    cursor: pointer;
    transition: 0.3s;
}

.bsr-title {
    font-size: 18px;
    font-weight: 600;
    color: #0f2a44;
}

.bsr-desc {
    margin-top: 10px;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    display: none;
}

.bsr-item.active {
    background: #e8f2ff;
    border-left: 5px solid #2b7cff;
}

.bsr-item.active .bsr-desc {
    display: block;
}


/* RIGHT IMAGE */

.bsr-right {
    width: 55%;
    text-align: center;
}

.bsr-img {
    width: 100%;
    max-width: 420px;
    display: none;
}

.bsr-img.active {
    display: block;
}


/* ---------------- */
/* MOBILE RESPONSIVE */
/* ---------------- */

@media (max-width:991px) {

    .bsr-container {
        flex-direction: column;
        gap: 30px;
    }

    .bsr-left {
        width: 100%;
    }

    .bsr-right {
        width: 100%;
    }

    .bsr-heading {
        font-size: 1.9rem;
    }

}


@media (max-width:600px) {

    .bsr-title {
        font-size: 16px;
    }

    .bsr-desc {
        font-size: 14px;
    }

    .bsr-item {
        padding: 15px;
    }

}



/* ======================================================= */

/* Tablet */

@media (max-width: 991px) {

    .migration-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .migration-image {
        text-align: center;
    }

    .migration-image img {
        max-width: 100%;
        height: auto;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

}


/* Mobile */

@media (max-width: 600px) {

    .migration-section h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .migration-intro {
        font-size: 15px;
    }

    .migration-subtitle {
        font-size: 15px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-box {
        text-align: center;
        padding: 15px;
    }

    .icon-circle {
        margin: 0 auto 10px auto;
    }

    .service-box h4 {
        font-size: 15px;
        line-height: 1.4;
    }

    .migration-image img {
        width: 100%;
        max-width: 320px;
    }

}



/* --------------------------------------- */

/* Heading */

.branding-heading {
    text-align: center;
}


/* Paragraph Alignment */

.branding-intro {
    text-align: center;
    max-width: 900px;
    margin: auto;
}

.branding-subtitle {
    text-align: left;
    margin-top: 20px;
    font-weight: 600;
}


/* Grid Layout */

.data-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}


/* Service Card */

.service-card {
    padding: 20px;
    background: #f5f7fb;
    border-radius: 8px;
    text-align: left;
    transition: 0.3s;
}

.service-card h4 {
    font-size: 16px;
    margin: 0;
}


/* Last Card Center */

.service-card-last {
    grid-column: 1 / span 2;
    max-width: 520px;
    margin: 20px auto;
    text-align: center;
}


/* ---------------- */
/* TABLET */
/* ---------------- */

@media (max-width:991px) {

    .data-services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .service-card-last {
        grid-column: 1 / span 2;
    }

}


/* ---------------- */
/* MOBILE */
/* ---------------- */

@media (max-width:600px) {

    .data-services-grid {
        grid-template-columns: 1fr;
    }

    .service-card-last {
        grid-column: auto;
        max-width: 100%;
    }

    .service-card {
        text-align: center;
        padding: 18px;
    }

    .service-card h4 {
        font-size: 15px;
        line-height: 1.4;
    }

    .branding-heading {
        font-size: 1.7rem;
    }

    .branding-intro {
        font-size: 15px;
    }

}



@media (max-width:600px) {

    .migration-section .services-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .migration-section .service-box {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        margin: 0 auto !important;
    }

}

/* ==================================================== */

/* ===================================================== */
/* GLOBAL MOBILE RESPONSIVE FIXES */
/* ===================================================== */

@media (max-width:768px) {

    /* Containers */

    .container {
        padding: 0 15px;
    }

    /* Headings */

    .management-hero h2,
    .data-services-section h2,
    .migration-section h2,
    .digitization-section h2,
    .industry-data-section h2,
    .benefits-content h2,
    .operational-support h2,
    .bo-benefits-title {
        font-size: 1.7rem;
        line-height: 1.3;
        text-align: center;
    }

    /* Paragraph */

    .paragraph {
        font-size: 15px;
        line-height: 24px;
    }

    /* HERO SECTION */

    .management-hero {
        padding: 50px 0;
        text-align: center;
    }

    /* DATA ENTRY */

    .data-entry-section {
        padding: 30px 15px;
    }

    /* DATA SERVICES */

    .data-services-grid {
        grid-template-columns: 1fr;
    }

    /* MIGRATION SECTION */

    .migration-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    /* INDUSTRY GRID */

    .industry-grid {
        grid-template-columns: 1fr;
    }

    /* BENEFITS */

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    /* SUPPORT WRAPPER */

    .support-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    /* REMOTE BACKOFFICE */

    .remote-grid {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    /* SUPPORT GRID */

    .support-grid {
        grid-template-columns: 1fr;
    }

    /* BSR SECTION */

    .bsr-container {
        flex-direction: column;
        gap: 30px;
    }

    .bsr-left,
    .bsr-right {
        width: 100%;
    }

    /* DATA MANAGEMENT */

    .dashboard-image img {
        max-width: 100%;
    }

}


/* ===================================================== */
/* SMALL MOBILE (PHONES) */
/* ===================================================== */

@media (max-width:480px) {

    /* headings */

    .management-hero h2,
    .data-services-section h2,
    .migration-section h2,
    .industry-data-section h2,
    .operational-support h2,
    .bo-benefits-title {
        font-size: 1.5rem;
    }

    /* service boxes */

    .service-box {
        padding: 20px;
    }

    .service-card {
        padding: 20px;
    }

    /* icons */

    .icon-circle {
        width: 60px;
        height: 60px;
    }

    .icon-circle i {
        font-size: 20px;
    }

    /* timeline boxes */

    .bo-box {
        max-width: 100%;
    }

}

@media (max-width:600px) {

    .migration-section .services-grid {
        grid-template-columns: 1fr !important;
    }

    .migration-section .service-box {
        width: 100% !important;
        max-width: 100% !important;
    }

}

@media (max-width:600px) {

    .data-services-grid {
        grid-template-columns: 1fr !important;
    }

    .data-services-grid .service-card {
        width: 100% !important;
    }

}

/* ===== FORCE MOBILE SINGLE COLUMN FOR SERVICE SECTIONS ===== */

@media (max-width:600px) {

    /* Digital Branding Services Section */
    .migration-section .services-grid {
        display: block !important;
    }

    .migration-section .service-box {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 20px;
    }

    /* Key Branding Solutions Section */
    .data-services-grid {
        display: block !important;
    }

    .data-services-grid .service-card {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 20px;
    }

}

.brand-visibility-section {
    background: #f9f9f9;
    padding: 80px 20px;
    font-family: "Inter", sans-serif;
}

.brand-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.brand-title {
    font-size: 2.4rem;
    color: #06214e;
    font-weight: 700;
    margin-bottom: 15px;
}

.brand-intro {
    max-width: 850px;
    margin: auto;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 40px;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-content: center;
}

/* card */

.brand-card {
    background: #ffffff;
    padding: 40px 25px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.brand-card:hover {
    transform: translateY(-6px);
}

/* icon */

.brand-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px dashed #d66c2b;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 20px;
}

.brand-icon i {
    font-size: 24px;
    color: #06214e;
}

.brand-card h4 {
    font-size: 18px;
    line-height: 1.5;
    color: #06214e;
}

.brand-bottom {
    margin-top: 40px;
    font-size: 16px;
}

/* responsive */

@media(max-width:1024px) {

    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:600px) {

    .brand-grid {
        grid-template-columns: 1fr;
    }

    .brand-title {
        font-size: 1.9rem;
    }

}

/* SECTION */
.invsvc-section {
    background: #f7f8fb;
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
}

.invsvc-container {
    max-width: 1200px;
    margin: auto;
}

/* GRID */
.invsvc-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

/* LEFT CONTENT */
.invsvc-heading {
    font-size: 38px;
    font-weight: 700;
    color: #0f2b57;
    margin-bottom: 25px;
}

.invsvc-text {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
    justify-content: center;
    text-align: justify;
}

/* RIGHT SIDE */
.invsvc-benefits-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #333;
    padding-top: 40px;
}

/* CARDS */
.invsvc-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 18px;
    font-size: 16px;
    font-weight: 500;
    color: #0f2b57;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
}

.invsvc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}


/* MOBILE RESPONSIVE */
@media (max-width:992px) {

    .invsvc-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .invsvc-heading {
        font-size: 30px;
    }

}

@media (max-width:600px) {

    .invsvc-heading {
        font-size: 26px;
    }

    .invsvc-text {
        font-size: 15px;
    }

    .invsvc-card {
        font-size: 14px;
        padding: 16px;
    }

}

/* SECTION */

.arx-section {
    background: #ffffff;
    padding: 90px 20px;
    font-family: 'Poppins', sans-serif;
}

.arx-container {
    max-width: 1200px;
    margin: auto;
}

/* HEADING */

.arx-main-heading {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    color: #0f2b57;
    margin-bottom: 20px;
}

.arx-intro {
    text-align: center;
    max-width: 850px;
    margin: auto;
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 60px;
}

/* GRID */

.arx-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* LEFT CONTENT */

.arx-left p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #444;
}

.arx-image {
    width: 100%;
    margin-top: 25px;
    border-radius: 20px;
}

/* RIGHT */

.arx-subheading {
    font-size: 26px;
    font-family: serif;
    font-style: italic;
    color: #243a5e;
    margin-bottom: 30px;
    text-align: center;
}

/* CARD GRID */

.arx-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* CARD */

.arx-card {
    background: #f6f7fb;
    padding: 28px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    color: #0f2b57;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.arx-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* MOBILE */

@media (max-width:992px) {

    .arx-grid {
        grid-template-columns: 1fr;
    }

    .arx-card-grid {
        grid-template-columns: 1fr;
    }

    .arx-main-heading {
        font-size: 30px;
    }

}

@media (max-width:600px) {

    .arx-main-heading {
        font-size: 26px;
    }

    .arx-intro {
        font-size: 15px;
    }

    .arx-card {
        font-size: 14px;
        padding: 20px;
    }

}

.ar-layout-section {
    background: #ffffff;
    padding: 100px 20px;
    font-family: 'Poppins', sans-serif;
}

.ar-layout-container {
    max-width: 1200px;
    margin: auto;
}

.ar-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
    align-items: flex-start;
}

/* RIGHT CONTENT */

.ar-title {
    font-size: 38px;
    font-weight: 700;
    color: #0f2b57;
    margin-bottom: 25px;
}

.ar-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 18px;
}

.ar-image {
    width: 100%;
    margin-top: 25px;
    border-radius: 18px;
}

/* LEFT ADVANTAGES */

.ar-advantages {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ar-adv-card {
    background: #f6f7fb;
    padding: 25px;
    border-radius: 14px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.ar-adv-card span {
    font-size: 24px;
    font-weight: 700;
    color: #ff6b35;
    min-width: 40px;
}

.ar-adv-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #0f2b57;
}

.ar-adv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

/* MOBILE */

@media (max-width:992px) {

    .ar-layout-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width:600px) {

    .ar-title {
        font-size: 28px;
    }

    .ar-content p {
        font-size: 15px;
    }

}

.services11 {
    justify-content: center !important;
}

.finance-service-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    max-width: 700px;
    margin: auto;
}

.finance-service-box {
    background: #f5f6fb;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.finance-service-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.finance-icon-circle {
    width: 70px;
    height: 70px;
    margin: auto;
    border-radius: 50%;
    border: 2px dashed #ff7a45;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #0f2b57;
}

.finance-service-box h4 {
    font-size: 16px;
    color: #0f2b57;
    line-height: 1.6;
    font-weight: 600;
}

.finance-center-box {
    grid-column: span 2;
    max-width: 320px;
    margin: auto;
}

/* responsive */

@media (max-width:768px) {

    .finance-service-wrapper {
        grid-template-columns: 1fr;
    }

    .finance-center-box {
        grid-column: auto;
    }

}

.invoice-workflow-section {
    background: #ffffff;
    padding: 100px 20px;
    font-family: 'Poppins', sans-serif;
}

.invoice-workflow-container {
    max-width: 1200px;
    margin: auto;
}

.invoice-workflow-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* content */

.invoice-workflow-title {
    font-size: 32px;
    font-weight: 700;
    color: #0f2b57;
    margin-bottom: 20px;
}

.invoice-workflow-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 18px;
}

/* image */

.invoice-workflow-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* responsive */

@media(max-width:992px) {

    .invoice-workflow-grid {
        grid-template-columns: 1fr;
    }

    .invoice-workflow-image {
        order: -1;
    }

}

@media(max-width:600px) {

    .invoice-workflow-title {
        font-size: 26px;
    }

    .invoice-workflow-content p {
        font-size: 15px;
    }

}

.ar-choose-section {
    background: #f7f7f7;
    padding: 90px 20px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.ar-choose-heading {
    font-size: 36px;
    font-weight: 700;
    color: #0f2b57;
    margin-bottom: 50px;
}

.ar-choose-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

.ar-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid #e2e2e2;
    padding: 16px 28px;
    border-radius: 40px;
    font-size: 16px;
    color: #333;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    transition: 0.3s;
}

.ar-pill i {
    color: #0f2b57;
    font-size: 18px;
}

.ar-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}




.hrpro-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.hrpro-section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 700;
}

.hrpro-hero {
    padding: 80px 0;
    background: #f7f8fb;
}

.hrpro-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hrpro-hero-text h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.hrpro-hero-text p {
    line-height: 1.7;
    margin-bottom: 15px;
}

.hrpro-hero-image img {
    width: 100%;
    border-radius: 12px;
}

.hrpro-services {
    padding: 80px 0;
}

.hrpro-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.hrpro-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.hrpro-card i {
    font-size: 28px;
    margin-bottom: 15px;
}

.hrpro-split {
    padding: 80px 0;
    background: #f7f8fb;
}

.hrpro-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hrpro-split-image img {
    width: 100%;
    border-radius: 12px;
}

.hrpro-process {
    padding: 80px 0;
}

.hrpro-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.hrpro-process-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.hrpro-process-card span {
    display: block;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}

.hrpro-benefits {
    padding: 80px 0;
    background: #f8f9fb;
}

.hrpro-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.hrpro-benefit {
    display: flex;
    gap: 10px;
    align-items: center;
    background: #fff;
    padding: 18px;
    border-radius: 10px;
}

.hrpro-benefit i {
    font-size: 18px;
}

.hrpro-cta {
    padding: 80px 0;
    text-align: center;
    background-color: #f8f9fb;
}

.hrpro-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #111;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    margin-top: 15px;
}

@media(max-width:992px) {

    .hrpro-services-grid,
    .hrpro-process-grid,
    .hrpro-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hrpro-hero-grid,
    .hrpro-split-grid {
        grid-template-columns: 1fr;
    }

}

@media(max-width:600px) {

    .hrpro-services-grid,
    .hrpro-process-grid,
    .hrpro-benefits-grid {
        grid-template-columns: 1fr;
    }

}

.hrpro-benefits {
    padding: 80px 20px;
    background: #ffffff;
}

.hrpro-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.hrpro-section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hrpro-intro {
    margin-bottom: 40px;
    font-size: 16px;
}

.hrpro-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.hrpro-benefit {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 10px;
    align-items: center;
}

.hrpro-benefit i {
    font-size: 18px;
}

.hrpro-bottom-text {
    margin-top: 30px;
    line-height: 1.7;
}

@media(max-width:900px) {

    .hrpro-benefits-grid {
        grid-template-columns: 1fr;
    }

}

.hr-consulting-section {
    padding: 80px 20px;
    background: #f8f9fb;
}

.hr-consulting-container {
    max-width: 1200px;
    margin: auto;
}

.hr-consulting-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hr-consulting-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.hr-consulting-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hr-consulting-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
    text-align: justify;
}

@media(max-width:900px) {

    .hr-consulting-grid {
        grid-template-columns: 1fr;
    }

}

.hr-diversity-section {
    padding: 80px 20px;
    background: #ffffff;
}

.hr-diversity-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.hr-diversity-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.hr-diversity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.hr-diversity-card {
    background: #f7f8fb;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.hr-diversity-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e9ecf5;
    border-radius: 10px;
    font-size: 20px;
    margin-bottom: 15px;
}

.hr-diversity-card p {
    line-height: 1.8;
    font-size: 16px;
    color: #555;
}

@media(max-width:900px) {

    .hr-diversity-grid {
        grid-template-columns: 1fr;
    }

}


.hr-hiring-section {
    padding: 80px 20px;
    background: #f8f9fb;
}

.hr-hiring-container {
    max-width: 1200px;
    margin: auto;
}

.hr-hiring-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.hr-hiring-box {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.hr-hiring-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hr-hiring-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 12px;
    text-align: justify;
}

/* Mobile Responsive */

@media(max-width:900px) {

    .hr-hiring-grid {
        grid-template-columns: 1fr;
    }

}

.hr-hiring-main-title {
    font-size: 34px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.hr-industry-section {
    padding: 80px 20px;
    background: #ffffff;
}

.hr-industry-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.hr-industry-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hr-industry-intro {
    max-width: 900px;
    margin: auto;
    margin-bottom: 40px;
    line-height: 1.8;
    color: #555;
}

.hr-industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.hr-industry-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: 0.3s;
}

.hr-industry-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.hr-industry-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef1f7;
    border-radius: 10px;
    font-size: 22px;
    margin-bottom: 15px;
}

.hr-industry-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.hr-industry-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

/* Mobile */

@media(max-width:900px) {

    .hr-industry-grid {
        grid-template-columns: 1fr;
    }

}

.hr-rpo-section {
    padding: 80px 20px;
    background: #f8f9fb;
}

.hr-rpo-container {
    max-width: 1200px;
    margin: auto;
}

.hr-rpo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hr-rpo-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.hr-rpo-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hr-rpo-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
    text-align: justify;
}

.hr-rpo-list {
    padding-left: 20px;
    margin-bottom: 20px;
}

.hr-rpo-list li {
    margin-bottom: 8px;
    line-height: 1.7;
}

/* responsive */

@media(max-width:900px) {

    .hr-rpo-grid {
        grid-template-columns: 1fr;
    }

    .hr-rpo-image {
        order: -1;
    }

}

.hr-staffing-section {
    padding: 80px 20px;
    background: #ffffff;
}

.hr-staffing-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.hr-staffing-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hr-staffing-intro {
    max-width: 900px;
    margin: auto;
    margin-bottom: 45px;
    line-height: 1.8;
    color: #555;
}

.hr-staffing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.hr-staffing-card {
    background: #f8f9fb;
    padding: 35px;
    border-radius: 14px;
    text-align: left;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.hr-staffing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.hr-staffing-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef1f7;
    border-radius: 12px;
    font-size: 22px;
    margin-bottom: 15px;
}

.hr-staffing-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 600;
}

.hr-staffing-card p {
    line-height: 1.8;
    color: #555;
    font-size: 15px;
}

/* Mobile Responsive */

@media(max-width:900px) {

    .hr-staffing-grid {
        grid-template-columns: 1fr;
    }

    .hr-staffing-title {
        font-size: 28px;
    }

}

.hr-talent-section {
    padding: 80px 20px;
    background: #f8f9fb;
}

.hr-talent-container {
    max-width: 1200px;
    margin: auto;
}

.hr-talent-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hr-talent-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hr-talent-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
    text-align: justify;
}

.hr-talent-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hr-talent-box {
    background: #f8f9fb;
    padding: 18px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.hr-talent-box i {
    font-size: 18px;
}

.hr-talent-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

/* Responsive */

@media(max-width:900px) {

    .hr-talent-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hr-talent-features {
        flex-direction: column;
    }

    .hr-talent-title {
        font-size: 28px;
    }

}

.hr-comprehensive-section {
    padding: 80px 20px;
    background: #ffffff;
}

.hr-comprehensive-container {
    max-width: 1100px;
    margin: auto;
}

.hr-comprehensive-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.hr-comprehensive-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
    text-align: justify;
}

.hr-comprehensive-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 35px 0;
}

.hr-comprehensive-images img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.hr-comprehensive-list {
    padding-left: 20px;
    margin-bottom: 20px;
}

.hr-comprehensive-list li {
    margin-bottom: 8px;
    line-height: 1.7;
}

/* Mobile Responsive */

@media(max-width:900px) {

    .hr-comprehensive-images {
        grid-template-columns: 1fr;
    }

    .hr-comprehensive-title {
        font-size: 28px;
    }

}

.sd-support-section {
    padding: 80px 20px;
    background: #fff;
}

.sd-support-container {
    max-width: 1200px;
    margin: auto;
}

.sd-support-title {
    font-size: 34px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}

.sd-support-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.sd-support-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
    text-align: justify;
}

.sd-support-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.sd-point {
    background: #f5f7fb;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
}

/* Mobile Responsive */

@media(max-width:900px) {

    .sd-support-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sd-support-title {
        font-size: 28px;
    }

}

.sd-custom-section {
    padding: 80px 20px;
    background: #f7f8fb;
}

.sd-custom-container {
    max-width: 1200px;
    margin: auto;
}

.sd-custom-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.sd-custom-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}

.sd-custom-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
    text-align: justify;
}

.sd-custom-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Mobile Responsive */

@media(max-width:900px) {

    .sd-custom-grid {
        grid-template-columns: 1fr;
    }

    .sd-custom-image {
        order: -1;
        margin-bottom: 20px;
    }

    .sd-custom-title {
        font-size: 28px;
    }

}

/* SOFTWARE CAPABILITIES NEW STYLE */

.softcap2-section {
    padding: 90px 20px;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.softcap2-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.softcap2-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}

.softcap2-process {
    max-width: 800px;
    margin: auto;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 50px;
}

.softcap2-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.softcap2-card {
    background: #f8f9fb;
    padding: 30px 20px;
    border-radius: 12px;
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.softcap2-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.softcap2-card i {
    font-size: 22px;
    color: #ff5a5f;
    margin-bottom: 10px;
}

.softcap2-card p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* responsive */

@media(max-width:992px) {

    .softcap2-cards {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:600px) {

    .softcap2-cards {
        grid-template-columns: 1fr;
    }

    .softcap2-title {
        font-size: 26px;
    }

}

/* IT HELPDESK SUPPORT SECTION */

.ithelp-section {
    padding: 90px 20px;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.ithelp-container {
    max-width: 1200px;
    margin: auto;
}

.ithelp-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.ithelp-heading {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}

.ithelp-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}

.ithelp-subtitle {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
}

.ithelp-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.ithelp-card {
    background: #f7f8fb;
    padding: 18px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.6;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.ithelp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.ithelp-bottom {
    margin-top: 25px;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

/* RESPONSIVE */

@media(max-width:992px) {

    .ithelp-grid {
        grid-template-columns: 1fr;
    }

    .ithelp-card-grid {
        grid-template-columns: 1fr 1fr;
    }

}

@media(max-width:600px) {

    .ithelp-card-grid {
        grid-template-columns: 1fr;
    }

    .ithelp-heading {
        font-size: 26px;
    }

}

/* IT HELPDESK SECTION */

.ithelp2-section {
    padding: 90px 20px;
    background: #f8f9fb;
    font-family: 'Poppins', sans-serif;
}

.ithelp2-container {
    max-width: 1200px;
    margin: auto;
}

.ithelp2-heading {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}

.ithelp2-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}

.ithelp2-subtitle {
    font-size: 24px;
    font-weight: 600;
    margin-top: 35px;
    margin-bottom: 30px;
}

.ithelp2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.ithelp2-image img {
    width: 100%;
    border-radius: 10px;
}

.ithelp2-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.ithelp2-point {
    background: #f7f8fb;
    padding: 15px 18px;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.6;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.ithelp2-point:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.ithelp2-bottom {
    margin-top: 35px;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}


/* MOBILE */

@media(max-width:992px) {

    .ithelp2-grid {
        grid-template-columns: 1fr;
    }

    .ithelp2-image {
        order: 1;
    }

    .ithelp2-points {
        order: 2;
    }

}

@media(max-width:600px) {

    .ithelp2-heading {
        font-size: 26px;
    }

    .ithelp2-subtitle {
        font-size: 20px;
    }

}

/* HELP DESK PILLS */

.ithelp-pill-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.ithelp-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    border: 1px solid #e3e6ea;
    border-radius: 40px;
    background: #ffffff;
    font-size: 15px;
    transition: 0.3s;
}

.ithelp-pill i {
    color: #0b2c5a;
    font-size: 16px;
}

.ithelp-pill:hover {
    background: #f8fafc;
    border-color: #d0d6dd;
    transform: translateY(-2px);
}

/* MOBILE */

@media(max-width:768px) {

    .ithelp-pill-container {
        grid-template-columns: 1fr;
    }

}

/* SOFTWARE INFRASTRUCTURE SECTION */

.softinfra-sec {
    padding: 90px 20px;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.softinfra-container {
    max-width: 1200px;
    margin: auto;
}

.softinfra-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.softinfra-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}

.softinfra-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #555;
}

.softinfra-image img {
    width: 100%;
    border-radius: 12px;
}



/* BENEFITS SECTION */

.softbenefit-sec {
    padding: 90px 20px;
    background: #f8fafc;
    font-family: 'Poppins', sans-serif;
}

.softbenefit-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.softbenefit-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.softbenefit-intro {
    font-size: 16px;
    margin-bottom: 40px;
}

.softbenefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.softbenefit-item {
    padding: 18px 22px;
    border: 1px solid #e4e7ec;
    border-radius: 40px;
    background: #ffffff;
    font-size: 15px;
    transition: 0.3s;
}

.softbenefit-item:hover {
    background: #f1f5f9;
    transform: translateY(-3px);
}

.softbenefit-bottom {
    margin-top: 35px;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}



/* RESPONSIVE */

@media(max-width:900px) {

    .softinfra-grid {
        grid-template-columns: 1fr;
    }

    .softbenefit-grid {
        grid-template-columns: 1fr;
    }

    .softinfra-title {
        font-size: 26px;
    }

    .softbenefit-title {
        font-size: 26px;
    }

}

/* BENEFITS SECTION */

.softbenefit-sec {
    padding: 90px 20px;
    background: #f8fafc;
    font-family: 'Poppins', sans-serif;
}

.softbenefit-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.softbenefit-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.softbenefit-intro {
    margin-bottom: 50px;
    font-size: 16px;
}

.softbenefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.softbenefit-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
}

.softbenefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

/* ICON STYLE */

.softbenefit-icon {
    width: 80px;
    height: 80px;
    border: 2px dashed #ff7a00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.softbenefit-icon i {
    font-size: 26px;
    color: #0b2c5a;
}

.softbenefit-card p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.softbenefit-bottom {
    margin-top: 40px;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}


/* RESPONSIVE */

@media(max-width:992px) {

    .softbenefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:600px) {

    .softbenefit-grid {
        grid-template-columns: 1fr;
    }

    .softbenefit-title {
        font-size: 26px;
    }

}

.kr-it-services-section {
    padding: 90px 20px;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.kr-it-services-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Card */
.kr-it-services-box {
    display: flex;
    gap: 25px;
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.kr-it-services-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Icon */
.kr-it-icon {
    min-width: 60px;
    height: 60px;
    background: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.kr-it-icon i {
    color: #fff;
    font-size: 24px;
}

/* Content */
.kr-it-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1b1b1b;
    line-height: 1.4;
}

.kr-it-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
}

/* Responsive */
@media(max-width:900px) {

    .kr-it-services-container {
        grid-template-columns: 1fr;
    }

    .kr-it-services-box {
        flex-direction: column;
    }

    .kr-it-icon {
        width: 55px;
        height: 55px;
    }

}

.kr-radiology-doc-section {
    padding: 90px 20px;
    background: #f6f8fb;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.kr-radiology-doc-container {
    max-width: 1100px;
    margin: auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.kr-radiology-doc-heading {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.kr-radiology-doc-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}

.kr-radiology-doc-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.kr-radiology-doc-list li {
    font-size: 15px;
    color: #333;
    background: #f3f6fb;
    padding: 12px 15px;
    border-radius: 6px;
    position: relative;
    padding-left: 35px;
}

.kr-radiology-doc-list li::before {
    content: "✔";
    position: absolute;
    left: 12px;
    color: #f3f6fb;
    font-weight: bold;
}

/* Mobile Responsive */

@media (max-width:768px) {

    .kr-radiology-doc-container {
        padding: 30px 20px;
    }

    .kr-radiology-doc-heading {
        font-size: 24px;
    }

    .kr-radiology-doc-list {
        grid-template-columns: 1fr;
    }

}





.kr-radiology-workflow-section {
    padding: 90px 20px;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.kr-radiology-workflow-container {
    max-width: 1100px;
    margin: auto;
}

.kr-radiology-workflow-heading {
    font-size: 30px;
    margin-bottom: 15px;
    color: #1a1a1a;
    text-align: center;
}

.kr-radiology-workflow-intro {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 35px;
}

.kr-radiology-workflow-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.kr-radiology-workflow-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.kr-workflow-number {
    min-width: 40px;
    height: 40px;
    background: #0d6efd;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 600;
}

.kr-radiology-workflow-step p {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
}

.kr-radiology-workflow-end {
    margin-top: 30px;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    text-align: center;
}

/* Mobile Responsive */

@media (max-width:768px) {

    .kr-radiology-workflow-heading {
        font-size: 24px;
    }

    .kr-radiology-workflow-steps {
        grid-template-columns: 1fr;
    }

    .kr-radiology-workflow-step {
        padding: 18px;
    }

}

.kr-hipaa-radiology-section {
    padding: 90px 20px;
    background: #f6f8fb;
    font-family: 'Poppins', sans-serif;
}

.kr-hipaa-radiology-container {
    max-width: 1200px;
    margin: auto;
}

.kr-hipaa-radiology-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Image */

.kr-hipaa-radiology-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Content */

.kr-hipaa-radiology-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.kr-hipaa-radiology-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}

/* List */

.kr-hipaa-security-list {
    margin: 20px 0;
    padding-left: 20px;
}

.kr-hipaa-security-list li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #333;
}

/* Mobile Responsive */

@media (max-width:768px) {

    .kr-hipaa-radiology-grid {
        grid-template-columns: 1fr;
    }

    .kr-hipaa-radiology-content h2 {
        font-size: 24px;
    }

    .kr-hipaa-radiology-section {
        padding: 60px 20px;
    }

}

.krxrad-integration-section {
    padding: 80px 20px;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.krxrad-container {
    max-width: 1150px;
    margin: auto;
}

.krxrad-title {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
    text-align: center;
}

.krxrad-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}



/* BENEFITS SECTION */

.krxrad-benefits-section {
    padding: 90px 20px;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.krxrad-subtitle {
    font-size: 22px;
    margin: 25px 0;
    color: #222;
}

.krxrad-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.krxrad-benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #f3f6fb;
    padding: 18px;
    border-radius: 8px;
    transition: 0.3s;
}

.krxrad-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.krxrad-icon {
    width: 40px;
    height: 40px;
    background: #0d6efd;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 18px;
    flex-shrink: 0;
}

.krxrad-benefit-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

.krxrad-end-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}



/* MOBILE RESPONSIVE */

@media (max-width:768px) {

    .krxrad-title {
        font-size: 24px;
    }

    .krxrad-benefits-grid {
        grid-template-columns: 1fr;
    }

    .krxrad-integration-section,
    .krxrad-benefits-section {
        padding: 60px 20px;
    }

}

.krb-benefits-section {
    padding: 100px 20px;
    background: #f7f7fb;
    font-family: 'Poppins', sans-serif;
}

.krb-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.krb-main-heading {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.krb-intro-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

.krb-sub-heading {
    font-size: 22px;
    margin-bottom: 40px;
    color: #222;
}

/* GRID */

.krb-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* CARD */

.krb-benefit-box {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    text-align: left;
}

/* ICON STYLE LIKE YOUR IMAGE */

.krb-icon-wrap {
    width: 60px;
    height: 60px;
    border: 2px dashed #ff8a00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c5cff;
    font-size: 22px;
    flex-shrink: 0;
    background: #f5f7ff;
}

.krb-benefit-box p {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

.krb-bottom-text {
    margin-top: 40px;
    font-size: 16px;
    color: #555;
}

/* MOBILE */

@media (max-width:768px) {

    .krb-main-heading {
        font-size: 26px;
    }

    .krb-benefits-grid {
        grid-template-columns: 1fr;
    }

    .krb-benefit-box {
        flex-direction: row;
    }

}

.krhipaa-section {
    padding: 100px 20px;
    background: #f5f6fb;
    font-family: 'Poppins', sans-serif;
}

.krhipaa-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.krhipaa-title {
    font-size: 36px;
    margin-bottom: 20px;
    color: #132c5b;
}

.krhipaa-intro {
    max-width: 900px;
    margin: auto;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.krhipaa-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    color: #222;
}

/* GRID */

.krhipaa-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CARD */

.krhipaa-card {
    background: #ffffff;
    padding: 35px 20px;
    border-radius: 14px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
}

.krhipaa-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* ICON STYLE */

.krhipaa-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    border: 2px dashed #ff8a00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #1c3faa;
    margin-bottom: 15px;
    background: #f6f8ff;
}

.krhipaa-card h4 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.krhipaa-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.krhipaa-bottom {
    margin-top: 50px;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* RESPONSIVE */

@media(max-width:1024px) {

    .krhipaa-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:768px) {

    .krhipaa-title {
        font-size: 26px;
    }

    .krhipaa-grid {
        grid-template-columns: 1fr;
    }

    .krhipaa-section {
        padding: 70px 20px;
    }

}

.krhc-hipaa-services-section {
    padding: 100px 20px;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.krhc-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.krhc-heading {
    font-size: 36px;
    color: #1a2f5c;
    margin-bottom: 20px;
}

.krhc-intro {
    max-width: 900px;
    margin: auto;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.krhc-subheading {
    font-size: 22px;
    margin-bottom: 30px;
    color: #222;
}

/* GRID */

.krhc-services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* PILL STYLE ITEMS */

.krhc-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 14px 22px;
    border-radius: 40px;
    border: 1px solid #e3e6f0;
    font-size: 15px;
    color: #333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.krhc-pill i {
    color: #1c3faa;
    font-size: 16px;
}

.krhc-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.krhc-bottom-text {
    margin-top: 40px;
    font-size: 16px;
    color: #555;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* RESPONSIVE */

@media(max-width:768px) {

    .krhc-heading {
        font-size: 26px;
    }

    .krhc-pill {
        width: 100%;
        justify-content: flex-start;
    }

}





/* SECTION 1 */

.krwf-hipaa-workflow-section {
    padding: 100px 20px;
    background: #f7f8fb;
    font-family: 'Poppins', sans-serif;
}

.krwf-container {
    max-width: 1200px;
    margin: auto;
}

.krwf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.krwf-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.krwf-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a2f5c;
}

.krwf-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.krwf-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.krwf-list {
    padding-left: 20px;
}

.krwf-list li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #333;
}


/* SECTION 2 */

.kradv-hipaa-outsourcing-section {
    padding: 100px 20px;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.kradv-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.kradv-title {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1a2f5c;
}

.kradv-intro {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin: auto;
    margin-bottom: 20px;
}

.kradv-subtitle {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.kradv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.kradv-card {
    background: #f7f8fb;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
}

.kradv-card i {
    font-size: 22px;
    color: #1c3faa;
    margin-bottom: 10px;
    display: block;
}

.kradv-card p {
    font-size: 15px;
    color: #333;
}

.kradv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.kradv-bottom {
    margin-top: 40px;
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}


/* MOBILE */

@media(max-width:900px) {

    .krwf-grid {
        grid-template-columns: 1fr;
    }

    .kradv-grid {
        grid-template-columns: 1fr 1fr;
    }

}

@media(max-width:600px) {

    .kradv-grid {
        grid-template-columns: 1fr;
    }

    .krwf-content h2 {
        font-size: 26px;
    }

}

.krtech-healthcare-section {
    padding: 100px 20px;
    background: #f6f8fb;
    font-family: Poppins, sans-serif;
}

.krtech-container {
    max-width: 1200px;
    margin: auto;
}

.krtech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.krtech-content h2 {
    font-size: 32px;
    color: #1a2f5c;
    margin-bottom: 20px;
}

.krtech-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.krtech-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media(max-width:768px) {
    .krtech-grid {
        grid-template-columns: 1fr;
    }

    .krtech-content h2 {
        font-size: 26px;
    }
}

.krdoc-transcription-section {
    padding: 100px 20px;
    background: #ffffff;
    font-family: Poppins, sans-serif;
}

.krdoc-container {
    max-width: 1000px;
    margin: auto;
}

.krdoc-card {
    background: #f7f9fc;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.krdoc-card h2 {
    font-size: 32px;
    color: #1a2f5c;
    margin-bottom: 20px;
}

.krdoc-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

@media(max-width:768px) {
    .krdoc-card {
        padding: 40px 25px;
    }

    .krdoc-card h2 {
        font-size: 26px;
    }
}

.krtrust-hipaa-section {
    padding: 100px 20px;
    background: #f6f8fb;
    color: #000000;
    font-family: Poppins, sans-serif;
}

.krtrust-container {
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.krtrust-container h2 {
    font-size: 34px;
    margin-bottom: 25px;
}

.krtrust-text p {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 15px;
    opacity: 0.95;
}

@media(max-width:768px) {

    .krtrust-container h2 {
        font-size: 26px;
    }

    .krtrust-text p {
        font-size: 15px;
    }

}

.krind-medical-section {
    padding: 100px 20px;
    background: #f6f8fb;
    font-family: 'Poppins', sans-serif;
}

.krind-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.krind-heading {
    font-size: 34px;
    color: #1a2f5c;
    margin-bottom: 20px;
}

.krind-intro {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    max-width: 850px;
    margin: auto;
    margin-bottom: 40px;
}

.krind-subheading {
    font-size: 22px;
    margin-bottom: 35px;
    color: #222;
}

.krind-advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.krind-adv-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: 0.3s;
}

.krind-adv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.krind-number {
    background: #1c3faa;
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 600;
    flex-shrink: 0;
}

.krind-adv-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

.krind-bottom-text {
    margin-top: 40px;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

/* MOBILE */

@media(max-width:768px) {

    .krind-heading {
        font-size: 26px;
    }

    .krind-advantages-grid {
        grid-template-columns: 1fr;
    }

}

.krchi-healthcare-transcription-section {
    padding: 30px 20px;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.krchi-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.krchi-main-heading {
    font-size: 34px;
    color: #1a2f5c;
    margin-bottom: 20px;
}

.krchi-intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    max-width: 850px;
    margin: auto;
    margin-bottom: 50px;
}

.krchi-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.krchi-service-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    text-align: left;
    transition: 0.3s;
}

.krchi-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.krchi-service-card h3 {
    font-size: 20px;
    color: #1B2F5C;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.krchi-icon {
    color: #ff7a00;
    font-size: 18px;
}

.krchi-service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

/* MOBILE */

@media(max-width:768px) {

    .krchi-main-heading {
        font-size: 26px;
    }

    .krchi-services-grid {
        grid-template-columns: 1fr;
    }

    .krchi-service-card {
        padding: 25px;
    }

}
.krms2-specialty-section{
padding:100px 20px;
background:#f7f8fb;
font-family:'Poppins',sans-serif;
}

.krms2-container{
max-width:1200px;
margin:auto;
text-align:center;
}

.krms2-heading{
font-size:34px;
color:#1a2f5c;
margin-bottom:20px;
}

.krms2-intro{
font-size:16px;
color:#555;
margin-bottom:40px;
}

.krms2-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.krms2-card{
background:#ffffff;
padding:35px 20px;
border-radius:14px;
text-align:center;
transition:0.3s;
}

.krms2-card:hover{
transform:translateY(-5px);
}

.krms2-icon{
width:70px;
height:70px;
border:2px dashed #ff8a00;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
margin:0 auto 15px;
}

.krms2-icon i{
font-size:22px;
color:#1a2f5c;
}

.krms2-card p{
font-size:15px;
color:#333;
line-height:1.6;
}

.krms2-bottom{
margin-top:40px;
font-size:16px;
color:#555;
}

/* responsive */

@media(max-width:1024px){
.krms2-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:600px){
.krms2-grid{
grid-template-columns:1fr;
}
.krms2-heading{
font-size:26px;
}
}

.krsec-security-section{
padding:100px 20px;
background:#ffffff;
font-family:Poppins,sans-serif;
}

.krsec-container{
max-width:1200px;
margin:auto;
}

.krsec-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.krsec-content h2{
font-size:32px;
color:#1a2f5c;
margin-bottom:15px;
}

.krsec-content p{
font-size:16px;
line-height:1.8;
color:#555;
margin-bottom:15px;
}

.krsec-list{
padding-left:20px;
}

.krsec-list li{
margin-bottom:10px;
font-size:15px;
color:#333;
}

.krsec-image img{
width:100%;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

/* responsive */

@media(max-width:768px){

.krsec-grid{
grid-template-columns:1fr;
}

.krsec-content h2{
font-size:26px;
}

}

/* ================= SECTION 1 ================= */

.krtechbpo-section{
padding:100px 20px;
background:#f7f8fb;
font-family:Poppins,sans-serif;
}

.krtechbpo-container{
max-width:1100px;
margin:auto;
text-align:center;
}

.krtechbpo-heading{
font-size:34px;
color:#1a2f5c;
margin-bottom:20px;
}

.krtechbpo-intro{
font-size:16px;
line-height:1.8;
color:#555;
margin-bottom:30px;
}

.krtechbpo-subtitle{
font-size:20px;
margin-bottom:30px;
color:#222;
}

/* GRID */

.krtechbpo-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.krtechbpo-item{
background:#fff;
padding:25px;
border-radius:10px;
box-shadow:0 6px 20px rgba(0,0,0,0.08);
}

.krtechbpo-item i{
font-size:22px;
color:#1a2f5c;
margin-bottom:10px;
display:block;
}

.krtechbpo-item p{
font-size:15px;
color:#333;
}

.krtechbpo-bottom{
margin-top:30px;
font-size:16px;
color:#555;
}


/* ================= SECTION 2 ================= */

.krtrustindia-section{
padding:100px 20px;
background:#ffffff;
font-family:Poppins,sans-serif;
}

.krtrustindia-container{
max-width:900px;
margin:auto;
text-align:center;
}

.krtrustindia-container h2{
font-size:34px;
color:#1a2f5c;
margin-bottom:20px;
}

.krtrustindia-container p{
font-size:16px;
line-height:1.8;
color:#555;
margin-bottom:15px;
}


/* ================= NEW TECHNOLOGY SECTION ================= */

.krtech-new-section{
padding:100px 20px;
background:#f7f8fb;
font-family:Poppins,sans-serif;
}

.krtech-new-container{
max-width:1200px;
margin:auto;
text-align:center;
}

.krtech-new-heading{
font-size:34px;
color:#1a2f5c;
margin-bottom:20px;
}

.krtech-new-intro{
font-size:16px;
line-height:1.8;
color:#555;
max-width:850px;
margin:auto;
margin-bottom:35px;
}

.krtech-new-subtitle{
font-size:20px;
margin-bottom:40px;
color:#222;
}


/* GRID FIX */

.krtech-new-grid{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:30px;
max-width:1000px;
margin:0 auto;
}


/* CARD */

.krtech-new-card{
background:#ffffff;
padding:35px 25px;
border-radius:14px;
text-align:center;
transition:.3s;
flex:0 0 calc(33.33% - 30px);
}

.krtech-new-card:hover{
transform:translateY(-5px);
}


/* ICON */

.krtech-new-icon{
width:65px;
height:65px;
background:#ffffff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
margin:0 auto 15px;
box-shadow:0 4px 10px rgba(0,0,0,0.08);
}

.krtech-new-icon i{
font-size:22px;
color:#1a2f5c;
}

.krtech-new-card p{
font-size:15px;
color:#333;
line-height:1.6;
}

.krtech-new-bottom{
margin-top:35px;
font-size:16px;
color:#555;
max-width:850px;
margin-left:auto;
margin-right:auto;
}


/* ================= RESPONSIVE ================= */

@media(max-width:900px){

.krtechbpo-grid{
grid-template-columns:repeat(2,1fr);
}

.krtech-new-card{
flex:0 0 calc(50% - 30px);
}

}

@media(max-width:600px){

.krtechbpo-grid{
grid-template-columns:1fr;
}

.krtech-new-card{
flex:0 0 100%;
}

.krtechbpo-heading,
.krtrustindia-container h2,
.krtech-new-heading{
font-size:26px;
}

}

/* ----------------------------- */

.krre-radiology-editing-section{
padding:100px 20px;
background:#f7f9fc;
font-family:Poppins,sans-serif;
}

.krre-container{
max-width:1200px;
margin:auto;
text-align:center;
}

.krre-heading{
font-size:34px;
color:#1a2f5c;
margin-bottom:20px;
}

.krre-intro{
font-size:16px;
line-height:1.8;
color:#555;
max-width:850px;
margin:auto;
margin-bottom:30px;
}

.krre-subheading{
font-size:22px;
margin-bottom:10px;
color:#222;
}

.krre-intro2{
font-size:16px;
margin-bottom:40px;
color:#555;
}

.krre-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.krre-card{
background:#ffffff;
padding:30px 20px;
border-radius:12px;
box-shadow:0 8px 25px rgba(0,0,0,0.06);
transition:0.3s;
}

.krre-card:hover{
transform:translateY(-5px);
box-shadow:0 12px 30px rgba(0,0,0,0.1);
}

.krre-card i{
font-size:24px;
color:#1a2f5c;
margin-bottom:12px;
display:block;
}

.krre-card p{
font-size:15px;
color:#333;
line-height:1.6;
}

.krre-bottom{
margin-top:40px;
font-size:16px;
color:#555;
max-width:850px;
margin-left:auto;
margin-right:auto;
line-height:1.8;
}

/* RESPONSIVE */

@media(max-width:1000px){

.krre-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.krre-grid{
grid-template-columns:1fr;
}

.krre-heading{
font-size:26px;
}

}

.radproc-section{
padding:80px 20px;
background:#ffffff;
font-family:Poppins, sans-serif;
}

.radproc-container{
max-width:1200px;
margin:auto;
}

.radproc-heading{
text-align:center;
max-width:900px;
margin:auto;
margin-bottom:60px;
}

.radproc-heading h2{
font-size:34px;
color:#0f2b46;
margin-bottom:20px;
}

.radproc-heading h3{
font-size:24px;
margin-top:20px;
color:#0f2b46;
}

.radproc-heading p{
font-size:16px;
line-height:1.7;
color:#555;
}

.radproc-steps{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:30px;
position:relative;
}

.radproc-step{
text-align:center;
position:relative;
}

.radproc-number{
width:60px;
height:60px;
background:#0f2b46;
color:#fff;
font-weight:600;
font-size:18px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
margin:auto;
margin-bottom:15px;
}

.radproc-step p{
font-size:15px;
color:#444;
line-height:1.6;
}

.radproc-bottom{
text-align:center;
margin-top:60px;
max-width:900px;
margin-left:auto;
margin-right:auto;
}

.radproc-bottom p{
font-size:16px;
color:#555;
line-height:1.7;
}

.krhiprad-security-section{
padding:100px 20px;
background:#f7f9fc;
font-family:Poppins,sans-serif;
}

.krhiprad-container{
max-width:1100px;
margin:auto;
text-align:center;
}

.krhiprad-heading{
font-size:34px;
color:#1a2f5c;
margin-bottom:20px;
}

.krhiprad-container p{
font-size:16px;
line-height:1.8;
color:#555;
margin-bottom:15px;
}


/* BENEFITS SECTION */

.krhiprad-benefits-section{
padding:100px 20px;
background:#ffffff;
font-family:Poppins,sans-serif;
}

.krhiprad-intro{
margin-bottom:30px;
}

.krhiprad-subtitle{
font-size:22px;
margin-bottom:40px;
color:#222;
}

.krhiprad-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.krhiprad-item{
background:#f3f4f6;
padding:30px 20px;
border-radius:12px;
text-align:center;
transition:0.3s;
}

.krhiprad-item:hover{
transform:translateY(-5px);
}

.krhiprad-item i{
font-size:40px;
color:#1a2f5c;
margin-bottom:10px;
display:block;
}

.krhiprad-item p{
font-size:14px;
color:#333;
line-height:1.6;
}

.krhiprad-bottom{
margin-top:35px;
font-size:16px;
color:#555;
max-width:850px;
margin:auto;
}


/* RESPONSIVE */

@media(max-width:1000px){

.krhiprad-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.krhiprad-grid{
grid-template-columns:1fr;
}

.krhiprad-heading{
font-size:26px;
}

}

.radwhy-section{
padding:80px 20px;
background:#f6f8fc;
font-family:Poppins, sans-serif;
}

.radwhy-container{
max-width:1200px;
margin:auto;
}

.radwhy-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.radwhy-image img{
width:100%;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.radwhy-content h2{
font-size:34px;
color:#0f2b46;
margin-bottom:20px;
}

.radwhy-content p{
font-size:16px;
line-height:1.7;
color:#555;
margin-bottom:20px;
}

.radwhy-content h3{
font-size:24px;
color:#0f2b46;
margin-bottom:20px;
}

.radwhy-list{
display:grid;
grid-template-columns:1fr 1fr;
gap:15px 25px;
margin-bottom:25px;
}

.radwhy-item{
display:flex;
align-items:flex-start;
gap:12px;
}

.radwhy-item span{
background:#0f2b46;
color:#fff;
font-size:13px;
font-weight:600;
padding:6px 10px;
border-radius:6px;
min-width:32px;
text-align:center;
}

.radwhy-item p{
margin:0;
font-size:15px;
color:#444;
}

.radwhy-bottom{
margin-top:10px;
font-size:16px;
}

.krcta-radiology-section{
padding:30px 20px;
background:#f7f9fc;
font-family:'Poppins',sans-serif;
}

.krcta-container{
/* max-width:900px; */
margin:auto;
text-align:center;

padding:60px 40px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.krcta-heading{
font-size:34px;
color:#1a2f5c;
margin-bottom:25px;
}

.krcta-container p{
font-size:16px;
line-height:1.8;
color:#555;
margin-bottom:15px;
}

/* MOBILE */

@media(max-width:768px){

.krcta-container{
padding:40px 25px;
}

.krcta-heading{
font-size:26px;
}

.krcta-container p{
font-size:15px;
}

}

/* ------------------------------------------ */

.radvr-section-two{
padding:80px 20px;
background:#ffffff;
font-family:Poppins, sans-serif;
}

.radvr-section-two h2{
font-size:34px;
text-align:center;
color:#0f2b46;
margin-bottom:25px;
}

.radvr-intro{
max-width:900px;
margin:auto;
text-align:center;
font-size:16px;
color:#555;
line-height:1.8;
margin-bottom:40px;
}

.radvr-section-two h3{
text-align:center;
font-size:24px;
color:#0f2b46;
margin-bottom:30px;
}

.radvr-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
max-width:1100px;
margin:auto;
}

.radvr-card{
background:#f4f7fb;
padding:22px;
border-radius:8px;
box-shadow:0 5px 15px rgba(0,0,0,0.04);
transition:all .3s ease;
}

.radvr-card:hover{
transform:translateY(-5px);
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.radvr-card p{
margin:0;
font-size:15px;
color:#444;
line-height:1.6;
}

.radvr-bottom{
text-align:center;
max-width:900px;
margin:40px auto 0;
font-size:16px;
color:#555;
line-height:1.8;
}
@media (max-width:900px){

.radvr-grid{
grid-template-columns:1fr 1fr;
}

.radvr-section-one h2,
.radvr-section-two h2{
font-size:26px;
}

.radvr-section-two h3{
font-size:20px;
}

}

@media (max-width:600px){

.radvr-grid{
grid-template-columns:1fr;
}

.radvr-content-box{
padding:25px;
}

}
/* Radiology Speech Recognition Section */

.radsr-section{
padding:80px 20px;
background:#f6f8fc;
}

.radsr-container{
max-width:1200px;
margin:auto;
}

.radsr-grid{
display:flex;
align-items:center;
gap:60px;
flex-wrap:wrap;
}

.radsr-content{
flex:1;
min-width:300px;
}

.radsr-content h2{
font-size:34px;
color:#0f2b46;
margin-bottom:20px;
}

.radsr-content p{
font-size:16px;
line-height:1.8;
color:#555;
margin-bottom:20px;
}

.radsr-image{
flex:1;
min-width:300px;
}

.radsr-image img{
width:100%;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}


/* Mobile Responsive */

@media (max-width:768px){

.radsr-grid{
flex-direction:column;
gap:30px;
}

.radsr-content h2{
font-size:26px;
}

}

/* HIPAA Section */

.radhipaa-sec{
padding:80px 20px;
background:#f7f9fc;
font-family:Poppins, sans-serif;
}

.radhipaa-container{
max-width:1100px;
margin:auto;
text-align:center;
}

.radhipaa-sec h2{
font-size:34px;
color:#0f2b46;
margin-bottom:20px;
}

.radhipaa-sec p{
font-size:16px;
line-height:1.8;
color:#555;
margin-bottom:18px;
}

.radhipaa-sub{
font-weight:600;
margin-top:30px;
}

.radhipaa-pills{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:18px;
margin-top:30px;
}

.radhipaa-pill{
background:#fff;
border:1px solid #e3e6ec;
padding:12px 20px;
border-radius:50px;
display:flex;
align-items:center;
gap:10px;
font-size:15px;
box-shadow:0 3px 10px rgba(0,0,0,0.04);
}

.radhipaa-icon{
font-size:16px;
}


/* Dictation Section */

.raddict-sec{
padding:80px 20px;
background:#ffffff;
}

.raddict-container{
max-width:1200px;
margin:auto;
}

.raddict-grid{
display:flex;
align-items:center;
gap:60px;
flex-wrap:wrap;
}

.raddict-image{
flex:1;
min-width:300px;
}

.raddict-image img{
width:100%;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.raddict-content{
flex:1;
min-width:300px;
}

.raddict-content h2{
font-size:34px;
color:#0f2b46;
margin-bottom:20px;
}

.raddict-content p{
font-size:16px;
line-height:1.8;
color:#555;
margin-bottom:18px;
}


/* Mobile Responsive */

@media (max-width:768px){

.radhipaa-sec h2,
.raddict-content h2{
font-size:26px;
}

.raddict-grid{
flex-direction:column;
gap:30px;
}

.radhipaa-pill{
font-size:14px;
padding:10px 16px;
}

}

/* ================= BENEFITS SECTION ================= */

.radben-section{
padding:80px 20px;
background:#f6f8fc;
font-family:Poppins, sans-serif;
}

.radben-container{
max-width:1100px;
margin:auto;
text-align:center;
}

.radben-section h2{
font-size:34px;
color:#0f2b46;
margin-bottom:20px;
}

.radben-intro{
font-size:16px;
color:#555;
line-height:1.8;
margin-bottom:25px;
}

.radben-section h3{
font-size:24px;
color:#0f2b46;
margin-bottom:30px;
}

.radben-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
margin-bottom:35px;
}

.radben-card{
background:#ffffff;
padding:20px;
border-radius:8px;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
transition:all .3s ease;
}

.radben-card:hover{
transform:translateY(-5px);
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.radben-card p{
margin:0;
font-size:15px;
color:#444;
}

.radben-bottom{
font-size:16px;
color:#555;
line-height:1.8;
}



/* ================= WHY CHOOSE SECTION ================= */

.radwhyvr-section{
padding:80px 20px;
background:#ffffff;
}

.radwhyvr-container{
max-width:1200px;
margin:auto;
}

.radwhyvr-grid{
display:flex;
align-items:center;
gap:60px;
flex-wrap:wrap;
}

.radwhyvr-image{
flex:1;
min-width:300px;
}

.radwhyvr-image img{
width:100%;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.radwhyvr-content{
flex:1;
min-width:300px;
}

.radwhyvr-content h2{
font-size:34px;
color:#0f2b46;
margin-bottom:20px;
}

.radwhyvr-content p{
font-size:16px;
line-height:1.8;
color:#555;
margin-bottom:20px;
}

.radwhyvr-sub{
font-weight:600;
margin-bottom:10px;
}

.radwhyvr-list{
padding-left:18px;
}

.radwhyvr-list li{
margin-bottom:8px;
font-size:15px;
color:#444;
}



/* ================= MOBILE RESPONSIVE ================= */

@media (max-width:900px){

.radben-grid{
grid-template-columns:1fr 1fr;
}

}

@media (max-width:600px){

.radben-grid{
grid-template-columns:1fr;
}

.radwhyvr-grid{
flex-direction:column;
gap:30px;
}

.radben-section h2,
.radwhyvr-content h2{
font-size:26px;
}

.radben-section h3{
font-size:20px;
}

}

.pathlab-services-sec{
padding:80px 20px;
background:#f6f8fc;
font-family:Poppins, sans-serif;
}

.pathlab-container{
max-width:1200px;
margin:auto;
text-align:center;
}

.pathlab-services-sec h2{
font-size:34px;
color:#0f2b46;
margin-bottom:20px;
}

.pathlab-intro{
max-width:900px;
margin:auto;
font-size:16px;
line-height:1.8;
color:#555;
margin-bottom:30px;
}

.pathlab-subtitle{
font-size:22px;
color:#0f2b46;
margin-bottom:40px;
}


/* GRID */

.pathlab-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}


/* CARD */

.pathlab-card{
background:#ffffff;
padding:35px 25px;
border-radius:12px;
text-align:center;
box-shadow:0 6px 18px rgba(0,0,0,0.06);
transition:all .3s ease;
}

.pathlab-card:hover{
transform:translateY(-6px);
box-shadow:0 10px 25px rgba(0,0,0,0.10);
}


/* ICON */

.pathlab-icon{
font-size:28px;
color:#ff6a5b;
margin-bottom:15px;
}


/* TEXT */

.pathlab-card p{
font-size:16px;
color:#0f2b46;
line-height:1.5;
margin:0;
}

.pathlab-bottom{
margin-top:40px;
max-width:900px;
margin-left:auto;
margin-right:auto;
font-size:16px;
color:#555;
line-height:1.8;
}
@media (max-width:992px){

.pathlab-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media (max-width:600px){

.pathlab-grid{
grid-template-columns:1fr;
}

.pathlab-services-sec h2{
font-size:26px;
}

.pathlab-subtitle{
font-size:20px;
}

}

/* ================= SECTION 1 ================= */

.labacc-sec{
padding:80px 20px;
background:#f6f8fc;
font-family:Poppins, sans-serif;
}

.labacc-container{
max-width:1200px;
margin:auto;
}

.labacc-grid{
display:flex;
gap:60px;
align-items:flex-start;
flex-wrap:wrap;
}

.labacc-content{
flex:1;
min-width:300px;
}

.labacc-content h2{
font-size:32px;
color:#0f2b46;
margin-bottom:20px;
}

.labacc-content p{
font-size:16px;
line-height:1.8;
color:#555;
margin-bottom:15px;
}

.labacc-list{
padding-left:18px;
margin-bottom:20px;
}

.labacc-list li{
margin-bottom:8px;
font-size:15px;
color:#444;
}

/* CARDS */

.labacc-cards{
flex:1;
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
min-width:300px;
}

.labacc-card{
background:#ffffff;
padding:18px;
border-radius:8px;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
font-size:15px;
color:#0f2b46;
line-height:1.5;
}



/* ================= SECTION 2 ================= */

.lablis-sec{
padding:80px 20px;
background:#ffffff;
}

.lablis-container{
max-width:1200px;
margin:auto;
}

.lablis-grid{
display:flex;
align-items:center;
gap:60px;
flex-wrap:wrap;
}

.lablis-image{
flex:1;
min-width:300px;
}

.lablis-image img{
width:100%;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.lablis-content{
flex:1;
min-width:300px;
}

.lablis-content h3{
font-size:28px;
color:#0f2b46;
margin-bottom:20px;
}

.lablis-content p{
font-size:16px;
line-height:1.8;
color:#555;
margin-bottom:15px;
}

.lablis-list{
padding-left:18px;
}

.lablis-list li{
margin-bottom:8px;
font-size:15px;
color:#444;
}



/* ================= MOBILE ================= */

@media (max-width:768px){

.labacc-grid,
.lablis-grid{
flex-direction:column;
gap:30px;
}

.labacc-cards{
grid-template-columns:1fr;
}

.labacc-content h2{
font-size:26px;
}

.lablis-content h3{
font-size:24px;
}

}

.labdata-section{
padding:90px 20px;
background:#ffffff;
font-family:Poppins, sans-serif;
}

.labdata-container{
max-width:1200px;
margin:auto;
}

.labdata-grid{
display:flex;
align-items:center;
gap:70px;
flex-wrap:wrap;
}

/* IMAGE */

.labdata-image{
flex:1;
min-width:320px;
}

.labdata-image img{
width:100%;
border-radius:10px;
box-shadow:0 12px 30px rgba(0,0,0,0.08);
}

/* CONTENT */

.labdata-content{
flex:1;
min-width:320px;
}

.labdata-content h2{
font-size:36px;
color:#0f2b46;
margin-bottom:20px;
}

.labdata-content p{
font-size:16px;
line-height:1.8;
color:#555;
margin-bottom:20px;
}

.labdata-content h4{
font-size:20px;
margin-bottom:15px;
color:#0f2b46;
}

/* LIST STYLE */

.labdata-list{
list-style:none;
padding:0;
margin-bottom:25px;
}

.labdata-list li{
position:relative;
padding-left:28px;
margin-bottom:12px;
font-size:15px;
color:#444;
}

.labdata-list li::before{
content:"✔";
position:absolute;
left:0;
top:0;
color:#ff6a5b;
font-weight:bold;
}
@media (max-width:768px){

.labdata-grid{
flex-direction:column;
gap:40px;
}

.labdata-content h2{
font-size:28px;
}

.labdata-content h4{
font-size:18px;
}

}
.lisdata-section{
padding:80px 20px;
background:#f6f7fb;
font-family:Poppins, sans-serif;
}

.lisdata-container{
max-width:1200px;
margin:auto;
}

.lisdata-grid{
display:flex;
align-items:center;
gap:60px;
}

/* LEFT CONTENT */

.lisdata-content{
flex:1;
}

.lisdata-content h3{
font-size:32px;
color:#0f2b46;
margin-bottom:20px;
}

.lisdata-content p{
font-size:16px;
line-height:1.8;
color:#555;
margin-bottom:15px;
}

.lisdata-subtitle{
margin-top:10px;
}

/* LIST */

.lisdata-list{
padding-left:18px;
margin-bottom:20px;
}

.lisdata-list li{
margin-bottom:8px;
font-size:15px;
color:#444;
}

/* RIGHT IMAGE */

.lisdata-image{
flex:1;
}

.lisdata-image img{
width:100%;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}
@media (max-width:768px){

.lisdata-grid{
flex-direction:column;
gap:40px;
}

.lisdata-content h3{
font-size:26px;
}

}

.dlab-timeline-sec{
padding:90px 20px;
background:#f7f9fc;
font-family:Poppins,sans-serif;
text-align:center;
}

.dlab-container{
max-width:1100px;
margin:auto;
}

.dlab-sub{
margin:40px 0;
font-size:22px;
}

.dlab-timeline{
position:relative;
margin-top:40px;
}

.dlab-timeline::before{
content:"";
position:absolute;
left:50%;
top:0;
width:3px;
height:100%;
background:#b87945;
transform:translateX(-50%);
}

.dlab-item{
width:50%;
padding:30px 40px;
position:relative;
}

.dlab-item.left{
left:0;
text-align:right;
}

.dlab-item.right{
left:50%;
text-align:left;
}

.dlab-box{
border:2px dashed #d7772c;
padding:20px 30px;
border-radius:12px;
background:#fff;
display:inline-block;
position:relative;
font-size:16px;
}

.dlab-number{
position:absolute;
top:-22px;
left:50%;
transform:translateX(-50%);
background:#b87945;
color:#fff;
width:45px;
height:45px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-weight:600;
}
@media (max-width:768px){

.dlab-timeline::before{
left:20px;
}

.dlab-item{
width:100%;
left:0 !important;
text-align:left;
padding-left:60px;
}

.dlab-number{
left:20px;
transform:none;
}

}
.pathadv-sec{
padding:90px 20px;
background:#ffffff;
text-align:center;
font-family:Poppins,sans-serif;
}

.pathadv-container{
max-width:1100px;
margin:auto;
}

.pathadv-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:40px;
}

.pathadv-card{
background:#f6f8fc;
padding:30px;
border-radius:12px;
box-shadow:0 6px 20px rgba(0,0,0,0.06);
font-size:16px;
}

.pathadv-bottom{
margin-top:40px;
line-height:1.8;
color:#555;
}
.labpill-sec{
padding:80px 20px;
background:#f7f9fc;
text-align:center;
font-family:Poppins,sans-serif;
}

.labpill-container{
max-width:1100px;
margin:auto;
}

.labpill-wrapper{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:20px;
margin-top:30px;
}

.labpill-item{
border:1px solid #e3e6ec;
padding:12px 24px;
border-radius:40px;
background:#fff;
font-size:15px;
}

.labpill-bottom{
margin-top:35px;
line-height:1.8;
color:#555;
}
@media (max-width:768px){

.labtimeline-line{
display:none;
}

.labtimeline-item{
width:100%;
left:0 !important;
text-align:center;
}

.pathadv-grid{
grid-template-columns:1fr;
}

.labpill-wrapper{
flex-direction:column;
}

}

.karthick-mdm-section{
padding:70px 20px;
background:#f8fbff;
}

.karthick-mdm-container{
max-width:1100px;
margin:auto;
}

.karthick-mdm-section h2{
font-size:34px;
margin-bottom:20px;
color:#0a3d62;
}

.karthick-mdm-section h3{
font-size:22px;
margin-top:30px;
margin-bottom:20px;
color:#222;
}

.karthick-mdm-section p{
font-size:16px;
line-height:1.8;
margin-bottom:18px;
color:#444;
}

.karthick-mdm-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
margin:30px 0;
}

.karthick-mdm-card{
background:#ffffff;
padding:22px;
border-radius:8px;
box-shadow:0 4px 15px rgba(0,0,0,0.08);
transition:all .3s ease;
}

.karthick-mdm-card:hover{
transform:translateY(-5px);
box-shadow:0 8px 20px rgba(0,0,0,0.12);
}

.karthick-mdm-card p{
margin:0;
font-size:15px;
}

/* Tablet */
@media (max-width:900px){

.karthick-mdm-grid{
grid-template-columns:repeat(2,1fr);
}

}

/* Mobile */
@media (max-width:600px){

.karthick-mdm-section h2{
font-size:26px;
}

.karthick-mdm-grid{
grid-template-columns:1fr;
}

}

.kr-medical-processing-sec{
padding:80px 20px;
background:#f4f6f9;
}

.kr-medical-container{
max-width:1100px;
margin:auto;
text-align:center;
}

.kr-medical-processing-sec h2{
font-size:34px;
margin-bottom:20px;
color:#0b2d5c;
}

.kr-medical-processing-sec p{
font-size:16px;
line-height:1.8;
margin-bottom:18px;
color:#444;
}

.kr-medical-processing-sec h3{
margin-top:35px;
margin-bottom:30px;
font-size:22px;
}

.kr-processing-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
margin-top:20px;
}

.kr-processing-card{
background:#fff;
padding:30px 20px;
border-radius:10px;
box-shadow:0 4px 18px rgba(0,0,0,0.08);
position:relative;
transition:0.3s;
}

.kr-processing-card span{
display:inline-block;
width:40px;
height:40px;
background:#b56c3b;
color:#fff;
border-radius:50%;
line-height:40px;
font-weight:bold;
margin-bottom:15px;
}

.kr-processing-card:hover{
transform:translateY(-6px);
box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

/* Tablet */

@media(max-width:900px){

.kr-processing-grid{
grid-template-columns:repeat(2,1fr);
}

}

/* Mobile */

@media(max-width:600px){

.kr-processing-grid{
grid-template-columns:1fr;
}

.kr-medical-processing-sec h2{
font-size:26px;
}

}

.kr-ehr-migration-sec{
padding:90px 20px;
background:#ffffff;
}

.kr-ehr-container{
max-width:1000px;
margin:auto;
text-align:center;
}

.kr-ehr-migration-sec h2{
font-size:34px;
margin-bottom:20px;
color:#0b2d5c;
}

.kr-ehr-migration-sec p{
font-size:16px;
line-height:1.8;
margin-bottom:25px;
}

.kr-timeline{
position:relative;
margin-top:40px;
}

.kr-step{
display:flex;
align-items:center;
margin-bottom:35px;
gap:20px;
justify-content:center;
}

.kr-circle{
width:45px;
height:45px;
background:#b56c3b;
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-weight:bold;
}

.kr-box{
border:2px dashed #b56c3b;
padding:18px 25px;
border-radius:8px;
background:#fafafa;
}

/* Mobile */

@media(max-width:700px){

.kr-step{
flex-direction:column;
}

.kr-box{
width:100%;
}

.kr-ehr-migration-sec h2{
font-size:26px;
}

}
/* ================= SECTION 1 ================= */

.ehrmig-section{
padding:90px 20px;
background:#f7f9fc;
font-family:Poppins,sans-serif;
}

.ehrmig-container{
max-width:1200px;
margin:auto;
}

.ehrmig-grid{
display:flex;
gap:60px;
align-items:flex-start;
flex-wrap:wrap;
}

.ehrmig-content{
flex:1;
min-width:300px;
}

.ehrmig-content h2{
font-size:34px;
color:#0f2b46;
margin-bottom:20px;
}

.ehrmig-content p{
line-height:1.8;
color:#555;
margin-bottom:15px;
}

.ehrmig-sub{
font-weight:600;
margin-top:15px;
}

.ehrmig-list{
padding-left:18px;
margin-bottom:20px;
}

.ehrmig-list li{
margin-bottom:8px;
}

/* RIGHT CARDS */

.ehrmig-cards{
flex:1;
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
min-width:300px;
}

.ehrmig-card{
background:#ffffff;
padding:18px;
border-radius:8px;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
font-size:15px;
}



/* ================= SECTION 2 ================= */

.legacymig-section{
padding:90px 20px;
background:#ffffff;
}

.legacymig-container{
max-width:1200px;
margin:auto;
}

.legacymig-grid{
display:flex;
gap:60px;
align-items:center;
flex-wrap:wrap;
}

.legacymig-image{
flex:1;
min-width:300px;
}

.legacymig-image img{
width:100%;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.legacymig-content{
flex:1;
min-width:300px;
}

.legacymig-content h3{
font-size:30px;
color:#0f2b46;
margin-bottom:20px;
}

.legacymig-content p{
line-height:1.8;
color:#555;
margin-bottom:15px;
}

.legacymig-sub{
font-weight:600;
margin-top:10px;
}

.legacymig-list{
padding-left:18px;
}

.legacymig-list li{
margin-bottom:8px;
}



/* ================= MOBILE ================= */

@media (max-width:768px){

.ehrmig-grid,
.legacymig-grid{
flex-direction:column;
gap:40px;
}

.ehrmig-cards{
grid-template-columns:1fr;
}

.ehrmig-content h2{
font-size:26px;
}

.legacymig-content h3{
font-size:24px;
}

}
.kr-cleansing-section{
padding:80px 20px;
background:#f7f9fc;
}

.kr-cleansing-container{
max-width:1200px;
margin:auto;
}

.kr-cleansing-row{
display:flex;
align-items:center;
gap:40px;
flex-wrap:wrap;
}

.kr-cleansing-image{
flex:1;
}

.kr-cleansing-image img{
width:100%;
border-radius:10px;
box-shadow:0 6px 18px rgba(0,0,0,0.1);
}

.kr-cleansing-content{
flex:1;
}

.kr-cleansing-content h2{
font-size:32px;
margin-bottom:20px;
color:#0b2d5c;
}

.kr-cleansing-content p{
line-height:1.8;
margin-bottom:15px;
}

.kr-cleansing-list li{
margin-bottom:10px;
border-left:4px solid #1a73e8;
padding-left:10px;
}

/* mobile */

@media(max-width:900px){

.kr-cleansing-row{
flex-direction:column;
}

.kr-cleansing-content h2{
font-size:26px;
}

}.kr-integration-section{
padding:80px 20px;
background:#ffffff;
}

.kr-integration-container{
max-width:1200px;
margin:auto;
}

.kr-integration-row{
display:flex;
align-items:center;
gap:40px;
flex-wrap:wrap;
}

.kr-integration-content{
flex:1;
}

.kr-integration-content h2{
font-size:32px;
margin-bottom:20px;
color:#0b2d5c;
}

.kr-integration-content p{
line-height:1.8;
margin-bottom:15px;
}

.kr-integration-list li{
margin-bottom:10px;
padding-left:10px;
border-left:4px solid #28a745;
}

.kr-integration-image{
flex:1;
}

.kr-integration-image img{
width:100%;
border-radius:10px;
box-shadow:0 6px 18px rgba(0,0,0,0.1);
}

/* mobile */

@media(max-width:900px){

.kr-integration-row{
flex-direction:column;
}

.kr-integration-content h2{
font-size:26px;
}

}.kr-mdc-section{
padding:80px 20px;
background:#f6f8fb;
}

.kr-mdc-container{
max-width:1200px;
margin:auto;
}

.kr-mdc-row{
display:flex;
gap:40px;
align-items:center;
flex-wrap:wrap;
}

.kr-mdc-image{
flex:1;
}

.kr-mdc-image img{
width:100%;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.kr-mdc-content{
flex:1;
}

.kr-mdc-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:15px;
margin:20px 0;
}

.kr-mdc-card{
background:#fff;
padding:15px;
border-radius:8px;
box-shadow:0 4px 12px rgba(0,0,0,0.08);
}

@media(max-width:900px){
.kr-mdc-row{flex-direction:column;}
.kr-mdc-grid{grid-template-columns:1fr;}
}