/* =========================================================
   BACK-OFFICE OPERATIONS
========================================================= */

.bo-intro,
.bo-capabilities,
.bo-process-section,
.bo-technology,
.bo-outcomes,
.bo-final-cta {
    overflow: hidden;
}


/* =========================================================
   COMMON
========================================================= */

.bo-section-label {

    display: flex;

    align-items: center;

    gap: 10px;

    color: #7146e8;

    font-size: 13px;

     font-weight: 700;

    letter-spacing: 2px;

}


.bo-section-label span {

    width: 34px;

    height: 3px;

    border-radius: 20px;

    background: currentColor;

}


.bo-title {

    max-width: 720px;

    margin: 16px 0 22px;

    color: #191d25;

    font-size: clamp(38px, 4.2vw, 58px);

    line-height: 1.08;

     font-weight: 700;

    letter-spacing: -1px;

}


.bo-title span {

    color: #0d6efd;

}


.bo-text {

    max-width: 680px;

    color: #697582;

    font-size: 17px;

    line-height: 1.75;

}


/* =========================================================
   INTRO VISUAL
========================================================= */

.bo-visual {

    position: relative;

    min-height: 520px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.bo-visual-glow {

    position: absolute;

    width: 440px;

    height: 440px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(113,70,232,.15),
            rgba(113,70,232,.04) 50%,
            transparent 70%
        );

    animation:
        boGlow 4s ease-in-out infinite;

}


@keyframes boGlow {

    0%,
    100% {
        transform: scale(.93);
    }

    50% {
        transform: scale(1.07);
    }

}


/* =========================================================
   DASHBOARD
========================================================= */

.bo-dashboard {

    position: relative;

    z-index: 4;

    width: 410px;

    overflow: hidden;

    border: 1px solid #e5e0ef;

    border-radius: 22px;

    background: #fff;

    box-shadow:
        0 28px 65px rgba(55,40,95,.14);

    animation:
        boDashboardFloat 5s ease-in-out infinite;

}


@keyframes boDashboardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }

}


.bo-dashboard-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 18px 20px;

    border-bottom: 1px solid #eeeaf4;

}


.bo-dashboard-header span {

    display: block;

    color: #9a9da6;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1.5px;

}


.bo-dashboard-header strong {

    display: block;

    margin-top: 4px;

    color: #30353e;

    font-size: 15px;

}


.bo-live {

    display: flex !important;

    align-items: center;

    gap: 6px;

    color: #35a66a !important;

    font-size: 10px !important;

    font-weight: 700 !important;

    letter-spacing: 0 !important;

}


.bo-live span {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: #35a66a;

    box-shadow:
        0 0 0 5px rgba(53,166,106,.1);

}


/* =========================================================
   WORKFLOW
========================================================= */

.bo-dashboard-body {

    padding: 18px;

}


.bo-workflow {

    display: grid;

    gap: 9px;

}


.bo-workflow-item {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 10px;

    border: 1px solid #eeeaf4;

    border-radius: 11px;

    background: #fbfaff;

    transition: all .3s ease;

}


.bo-workflow-item:hover {

    transform: translateX(5px);

    border-color: #ddd4f5;

}


.bo-workflow-item.active {

    background: #f5f1ff;

    border-color: #ddd3fa;

}


.bo-workflow-icon {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    background: #eee8ff;

    color: #7146e8;

    font-size: 13px;

}


.bo-workflow-item strong {

    display: block;

    color: #383d45;

    font-size: 11px;

}


.bo-workflow-item span {

    display: block;

    margin-top: 2px;

    color: #979da5;

    font-size: 9px;

}


.bo-check {

    margin-left: auto;

    color: #39a66b;

    font-size: 14px;

}


/* =========================================================
   PROGRESS
========================================================= */

.bo-progress-box {

    margin-top: 18px;

    padding: 14px;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            #24164b,
            #5935a2
        );

}


.bo-progress-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.bo-progress-header span {

    color: rgba(255,255,255,.55);

    font-size: 8px;

     font-weight: 700;

    letter-spacing: 1px;

}


.bo-progress-header strong {

    color: #fff;

    font-size: 15px;

}


.bo-progress {

    height: 7px;

    margin-top: 11px;

    overflow: hidden;

    border-radius: 20px;

    background: rgba(255,255,255,.15);

}


.bo-progress span {

    display: block;

    width: 86%;

    height: 100%;

    border-radius: inherit;

    background: #fff;

    animation:
        boProgress 2s ease forwards;

}


@keyframes boProgress {

    from {
        width: 0;
    }

    to {
        width: 86%;
    }

}


