/* =========================================================
   HERO
========================================================= */




.services-breadcrumb {
    display: flex;
    align-items: center;
    gap: 14px;

    font-size: 17px;
    font-weight: 500;
}

.services-breadcrumb a {
    color: #555;
    text-decoration: none;
}

.services-breadcrumb i {
    color: #999;
    font-size: 11px;
}

.services-breadcrumb span {
    color: var(--bs-primary);
    font-weight: 600;
}

.hero-tag,
.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;

    color: var(--bs-primary);
}

.hero-tag span,
.section-eyebrow span {
    width: 35px;
    height: 3px;

    border-radius: 10px;

    background: currentColor;
}


.services-hero-title {
    max-width: 800px;

    font-size: clamp(24px, 5.5vw, 36px);

    line-height: 1.05;

    font-weight: 700;

    letter-spacing: 0.5px;

    margin-bottom: 28px;
}

.services-hero-title span {
    display: block;
    color: var(--bs-primary);
}

.services-hero-description {
    max-width: 700px;

    font-size: 21px;

    line-height: 1.7;

    color: #5d6570;

    margin-bottom: 35px;
}

.services-primary-btn {
    padding: 15px 28px;

    font-size: 18px;

    border-radius: 10px;

    transition: all .3s ease;
}

.services-primary-btn:hover {
    transform: translateY(-3px);

    box-shadow: 0 12px 25px rgba(13, 110, 253, .25);
}

.services-outline-btn {
    padding: 15px 28px;

    font-size: 18px;

    border-radius: 10px;
}

.hero-stat {
    border-left: 3px solid var(--bs-primary);

    padding-left: 15px;
}

.hero-stat strong {
    display: block;

    font-size: 30px;

    line-height: 1;

    font-weight: 700;
}

.hero-stat span {
    display: block;

    margin-top: 7px;

    color: #737b85;

    font-size: 15px;
}


/* =========================================================
   HERO VISUAL
========================================================= */

.services-hero-visual {
    position: relative;

    padding: 30px;
}

.hero-image-main {
    position: relative;

    overflow: hidden;

    border-radius: 35px;

    box-shadow: 0 30px 70px rgba(20, 40, 80, .18);

    transform: rotate(2deg);

    animation: heroFloat 5s ease-in-out infinite;
}

.hero-image-main img {
    width: 100%;

    object-fit: cover;

    display: block;

    transition: transform .8s ease;
}

.services-hero-visual:hover .hero-image-main img {
    transform: scale(1.05);
}

.hero-floating-card {
    position: absolute;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 14px 18px;

    background: rgba(255, 255, 255, .95);

    backdrop-filter: blur(12px);

    border-radius: 16px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);

    animation: cardFloat 4s ease-in-out infinite;
}

.hero-floating-card strong {
    display: block;

    font-size: 16px;
}

.hero-floating-card small {
    display: block;

    color: #777;

    font-size: 13px;
}

.floating-icon {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: var(--bs-primary-bg-subtle);

    color: var(--bs-primary);

    font-size: 20px;
}

.hero-floating-one {
    left: -5px;
    bottom: 70px;
}

.hero-floating-two {
    right: -15px;
    top: 70px;

    animation-delay: 1s;
}

.hero-orbit {
    position: absolute;

    width: 130px;
    height: 130px;

    right: -35px;
    bottom: -25px;

    border: 1px solid rgba(13, 110, 253, .3);

    border-radius: 50%;

    animation: orbitRotate 15s linear infinite;
}

.hero-orbit span {
    position: absolute;

    width: 10px;
    height: 10px;

    background: var(--bs-primary);

    border-radius: 50%;
}

.hero-orbit span:nth-child(1) {
    top: 15px;
    left: 30px;
}

.hero-orbit span:nth-child(2) {
    right: 5px;
    top: 55px;
}

.hero-orbit span:nth-child(3) {
    bottom: 12px;
    left: 45px;
}


/* =========================================================
   INTRO
========================================================= */

.services-intro {
    background: #fff;
}

.section-title {
    font-size: clamp(38px, 4vw, 38px);

    line-height: 1.1;

    font-weight: 700;

    letter-spacing: -1px;

    margin-top: 12px;
}

