/* =========================================================
   DIGITAL CUSTOMER INTERACTION
========================================================= */

.dci-intro,
.dci-capabilities,
.dci-flow,
.dci-final-cta {
    overflow: hidden;
}


/* =========================================================
   COMMON
========================================================= */

.dci-section-label {

    display: flex;

    align-items: center;

    gap: 10px;

    color: #7146e8;

    font-size: 13px;

     font-weight: 700;

    letter-spacing: 2px;

}


.dci-section-label span {

    width: 34px;

    height: 3px;

    border-radius: 20px;

    background: currentColor;

}


.dci-title {

    max-width: 700px;

    margin: 15px 0 22px;

    color: #191d24;

    font-size: clamp(38px, 4.2vw, 58px);

    line-height: 1.08;

     font-weight: 700;

    letter-spacing: -1px;

}


.dci-title span {

    color: #0d6efd;

}


.dci-description {

    max-width: 650px;

    color: #697582;

    font-size: 17px;

    line-height: 1.75;

}


.dci-heading p {

    max-width: 720px;

    margin: auto;

    color: #75808c;

    font-size: 17px;

    line-height: 1.7;

}


/* =========================================================
   INTRO
========================================================= */

.dci-intro {

    background: #fff;

}


/* =========================================================
   VISUAL
========================================================= */

.dci-visual {

    position: relative;

    min-height: 520px;

    padding-right: 65px;

}


.dci-main-image {

    position: absolute;

    top: 0;

    left: 0;

    width: 82%;

    height: 400px;

    overflow: hidden;

    border-radius: 18px;

    box-shadow:
        0 25px 60px rgba(25,45,80,.12);

}


.dci-main-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(30,30,50,.12)
        );

}


.dci-main-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform .7s ease;

}


.dci-visual:hover
.dci-main-image img {

    transform: scale(1.05);

}


.dci-secondary-image {

    position: absolute;

    right: 0;

    bottom: 60px;

    width: 48%;

    height: 245px;

    padding: 7px;

    overflow: hidden;

    border-radius: 18px;

    background: #fff;

    box-shadow:
        0 20px 45px rgba(25,45,80,.16);

    z-index: 3;

}


.dci-secondary-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    border-radius: 13px;

}


/* =========================================================
   EXPERIENCE
========================================================= */

.dci-experience-badge {

    position: absolute;

    left: 0;

    bottom: 10px;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 14px 18px;

    background: #fff;

    border-radius: 16px;

    box-shadow:
        0 15px 40px rgba(25,45,80,.12);

}


.dci-experience-icon {

    width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 15px;

    background: #fff5df;

    color: #7146e8;

    font-size: 23px;

}


.dci-experience-badge strong {

    display: block;

    color: #181c23;

    font-size: 38px;

    line-height: 1;

    font-weight: 900;

}


.dci-experience-badge span {

    display: block;

    margin-top: 4px;

    color: #626e7b;

    font-size: 13px;

}


/* =========================================================
   FLOATING ELEMENT
========================================================= */

.dci-floating-element {

    position: absolute;

    top: 25px;

    right: 15px;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 7px;

    padding: 9px 13px;

    border: 1px solid #e2dafa;

    border-radius: 30px;

    background: rgba(255,255,255,.92);

    color: #7146e8;

    font-size: 10px;

     font-weight: 700;

    letter-spacing: 1.5px;

    box-shadow:
        0 10px 25px rgba(30,30,60,.08);

    animation:
        dciFloat 3.5s ease-in-out infinite;

}


.dci-dot {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: #7146e8;

    box-shadow:
        0 0 0 5px rgba(113,70,232,.1);

}


.dci-floating-element i {

    margin-left: 4px;

    font-size: 9px;

}


@keyframes dciFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

}


/* =========================================================
   DECORATIVE DOTS
========================================================= */

.dci-dots {

    position: absolute;

    width: 75px;

    height: 75px;

    background-image:
        radial-gradient(
            #7146e8 1.5px,
            transparent 1.5px
        );

    background-size: 13px 13px;

    opacity: .25;

}


.dots-one {

    top: -15px;

    right: 0;

}


.dots-two {

    bottom: 20px;

    left: -20px;

    opacity: .15;

}


/* =========================================================
   CONTENT
========================================================= */

.dci-content {

    padding-left: 15px;

}


.dci-stats {

    display: flex;

    flex-wrap: wrap;

    gap: 15px;

    margin-top: 28px;

}


.dci-stat {

    display: flex;

    align-items: center;

    gap: 10px;

    min-width: 150px;

    padding: 12px 15px;

    border: 1px solid #e7eaf0;

    border-radius: 12px;

    background: #fff;

    box-shadow:
        0 8px 20px rgba(30,50,80,.04);

}