.bo-progress-footer {

    display: flex;

    justify-content: space-between;

    margin-top: 8px;

}


.bo-progress-footer span {

    color: rgba(255,255,255,.45);

    font-size: 8px;

}


/* =========================================================
   FLOATING CARDS
========================================================= */

.bo-quality-card {

    position: absolute;

    z-index: 7;

    top: 60px;

    left: 0;

    display: flex;

    align-items: center;

    gap: 9px;

    min-width: 220px;

    padding: 12px;

    border: 1px solid #e4def2;

    border-radius: 13px;

    background: #fff;

    box-shadow:
        0 18px 35px rgba(50,40,90,.11);

    animation:
        boFloat 4s ease-in-out infinite;

}


.bo-quality-icon {

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    background: #f0ebff;

    color: #7146e8;

}


.bo-quality-card span {

    display: block;

    color: #9a9fa7;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1px;

}


.bo-quality-card strong {

    display: block;

    margin-top: 3px;

    color: #353a42;

    font-size: 11px;

}


.bo-quality-card > i {

    margin-left: auto;

    color: #35a66a;

}


.bo-data-card {

    position: absolute;

    z-index: 7;

    right: 0;

    bottom: 65px;

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 11px 14px;

    border: 1px solid #e5e0ef;

    border-radius: 13px;

    background: #fff;

    box-shadow:
        0 18px 35px rgba(50,40,90,.11);

    animation:
        boFloat 4.5s ease-in-out infinite;

    animation-delay: .5s;

}


.bo-data-card > i {

    width: 36px;

    height: 36px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 9px;

    background: #edf8f2;

    color: #35a66a;

}


.bo-data-card strong {

    display: block;

    color: #353a42;

    font-size: 11px;

}


.bo-data-card span {

    display: block;

    margin-top: 2px;

    color: #969da5;

    font-size: 9px;

}


@keyframes boFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

}


/* =========================================================
   DECORATIONS
========================================================= */

.bo-dots {

    position: absolute;

    right: 0;

    top: 20px;

    width: 80px;

    height: 80px;

    background-image:
        radial-gradient(
            #7146e8 1.5px,
            transparent 1.5px
        );

    background-size: 13px 13px;

    opacity: .25;

}


.bo-orbit {

    position: absolute;

    border: 1px solid rgba(113,70,232,.13);

    border-radius: 50%;

    animation:
        boRotate 20s linear infinite;

}


.bo-orbit.orbit-one {

    width: 470px;

    height: 470px;

}


.bo-orbit.orbit-two {

    width: 340px;

    height: 340px;

    animation-direction: reverse;

    animation-duration: 15s;

}


@keyframes boRotate {

    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }

}


/* =========================================================
   HIGHLIGHTS
========================================================= */

.bo-highlights {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 12px;

    margin-top: 28px;

}


.bo-highlight {

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 12px;

    border: 1px solid #e8e4ef;

    border-radius: 11px;

    background: #fbfaff;

    color: #59636f;

    font-size: 13px;

    font-weight: 600;

}


.bo-highlight i {

    color: #7146e8;

}


/* =========================================================
   CAPABILITIES
========================================================= */

.bo-capabilities {

    background: #f8f9fc;

}


.bo-heading > p {

    max-width: 720px;

    margin: auto;

    color: #78838e;

    font-size: 17px;

    line-height: 1.7;

}


/* =========================================================
   SERVICE CARDS
========================================================= */

.bo-service-card {

    position: relative;

    height: 100%;

    min-height: 290px;

    padding: 27px;

    overflow: hidden;

    border: 1px solid #e1e5eb;

    border-radius: 19px;

    background: #fff;

    transition:
        transform .4s ease,
        box-shadow .4s ease,
        border-color .4s ease;

}


.bo-service-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            #7146e8,
            #a669ef
        );

    transform: scaleX(0);

    transform-origin: left;

    transition:
        transform .4s ease;

}


.bo-service-card:hover {

    transform: translateY(-8px);

    border-color: rgba(113,70,232,.18);

    box-shadow:
        0 22px 48px rgba(35,45,80,.09);

}


.bo-service-card:hover::before {

    transform: scaleX(1);

}


.bo-card-number {

    color: #c4cad2;

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 2px;

}


.bo-card-icon {

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 18px 0;

    border-radius: 16px;

    background: #f0ebff;

    color: #7146e8;

    font-size: 21px;

    transition: all .35s ease;

}


.bo-service-card:hover
.bo-card-icon {

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #7146e8,
            #9b5ee7
        );

    transform:
        rotate(-6deg)
        scale(1.07);

}


