/* Dotnex - Shared Styles */

@font-face {
    font-family: 'Architype Ballmer';
    src: url('../fonts/Ballmer ArchiType Regular.otf') format('opentype');
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    padding-top: 48px;
}

/* Optional body helper used in templates to compact top spacing */
.bz-body {
    padding-top: 48px !important;
    width: 100%;
    /* match header/footer horizontal padding and container width */
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .bz-body {
        padding-left: 24px;
        padding-right: 24px;
    }
}

/* Blogs Section - Fully Isolated from Services */
.bc-blogs {
    padding: 100px 0 64px;
    background-color: #ffffff;
    overflow-x: hidden;
}

.bc-blogs__container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .bc-blogs__container {
        padding-left: 24px;
        padding-right: 24px;
    }
}

.bc-blogs__header {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 48px;
    gap: 30px;
}

.bc-blogs__title {
    font-size: clamp(32px, 4vw, 42px);
    margin: 0;
    color: #1275bc;
    line-height: 1.25;
    letter-spacing: 0;
}

.bc-blogs__title-line {
    display: inline;
}

.bc-blogs__title-line--normal {
    font-weight: 400;
    color: #111827;
}

.bc-blogs__title-line--bold {
    font-weight: 800;
}

.bc-blogs__header--center {
    justify-content: center;
    align-items: center;
    text-align: center;
}

.bc-blogs__header--center .bc-blogs__subtitle {
    margin-left: auto;
    margin-right: auto;
}

.bc-blogs__subtitle {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
    margin: 16px 0 0;
    max-width: 700px;
}

.bc-blogs__filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.bc-blogs__filter-btn {
    background: #f1f5f9;
    border: 1px solid transparent;
    color: #4b5563;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bc-blogs__filter-btn:hover {
    background: #e2e8f0;
    color: #111827;
}

.bc-blogs__filter-btn.active {
    background: #1275bc;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(18, 117, 188, 0.2);
}

.bc-blogs__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    align-items: stretch;
}

.bc-blogs__cards--2x2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bc-blogs__card {
    width: 100%;
    min-height: 100%;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bc-blogs__card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.05);
}