.dci-stat > i {

    color: #7146e8;

    font-size: 18px;

}


.dci-stat strong {

    display: block;

    color: #272c34;

    font-size: 14px;

}


.dci-stat span {

    display: block;

    margin-top: 2px;

    color: #8a949f;

    font-size: 11px;

}


/* =========================================================
   CAPABILITIES
========================================================= */

.dci-capabilities {

    background: #f8f9fc;

}


/* =========================================================
   SERVICE CARDS
========================================================= */

.dci-service-card {

    position: relative;

    height: 100%;

    min-height: 310px;

    padding: 30px;

    overflow: hidden;

    border: 1px solid #e1e5eb;

    border-radius: 20px;

    background: #fff;

    transition:
        transform .4s ease,
        box-shadow .4s ease,
        border-color .4s ease;

}


.dci-service-card::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            #7146e8,
            #a56cf2
        );

    transform:
        scaleX(0);

    transform-origin: left;

    transition:
        transform .4s ease;

}


.dci-service-card:hover {

    transform: translateY(-9px);

    border-color: rgba(113,70,232,.18);

    box-shadow:
        0 22px 50px rgba(35,45,80,.09);

}


.dci-service-card:hover::before {

    transform: scaleX(1);

}


/* =========================================================
   CARD TOP
========================================================= */

.dci-card-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 25px;

}


.dci-card-number {

    color: #c5cad2;

    font-size: 14px;

    font-weight: 900;

    letter-spacing: 2px;

}


.dci-card-icon {

    width: 62px;

    height: 62px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            #f1eaff,
            #f8f4ff
        );

    color: #7146e8;

    font-size: 24px;

    transition: all .4s ease;

}


.dci-service-card:hover
.dci-card-icon {

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #7146e8,
            #9b5de5
        );

    transform:
        rotate(-6deg)
        scale(1.08);

    box-shadow:
        0 12px 25px rgba(113,70,232,.2);

}


/* =========================================================
   CARD CONTENT
========================================================= */

.dci-service-card h3 {

    max-width: 390px;

    margin-bottom: 12px;

    color: #20252d;

    font-size: 21px;

    line-height: 1.3;

     font-weight: 700;

}


.dci-service-card p {

    margin: 0;

    color: #76818d;

    font-size: 15px;

    line-height: 1.65;

}


.dci-card-arrow {

    position: absolute;

    right: 28px;

    bottom: 25px;

    width: 35px;

    height: 35px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #f3efff;

    color: #7146e8;

    font-size: 11px;

    opacity: 0;

    transform: translateX(-8px);

    transition: all .35s ease;

}


.dci-service-card:hover
.dci-card-arrow {

    opacity: 1;

    transform: translateX(0);

}


/* =========================================================
   CONNECT CARD
========================================================= */

.dci-connect-card {

    position: relative;

    height: 100%;

    min-height: 310px;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    justify-content: center;

    padding: 35px;

    overflow: hidden;

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            #211648,
            #5231a2
        );

    color: #fff;

}


.dci-connect-card::after {

    content: "";

    position: absolute;

    width: 180px;

    height: 180px;

    right: -70px;

    bottom: -80px;

    border: 1px solid rgba(255,255,255,.2);

    border-radius: 50%;

}


.dci-connect-icon {

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 20px;

    border-radius: 17px;

    background: rgba(255,255,255,.13);

    border: 1px solid rgba(255,255,255,.16);

    font-size: 22px;

}


.dci-connect-card > span {

    margin-bottom: 8px;

    color: rgba(255,255,255,.6);

    font-size: 10px;

     font-weight: 700;

    letter-spacing: 2px;

}


.dci-connect-card h3 {

    max-width: 300px;

    margin-bottom: 25px;

    font-size: 27px;

    line-height: 1.2;

     font-weight: 700;

}


.dci-connect-btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 11px 16px;

    border-radius: 8px;

    background: #fff;

    color: #5231a2;

    font-size: 13px;

     font-weight: 700;

    text-decoration: none;

    transition: all .3s ease;

}


.dci-connect-btn:hover {

    color: #5231a2;

    transform: translateY(-3px);

    box-shadow:
        0 12px 25px rgba(0,0,0,.18);

}


/* =========================================================
   FLOW
========================================================= */

.dci-flow {

    background: #fff;

}


.dci-main-btn {

    margin-top: 10px;

    padding: 13px 23px;

    border-radius: 9px;

    font-size: 15px;

    transition: all .3s ease;

}


.dci-main-btn:hover {

    transform: translateY(-4px);

    box-shadow:
        0 12px 28px rgba(13,110,253,.18);

}