.bo-service-card h3 {

    margin-bottom: 10px;

    color: #22272f;

    font-size: 20px;

    line-height: 1.3;

     font-weight: 700;

}


.bo-service-card p {

    margin: 0;

    color: #78828e;

    font-size: 14px;

    line-height: 1.65;

}


.bo-card-footer {

    position: absolute;

    right: 25px;

    bottom: 18px;

    left: 27px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.bo-card-footer span {

    color: #b2a8c9;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 2px;

}


.bo-card-footer i {

    width: 31px;

    height: 31px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #f1edfb;

    color: #7146e8;

    font-size: 10px;

    opacity: 0;

    transform: translateX(-8px);

    transition: all .3s ease;

}


.bo-service-card:hover
.bo-card-footer i {

    opacity: 1;

    transform: translateX(0);

}


/* =========================================================
   PROCESS
========================================================= */

.bo-process-section {

    background: #fff;

}


.bo-process {

    position: relative;

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 25px;

}


.bo-process-line {

    position: absolute;

    top: 31px;

    left: 10%;

    right: 10%;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            #7146e8,
            #ddd5f4
        );

}


.bo-process-item {

    position: relative;

    z-index: 2;

    text-align: center;

}


.bo-process-icon {

    width: 64px;

    height: 64px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 18px;

    border: 6px solid #f2eefb;

    border-radius: 18px;

    background: #fff;

    color: #7146e8;

    font-size: 19px;

    box-shadow:
        0 8px 20px rgba(60,40,100,.08);

    transition: all .35s ease;

}


.bo-process-item:hover
.bo-process-icon {

    color: #fff;

    background: #7146e8;

    transform:
        translateY(-6px);

}


.bo-process-content small {

    display: block;

    color: #a09aaa;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1.5px;

}


.bo-process-content strong {

    display: block;

    margin-top: 4px;

    color: #292e36;

    font-size: 18px;

     font-weight: 700;

}


.bo-process-content span {

    display: block;

    margin-top: 5px;

    color: #89929d;

    font-size: 12px;

    line-height: 1.5;

}


/* =========================================================
   TECHNOLOGY
========================================================= */

.bo-technology {

    background: #f8f9fc;

}


.bo-tech-points {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 13px 25px;

    margin-top: 28px;

}


.bo-tech-points div {

    color: #59636f;

    font-size: 14px;

}


.bo-tech-points i {

    margin-right: 8px;

    color: #7146e8;

}


/* =========================================================
   TECHNOLOGY VISUAL
========================================================= */

.bo-tech-visual {

    position: relative;

    min-height: 420px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    border-radius: 25px;

    background:
        linear-gradient(
            135deg,
            #211648,
            #5937a5
        );

}


.bo-tech-grid {

    position: absolute;

    inset: 0;

    opacity: .13;

    background-image:
        linear-gradient(
            rgba(255,255,255,.3) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.3) 1px,
            transparent 1px
        );

    background-size: 45px 45px;

}


.bo-tech-ring {

    position: absolute;

    border: 1px solid rgba(255,255,255,.14);

    border-radius: 50%;

    animation:
        boTechRotate 20s linear infinite;

}


.ring-a {

    width: 270px;

    height: 270px;

}


.ring-b {

    width: 390px;

    height: 390px;

    animation-direction: reverse;

    animation-duration: 27s;

}


@keyframes boTechRotate {

    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }

}


.bo-tech-core {

    position: relative;

    z-index: 5;

    width: 92px;

    height: 92px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(255,255,255,.2);

    border-radius: 27px;

    background: rgba(255,255,255,.1);

    color: #fff;

    font-size: 32px;

    box-shadow:
        0 0 45px rgba(255,255,255,.08);

    animation:
        boCorePulse 3s ease-in-out infinite;

}


@keyframes boCorePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

}


.bo-tech-node {

    position: absolute;

    z-index: 6;

    display: flex;

    align-items: center;

    gap: 7px;

    padding: 9px 12px;

    border: 1px solid rgba(255,255,255,.13);

    border-radius: 10px;

    background: rgba(255,255,255,.08);

    color: #fff;

    font-size: 10px;

    backdrop-filter: blur(8px);

    animation:
        boNodeFloat 4s ease-in-out infinite;

}


.bo-tech-node i {

    color: #d9ceff;

}


.bo-node-one {

    top: 70px;

    left: 55px;

}


.bo-node-two {

    top: 85px;

    right: 45px;

    animation-delay: .5s;

}


.bo-node-three {

    bottom: 65px;

    left: 65px;

    animation-delay: 1s;

}