.section-title span {
    color: var(--bs-primary);
}

.section-description {
    font-size: 19px;

    line-height: 1.7;

    color: #656d77;
}


/* =========================================================
   SERVICE FEATURE
========================================================= */

.service-feature {
    overflow: hidden;

    border-radius: 30px;

    background: #fff;

    box-shadow: 0 15px 50px rgba(0, 0, 0, .07);

    border: 1px solid #edf0f4;

    transition: transform .4s ease,
                box-shadow .4s ease;
}

.service-feature:hover {
    transform: translateY(-8px);

    box-shadow: 0 30px 70px rgba(0, 0, 0, .12);
}


/* =========================================================
   SERVICE IMAGE
========================================================= */

.service-image {
    position: relative;

    height: 100%;

    min-height: 540px;

    overflow: hidden;

    background: #111;
}

.service-image img {
    width: 100%;
    height: 100%;

    min-height: 540px;

    object-fit: cover;

    display: block;

    transition: transform .8s cubic-bezier(.2,.8,.2,1);
}

.service-feature:hover .service-image img {
    transform: scale(1.08);
}

.image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, .02),
            rgba(0, 0, 0, .62)
        );
}

.service-image-label {
    position: absolute;

    left: 30px;
    bottom: 30px;

    color: #fff;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2px;
}

.service-image-label span {
    display: block;

    font-size: 55px;

    line-height: 1;

    letter-spacing: -2px;

    margin-bottom: 5px;
}


/* =========================================================
   SERVICE CONTENT
========================================================= */

.service-feature-content {
    position: relative;

    height: 100%;

    padding: 55px 55px 50px;

    overflow: hidden;
}

.service-feature-number {
    position: absolute;

    top: -20px;
    right: 15px;

    font-size: 170px;

    line-height: 1;

    font-weight: 900;

    color: #f2f4f7;

    pointer-events: none;
}

.service-feature-icon {
    position: relative;

    width: 70px;
    height: 70px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 20px;

    background: var(--bs-primary-bg-subtle);

    color: var(--bs-primary);

    font-size: 28px;

    margin-bottom: 25px;

    transition: transform .4s ease;
}

.service-feature:hover .service-feature-icon {
    transform: rotate(-8deg) scale(1.08);
}

.service-category {
    position: relative;

    display: block;

    font-size: 14px;

    letter-spacing: 2px;

    font-weight: 700;

    color: var(--bs-primary);

    margin-bottom: 14px;
}

.service-feature-content h3 {
    position: relative;

    font-size: clamp(30px, 3vw, 42px);

    line-height: 1.15;

    font-weight: 700;

    margin-bottom: 20px;
}

.service-feature-content h3 span {
    color: var(--bs-primary);
}

.service-feature-content > p {
    position: relative;

    font-size: 18px;

    line-height: 1.7;

    color: #68717c;

    max-width: 650px;

    margin-bottom: 28px;
}


/* =========================================================
   SERVICE ITEMS
========================================================= */

.service-items {
    position: relative;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 10px 15px;

    margin-bottom: 30px;
}

.service-items span {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    font-size: 16px;

    line-height: 1.4;

    color: #3f4750;

    padding: 8px 0;

    transition: all .3s ease;
}

.service-items span:hover {
    color: var(--bs-primary);

    transform: translateX(5px);
}

.service-items i {
    color: var(--bs-primary);

    font-size: 13px;

    margin-top: 4px;
}

.service-link {
    position: relative;

    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: #111;

    font-size: 17px;

    font-weight: 700;

    text-decoration: none;

    transition: all .3s ease;
}

.service-link i {
    color: var(--bs-primary);

    transition: transform .3s ease;
}

.service-link:hover {
    color: var(--bs-primary);
}

.service-link:hover i {
    transform: translateX(7px);
}


/* =========================================================
   AI SECTION
========================================================= */



.ai-icon {
    background: rgba(13, 110, 253, .12);

    animation: aiPulse 2.5s ease-in-out infinite;
}

.ai-service-image {
    background: #071326;
}

.ai-image-content {
    position: absolute;

    left: 30px;
    right: 30px;
    bottom: 30px;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    color: #fff;
}