.dci-flow-track {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    min-height: 250px;

    padding: 0 25px;

}


.dci-flow-line {

    position: absolute;

    left: 12%;

    right: 12%;

    top: 50%;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            #7146e8,
            #d8c9ff
        );

    transform: translateY(-50%);

}


.dci-flow-item {

    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 10px;

}


.dci-flow-icon {

    width: 76px;

    height: 76px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #fff;

    border: 8px solid #f2edff;

    color: #7146e8;

    font-size: 22px;

    box-shadow:
        0 12px 30px rgba(50,40,90,.09);

    transition: all .35s ease;

}


.dci-flow-item:hover
.dci-flow-icon {

    color: #fff;

    background: #7146e8;

    border-color: #e5dcff;

    transform: translateY(-8px);

}


.dci-flow-item strong {

    color: #303640;

    font-size: 14px;

    text-transform: uppercase;

    letter-spacing: 1px;

}


/* =========================================================
   FINAL CTA
========================================================= */

.dci-final-cta {

    background: #f8f9fc;

}


.dci-final-box {

    position: relative;

    overflow: hidden;

    padding: 75px 30px;

    text-align: center;

    border-radius: 30px;

    background:
        linear-gradient(
            135deg,
            #f0ebff,
            #f7f3ff
        );

    border: 1px solid #e5ddf8;

}


.dci-final-content {

    position: relative;

    z-index: 3;

}


.dci-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;

}


.dci-final-content h2 span {

    color: #0d6efd;

}


.dci-final-content p {

    max-width: 700px;

    margin: auto;

    color: #717c88;

    font-size: 18px;

    line-height: 1.7;

}


.dci-final-btn {

    margin-top: 28px;

    padding: 14px 25px;

    border-radius: 9px;

    transition: all .3s ease;

}


.dci-final-btn:hover {

    transform: translateY(-4px);

    box-shadow:
        0 15px 30px rgba(13,110,253,.18);

}


/* =========================================================
   CTA CIRCLES
========================================================= */

.dci-final-circle {

    position: absolute;

    border: 1px solid rgba(113,70,232,.12);

    border-radius: 50%;

    animation:
        dciCircle 20s linear infinite;

}


.circle-one {

    width: 400px;

    height: 400px;

    top: -260px;

    left: -100px;

}


.circle-two {

    width: 500px;

    height: 500px;

    right: -180px;

    bottom: -350px;

    animation-direction: reverse;

}


@keyframes dciCircle {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

    .dci-visual {

        min-height: 500px;

        margin-bottom: 20px;

    }


    .dci-content {

        padding-left: 0;

    }


    .dci-flow-track {

        margin-top: 20px;

    }

}


@media (max-width: 767.98px) {

    .dci-title {

        font-size: 40px;

    }


    .dci-description {

        font-size: 16px;

    }


    .dci-main-image {

        width: 88%;

        height: 350px;

    }


    .dci-secondary-image {

        width: 50%;

        height: 210px;

    }


    .dci-visual {

        min-height: 450px;

    }


    .dci-service-card {

        min-height: 290px;

    }


    .dci-flow-track {

        min-height: 430px;

        flex-direction: column;

        justify-content: space-between;

    }


    .dci-flow-line {

        left: 50%;

        top: 8%;

        bottom: 8%;

        width: 2px;

        height: auto;

        right: auto;

        transform: translateX(-50%);

        background:
            linear-gradient(
                180deg,
                #7146e8,
                #d8c9ff
            );

    }


    .dci-flow-item {

        width: 100%;

        flex-direction: row;

        justify-content: center;

    }


    .dci-final-box {

        padding: 55px 20px;

    }

}


@media (max-width: 575.98px) {

    .dci-title {

        font-size: 35px;

    }


    .dci-visual {

        min-height: 390px;

        padding-right: 25px;

    }


    .dci-main-image {

        height: 290px;

    }


    .dci-secondary-image {

        bottom: 55px;

        height: 170px;

    }


    .dci-experience-badge {

        padding: 10px 12px;

    }


    .dci-experience-icon {

        width: 43px;

        height: 43px;

        font-size: 17px;

    }


    .dci-experience-badge strong {

        font-size: 27px;

    }


    .dci-experience-badge span {

        font-size: 10px;

    }


    .dci-floating-element {

        right: 0;

        font-size: 8px;

    }


    .dci-stats {

        flex-direction: column;

    }


    .dci-stat {

        width: 100%;

    }


    .dci-service-card {

        padding: 25px;

    }


    .dci-service-card h3 {

        font-size: 20px;

    }


    .dci-final-content h2 {

        font-size: 35px;

    }

}