/* ── BANNER service US ─────────────────────────────── */
.banner-service {
    position: relative;
    z-index: 1;
    overflow: hidden;
    /* Only bottom corners rounded — top flush */
    border-radius: 0 0 48px 48px;
    background: #0d2b1e;
    min-height: 560px;
    display: flex;
    align-items: center;
    padding: 170px 0px 90px;
}

/* Gradient + noise overlay */
.banner-service::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 80% 70% at 0% 100%, rgba(163, 220, 80, 0.13) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 100% 0%, rgba(20, 80, 40, 0.45) 0%, transparent 70%),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
    background-size: cover;
    z-index: -1;
}

/* Green radial glow bottom-left */
.banner-service::after {
    content: '';
    position: absolute;
    left: -120px;
    bottom: -80px;
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(163, 220, 60, 0.18) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.container-banner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.banner-service__inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* ── LEFT CONTENT ── */
.banner-service__content {
    flex: 1;
    max-width: 680px;
}

/* Breadcrumb */
.breadcrumb-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-wrap a,
.breadcrumb-wrap span {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-decoration: none;
    color: rgb(49, 21, 61, 0.98);
    transition: color 0.2s;
}

.breadcrumb-wrap a:hover {
    color: #713983;
}

.breadcrumb-wrap .sep {
    color: rgb(49 21 61 / 42%);
    font-size: 13px;
}

.breadcrumb-wrap .current {
    color: #713983;
    font-weight: 600;
}

/* Eyebrow pill tag */
.banner-service__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgb(179 74 240 / 8%);
    border: 1px solid rgb(192 74 240 / 36%);
    border-radius: 100px;
    padding: 6px 16px 6px 10px;
    margin-bottom: 22px;
}

.banner-service__eyebrow .dot {
    width: 7px;
    height: 7px;
    background: #713983;
    border-radius: 50%;
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.45;
        transform: scale(0.7);
    }
}

.banner-service__eyebrow span {
    font-size: clamp(14px, 1.2vw, 17px);
    font-weight: 700;
    color: #713983;
    letter-spacing: 0.01em;
}

/* Headline — h2 as per requirement */
.banner-service__headline {
    font-size: clamp(34px, 4.2vw, 60px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.banner-service__headline .highlight {
    color: #713983;
}

/* Subheadline */
.banner-service__sub {
    font-size: 17px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.75;
    max-width: 560px;
    margin-bottom: 40px;
}

/* CTA area */
.banner-service__actions {
    display: flex;
    align-items: center;
    gap: 22px;
    width: max-content;
    flex-wrap: wrap;
}

.btn-consult {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 34px;
    background: #713983;
    color: #0d2b1e;
    font-size: 15px;
    font-weight: 700;
    border-radius: 100px;
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    box-shadow: 0 8px 32px rgba(200, 240, 74, 0.22);
    letter-spacing: 0.01em;
}

.btn-consult:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(200, 240, 74, 0.35);
    color: #0d2b1e;
}

.btn-consult i {
    font-size: 13px;
}

/* Trust line */
.trust-line {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 17.5px;
    font-weight: 500;
    line-height: 1.5;
}

.trust-line .icon-wrap {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #713983;
    font-size: 12px;
    flex-shrink: 0;
}

/* ── RIGHT IMAGE PLACEHOLDER ── */
.banner-service__visual {
    flex: 0 0 auto;
    width: clamp(300px, 38%, 500px);
    position: relative;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: rgba(255, 255, 255, 0.03);
    border: 2px dashed rgba(200, 240, 74, 0.22);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(200, 240, 74, 0.04) 0%, transparent 70%);
}

.image-placeholder .ph-icon {
    width: 60px;
    height: 60px;
    background: rgba(200, 240, 74, 0.09);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #713983;
    font-size: 24px;
    margin-bottom: 4px;
}

.image-placeholder .ph-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(200, 240, 74, 0.55);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.image-placeholder .ph-hint {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.5;
    max-width: 190px;
}

/* Corner decorators */
.corner {
    position: absolute;
    width: 18px;
    height: 18px;
    border-color: rgba(200, 240, 74, 0.35);
    border-style: solid;
}

.corner-tl {
    top: 10px;
    left: 10px;
    border-width: 2px 0 0 2px;
    border-radius: 3px 0 0 0;
}

.corner-tr {
    top: 10px;
    right: 10px;
    border-width: 2px 2px 0 0;
    border-radius: 0 3px 0 0;
}

.corner-bl {
    bottom: 10px;
    left: 10px;
    border-width: 0 0 2px 2px;
    border-radius: 0 0 0 3px;
}

.corner-br {
    bottom: 10px;
    right: 10px;
    border-width: 0 2px 2px 0;
    border-radius: 0 0 3px 0;
}

/* Floating blob accents */
.blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.blob-1 {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(200, 240, 74, 0.12), transparent 70%);
    top: -80px;
    right: -60px;
}

.blob-2 {
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(74, 224, 140, 0.1), transparent 70%);
    bottom: 20px;
    right: -40px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .banner-service__visual {
        width: clamp(260px, 40%, 400px);
    }

    .banner-service__inner {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .banner-service {
        border-radius: 0 0 32px 32px;
        padding: 60px 0 70px;
        min-height: auto;
    }

    .banner-service__inner {
        flex-direction: column;
        gap: 44px;
    }

    .banner-service__visual {
        width: 100%;
        max-width: 460px;
        align-self: center;
    }

    .container-banner {
        padding: 0 24px;
    }

    .banner-service__content {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .banner-service__actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .trust-line {
        max-width: 100%;
    }
}

.service-card {
    @apply relative overflow-hidden lg:w-[37.8%] w-full duration-500;
}

.service-card.active {
    @apply lg:w-[62.2%];
}

.service-card.active .service-img:after {
    @apply opacity-70;
}

.service-card.active .content {
    @apply left-1/2 -translate-x-1/2;
}

.service-card.active .service-text {
    @apply left-[-20%] -translate-x-full;
}

     .works_accross {
            display: flex;
            align-items: center;
            gap: 8px;
            border-radius: 100px;
            padding: 6px 10px 6px 10px;
            margin-bottom: 6px;
        }

        .works_accross .dot {
            width: 7px;
            height: 7px;
            background: #713983;
            border-radius: 50%;
            animation: pulse 2s infinite;
            flex-shrink: 0;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.45; transform: scale(0.7); }
        }

        .works_accross span {
            font-size: 17px;
            font-weight: 700;
            color: #713983;
        }

        .cta-heading{
            max-width: 570px;
        }

        .review-heading {
            padding-left: 20px;
            padding-right: 20px;
            }

            @media (min-width: 1024px) {
            .review-heading {
                padding-left: 60px;
                padding-right: 60px;
            }
            }

        /* ============= Card image responsive ====================*/
        @media (max-width: 480px) {

            .local-service .card.bordergradient img {
                width: 225px;
            }
        }