.ai-image-content i {
    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: rgba(255, 255, 255, .14);

    backdrop-filter: blur(10px);

    font-size: 28px;

    margin-bottom: 15px;
}

.ai-image-content strong {
    font-size: 27px;

    line-height: 1.2;
}

.ai-image-content span {
    font-size: 15px;

    color: rgba(255, 255, 255, .75);

    margin-top: 5px;
}


/* =========================================================
   CAPABILITY STRIP
========================================================= */

.services-capability-strip {
    padding: 70px 0;

    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(13, 110, 253, .20),
            transparent 30%
        ),
        #101827;
}

.capability-flow {
    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 18px;
}

.flow-item {
    min-width: 105px;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 8px;

    color: #fff;
}

.flow-item i {
    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: rgba(255, 255, 255, .08);

    color: #fff;

    font-size: 21px;

    transition: all .3s ease;
}

.flow-item:hover i {
    background: var(--bs-primary);

    transform: translateY(-5px);
}

.flow-item span {
    font-size: 14px;

    color: rgba(255, 255, 255, .7);
}

.flow-arrow {
    color: rgba(255, 255, 255, .35);
}


/* =========================================================
   FINAL CTA
========================================================= */

.services-final-cta {
    background: #fff;
}

.services-cta-box {
    position: relative;

    overflow: hidden;

    padding: 60px;

    border-radius: 30px;

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(13, 110, 253, .13),
            transparent 35%
        ),
        #f5f8fc;

    border: 1px solid #e7ebf1;
}

.services-cta-box h2 {
    font-size: clamp(24px, 4vw, 42px);

    font-weight: 700;

    line-height: 1.1;

    margin: 12px 0 18px;
}

.services-cta-box h2 span {
    color: var(--bs-primary);
}

.services-cta-box p {
    font-size: 19px;

    color: #69727d;

    margin-bottom: 0;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes heroFloat {

    0%,
    100% {
        transform: rotate(2deg) translateY(0);
    }

    50% {
        transform: rotate(2deg) translateY(-12px);
    }

}

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}

@keyframes orbitRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}

@keyframes aiPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, .15);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(13, 110, 253, 0);
    }

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199.98px) {

    .service-feature-content {
        padding: 40px;
    }

    .service-items {
        gap: 7px 12px;
    }

}


@media (max-width: 991.98px) {

    .services-hero-title {
        font-size: 52px;
    }

    .services-hero-visual {
        margin-top: 30px;
    }

    .hero-image-main {
        transform: none;
    }

    .service-image,
    .service-image img {
        min-height: 420px;
    }

    .service-feature-content {
        padding: 40px 30px;
    }

    .service-feature-number {
        font-size: 130px;
    }

    .capability-flow {
        justify-content: flex-start;

        flex-wrap: wrap;
    }

}


@media (max-width: 767.98px) {

    .services-hero-title {
        font-size: 44px;

        letter-spacing: -1px;
    }

    .services-hero-description {
        font-size: 18px;
    }

    .hero-floating-one {
        left: 0;
    }

    .hero-floating-two {
        right: 0;
    }

    .service-items {
        grid-template-columns: 1fr;
    }

    .service-image,
    .service-image img {
        min-height: 350px;
    }

    .service-feature-content {
        padding: 35px 25px;
    }

    .service-feature-number {
        font-size: 110px;
    }

    .services-cta-box {
        padding: 40px 25px;
    }

}


@media (max-width: 575.98px) {

    .services-hero-title {
        font-size: 39px;
    }

    .services-hero-visual {
        padding: 10px;
    }

    .hero-floating-card {
        padding: 10px 12px;
    }

    .floating-icon {
        width: 38px;
        height: 38px;

        font-size: 16px;
    }

    .hero-floating-card strong {
        font-size: 14px;
    }

    .hero-floating-card small {
        font-size: 11px;
    }

    .hero-stat strong {
        font-size: 25px;
    }

    .hero-stat span {
        font-size: 12px;
    }

    .service-image,
    .service-image img {
        min-height: 300px;
    }

    .service-image-label {
        left: 20px;
        bottom: 20px;
    }

    .service-image-label span {
        font-size: 42px;
    }

    .flow-arrow {
        display: none;
    }

}