.bc-blogs__card--1 { background-color: #DCEEFF; }
.bc-blogs__card--2 { background-color: #E0F0FF; }
.bc-blogs__card--3 { background-color: #D6ECFF; }
.bc-blogs__card--4 { background-color: #E0F0FF; }
.bc-blogs__card--5 { background-color: #DCEEFF; }

.bc-blogs__card-img-wrap {
    width: 100%;
    height: 240px;
    overflow: hidden;
    flex-shrink: 0;
}

.bc-blogs__card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bc-blogs__card:hover .bc-blogs__card-img-wrap img {
    transform: scale(1.05);
}

.bc-blogs__card-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.bc-blogs__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.bc-blogs__tag {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bc-blogs__tag--category {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #1d4ed8;
}

.bc-blogs__date {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

/* Single blog pages */
.bc-blog-article {
    padding-top: 104px;
    padding-bottom: 48px;
}

.bc-blog-article__content,
.bc-blog-article__meta {
    text-align: left;
}

.bc-blog-article__meta {
    margin-bottom: 20px;
}

.bc-blog-article__meta .bc-blogs__tag {
    text-align: center;
}

.bc-blogs__card-title {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
    line-height: 1.3;
}

.bc-blogs__card-desc {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 32px;
    flex-grow: 1;
}

.bc-blogs__card-link {
    font-weight: 600;
    color: #1275bc;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 15px;
    transition: color 0.2s ease, gap 0.2s ease;
}

.bc-blogs__card-link:hover {
    color: #0f64a1;
    gap: 8px;
}

.bc-blogs__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
}

.bc-blogs__pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    color: #334b62;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid #d8eaf7;
    border-radius: 8px;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.bc-blogs__pagination-btn:hover:not(:disabled),
.bc-blogs__pagination-btn:focus-visible:not(:disabled) {
    border-color: #1275bc;
    background-color: #f1f7fc;
}

.bc-blogs__pagination-btn.active {
    color: #ffffff;
    background: #1275bc;
    border-color: #1275bc;
}

.bc-blogs__pagination-btn.active:hover,
.bc-blogs__pagination-btn.active:focus-visible {
    color: #ffffff;
    background: #1275bc;
}

.bc-blogs__pagination-btn i {
    font-size: 20px;
}

.bc-blogs__pagination-btn:disabled {
    color: #94a3b8;
    cursor: not-allowed;
    opacity: 0.65;
}

@media (max-width: 991px) {
    .bc-blogs__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .bc-blogs {
        padding: 80px 0 40px;
    }
    .bc-blogs__header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 36px;
    }
    .bc-blogs__header--center {
        align-items: center;
    }
    .bc-blogs__cards,
    .bc-blogs__cards--2x2 {
        grid-template-columns: 1fr;
    }
    .bc-blogs__card-content {
        padding: 24px;
    }
}

/* Premium hero component (index only) */
.bc-hero {
    /* Deep teal field modelled on the ServiceNow homepage hero. */
    background-color: #003b4a;
    background-image:
        radial-gradient(ellipse 70% 92% at -8% 108%, rgba(16, 112, 99, 0.55) 0%, rgba(7, 81, 79, 0.34) 36%, transparent 72%),
        linear-gradient(110deg, #003f49 0%, #003b4a 58%, #003849 100%);
    padding-top: 62px !important;
    padding-right: 0;
    padding-bottom: 30px;
    padding-left: 0;
    width: 100%;
    overflow-x: clip;
}

.bc-hero__container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    align-items: center;
    gap: clamp(40px, 5vw, 64px);
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .bc-hero__container {
        padding-left: 24px;
        padding-right: 24px;
    }
}

.bc-hero__content {
    text-align: left;
    max-width: 680px;
    min-width: 0;
    transform: none;
}

.bc-hero__kicker {
    margin: 0 0 18px;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #5d7f9c;
}

.bc-hero__title {
    margin: 0 0 28px;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.15;
    font-weight: 700;
    max-width: 15ch;
    letter-spacing: 0;
    color: #172a3f;
}

.bc-hero__kicker {
    display: none;
}

.bc-hero__title-line {
    display: block;
    white-space: nowrap;
}

@media (min-width: 992px) {
    .bc-hero__content {
        transform: translateY(-20px);
    }

    .bc-hero__title {
        font-size: 56px;
        line-height: 1.15;
    }
}

/* Desktop-only: keep the fixed header to headline gap compact. */
@media (min-width: 992px) {
    .bc-hero {
        padding-top: 52px !important;
    }
}

/* Desktop: enlarge visual column and hero image for bigger screens */
@media (min-width: 1200px) {
    .bc-hero__container {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
        gap: 72px;
        max-width: 1200px;
    }

    .bc-hero__image-wrap {
        max-width: 640px !important;
    }

    .bc-hero__image {
        max-width: 640px !important;
    }
}

.bc-hero__title-line--dark {
    color: #ffffff;
}

.bc-hero__title-line--accent {
    color: #63df4e;
}

.bc-hero__lead {
    margin: 0 0 28px;
    max-width: 620px;
    font-size: 1.08rem;
    line-height: 1.8;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
}

.bc-hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 3px;
    background-color: #63df4e;
    color: #032d42;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.01em;
    box-shadow: -6px 8px 20px rgba(18, 117, 188, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

    .bc-hero__cta:hover,
    .bc-hero__cta:focus {
        color: #032d42;
        background-color: #63df4e;
        transform: translateY(-2px) scale(1.02);
        /* move shadow from left to right on hover */
        box-shadow: 8px 14px 30px rgba(18, 117, 188, 0.30);
    }

    /* Ensure hero CTA icon spacing matches header CTA */
    .bc-hero__cta i {
        margin-left: 8px;
        display: inline-block;
        vertical-align: middle;
        transition: transform 0.3s ease;
    }

.bc-hero__visual {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    min-width: 0;
}

.bc-hero__image-wrap {
    /* allow the image to grow to visually match the headline weight and sit flush to the right */
    width: 100% !important;
    max-width: 840px !important;
    border-radius: 18px;
    padding: 0 !important;
    margin: 0 !important;
    padding-right: 0 !important;
    margin-right: 0 !important;
    transform: none !important;
    display: flex !important;
    justify-content: flex-end !important;
}

.bc-hero__image {
    display: block !important;
    width: 100% !important;
    max-width: 840px !important;
    height: auto !important;
    filter: none !important;
    box-shadow: none !important;
    margin: 0 !important;
    margin-right: 0 !important;
    padding: 0 !important;
}

@media (hover: hover) {
    .bc-hero__image {
        transition: transform 0.5s cubic-bezier(.2,.9,.25,1) !important;
        will-change: transform;
        transform-origin: center center !important;
    }

    .bc-hero__image-wrap:hover .bc-hero__image {
        transform: scale(1.04) translateY(-6px) !important;
    }
}

.bc-services__cards--2x2 .bc-services__card {
    width: calc(50% - 16px);
}

@media (max-width: 991px) {
    .bc-hero {
        padding: 48px 0 28px;
    }

    .bc-hero__container {
        grid-template-columns: 1fr;
        align-items: center;
        gap: 42px;
    }

    .bc-hero__content {
        transform: none;
    }
    .bc-hero__lead {
        margin: 20px 0 28px;
        max-width: 100%;
    }
    .bc-hero__title {
        max-width: 100%;
        line-height: 1.18;
        font-size: 56px;
        margin-bottom: 20px;
    }

    /* Allow the locked title lines to wrap naturally on tablet/mobile */
    .bc-hero__title-line {
        white-space: normal;
        display: block;
    }

    /* Make CTA full width on tablet-sized screens for easier tapping */
    .bc-hero__cta {
        width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }
    .bc-hero__image-wrap {
        width: 100% !important;
        max-width: 680px !important;
        transform: none !important;
        padding: 0 !important;
    }
}

@media (max-width: 575px) {
    .bc-hero {
        padding: 68px 0 22px !important;
    }

    .bc-hero__kicker {
        font-size: 0.68rem;
    }

    .bc-hero__cta {
        width: 100%;
    }
    .bc-hero__title {
        max-width: 100%;
        line-height: 1.25;
        font-size: 34px;
        margin: 0 0 16px;
    }
    .bc-hero__image-wrap {
        width: 100%;
        transform: none;
        padding: 0 !important;
    }

    /* Center the visual on small screens and keep image within gutters */
    .bc-hero__visual {
        justify-content: center;
    }

    .bc-hero__image-wrap {
        max-width: 420px !important;
        justify-content: center !important;
    }

    .bc-hero__lead {
        margin: 0 0 16px;
    }

    .bc-hero__cta {
        width: 100% !important;
    }

    /* Slightly larger brand on small phones for legibility */
    .navbar-brand {
        font-size: 2.2rem;
    }
}

/* Mobile-only fixes: ensure header, body, footer gutters and hero spacing align */
@media (min-width: 576px) and (max-width: 768px) {
    /* Ensure same 15px horizontal gutter across header, body, hero and footer */
    .navbar .container,
    .bz-body,
    .bc-hero__container,
    .bc-footer-layout {
        padding-left: 15px !important;
        padding-right: 15px !important;
        box-sizing: border-box;
        max-width: 100% !important;
    }

    /* Give hero slightly tighter breathing room under fixed header */
    .bc-hero {
        padding-top: 68px !important;
    }

    /* Tighten footer inner padding so footer content lines up with header logo */
    .bc-footer-layout {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .bc-footer-bottom-inner,
    .bc-footer-top .container,
    .bc-footer-col-1,
    .bc-footer-col-2,
    .bc-footer-col-3 {
        padding-left: 0 !important;
        padding-right: 0 !important;
        box-sizing: border-box;
    }

    /* Prevent horizontal overflow from hero image and ensure it fits the 15px gutter */
    .bc-hero__image-wrap,
    .bc-hero__image {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box;
    }

    /* Make sure no internal element accidentally causes horizontal scroll */
    html, body {
        -webkit-overflow-scrolling: touch;
        overflow-x: hidden;
    }
}

/* Optimized hero styles for mobile devices (<=768px) per UX spec */
@media (max-width: 768px) {
    /* Headline */
    .bc-hero__title {
        font-size: 34px !important;
        line-height: 1.2 !important;
        margin-bottom: 15px !important;
        max-width: 100% !important;
    }

    /* Sub-headline */
    .bc-hero__lead {
        font-size: 16px !important;
        line-height: 1.5 !important;
        margin-bottom: 21px !important;
        max-width: 100% !important;
    }

    .bc-hero__cta {
        padding-top: 12px !important;
        padding-bottom: 12px !important;
    }

    /* Ensure horizontal padding so content doesn't hug screen edges */
    .bc-hero__container {
        padding-left: 20px !important;
        padding-right: 20px !important;
        gap: 18px !important;
        box-sizing: border-box;
    }

    /* 3D graphic / image below the button */
    .bc-hero__image-wrap {
        margin-top: 0 !important;
        max-width: 340px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        justify-content: center !important;
    }

    .bc-hero__visual {
        justify-content: center !important;
    }

    .bc-hero__image {
        max-width: 340px !important;
        width: 100% !important;
        display: block !important;
        margin: 0 auto !important;
    }
}

@media (max-width: 991px) {
    .bc-hero {
        padding-top: 83px !important;
    }
}

.bc-stats {
    background: #ffffff;
    padding: 40px 0;
}

.bc-stats__container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

.bc-stats__item {
    text-align: left;
    min-width: 0;
    background: linear-gradient(180deg, #e7f3ff 0%, #dceeff 52%, #eef6ff 100%);
    padding: 32px 24px;
    border-radius: 16px;
}

.bc-stats__number {
    margin: 0;
    color: #1275bc;
    font-size: clamp(38px, 3.1vw, 42px);
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0;
}

.bc-stats__title {
    margin: 8px 0 0;
    color: #111827;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 0;
}

.bc-stats__description {
    margin: 12px 0 0;
    color: #4b5563;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
}

/* Service page specific stats modifier */
.bc-stats--service .bc-stats__container {
    grid-template-columns: 32% 15% 15% 15% 15%;
    gap: 2%;
}

.bc-stats--service .bc-stats__item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bc-stats__heading-col {
    display: flex;
    align-items: center;
}

.bc-stats--transparent .bc-stats__item {
    background: transparent;
    padding: 0;
}

.bc-stats--transparent .bc-stats__number {
    color: #7dd3fc;
}

.bc-stats--transparent .bc-stats__title {
    color: #e0f2fe;
}

.bc-stats--transparent .bc-stats__description {
    color: #bae6fd;
}

@media (min-width: 768px) {
    .bc-stats__container {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (max-width: 768px) {
    .bc-stats {
    }

    .bc-stats__container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px 20px;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .bc-stats__number {
        font-size: 32px;
    }

    .bc-stats__title {
        font-size: 18px;
    }

    .bc-stats__description {
        font-size: 14px;
        line-height: 1.55;
    }

    .bc-stats--service .bc-stats__container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px 20px;
    }
    .bc-stats__heading-col {
        grid-column: 1 / -1; /* Mobile e heading full width thakbe */
    }
}

/* Platforms Section */
.bc-platforms {
    padding: 64px 0 80px;
    background-color: #ffffff;
}

.bc-platforms__container {
    display: grid;
    grid-template-columns: minmax(260px, 34%) minmax(0, 1fr);
    column-gap: clamp(24px, 5vw, 72px);
    row-gap: 20px;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .bc-platforms__container {
        padding-left: 24px;
        padding-right: 24px;
    }
}

.bc-platforms__heading-wrapper {
    grid-column: 1;
}

.bc-platforms__heading {
    margin: 0;
    color: #1275bc;
    font-size: clamp(32px, 4vw, 42px);
    line-height: 1.25;
    letter-spacing: 0;
}

.bc-platforms__line {
    display: block;
}

.bc-platforms__line--normal {
    font-weight: 400;
}

.bc-platforms__line--bold {
    font-weight: 800;
}

.bc-platforms__marquee {
    grid-column: 2;
    display: grid;
    gap: 18px;
    min-width: 0;
}

.bc-platforms__row {
    overflow: hidden;
    min-width: 0;
}

.bc-platforms__track {
    display: flex;
    align-items: center;
    gap: 18px;
    width: max-content;
    will-change: transform;
}

.bc-platforms__row--forward .bc-platforms__track {
    animation: bc-platforms-marquee-forward 10s linear infinite;
}

.bc-platforms__row--reverse .bc-platforms__track {
    animation: bc-platforms-marquee-reverse 10s linear infinite;
}

.bc-platforms__logo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
}

.bc-platforms__logo img {
    height: 80px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: all 0.3s ease-in-out;
}

.bc-platforms__logo:hover img {
    transform: scale(1.05);
}

@keyframes bc-platforms-marquee-forward {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes bc-platforms-marquee-reverse {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .bc-platforms {
        padding: 40px 0;
    }
    .bc-platforms__container {
        grid-template-columns: 1fr;
        row-gap: 24px;
    }
    .bc-platforms__heading-wrapper {
        grid-column: 1;
        text-align: left;
        margin-bottom: 0;
    }
    .bc-platforms__marquee {
        grid-column: 1;
        gap: 14px;
    }
    .bc-platforms__track {
        gap: 14px;
    }
    .bc-platforms__logo img {
        height: 60px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .bc-platforms__row--forward .bc-platforms__track,
    .bc-platforms__row--reverse .bc-platforms__track {
        animation: none;
        transform: none;
    }
}

/* CTA Banner Section */
.bc-cta-banner {
    background-color: #1275bc;
    padding: 80px 0;
}

.bc-cta-banner__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .bc-cta-banner__container {
        padding-left: 24px;
        padding-right: 24px;
    }
}

.bc-cta-banner__content {
    max-width: 880px;
    color: #ffffff;
}

.bc-cta-banner__heading {
    font-size: clamp(28px, 3.5vw, 42px);
    margin: 0 0 12px 0;
    line-height: 1.2;
    color: #ffffff;
}

.bc-cta-banner__light {
    font-weight: 400;
}

.bc-cta-banner__bold {
    font-weight: 700;
}

.bc-cta-banner__subheading {
    font-size: 18px;
    font-weight: 400;
    margin: 0;
    line-height: 1.5;
    opacity: 0.9;
}

.bc-cta-banner__action {
    flex-shrink: 0;
    margin-left: 40px;
}

.bc-cta-banner__btn {
    display: inline-block;
    padding: 16px 36px;
    border: 2px solid #ffffff;
    background-color: transparent;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.bc-cta-banner__btn:hover,
.bc-cta-banner__btn:focus {
    background-color: #ffffff;
    color: #1275bc;
}

@media (max-width: 768px) {
    .bc-cta-banner {
        padding: 48px 0;
    }
    
    .bc-cta-banner__container {
        flex-direction: column;
        text-align: left;
    }

    .bc-cta-banner__content {
        margin-bottom: 30px;
    }

    .bc-cta-banner__heading {
        font-size: 32px;
        font-size: clamp(24px, 6.5vw, 28px);
    }

    .bc-cta-banner__subheading {
        font-size: 16px;
    }

    .bc-cta-banner__action {
        margin-left: 0;
        width: 100%;
    }

    .bc-cta-banner__btn {
        width: 100%;
        box-sizing: border-box;
            text-align: center;
            padding: 12px 24px;
    }
}

/* Services Section */
.bc-services {
    padding: 100px 0 64px;
    background-color: #ffffff;
    overflow-x: hidden; /* Prevent horizontal scrollbars during AOS animation */
}

.bc-services__container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .bc-services__container {
        padding-left: 24px;
        padding-right: 24px;
    }
}

.bc-services__header {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 48px;
    gap: 30px;
}

.bc-services__title {
    font-size: clamp(32px, 4vw, 42px);
    margin: 0;
    color: #1275bc;
    line-height: 1.25;
    letter-spacing: 0;
}

.bc-services__title-line {
    display: inline;
}

.bc-services__title-line--normal {
    font-weight: 400;
    color: #111827;
}

.bc-services__title-line--bold {
    font-weight: 800;
}

.bc-services__header--center {
    justify-content: center;
    align-items: center;
    text-align: center;
}

.bc-services__header--center .bc-services__subtitle {
    margin-left: auto;
    margin-right: auto;
}

.bc-services__subtitle {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
    margin: 16px 0 0;
    max-width: 700px;
}

.bc-services__cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}

/* Match the space above the blog contact block to the Case Studies layout. */
.bc-blogs__contact {
    padding-top: 64px;
}

.bc-services__card {
    width: calc((100% - 64px) / 3);
    padding: 40px 32px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bc-services__card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.05);
}

.bc-services__card--1 { background-color: #DCEEFF; }
.bc-services__card--2 { background-color: #E0F0FF; }
.bc-services__card--3 { background-color: #D6ECFF; }
.bc-services__card--4 { background-color: #E0F0FF; }
.bc-services__card--5 { background-color: #DCEEFF; }
.bc-services__card--6 { background-color: #E0F0FF; }

.bc-services__card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    color: #1275bc;
}

.bc-services__card-title {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
    line-height: 1.3;
}

.bc-services__card-desc {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 32px;
    flex-grow: 1;
}

.bc-services__card-link {
    font-weight: 600;
    color: #1275bc;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 15px;
    transition: color 0.2s ease, gap 0.2s ease;
}

.bc-services__card-link:hover {
    color: #0f64a1;
    gap: 8px;
}

/* Case study details modal */
.bc-case-study-modal {
    border: 0;
    border-radius: 20px;
    overflow: hidden;
}

.bc-case-study-modal__header {
    padding: 32px;
    border-bottom: 1px solid #e2e8f0;
    align-items: flex-start;
}

.bc-case-study-modal__header .btn-close {
    margin: 4px 0 0 20px;
    border-radius: 50%;
    opacity: 0.6;
    transition: background-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.bc-case-study-modal__header .btn-close:hover {
    background-color: #eff6ff;
    opacity: 1;
    transform: rotate(90deg);
}

.bc-case-study-modal__eyebrow {
    color: #1275bc;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bc-case-study-modal__title {
    margin-top: 6px;
    color: #111827;
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 800;
}

.bc-case-study-modal__body {
    padding: 32px;
}

.bc-case-study-modal__summary,
.bc-case-study-modal__section p {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.7;
}

.bc-case-study-modal__summary {
    margin-bottom: 24px;
}

.bc-case-study-modal__metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 28px;
}

.bc-case-study-modal__metric {
    background: #eff6ff;
    border-radius: 12px;
    color: #1d4ed8;
    padding: 18px;
}

.bc-case-study-modal__metric span {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.bc-case-study-modal__metric strong {
    display: block;
    margin-top: 6px;
    font-size: 28px;
    line-height: 1;
}

.bc-case-study-modal__metric strong::before {
    content: '▲';
    color: #059669;
    font-size: 15px;
    margin-right: 7px;
    vertical-align: 3px;
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 8px solid #059669;
}

.bc-case-study-modal__metric strong[data-direction="down"]::before {
    border-bottom: 0;
    border-top: 8px solid #059669;
}

.bc-case-study-modal__section + .bc-case-study-modal__section {
    margin-top: 22px;
}

.bc-case-study-modal__section h3 {
    color: #111827;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.bc-case-study-modal__approach {
    display: grid;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.bc-case-study-modal__approach li {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.6;
    padding-left: 22px;
    position: relative;
}

.bc-case-study-modal__approach li::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #1275bc;
    left: 0;
    position: absolute;
    top: 9px;
}

.bc-case-study-modal__approach strong {
    color: #111827;
    font-weight: 700;
}

.bc-case-study-modal__chart {
    background: #f8fbff;
    border: 1px solid #dbeafe;
    border-radius: 14px;
    margin-top: 28px;
    padding: 18px 18px 12px;
}

.bc-case-study-modal__chart-header {
    align-items: center;
    color: #111827;
    display: flex;
    font-size: 13px;
    font-weight: 700;
    justify-content: space-between;
    margin-bottom: 6px;
}

.bc-case-study-modal__chart-badge {
    background: #ecfdf5;
    border-radius: 999px;
    color: #047857;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 9px;
}

.bc-case-study-modal__chart svg {
    display: block;
    height: auto;
    width: 100%;
}

.bc-case-study-modal__chart-grid {
    fill: none;
    stroke: #dbeafe;
    stroke-dasharray: 3 5;
    stroke-width: 1;
}

.bc-case-study-modal__chart-fill {
    fill: url(#case-study-growth-fill);
}

.bc-case-study-modal__chart-line {
    fill: none;
    stroke: #1275bc;
    stroke-linecap: round;
    stroke-width: 4;
}

.bc-case-study-modal__chart-dot {
    fill: #059669;
    stroke: #ffffff;
    stroke-width: 3;
}

.bc-case-study-modal__footer {
    margin-top: 28px;
}

.bc-case-study-modal__cta {
    align-items: center;
    background: #1275bc;
    border-radius: 10px;
    color: #ffffff;
    display: inline-flex;
    font-size: 15px;
    font-weight: 700;
    gap: 8px;
    justify-content: center;
    padding: 14px 20px;
    text-decoration: none;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.bc-case-study-modal__cta:hover {
    background: #0f64a1;
    box-shadow: 0 8px 18px rgba(18, 117, 188, 0.28);
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 576px) {
    .bc-case-study-modal__header,
    .bc-case-study-modal__body {
        padding-left: 20px;
        padding-right: 20px;
    }

    .bc-case-study-modal__header,
    .bc-case-study-modal__body {
        padding-bottom: 24px;
        padding-top: 24px;
    }

    .bc-case-study-modal__metrics {
        grid-template-columns: 1fr;
    }

    .bc-case-study-modal__cta {
        width: 100%;
    }
}

@media (max-width: 991px) {
    .bc-services__card {
        width: calc((100% - 32px) / 2);
    }
}

@media (max-width: 768px) {
    .bc-services {
        padding: 80px 0 40px;
    }
    .bc-blogs__contact {
        padding-top: 40px;
    }
    .bc-services__header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 36px;
    }
    .bc-services__header--center {
        align-items: center;
    }
    .bc-services__card {
        width: 100%;
        padding: 32px 24px;
    }
    .bc-services__cards--2x2 .bc-services__card {
        width: 100%;
    }
}

/* Ecommerce development page: We Offer section */
.bc-ecommerce-development-stats {
    padding-bottom: 80px;
}

.bc-offer {
    padding: 80px 0 100px;
}

@media (max-width: 767.98px) {
    .bc-offer--ecommerce-development {
        padding-top: 60px;
    }
}

/* Process Section */
.bc-process {
    padding: 80px 0;
    background-color: #ffffff;
    overflow: hidden; /* Prevent horizontal scroll bleed */
}

.bc-process__container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .bc-process__container {
        padding-left: 24px;
        padding-right: 24px;
    }
}

.bc-process__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    gap: 30px;
}

.bc-process__title {
    font-size: clamp(32px, 4vw, 42px);
    margin: 0;
    color: #1275bc;
    line-height: 1.25;
    max-width: 800px;
    letter-spacing: 0;
}

.bc-process__title-line {
    display: inline;
}

.bc-process__title-line--normal {
    font-weight: 400;
    color: #111827;
}

.bc-process__title-line--bold {
    font-weight: 800;
}

.bc-process__header-content {
    max-width: 800px;
}

.bc-process__subtitle {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
    margin: 16px 0 0;
}

.bc-process__nav {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.bc-process__nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bc-process__nav-btn:hover {
    background: #1275bc;
    border-color: #1275bc;
    color: #ffffff;
}

.bc-process__slider-wrap {
    position: relative;
}

.bc-process__line {
    position: absolute;
    top: 15px;
    left: 0;
    right: -100vw; /* Stretch line beyond container horizontally */
    height: 1px;
    background-color: #cbd5e1;
    z-index: 1;
}

.bc-process__slider {
    display: flex;
    gap: 43px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    padding-bottom: 20px;
}

.bc-process__slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.bc-process__step {
    flex: 0 0 calc(31.5% - 20px); /* Forces ~3.5 items to be visible */
    scroll-snap-align: start;
    position: relative;
    z-index: 2;
    background: transparent;
}

.bc-process__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    padding: 0 16px;
    background: #111827;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 99px;
    margin-bottom: 24px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bc-process__step-title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
    line-height: 1.3;
}

.bc-process__step-desc {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1199px) {
    .bc-process__step {
        flex: 0 0 calc(40% - 10px);
    }
}

@media (max-width: 991px) {
    .bc-process__line {
        top: 15px;
        bottom: 15px;
        left: 36px;
        height: auto;
        width: 1px;
        right: auto;
    }
    .bc-process__slider {
        flex-direction: column;
        gap: 43px;
    }
    .bc-process__step {
        flex: 0 0 auto;
        width: 100%;
        padding-left: 90px;
    }
    .bc-process__badge {
        position: absolute;
        left: 0;
        top: 0;
        margin-bottom: 0;
    }
    .bc-process__step-title {
        margin-top: 4px;
    }
}

@media (max-width: 768px) {
    .bc-process {
        padding: 40px 0;
    }
    .bc-process__header {
        margin-bottom: 40px;
    }
}

/* Success Cases Section (Asymmetric) */
.bc-success {
    padding: 80px 0;
    background-color: #ffffff;
}

.bc-success__container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .bc-success__container {
        padding-left: 24px;
        padding-right: 24px;
    }
}

.bc-success__header {
    margin-bottom: 48px;
}

.bc-success__main-title {
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 800;
    color: #111827;
    margin: 0;
    line-height: 1.25;
}

.bc-success__title-line--bold {
    font-weight: 800;
    color: #1275bc;
}

.bc-success__content {
    display: grid;
    grid-template-columns: 4fr 6fr;
    gap: 40px;
    align-items: stretch;
}

/* Left Column */
.bc-success__left {
    display: flex;
    flex-direction: column;
}

.bc-success__label-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
}

.bc-success__label {
    font-size: 13px;
    font-size: 15px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-transform: none;
    display: none;
}

.bc-success__line {
    flex-grow: 1;
    width: 100%;
    border: none;
    border-top: 1px solid #e2e8f0;
    margin: 0;
}

.bc-success__quote-heading {
    font-size: clamp(24px, 3vw, 36px);
    font-size: 28px;
    font-weight: 800;
    color: #111827;
    line-height: 1.3;
    margin-bottom: 8px;
    font-style: italic;
}

/* Homepage Client Success Stories only */
#cs-quote {
    font-size: 24px;
}

/* Dynamic slider text animation */
.bc-success__quote-anim {
    animation: quoteSlideRight 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) forwards !important;
    transition: none !important;
}

@keyframes quoteSlideRight {
    0% {
        opacity: 0;
        transform: translateX(-40px) !important;
    }
    100% {
        opacity: 1;
        transform: translateX(0) !important;
    }
}

.bc-success__review-card {
    background: #ffffff;
    border: none;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bc-success__review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.bc-success__reviewer {
    display: flex;
    align-items: center;
    gap: 16px;
}

.bc-success__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #f1f5f9;
}

.bc-success__reviewer-info {
    display: flex;
    flex-direction: column;
}

.bc-success__reviewer-name {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.bc-success__reviewer-company {
    font-size: 14px;
    color: #64748b;
}

.bc-success__watch-btn {
    background: transparent;
    border: none;
    color: #1275bc;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    cursor: pointer;
    transition: color 0.2s ease;
}

.bc-success__watch-btn:hover {
    color: #0f64a1;
}

.bc-success__watch-btn i {
    font-size: 20px;
}

.bc-success__review-text {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

/* Homepage Client Success Stories only */
#cs-review {
    font-size: 14px;
}

/* Right Column */
.bc-success__right {
    display: flex;
}

.bc-success__case-card {
    background: linear-gradient(180deg, #e7f3ff 0%, #dceeff 52%, #eef6ff 100%);
    border-radius: 20px;
    padding: 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    border: none;
    position: relative;
}

.bc-success__case-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1275bc;
    margin-bottom: 32px;
    letter-spacing: 0.5px;
    display: none;
}

.bc-success__case-split {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.bc-success__logo-box {
    width: 120px;
    height: 120px;
    background: transparent;
    border-radius: 7px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.bc-success__brand-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 7px;
}

.bc-success__case-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.bc-success__case-desc {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 24px;
}

.bc-success__results-label {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.bc-success__metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.bc-success__metric-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 12px 48px 12px 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid #e2e8f0;
    position: relative;
}

.bc-success__metric-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    gap: 12px;
}

.bc-success__metric-title {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
    line-height: 1.4;
    font-style: italic;
}

.bc-success__metric-icon {
    font-size: 20px;
    color: #1275bc;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
}

.bc-success__metric-value {
    font-size: clamp(22px, 2.2vw, 27px);
    font-weight: 800;
    color: #111827;
    line-height: 1;
    font-style: italic;
}

.bc-success__slider-nav {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(50%, -50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    padding: 16px 8px;
    width: 40px;
    height: 144px;
    border-radius: 9999px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #f3f4f6;
}

.bc-success__nav-arrow {
    background: transparent;
    border: none;
    font-size: 18px;
    color: #64748b;
    cursor: pointer;
    transition: color 0.2s ease;
    padding: 0;
}

.bc-success__nav-arrow:hover {
    color: #111827;
}

.bc-success__nav-dots {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bc-success__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #cbd5e1;
    transition: all 0.3s ease;
    cursor: pointer;
}

.bc-success__dot--active {
    background-color: #1275bc;
    height: 16px;
    border-radius: 6px;
}

@media (max-width: 991px) {
    .bc-success__content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .bc-success__case-split {
        flex-direction: column;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .bc-success {
        padding: 40px 0;
    }
    .bc-success__header {
        margin-bottom: 9px;
    }
    .bc-success__quote-heading {
        font-size: 24px;
    }
    .bc-success__content {
        gap: 12px;
    }
    .bc-success__review-card {
        padding-bottom: 24px;
    }
    .bc-success__case-card {
        padding: 24px 20px;
    }
    .bc-success__metrics {
        grid-template-columns: 1fr;
    }
}

/* Testimonials Section */
.bc-testimonials {
    padding: 60px 0 80px;
    background-color: #f4f9ff;
}

.bc-testimonials__container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .bc-testimonials__container {
        padding-left: 24px;
        padding-right: 24px;
    }
}

.bc-testimonials__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    gap: 30px;
}

.bc-testimonials__nav {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.bc-testimonials__nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bc-testimonials__nav-btn:hover {
    background: #1275bc;
    border-color: #1275bc;
    color: #ffffff;
}

.bc-testimonials__title {
    font-size: clamp(30px, 3.5vw, 38px);
    margin: 0 0 16px;
    line-height: 1.25;
    letter-spacing: 0;
}

.bc-testimonials__title-line {
    display: inline;
}

.bc-testimonials__title-line--normal {
    font-weight: 400;
    color: #111827;
}

.bc-testimonials__title-line--bold {
    font-weight: 800;
    color: #1275bc;
}

.bc-testimonials__subtitle {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
    max-width: 700px;
}

.bc-testimonials__slider-wrap {
    position: relative;
}

.bc-testimonials__slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 20px;
    align-items: stretch; /* Forces equal height for all visible cards */
}

.bc-testimonials__slider::-webkit-scrollbar {
    display: none;
}

.bc-testimonial-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    border: 0.5px solid rgba(18, 117, 188, 0.2);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    flex: 0 0 calc(33.333% - 16px);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bc-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
}

.bc-testimonial-card::before {
    content: "“";
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 96px;
    color: rgba(18, 117, 188, 0.08);
    font-family: 'Georgia', serif;
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

.bc-testimonial-stars {
    color: #1275bc;
    font-size: 16px;
    margin-bottom: 16px;
    display: flex;
    gap: 4px;
    position: relative;
    z-index: 1;
}

.bc-testimonial-text {
    font-size: 14px;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
    flex-grow: 1; /* Pushes user info down evenly */
    position: relative;
    z-index: 1;
}

.bc-testimonial-user {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.bc-testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #e2e8f0;
}

.bc-testimonial-user-info {
    display: flex;
    flex-direction: column;
}

.bc-testimonial-user-info strong {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 4px;
}

.bc-testimonial-user-info span {
    font-size: 13px;
    color: #64748b;
    line-height: 1.2;
}

@media (max-width: 991px) {
    .bc-testimonial-card {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .bc-testimonials {
        padding: 20px 0 40px;
    }
    .bc-testimonials__header {
        flex-direction: column;
        align-items: flex-start;
    }
    .bc-testimonial-card {
        flex: 0 0 calc(100% - 24px); /* Slight peek for the next card */
    }
}

/* Features / Why Choose Us Section */
.bc-features {
    padding: 80px 0;
    background-color: #ffffff;
    overflow-x: hidden;
}

.bc-features__container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .bc-features__container {
        padding-left: 24px;
        padding-right: 24px;
    }
}

.bc-features__header {
    text-align: left;
    margin-bottom: 56px;
    max-width: 700px;
}

.bc-features__title {
    font-size: clamp(32px, 4vw, 42px);
    margin: 0 0 16px;
    line-height: 1.25;
}

.bc-features__title-line {
    display: inline;
}

.bc-features__title-line--normal {
    font-weight: 400;
    color: #111827;
}

.bc-features__title-line--bold {
    font-weight: 800;
    color: #1275bc;
}

.bc-features__subtitle {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

.bc-features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.bc-feature-card {
    background: linear-gradient(180deg, #e7f3ff 0%, #dceeff 52%, #eef6ff 100%);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: left;
    border: none;
    box-shadow: 0 12px 32px rgba(18, 117, 188, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.bc-feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 36px rgba(18, 117, 188, 0.12);
}

.bc-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #ffffff;
    color: #1275bc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.bc-feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
    line-height: 1.3;
}

.bc-feature-desc {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .bc-features__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .bc-features {
        padding: 40px 0;
    }
    .bc-features__header {
        margin-bottom: 40px;
    }
    .bc-features__grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section */
.bc-faq {
    padding: 80px 0;
    background-color: #ffffff;
}

.bc-faq__container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .bc-faq__container {
        padding-left: 24px;
        padding-right: 24px;
    }
}

.bc-faq__header {
    margin-bottom: 40px;
    text-align: left;
}

.bc-faq__subtitle {
    color: #1275bc;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.bc-faq__title {
    font-size: clamp(32px, 4vw, 42px);
    margin: 0;
    line-height: 1.25;
}

.bc-faq__title-line {
    display: inline;
}

.bc-faq__title-line--normal {
    font-weight: 400;
    color: #111827;
}

.bc-faq__title-line--bold {
    font-weight: 800;
    color: #1275bc;
}

.bc-faq__item {
    border: none;
    border-bottom: 1px solid #e2e8f0;
    background: transparent;
    border-radius: 0;
}

.bc-faq__item:last-child {
    border-bottom: none;
}

.bc-faq__button {
    background: transparent !important;
    color: #111827;
    font-weight: 600;
    font-size: 18px;
    padding: 24px 0;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.bc-faq__button:not(.collapsed) {
    color: #1275bc;
    background: transparent;
    box-shadow: none;
}

.bc-faq__button::after {
    background-size: 1.2rem;
}

.bc-faq__body {
    padding: 0 0 24px 0;
    color: #4b5563;
    font-size: 16px;
    line-height: 1.6;
}

/* News & Blog Section (Asymmetric Layout) */
.bc-news {
    padding: 80px 0;
    background-color: #ffffff;
}

.bc-news__container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .bc-news__container {
        padding-left: 24px;
        padding-right: 24px;
    }
}

.bc-news__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 16px;
}

.bc-news__title {
    font-size: clamp(32px, 4vw, 42px);
    margin: 0;
    line-height: 1.25;
}

.bc-news__title-line {
    display: inline;
}

.bc-news__title-line--normal {
    font-weight: 400;
    color: #111827;
}

.bc-news__title-line--bold {
    font-weight: 800;
    color: #1275bc;
}

.bc-news__feed-link {
    font-size: 13px;
    font-weight: 700;
    color: #1275bc;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.bc-news__feed-link:hover {
    color: #0f64a1;
}

.bc-news__grid {
    display: grid;
    grid-template-columns: 4.5fr 5.5fr;
    gap: 48px;
}

.bc-news__col-header {
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bc-news__main-card {
    display: flex;
    flex-direction: column;
}

.bc-news__main-img-wrap {
    width: 100%;
    height: 210px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #f1f5f9;
    margin-bottom: 24px;
}

.bc-news__main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bc-news__main-card:hover .bc-news__main-img {
    transform: scale(1.03);
}

.bc-news__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.bc-news__tag {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bc-news__tag--orange {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #d97706;
}

.bc-news__date {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.bc-news__main-title {
    font-size: 26px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 12px;
    line-height: 1.3;
}

.bc-news__main-desc {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bc-news__link {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease, gap 0.2s ease;
}

.bc-news__link:hover {
    color: #1275bc;
    gap: 8px;
}

.bc-news__side-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.bc-news__list-item {
    display: flex;
    gap: 24px;
    align-items: center;
}

.bc-news__list-img-wrap {
    width: 160px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background-color: #f1f5f9;
}

.bc-news__list-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bc-news__list-item:hover .bc-news__list-img {
    transform: scale(1.05);
}

.bc-news__list-content {
    display: flex;
    flex-direction: column;
}

.bc-news__list-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
    line-height: 1.3;
}

.bc-news__podcast {
    background: linear-gradient(135deg, #1275bc 0%, #0f64a1 100%);
    border-radius: 12px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(18, 117, 188, 0.2);
}

.bc-news__podcast-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #bfd0e8;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.bc-news__date--light {
    color: #bfd0e8;
}

.bc-news__podcast-title {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.bc-news__podcast-player {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.bc-news__play-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 32px;
    padding: 0;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.2s ease;
}

.bc-news__play-btn:hover {
    transform: scale(1.1);
}

.bc-news__podcast-time {
    font-size: 14px;
    font-family: monospace;
    font-weight: 500;
    color: #ffffff;
}

.bc-news__podcast-link {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s ease;
}

.bc-news__podcast-link:hover {
    gap: 8px;
    color: #e0f0ff;
}

@media (max-width: 991px) {
    .bc-news__grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }
    .bc-news__main-img-wrap {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .bc-news {
        padding: 40px 0;
    }
    .bc-news__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 32px;
    }
    .bc-news__main-img-wrap {
        height: 240px;
    }
    .bc-news__list-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .bc-news__list-img-wrap {
        width: 100%;
        height: 200px;
    }
}

/* Final CTA / Contact Section */
.bc-final-cta {
    padding: 80px 0;
    color: #111827;
}

.bc-final-cta__container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .bc-final-cta__container {
        padding-left: 24px;
        padding-right: 24px;
    }
}

.bc-final-cta__content {
    padding-right: 40px;
}

.bc-final-cta__title {
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 800;
    margin-bottom: 24px;
    color: #1275bc;
    line-height: 1.15;
}

.bc-final-cta__desc {
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
    max-width: 500px;
    margin-bottom: 0;
}

.bc-final-cta__form {
    background: #ffffff;
    padding: 0;
    border-radius: 16px;
    border: none;
    box-shadow: 0 16px 40px rgba(18, 117, 188, 0.25);
    max-width: 500px;
    margin: 0 0 0 auto;
    height: auto;
    overflow: hidden;
}

@media (max-width: 991px) {
    .bc-final-cta__row {
        row-gap: 48px;
    }
    .bc-final-cta__content {
        padding-right: 15px;
    }
    .bc-final-cta__form {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .bc-faq, .bc-final-cta {
        padding: 40px 0;
    }
    .bc-faq__header {
        margin-bottom: 24px;
    }
    .bc-faq__button {
        font-size: 16px;
        padding: 16px 0;
    }
    .bc-faq__body {
        font-size: 14px;
        padding-bottom: 16px;
    }
    .bc-final-cta__form {
        padding: 0;
    }
}

/* Minimalist CTA Section */
.bc-minimal-cta {
    background-color: transparent;
    padding: 64px 16px;
    text-align: center;
}

@media (min-width: 768px) {
    .bc-minimal-cta {
        padding: 96px 16px;
    }
}

.bc-minimal-cta__container {
    max-width: 768px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bc-minimal-cta__heading {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
    line-height: 1.2;
}

.bc-minimal-cta__desc {
    font-size: clamp(16px, 2vw, 18px);
    color: #475569;
    margin-bottom: 32px;
    line-height: 1.625;
}

.bc-minimal-cta__link {
    font-weight: 600;
    color: #0f172a;
    transition: color 0.3s ease;
    text-decoration: none;
}

.bc-minimal-cta__link:hover {
    color: #1275bc;
}

.bc-minimal-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #032d42;
    text-transform: uppercase;
    background-color: #63df4e;
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    transition: all 0.3s ease;
}

.bc-minimal-cta__btn:hover,
.bc-minimal-cta__btn:focus {
    background-color: #63df4e;
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    color: #032d42;
}

/* Single blog CTA: compact, left-aligned, and scoped away from other pages. */
.bc-blog-cta.bc-minimal-cta {
    margin: 32px 0 0;
    padding: 40px 0;
    text-align: left;
}

.bc-blog-cta::after {
    content: none;
}

.bc-blog-cta .bc-minimal-cta__container {
    width: calc(100% - 30px);
    max-width: 900px;
    align-items: flex-start;
}

.bc-blog-cta .bc-minimal-cta__heading {
    margin: 0 0 10px;
    font-size: clamp(24px, 2.4vw, 32px);
    line-height: 1.2;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.bc-blog-cta .bc-minimal-cta__desc {
    max-width: 720px;
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 1.55;
}

.bc-blog-cta .bc-minimal-cta__btn {
    padding: 13px 24px;
    font-size: 16px;
    font-weight: 700;
    background-color: transparent;
    border: 1px solid #63df4e;
    color: #ffffff;
    border-radius: 8px;
    text-transform: capitalize;
}

.bc-blog-cta .bc-minimal-cta__btn:hover,
.bc-blog-cta .bc-minimal-cta__btn:focus {
    background-color: transparent;
    border-color: #63df4e;
    color: #ffffff;
}

/* Article metadata and CTA use the dark-site outline treatment. */
body.bc-blog-page .bc-blog-article__meta .bc-blogs__tag--category {
    background-color: transparent;
}

@media (max-width: 767.98px) {
    .bc-blog-cta.bc-minimal-cta {
        margin-top: 24px;
        padding: 32px 0;
    }

    .bc-blog-cta .bc-minimal-cta__heading {
        white-space: normal;
    }
}

/* Navbar Styles */
.navbar-brand {
    font-family: 'Architype Ballmer', 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: lowercase;
    color: #1275BC !important;
    margin: 0;
    line-height: 1;
    display: flex;
    align-items: center;
    margin-top: 0;
    margin-bottom: 0;
}

.navbar-brand img {
    display: block;
    margin: 0;
}

.navbar-brand-logo {
    width: auto;
    height: 44px;
}

.navbar {
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
    background-color: #032d42 !important;
    min-height: 80px;
    display: flex;
    align-items: center;
}

.navbar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 15px;
    padding-bottom: 15px;
    width: 100%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.navbar-collapse {
    align-items: center;
}

.bc-stats__main-heading {
    margin: 0;
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .navbar .container {
        padding-left: 24px;
        padding-right: 24px;
    }
}

.navbar .btn-primary {
    background-color: #63df4e;
    border-color: #63df4e;
    color: #032d42 !important;
    transition: all 0.3s ease;
}

.navbar .btn-primary:hover {
    background-color: #63df4e;
    border-color: #63df4e;
    color: #032d42 !important;
}

.navbar .btn-primary i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.navbar .btn-primary:hover i {
    transform: translateX(3px);
}

.navbar-toggler {
    border: 0;
    padding: 0.25rem 0.1rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler .navbar-toggler-icon {
    background-image: none;
    width: 24px;
    height: 16px;
    position: relative;
    display: inline-block;
}

.navbar-toggler .navbar-toggler-icon::before,
.navbar-toggler .navbar-toggler-icon::after {
    content: "";
    position: absolute;
    right: 0;
    height: 2px;
    border-radius: 999px;
    background-color: #1275BC;
}

.navbar-toggler .navbar-toggler-icon::before {
    top: 3px;
    width: 22px;
}

.navbar-toggler .navbar-toggler-icon::after {
    bottom: 3px;
    width: 14px;
}

.mobile-menu-close {
    display: none;
}

.navbar-cta {
    margin-left: 50px;
}

.navbar-nav {
    gap: 50px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #ffffff !important;
    transition: color 0.2s ease;
    padding: 8px 0 !important;
    text-shadow: 0 0 1px rgba(18, 117, 188, 0.14), 0 0 5px rgba(18, 117, 188, 0.08);
}

.navbar-nav .nav-link:hover {
    color: #ffffff !important;
}

.navbar-nav .nav-link.dropdown-toggle::after {
    content: "";
    border: 0;
    width: 13px;
    height: 13px;
    margin-left: 8px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    top: 1px;
    background-color: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23000' d='M8 11.5 1.7 5.2l1.9-1.9L8 7.7l4.4-4.4 1.9 1.9z'/%3E%3C/svg%3E") no-repeat center / contain;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23000' d='M8 11.5 1.7 5.2l1.9-1.9L8 7.7l4.4-4.4 1.9 1.9z'/%3E%3C/svg%3E") no-repeat center / contain;
    transition: transform 0.2s ease;
    transform: rotate(0deg);
}

.navbar-nav .dropdown-menu {
    border: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    margin-top: 0;
    padding: 0.6rem 0;
}

@media (min-width: 992px) {
    .navbar {
        height: 80px;
    }

    .navbar .container {
        height: 100%;
    }

    .navbar-nav {
        align-items: center;
    }

    .navbar-nav .nav-link {
        display: flex;
        align-items: center;
        padding: 0 !important;
    }

    .navbar-cta {
        align-self: center;
        margin-top: 0;
    }

    .navbar-nav .dropdown {
        position: relative;
    }

    .navbar-nav .dropdown::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        height: 14px;
    }

    .navbar-nav .dropdown > .dropdown-menu {
        top: calc(100% + 8px);
        margin-top: 0;
        left: 50%;
        right: auto;
        transform: translateX(-40%);
    }

    .navbar-nav .dropdown:hover > .dropdown-menu {
        display: block;
    }

    .navbar-nav .dropdown:hover > .nav-link.dropdown-toggle::after {
        transform: rotate(180deg);
    }
}

.navbar-nav .dropdown-item {
    padding: 0.75rem 1.8rem 0.75rem 1.7rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    text-shadow: 0 0 1px rgba(18, 117, 188, 0.1), 0 0 4px rgba(18, 117, 188, 0.06);
}

.navbar-nav .dropdown-item + .dropdown-item {
    margin-top: 2px;
}

.navbar-nav .dropdown-item::after {
    content: "";
    width: 15px;
    height: 15px;
    display: inline-block;
    color: #1275BC;
    background-color: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23000' d='M3.2 12.8 2 11.6l7-7H4.6V2.9H12v7.4h-1.7V6l-7.1 6.8z'/%3E%3C/svg%3E") no-repeat center / contain;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23000' d='M3.2 12.8 2 11.6l7-7H4.6V2.9H12v7.4h-1.7V6l-7.1 6.8z'/%3E%3C/svg%3E") no-repeat center / contain;
    transform: translateY(2px);
    transition: transform 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
}

.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item:focus {
    color: #1275BC;
    background-color: rgba(18, 117, 188, 0.08);
}

.navbar-nav .dropdown-item:hover::after,
.navbar-nav .dropdown-item:focus::after {
    color: #1275BC;
    transform: translate(2px, 0);
}

@media (max-width: 991px) {
    body.mobile-menu-open {
        overflow: hidden;
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100vw;
        max-width: 100%;
        height: 100dvh;
        padding: calc(92px + env(safe-area-inset-top)) 18px calc(34px + env(safe-area-inset-bottom));
        background: linear-gradient(180deg, #ffffff 0%, #edf6ff 100%);
        box-shadow: 0 14px 28px rgba(16, 35, 56, 0.16);
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        z-index: 1050;
        transform: translateY(-100%);
        visibility: hidden;
        transition: transform 0.32s ease, visibility 0.32s ease;
    }

    .navbar-collapse.collapse:not(.show) {
        display: block;
        pointer-events: none;
    }

    .navbar-collapse.show {
        transform: translateY(0);
        visibility: visible;
        pointer-events: auto;
    }

    .navbar-collapse.collapsing {
        height: 100dvh !important;
        display: block;
        pointer-events: auto;
        transform: translateY(0);
        visibility: visible;
    }

    .mobile-menu-close {
        display: inline-block;
        position: absolute;
        top: 22px;
        right: 18px;
        width: 36px;
        height: 36px;
        border: 0;
        border-radius: 50%;
        background: #e7f2fb;
        cursor: pointer;
    }

    .mobile-menu-close::before,
    .mobile-menu-close::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 16px;
        height: 2px;
        border-radius: 999px;
        background: #1275BC;
    }

    .mobile-menu-close::before {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .mobile-menu-close::after {
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    .navbar-nav {
        gap: 12px;
        margin-top: 14px;
        margin-bottom: 16px;
    }

    .navbar-nav .nav-link {
        padding: 13px 4px !important;
        border-bottom: 1px solid rgba(18, 117, 188, 0.12);
    }

    .navbar-nav .dropdown-menu {
        position: static;
        display: block;
        border: 1px solid #dbe8f3;
        box-shadow: none;
        border-radius: 10px;
        margin: 0;
        padding: 0;
        background: #f7fbff;
        transform: translateY(-4px);
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        pointer-events: none;
        border-color: transparent;
        transition: max-height 0.32s ease, opacity 0.24s ease, transform 0.24s ease, margin 0.24s ease, padding 0.24s ease, border-color 0.24s ease;
    }

    .navbar-nav .dropdown.show > .dropdown-menu {
        max-height: 320px;
        opacity: 1;
        margin: 6px 0 8px;
        padding: 6px 0;
        transform: translateY(0);
        pointer-events: auto;
        border-color: #dbe8f3;
    }

    .navbar-nav .dropdown-item {
        padding: 0.78rem 1.05rem;
        gap: 16px;
    }

    .navbar-cta {
        margin-left: 0;
        margin-top: 15px;
        margin-bottom: 10px;
        width: 100%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

.navbar .container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer Styles */
.footer {
    background: #181a1b;
    color: #fff;
    padding: 40px 0 0 0;
}

.footer a {
    color: #fff;
    margin: 0 8px;
    text-decoration: none;
}

.footer a:hover {
    color: #0d6efd;
}

.footer .footer-title {
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.footer .social-icons a {
    font-size: 1.3rem;
    margin: 0 10px;
    display: inline-block;
}

.footer .footer-bottom {
    border-top: 1px solid #333;
    margin-top: 30px;
    padding: 15px 0;
    font-size: 0.95rem;
}

/* Redesigned Footer Styles */
.bc-footer {
    margin-top: auto;
}

.bc-footer-top {
    background: linear-gradient(180deg, #e7f3ff 0%, #dceeff 52%, #eef6ff 100%);
    color: #1b2530;
    padding: 64px 0 24px;
}

.bc-footer-top .container {
    max-width: 1240px;
}

.bc-footer-brand {
    font-family: 'Architype Ballmer', 'Poppins', sans-serif;
    font-size: 2.85rem;
    line-height: 0.98;
    font-weight: 600;
    letter-spacing: -0.8px;
    text-transform: lowercase;
    color: #1275BC;
    margin-bottom: 34px;
    display: inline-block;
}

.bc-footer-brand-logo {
    display: block;
    width: auto;
    height: 65px;
}

.bc-footer-subscribe-text {
    color: #6f7b86;
    margin-bottom: 14px;
    font-size: 15px;
}

.bc-subscribe-form {
    max-width: 440px;
    display: flex;
    gap: 8px;
    align-items: center;
    border: 1px solid #d8dde3;
    border-radius: 4px;
    padding: 6px;
    background: linear-gradient(135deg, #fbfcfd 0%, #eef2f6 100%);
}

.bc-subscribe-form input {
    border: 0;
    background: transparent;
    width: 100%;
    min-height: 46px;
    color: #1f2a35;
    padding: 0 14px;
    font-size: 0.92rem;
}

.bc-subscribe-form input:focus {
    outline: none;
}

.bc-subscribe-form button {
    border: 0;
    background: #1275BC;
    color: #fff;
    min-height: 44px;
    padding: 0 18px;
    min-width: 152px;
    font-weight: 700;
    font-size: 0.86rem;
    letter-spacing: 0.3px;
    border-radius: 2px;
    transition: background 0.2s ease;
}

.bc-subscribe-form button:hover {
    background: #0f64a1;
}

.bc-subscribe-feedback {
    min-height: 20px;
    margin: 10px 0 0;
    font-size: 0.82rem;
    font-weight: 600;
}

.bc-subscribe-feedback.is-success {
    color: #1275BC;
}

.bc-subscribe-feedback.is-error {
    color: #c62828;
}

.bc-footer-divider {
    border-top: 1px solid #b9c5cf;
    margin: 66px 0 30px;
}

.bc-footer-copy {
    color: #6b7a88;
    max-width: 760px;
    font-size: 14px;
    line-height: 1.28;
    margin-bottom: 18px;
}

/* The contact controls were removed, so don't reserve feedback space in the footer. */
.bc-subscribe-feedback:empty {
    min-height: 0;
    margin: 0;
}

.bc-footer-contact-row {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: nowrap;
    margin-bottom: 16px;
}

.bc-footer-email {
    font-size: 29px;
    font-weight: 700;
    color: #273342;
    text-decoration: none;
    min-width: 0;
}

.bc-footer-email i {
    margin-right: 4px;
}

.bc-live-chat {
    background: #2d3a4b;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    margin-left: 10px;
    padding: 10px 18px;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.bc-live-chat i {
    margin-right: 8px;
}

.bc-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bc-footer-links li {
    margin-bottom: 20px;
}

.bc-footer-links a {
    text-decoration: none;
    color: #1f2a35;
    font-size: 14px;
    font-weight: 500;
}

.bc-footer-links a:hover {
    color: #1275BC;
}

.bc-footer-links a i {
    font-size: 0.72rem;
    margin-left: 3px;
    vertical-align: baseline;
    display: inline-block;
    line-height: 1;
    position: relative;
    top: 1px;
}

.bc-services-title {
    color: #2a3949;
    font-size: 31px;
    line-height: 1.05;
    margin-bottom: 20px;
}

.bc-services-title-line--normal {
    font-weight: 400;
    color: #111827;
}

.bc-services-title-line--bold {
    font-weight: 700;
}

.bc-services-divider {
    border-top: 1px solid #aebbc6;
    margin-bottom: 26px;
}

.bc-services-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bc-services-list li {
    color: #1f2a35;
    font-size: 14px;
    margin-bottom: 16px;
}

.bc-services-list i {
    margin-right: 8px;
}

.bc-services-list a {
    color: #1f2a35;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.25;
}

.bc-services-list a:hover {
    color: #1275BC;
}

.bc-footer-social {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.bc-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1275BC 0%, #0f64a1 100%);
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bc-footer-social a:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(18, 117, 188, 0.4);
}

.bc-footer-bottom {
    background: linear-gradient(90deg, #0F1E3A 0%, #162A4D 100%);
    padding: 12px 0;
}

/* Use the hero's teal field as one continuous background across the site. */
body {
    background: #003b4a;
}

main {
    background-color: #003b4a;
    background-image:
        radial-gradient(ellipse 70% 92% at -8% 108%, rgba(16, 112, 99, 0.55) 0%, rgba(7, 81, 79, 0.34) 36%, transparent 72%),
        linear-gradient(110deg, #003f49 0%, #003b4a 58%, #003849 100%);
    background-attachment: fixed;
}

main > section[class] {
    background: transparent;
}

/* Keep text readable against the site-wide dark background. */
body,
body *:not(button):not(button *) {
    color: #ffffff !important;
}

/* Primary strategy-call CTAs retain the approved green treatment. */
body .bc-hero__cta.bc-hero__cta,
body .navbar-cta.navbar-cta,
body .bc-case-study-modal__cta.bc-case-study-modal__cta {
    color: #032d42 !important;
    background: #63df4e !important;
}

body .bc-hero__cta.bc-hero__cta *,
body .navbar-cta.navbar-cta *,
body .bc-case-study-modal__cta.bc-case-study-modal__cta * {
    color: #032d42 !important;
}

/* Match the Services dropdown to the dark header. */
.navbar-nav .dropdown-menu,
.navbar-nav .dropdown-item,
.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item:focus {
    background: #032d42 !important;
}

.navbar-nav .dropdown-item,
.navbar-nav .dropdown-item::after,
.navbar-nav .dropdown-item:hover::after,
.navbar-nav .dropdown-item:focus::after {
    color: #ffffff !important;
}

/* Give the footer bottom the same surface and text color as requested. */
body .bc-footer-bottom.bc-footer-bottom {
    background: linear-gradient(180deg, #e7f3ff 0%, #dceeff 52%, #eef6ff 100%);
}

body .bc-footer-bottom.bc-footer-bottom,
body .bc-footer-bottom.bc-footer-bottom * {
    color: #024F69 !important;
}

/* Preserve contrast where the original sections expected a white background. */
main [class$="__title-line--normal"],
main [class$="__title-line--bold"],
main .bc-stats__title,
main .bc-platforms__heading,
main .bc-success__title,
main .bc-testimonials__title,
main .bc-faq__title,
main .bc-news__title {
    color: #ffffff;
}

main [class$="__subtitle"],
main [class$="__description"],
main .bc-platforms__text {
    color: rgba(255, 255, 255, 0.8);
}

/* Homepage: replace the original blue text accent with the brand green. */
.bc-home .bc-stats__number,
.bc-home .bc-platforms__heading,
.bc-home .bc-cta-banner__btn:hover,
.bc-home .bc-cta-banner__btn:focus,
.bc-home .bc-services__title,
.bc-home .bc-services__card-icon,
.bc-home .bc-services__card-link,
.bc-home .bc-process__title,
.bc-home .bc-success__title-line--bold,
.bc-home .bc-success__watch-btn,
.bc-home .bc-success__case-label,
.bc-home .bc-success__metric-icon,
.bc-home .bc-testimonials__title-line--bold,
.bc-home .bc-testimonial-stars,
.bc-home .bc-features__title-line--bold,
.bc-home .bc-feature-icon,
.bc-home .bc-faq__subtitle,
.bc-home .bc-faq__title-line--bold,
.bc-home .bc-faq__button:not(.collapsed),
.bc-home .bc-news__title-line--bold,
.bc-home .bc-news__feed-link,
.bc-home .bc-news__link:hover,
.bc-home .bc-final-cta__title {
    color: #63df4e;
}

/* Homepage cards: dark glass surfaces instead of white panels. */
.bc-home .bc-stats__item,
.bc-home .bc-services__card,
.bc-home .bc-feature-card,
.bc-home .bc-success__review-card,
.bc-home .bc-success__case-card,
.bc-home .bc-success__metric-card,
.bc-home .bc-testimonial-card,
.bc-home .bc-final-cta__form,
.bc-home .bc-success__slider-nav {
    background: linear-gradient(135deg, rgba(27, 82, 100, 0.86) 0%, rgba(10, 55, 75, 0.92) 100%);
    border: 1px solid rgba(167, 218, 229, 0.18);
    box-shadow: 0 12px 30px rgba(0, 19, 32, 0.16);
}

.bc-home .bc-services__card-icon,
.bc-home .bc-feature-icon {
    background: rgba(255, 255, 255, 0.1);
    color: #63df4e;
    box-shadow: none;
}

.bc-home .bc-services__card-title,
.bc-home .bc-feature-title,
.bc-home .bc-success__reviewer-name,
.bc-home .bc-success__metric-title,
.bc-home .bc-success__metric-value,
.bc-home .bc-testimonial-name,
.bc-home .bc-testimonial-role,
.bc-home .bc-testimonial-text,
.bc-home .bc-testimonial-user-info strong {
    color: #ffffff;
}

.bc-home .bc-services__card-desc,
.bc-home .bc-feature-desc,
.bc-home .bc-success__reviewer-company,
.bc-home .bc-success__review-text,
.bc-home .bc-testimonial-user-info span {
    color: rgba(255, 255, 255, 0.76);
}

.bc-home .bc-services__card-link,
.bc-home .bc-success__watch-btn,
.bc-home .bc-success__metric-icon,
.bc-home .bc-testimonial-stars,
.bc-home .bc-success__nav-arrow {
    color: #63df4e;
}

.bc-footer-bottom-inner {
    position: relative;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bc-footer-bottom-text {
    color: #D9E2F2;
    margin: 0;
    font-size: 0.97rem;
    font-weight: 400;
    line-height: 1.2;
    white-space: nowrap;
}

.bc-bottom-sep {
    margin: 0 6px;
    color: #BFD0E8;
}

.bc-footer-bottom a {
    color: #D9E2F2;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.18s ease, color 0.18s ease;
}

.bc-footer-bottom a:hover {
    color: #FFFFFF;
    border-bottom-color: rgba(255, 255, 255, 0.7);
}

.bc-whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 30px;
    width: 66px;
    height: 66px;
    border-radius: 999px;
    border: 0;
    background: linear-gradient(135deg, #25d366 0%, #1fa956 100%) !important;
    color: #ffffff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(31, 169, 86, 0.34);
    z-index: 999;
    overflow: visible;
    cursor: pointer;
    transition: box-shadow 0.5s ease;
}

.bc-whatsapp-float:hover {
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.8), 0 8px 18px rgba(31, 169, 86, 0.34);
}

.bc-whatsapp-float::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 999px;
    border: 2px solid rgba(37, 211, 102, 0.6);
    animation: whatsappWave 1.5s ease-out infinite;
    z-index: -1;
    pointer-events: none;
}

.bc-whatsapp-float i {
    font-size: 1.2rem;
    display: block;
    line-height: 1;
    transform: translateY(1px);
    color: #ffffff !important;
}

body .bc-whatsapp-float i.bi-whatsapp::before {
    color: #ffffff !important;
}

.bc-whatsapp-float::before {
    border-color: #ffffff !important;
}

@keyframes whatsappWave {
    0% {
        transform: scale(1);
        opacity: 1;
        border-width: 2px;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
        border-width: 0.5px;
    }
}

@media (max-width: 991px) {
    .bc-footer-brand {
        font-size: 2.2rem;
    }

    .bc-footer-copy {
        font-size: 13px;
    }

    .bc-footer-email {
        font-size: 1.35rem;
    }

    .bc-services-title {
        font-size: 1.6rem;
    }

    .bc-services-list li,
    .bc-footer-links a {
        font-size: 14px;
    }

    .bc-subscribe-form input {
        font-size: 0.88rem;
        min-height: 42px;
    }

    .bc-subscribe-form button {
        font-size: 0.82rem;
        min-height: 40px;
        min-width: 136px;
    }

    .bc-footer-copy {
        font-size: 13px;
    }

    .bc-footer-email {
        font-size: 1.3rem;
    }

    .bc-footer-social a {
        color: #1f2a35;
        background: #ffffff;
        border: 1px solid #d3deea;
    }

    .bc-footer-social a:hover {
        color: #1f2a35;
        background: #f3f8fd;
        box-shadow: none;
    }

    .bc-live-chat {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .bc-footer-top {
        padding: 44px 0 20px;
    }

    .bc-footer-top .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .bc-footer-layout {
        padding-left: 20px !important;
        padding-right: 20px !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }

    .bc-footer-col-3 {
        margin-top: 8px;
    }
    .bc-footer-brand {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .bc-footer-brand-logo {
        width: auto;
        height: 46px;
    }

    .bc-footer-subscribe-text {
        font-size: 15px;
    }

    .bc-brand-accent {
        width: 8px;
        height: 24px;
    }

    .bc-subscribe-form {
        flex-direction: column;
        align-items: stretch;
        padding: 5px;
    }

    .bc-subscribe-form input {
        min-height: 38px;
        font-size: 0.84rem;
        padding: 0 12px;
    }

    .bc-subscribe-form button {
        width: 100%;
        min-height: 38px;
    }

    .bc-subscribe-feedback {
        text-align: left;
        min-height: 0;
        margin: 6px 0 0;
    }

    .bc-footer-divider {
        margin: 30px 0;
    }

    .bc-footer-copy {
        font-size: 13px;
        line-height: 1.45;
        margin-top: 0;
        margin-bottom: 14px;
    }

    .bc-footer-contact-row {
        flex-wrap: wrap;
    }

    .bc-footer-email {
        font-size: 1.12rem;
        word-break: break-word;
    }

    .bc-live-chat {
        width: 100%;
        text-align: center;
    }

    .bc-services-title {
        font-size: 1.35rem;
    }

    .bc-services-list li,
    .bc-footer-links a {
        font-size: 14px;
    }

    .bc-footer-bottom-inner {
        justify-content: flex-start;
        padding-right: 74px;
    }

    .bc-footer-bottom-text {
        text-align: left;
        white-space: normal;
        font-size: 0.82rem;
        line-height: 1.45;
    }

    .bc-bottom-sep {
        margin: 0 4px;
    }

    .bc-whatsapp-float {
        width: 50px;
        height: 50px;
        right: 15px;
        bottom: 20px;
    }
}

/* Homepage heading and metric color refinements. */
body .bc-faq__button.bc-faq__button {
    color: #ffffff !important;
}

body.bc-home .bc-stats__number {
    color: #52B8FF !important;
}

body.bc-home .bc-platforms__line--bold,
body.bc-home .bc-features__title-line--bold,
body.bc-home .bc-process__title-line--bold,
body.bc-home .bc-success__title-line--bold,
body.bc-home .bc-testimonials__title-line--bold,
body.bc-home .bc-faq__title-line--bold {
    color: #63df4e !important;
}

body.bc-home .bc-success__main-title {
    font-weight: 400;
}

/* A very subtle inset shadow distinguishes the footer bottom from its top section. */
body .bc-footer-bottom.bc-footer-bottom {
    box-shadow: inset 0 3px 10px rgba(3, 45, 66, 0.08);
}

body.bc-home .bc-services__title-line--bold,
body.bc-home .bc-final-cta__title-accent,
body.bc-home .bc-stats__number {
    color: #63df4e !important;
}

body.bc-home .bc-success__left .bc-success__review-card {
    background: transparent !important;
    border: none;
    box-shadow: none;
}

body .bc-faq__button.bc-faq__button:not(.collapsed) {
    color: #63df4e !important;
}

body.bc-home .bc-success__dot--active {
    background-color: #63df4e;
}

body.bc-home .bc-success__case-label {
    color: #63df4e !important;
}

/* Shared page headings: emphasize bold title fragments consistently. */
body [class*="__title-line--normal"][class*="__title-line--normal"] {
    color: #ffffff !important;
}

body [class*="__title-line--bold"][class*="__title-line--bold"] {
    color: #63df4e !important;
}

/* Use the homepage teal field behind every page's content; footer styles remain separate. */
body {
    background-color: #003b4a !important;
    background-image:
        radial-gradient(ellipse 70% 92% at -8% 108%, rgba(16, 112, 99, 0.55) 0%, rgba(7, 81, 79, 0.34) 36%, transparent 72%),
        linear-gradient(110deg, #003f49 0%, #003b4a 58%, #003849 100%) !important;
    background-attachment: fixed !important;
}

body main {
    background: transparent !important;
}

body main > section {
    background: transparent !important;
}

/* Keep every Client Success Stories section visually consistent with the homepage. */
body .bc-success__case-card.bc-success__case-card,
body .bc-success__metric-card.bc-success__metric-card,
body .bc-success__slider-nav.bc-success__slider-nav {
    background: linear-gradient(135deg, rgba(27, 82, 100, 0.86) 0%, rgba(10, 55, 75, 0.92) 100%) !important;
    border: 1px solid rgba(167, 218, 229, 0.18);
    box-shadow: 0 12px 30px rgba(0, 19, 32, 0.16);
}

body .bc-success__left .bc-success__review-card {
    background: transparent !important;
    border: none;
    box-shadow: none;
}

body .bc-success__main-title.bc-success__main-title {
    font-weight: 400;
}

body .bc-success__case-label.bc-success__case-label,
body .bc-success__metric-icon.bc-success__metric-icon,
body .bc-success__nav-arrow.bc-success__nav-arrow {
    color: #63df4e !important;
}

body .bc-success__dot--active.bc-success__dot--active {
    background-color: #63df4e;
}

body .bc-success__reviewer-company.bc-success__reviewer-company,
body .bc-success__review-text.bc-success__review-text {
    color: rgba(255, 255, 255, 0.76) !important;
}

body .bc-success__line {
    display: none;
}

body #cs-link.bc-services__card-link,
body #cs-link.bc-services__card-link * {
    color: #63df4e !important;
}

/* Client Success Stories: highlight only the brand/icon box. */
body .bc-success__logo-box.bc-success__logo-box {
    background: #ffffff;
    border: 1px solid #63df4e;
}

body .bc-success__logo-box .bc-success__brand-logo {
    width: 70% !important;
    height: 70% !important;
    margin: 15% !important;
}

/* Case Studies cards use the same dark-glass treatment as the homepage stat cards. */
body.bc-case-studies .bc-services__card {
    background: linear-gradient(135deg, rgba(27, 82, 100, 0.86) 0%, rgba(10, 55, 75, 0.92) 100%) !important;
    border: 1px solid rgba(167, 218, 229, 0.18);
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 19, 32, 0.16);
}

body.bc-case-studies .bc-services__card-icon {
    border-color: #63df4e !important;
}

body.bc-case-studies .bc-services__card > div[style*="display: flex"] > div {
    background: linear-gradient(135deg, rgba(27, 82, 100, 0.86) 0%, rgba(10, 55, 75, 0.92) 100%) !important;
    border: 1px solid rgba(167, 218, 229, 0.18);
    box-shadow: none !important;
}

body.bc-case-studies .bc-services__card-link,
body.bc-case-studies .bc-services__card-link * {
    color: #63df4e !important;
}

body.bc-case-studies .bc-case-study-modal {
    background: linear-gradient(110deg, #003f49 0%, #003b4a 58%, #003849 100%) !important;
}

body.bc-case-studies .bc-case-study-modal__metric {
    background: linear-gradient(135deg, rgba(27, 82, 100, 0.86) 0%, rgba(10, 55, 75, 0.92) 100%) !important;
    border: 1px solid rgba(167, 218, 229, 0.18);
    box-shadow: 0 12px 30px rgba(0, 19, 32, 0.16);
}

body.bc-case-studies .bc-case-study-modal__approach li::before {
    background: #63df4e;
}

body.bc-case-studies .bc-case-study-modal__cta.bc-case-study-modal__cta,
body.bc-case-studies .bc-case-study-modal__cta.bc-case-study-modal__cta:hover,
body.bc-case-studies .bc-case-study-modal__cta.bc-case-study-modal__cta:focus {
    background: transparent !important;
    border: 1px solid #63df4e;
    color: #ffffff !important;
}

body.bc-case-studies .bc-case-study-modal__cta.bc-case-study-modal__cta * {
    color: #ffffff !important;
}

/* Blog listing cards match the site's dark-glass card system. */
body.bc-blogs-page .bc-blogs__card {
    background: linear-gradient(135deg, rgba(27, 82, 100, 0.86) 0%, rgba(10, 55, 75, 0.92) 100%) !important;
    border: 1px solid rgba(167, 218, 229, 0.18);
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 19, 32, 0.16);
}

body.bc-blogs-page .bc-blogs__card-link,
body.bc-blogs-page .bc-blogs__card-link * {
    color: #63df4e !important;
}

/* About-page cards use the shared dark-glass surface. */
body.bc-about-page .bc-about-card,
body.bc-about-page .bc-about-founder {
    background: linear-gradient(135deg, rgba(27, 82, 100, 0.86) 0%, rgba(10, 55, 75, 0.92) 100%) !important;
    border: 1px solid rgba(167, 218, 229, 0.18) !important;
    box-shadow: 0 12px 30px rgba(0, 19, 32, 0.16) !important;
}

body.bc-about-page .bc-about-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 32px rgba(0, 19, 32, 0.24) !important;
}

/* Match About highlights to the final homepage stat-card treatment. */
body.bc-about-page .bc-stats__item {
    background: linear-gradient(135deg, rgba(27, 82, 100, 0.86) 0%, rgba(10, 55, 75, 0.92) 100%) !important;
    border: 1px solid rgba(167, 218, 229, 0.18);
    box-shadow: 0 12px 30px rgba(0, 19, 32, 0.16);
}

body.bc-about-page .bc-stats__number {
    color: #63df4e !important;
}

body.bc-about-page .bc-stats__title {
    color: #ffffff !important;
}

body.bc-about-page .bc-stats__description {
    color: rgba(255, 255, 255, 0.9) !important;
}

body.bc-about-page .bc-about-card > .mb-4,
body.bc-about-page .bc-about-card > .mb-4 * {
    color: #63df4e !important;
}

body.bc-about-page .bc-about-founder h3 span {
    background-color: #63df4e !important;
}

/* Blog pagination: match the site's dark-teal and green interface palette. */
body .bc-blogs__pagination-btn {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(167, 218, 229, 0.3) !important;
    border-radius: 10px;
}

body .bc-blogs__pagination-btn:hover:not(:disabled),
body .bc-blogs__pagination-btn:focus-visible:not(:disabled),
body .bc-blogs__pagination-btn.active,
body .bc-blogs__pagination-btn.active:hover,
body .bc-blogs__pagination-btn.active:focus-visible {
    color: #032d42 !important;
    background: #63df4e !important;
    border-color: #63df4e !important;
}

body .bc-blogs__pagination-btn:disabled {
    color: rgba(255, 255, 255, 0.5) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(167, 218, 229, 0.14) !important;
    opacity: 1;
}

/* Every call-to-action on an individual blog article uses an outline. */
body.bc-blog-page .bc-minimal-cta__btn,
body.bc-blog-page .bc-minimal-cta__btn:hover,
body.bc-blog-page .bc-minimal-cta__btn:focus,
body.bc-blog-page .bc-hero__cta,
body.bc-blog-page .bc-hero__cta:hover,
body.bc-blog-page .bc-hero__cta:focus,
body.bc-blog-page .navbar-cta,
body.bc-blog-page .navbar-cta:hover,
body.bc-blog-page .navbar-cta:focus {
    background: transparent !important;
    border: 1px solid #63df4e !important;
    color: #ffffff !important;
}

body.bc-blog-page .bc-hero__cta *,
body.bc-blog-page .navbar-cta * {
    color: #ffffff !important;
}

/* Newsletter modal follows the site's dark surface, text, and CTA system. */
body .bc-newsletter-modal {
    background-color: #003b4a !important;
    background-image:
        radial-gradient(ellipse 70% 92% at -8% 108%, rgba(16, 112, 99, 0.55) 0%, rgba(7, 81, 79, 0.34) 36%, transparent 72%),
        linear-gradient(110deg, #003f49 0%, #003b4a 58%, #003849 100%);
    border: 1px solid rgba(167, 218, 229, 0.18) !important;
    box-shadow: 0 18px 44px rgba(0, 19, 32, 0.32) !important;
}

body .bc-newsletter-modal .btn-close {
    filter: invert(1);
    opacity: 0.8;
}

body .bc-newsletter-modal__icon {
    color: #63df4e !important;
    font-size: 42px;
}

body .bc-newsletter-modal__title {
    color: #ffffff !important;
}

body .bc-newsletter-modal__text {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 15px;
}

body .bc-newsletter-modal__input {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(167, 218, 229, 0.24) !important;
    color: #ffffff !important;
}

body .bc-newsletter-modal__input::placeholder {
    color: rgba(255, 255, 255, 0.62) !important;
}

body .bc-newsletter-modal__input:focus {
    box-shadow: 0 0 0 0.2rem rgba(99, 223, 78, 0.2) !important;
}

body .bc-newsletter-modal__submit,
body .bc-newsletter-modal__submit:hover,
body .bc-newsletter-modal__submit:focus {
    background: #63df4e !important;
    border: 1px solid #63df4e !important;
    color: #032d42 !important;
    font-weight: 700;
    padding: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body .bc-newsletter-modal__submit:hover,
body .bc-newsletter-modal__submit:focus {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 19, 32, 0.22) !important;
}

/* Homepage challenge CTA is presented as a shared dark-glass card. */
.bc-home .bc-cta-banner {
    max-width: none;
    margin: 0;
    padding: 56px 0;
    background:
        radial-gradient(ellipse 58% 170% at 2% 50%, rgba(45, 183, 130, 0.5) 0%, rgba(24, 126, 105, 0.28) 38%, transparent 74%),
        radial-gradient(ellipse 52% 150% at 100% 48%, rgba(26, 124, 166, 0.46) 0%, transparent 72%),
        linear-gradient(108deg, #0a5b5b 0%, #074c58 48%, #063b50 100%);
    border-top: 1px solid rgba(167, 218, 229, 0.18);
    border-bottom: 1px solid rgba(167, 218, 229, 0.18);
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    box-shadow: 0 12px 30px rgba(0, 19, 32, 0.16);
}

@media (max-width: 768px) {
    .bc-home .bc-cta-banner {
        padding: 40px 0;
    }
}

/* Service-page offer sections inherit the site background rather than Bootstrap white. */
main .bc-offer.bg-white {
    background: transparent !important;
}

/* Service offer content stays open against the site background. */
main .bc-offer div[style*="rgba(248, 250, 252, 0.5)"],
main .bc-offer div[style*="linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%)"] {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Keep the offer copy readable while reserving green for its outcome heading. */
main .bc-offer :is(p, span, li, small, strong, em) {
    color: #ffffff !important;
}

main .bc-offer #offer-heading {
    color: #63df4e !important;
}

main .bc-offer .rounded-circle {
    border-color: #63df4e !important;
}

/* Keep service-platform circles at 48px while giving their logos more visual weight. */
main .bc-offer img.rounded-circle {
    padding: 4px !important;
}

/* The final platform circle is the shared "more" affordance on service offers. */
main .bc-offer .d-flex > div.rounded-circle {
    color: #63df4e !important;
}

main .bc-offer .custom-tw-subgrid > .d-none.d-md-block {
    background-color: #63df4e !important;
}

/* Let each service illustration sit directly on the main page background. */
main .bc-offer .custom-tw-col-2 > div > svg > rect:first-of-type {
    fill: transparent !important;
    filter: none !important;
}

main .bc-offer .badge {
    background: transparent !important;
    color: #63df4e !important;
}

/* Regrade the offer illustrations from the old blue/white palette to the site teal-green palette. */
main .bc-offer svg [fill="#ffffff"],
main .bc-offer svg [fill="#fff"] {
    fill: #0b4a59;
}

main .bc-offer svg [fill="#f8fafc"],
main .bc-offer svg [fill="#eff6ff"],
main .bc-offer svg [fill="#f8fbff"] {
    fill: #0e5862;
}

main .bc-offer svg [fill="#dbeafe"],
main .bc-offer svg [fill="#bfdbfe"],
main .bc-offer svg [fill="#e0f2fe"] {
    fill: #13776f;
}

main .bc-offer svg [fill="#1275bc"],
main .bc-offer svg [fill="#38bdf8"] {
    fill: #63df4e;
}

main .bc-offer svg [fill="#ecfdf5"],
main .bc-offer svg [fill="#d1fae5"] {
    fill: #174f51;
}

main .bc-offer svg [fill="#cbd5e1"],
main .bc-offer svg [fill="#dbe4ef"],
main .bc-offer svg [fill="#edf2f7"] {
    fill: rgba(203, 244, 233, 0.42);
}

main .bc-offer svg [fill="#64748b"] {
    fill: rgba(255, 255, 255, 0.78);
}

main .bc-offer svg [stroke="#dbeafe"],
main .bc-offer svg [stroke="#edf2f7"] {
    stroke: rgba(167, 218, 229, 0.32);
}

/* Key Stats cards on every single service page use the dark site-card treatment. */
main .bc-stats--service .bc-stats__item {
    background: linear-gradient(135deg, rgba(27, 82, 100, 0.9) 0%, rgba(10, 55, 75, 0.95) 100%) !important;
    border: 1px solid rgba(167, 218, 229, 0.18);
    box-shadow: 0 12px 30px rgba(0, 19, 32, 0.16);
}

main .bc-stats--service .bc-stats__number {
    color: #63df4e !important;
}

main .bc-stats--service .bc-stats__title {
    color: #ffffff !important;
}

/* The stat illustrations are recoloured from blue to the theme green. */
main .bc-stats--service svg [fill*="18, 117, 188"] {
    fill: rgba(99, 223, 78, 0.14);
}

main .bc-stats--service svg [stroke*="18, 117, 188"] {
    stroke: rgba(99, 223, 78, 0.24);
}

main .bc-stats--service svg [fill="#ffffff"] {
    fill: #0b4a59;
}

main .bc-stats--service .bc-stats__item > svg:first-child {
    opacity: 0.02 !important;
}

/* Homepage stat descriptions are intentionally softer than their numbers and headings. */
body.bc-home .bc-stats__description {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Homepage accent colour alignment. */
body.bc-home .bc-services__card-link,
body.bc-home .bc-services__card-link *,
body.bc-home .bc-services__card-icon,
body.bc-home .bc-services__card-icon *,
body.bc-home .bc-feature-icon,
body.bc-home .bc-feature-icon *,
body .bc-success__quote-heading,
body.bc-home #cs-case-title,
body.bc-home .bc-testimonial-stars,
body.bc-home .bc-testimonial-stars *,
body .bc-faq__subtitle {
    color: #63df4e !important;
}

/* Shared homepage-final treatment for the strategy-call section. */
body .bc-final-cta__title-accent {
    color: #63df4e !important;
}

body .bc-final-cta__form {
    background: linear-gradient(135deg, rgba(27, 82, 100, 0.86) 0%, rgba(10, 55, 75, 0.92) 100%) !important;
    border: 1px solid rgba(167, 218, 229, 0.18);
    box-shadow: 0 12px 30px rgba(0, 19, 32, 0.16);
}

body .bc-process__nav-btn,
body .bc-process__nav-btn:hover,
body .bc-process__nav-btn:focus,
body.bc-home .bc-testimonials__nav-btn,
body.bc-home .bc-testimonials__nav-btn:hover,
body.bc-home .bc-testimonials__nav-btn:focus {
    background: #63df4e !important;
    border-color: #63df4e !important;
}

body .bc-process__nav-btn *,
body.bc-home .bc-testimonials__nav-btn * {
    color: #032d42 !important;
}

body .bc-process__badge {
    background: #63df4e !important;
    border-color: #63df4e !important;
    color: #032d42 !important;
}

body .bc-process__line {
    background: #63df4e !important;
}

body.bc-home #cs-case-title {
    color: #ffffff !important;
}

/* Latest Insights & News accents. */
body.bc-home .bc-news__header {
    border-bottom: 0;
}

body.bc-home .bc-news__feed-link,
body.bc-home .bc-news__feed-link *,
body.bc-home .bc-news__col-header i,
body.bc-home .bc-news__link,
body.bc-home .bc-news__link * {
    color: #63df4e !important;
}

body.bc-home .bc-cta-banner__bold,
body.bc-home .bc-cta-banner__btn,
body.bc-home .bc-cta-banner__btn:hover,
body.bc-home .bc-cta-banner__btn:focus {
    color: #63df4e !important;
    border-color: #63df4e !important;
}

body.bc-home .bc-cta-banner__btn,
body.bc-home .bc-cta-banner__btn:hover,
body.bc-home .bc-cta-banner__btn:focus {
    background: transparent !important;
}