.bo-node-four {

    right: 55px;

    bottom: 70px;

    animation-delay: .8s;

}


@keyframes boNodeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

}


/* =========================================================
   OUTCOMES
========================================================= */

.bo-outcomes {

    background: #fff;

}


.bo-outcome-card {

    height: 100%;

    padding: 30px 24px;

    text-align: center;

    border: 1px solid #e3e6eb;

    border-radius: 18px;

    background: #fff;

    transition:
        transform .35s ease,
        box-shadow .35s ease;

}


.bo-outcome-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 18px 40px rgba(35,45,80,.08);

}


.bo-outcome-icon {

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 18px;

    border-radius: 16px;

    background: #f0ebff;

    color: #7146e8;

    font-size: 21px;

    transition: all .35s ease;

}


.bo-outcome-card:hover
.bo-outcome-icon {

    color: #fff;

    background: #7146e8;

    transform: rotate(-6deg);

}


.bo-outcome-card h3 {

    margin-bottom: 8px;

    color: #292e36;

    font-size: 19px;

     font-weight: 700;

}


.bo-outcome-card p {

    margin: 0;

    color: #7d8791;

    font-size: 14px;

    line-height: 1.65;

}


/* =========================================================
   FINAL CTA
========================================================= */

.bo-final-cta {

    background: #fff;

}


.bo-final-box {

    position: relative;

    overflow: hidden;

    padding: 75px 25px;

    text-align: center;

    border: 1px solid #e4dcf5;

    border-radius: 30px;

    background:
        linear-gradient(
            135deg,
            #f0ebff,
            #faf7ff
        );

}


.bo-final-content {

    position: relative;

    z-index: 3;

}


.bo-final-content h2 {

    max-width: 850px;

    margin: 18px auto;

    color: #191d25;

    font-size: clamp(38px,4.5vw,58px);

    line-height: 1.08;

     font-weight: 700;

}


.bo-final-content h2 span {

    color: #0d6efd;

}


.bo-final-content p {

    max-width: 720px;

    margin: auto;

    color: #717c88;

    font-size: 18px;

    line-height: 1.7;

}


.bo-final-btn {

    margin-top: 28px;

    padding: 14px 25px;

    border-radius: 9px;

    font-weight: 700;

    transition: all .3s ease;

}


.bo-final-btn:hover {

    transform: translateY(-4px);

    box-shadow:
        0 15px 30px rgba(13,110,253,.18);

}


.bo-final-orbit {

    position: absolute;

    border: 1px solid rgba(113,70,232,.12);

    border-radius: 50%;

    animation:
        boFinalRotate 20s linear infinite;

}


.bo-final-orbit.orbit-a {

    width: 400px;

    height: 400px;

    top: -260px;

    left: -100px;

}


.bo-final-orbit.orbit-b {

    width: 500px;

    height: 500px;

    right: -180px;

    bottom: -350px;

    animation-direction: reverse;

}


@keyframes boFinalRotate {

    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

    .bo-visual {

        margin-bottom: 20px;

    }

    .bo-process {

        grid-template-columns:
            repeat(3, 1fr);

    }

    .bo-process-line {

        display: none;

    }

}


@media (max-width: 767.98px) {

    .bo-title {

        font-size: 40px;

    }

    .bo-text {

        font-size: 16px;

    }

    .bo-dashboard {

        width: 78%;

    }

    .bo-quality-card {

        left: 0;

    }

    .bo-data-card {

        right: 0;

    }

    .bo-process {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 30px 20px;

    }

    .bo-tech-points {

        grid-template-columns: 1fr;

    }

}


@media (max-width: 575.98px) {

    .bo-title {

        font-size: 35px;

    }

    .bo-visual {

        min-height: 430px;

    }

    .bo-dashboard {

        width: 84%;

    }

    .bo-dashboard-header {

        padding: 14px;

    }

    .bo-dashboard-body {

        padding: 12px;

    }

    .bo-quality-card {

        transform: scale(.82);

        transform-origin: left top;

    }

    .bo-data-card {

        transform: scale(.85);

        transform-origin: right bottom;

    }

    .bo-highlights {

        grid-template-columns: 1fr;

    }

    .bo-process {

        grid-template-columns: 1fr;

    }

    .bo-tech-visual {

        min-height: 370px;

    }

    .bo-node-one {

        left: 20px;

    }

    .bo-node-two {

        right: 20px;

    }

    .bo-node-three {

        left: 20px;

    }

    .bo-node-four {

        right: 20px;

    }

    .bo-final-box {

        padding: 55px 18px;

    }

    .bo-final-content h2 {

        font-size: 35px;

    }

}