﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ── BANNER WRAPPER ── */
.k2-banner {
    max-width: 100%;
    background: linear-gradient(145deg, #2388ED 0%, #116ecc 55%, #0d559d 100%);
    display: flex;
    align-items: stretch;
    position: relative;
    overflow: hidden;
}

.text-align-left {
    text-align: left;
}

.feature-content ul {
    list-style: inside !important;
}

.letter-spacing-0 {
    letter-spacing: 0 !important;
}

/* subtle dot grid watermark */
.k2-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.12) 1.5px, transparent 1.5px);
    background-size: 34px 34px;
    pointer-events: none;
    z-index: 0;
}

/* large background watermark text */
.k2-banner .watermark {
    position: absolute;
    bottom: -30px;
    right: 20px;
    font-size: 260px;
    font-weight: 900;
    letter-spacing: -8px;
    color: rgba(255,255,255,.04);
    pointer-events: none;
    user-select: none;
    line-height: 1;
    z-index: 0;
    white-space: nowrap;
}

/* decorative ring */
.k2-banner .deco-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.08);
    pointer-events: none;
    z-index: 0;
}

    .k2-banner .deco-ring.r1 {
        width: 520px;
        height: 520px;
        bottom: -180px;
        left: -80px;
    }

    .k2-banner .deco-ring.r2 {
        width: 320px;
        height: 320px;
        top: -100px;
        right: 180px;
    }

/* ── LEFT PANEL ── */
.k2-left {
    flex: 0 0 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 50px 60px 60px;
    position: relative;
    z-index: 2;
    border-right: 1px solid rgba(255,255,255,.18);
}

.k2-cta {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: .5px;
    text-align: center;
    text-transform: uppercase;
    display: inline-block;
    transition: transform .25s ease, box-shadow .25s ease, color .25s ease;
}

    .k2-cta:hover {
        color: #fff !important;
        /* keep text color on hover only when logo-badge isn't used */
        color: #fff !important;
    }

/* Zoom the entire badge (button + background) on hover so whole button scales */

.k2-eyebrow {
    font-family: "Poppins", sans-serif;
    font-size: 0.9em;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,.65);
    margin-bottom: 18px;
}

.k2-heading-light {
    font-size: 34px;
    font-weight: 300;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 4px;
    font-family: "Poppins", sans-serif;
}

.k2-heading-bold {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 28px;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
}

.k2-brand-bar {
    width: 56px;
    height: 4px;
    background: rgba(255,255,255,.55);
    border-radius: 2px;
    margin-bottom: 28px;
}

.k2-tagline {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,.7);
    line-height: 1.65;
    font-weight: 300;
    max-width: 220px;
}

.k2-logo-badge {
    margin-top: 40px;
    width: fit-content;
}

    .k2-logo-badge span {
        font-size: 22px;
        font-weight: 800;
        color: #fff;
        letter-spacing: -1px;
    }

    .k2-logo-badge small {
        font-size: 11px;
        color: rgba(255,255,255,.7);
        font-weight: 400;
    }

/* ── RIGHT CARDS AREA ── */
.k2-cards {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    padding: 60px 25px 60px 25px;
    gap: 20px;
    position: relative;
    z-index: 2;
}

/* ── SINGLE CARD ── */
.k2-card {
    flex: 0 1 calc(20% - 16px);
    height: 480px;
    min-width: 180px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 36px 22px 30px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform .28s ease, background .28s ease, border-color .28s ease, box-shadow .28s ease;
}

    .k2-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: rgba(255,255,255,.5);
        border-radius: 16px 16px 0 0;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .3s ease;
    }

    .k2-card:hover {
        transform: translateY(-8px);
        background: rgba(255,255,255,.18);
        border-color: rgba(255,255,255,.45);
        box-shadow: 0 20px 50px rgba(0,0,0,.25);
    }

        .k2-card:hover::before {
            transform: scaleX(1);
        }

/* icon ring */
.k2-icon-ring {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    border: 1.5px solid rgba(255,255,255,.35);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    flex-shrink: 0;
    transition: background .28s ease, border-color .28s ease;
    position: relative;
    z-index: 1;
}

.k2-card:hover .k2-icon-ring {
    background: rgba(255,255,255,.28);
    border-color: rgba(255,255,255,.7);
}

.k2-icon-ring svg {
    width: 50px;
    height: 50px;
}

/* stem */
.k2-stem {
    width: 1px;
    height: 30px;
    background: rgba(255,255,255,.35);
    margin-bottom: 18px;
}

/* card label */
.k2-card-title {
    font-size: 1rem;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    color: #fff;
    letter-spacing: .5px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.k2-card-text {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: rgba(255,255,255,.75);
    text-align: center;
    line-height: 1.7;
}

/* ── ADMIN PANEL (Edit Mode) ── */
.admin-panel {
    width: 1738px;
    max-width: 100%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
    padding: 36px 40px;
    border-top: 4px solid #2388ED;
}

    .admin-panel h2 {
        font-size: 18px;
        font-weight: 700;
        color: #0d559d;
        margin-bottom: 6px;
        font-family: 'Poppins', sans-serif;
    }

    .admin-panel p.hint {
        font-size: 12px;
        color: #888;
        margin-bottom: 28px;
    }

.admin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 28px;
}

.admin-section {
    background: #f8f9fb;
    border-radius: 8px;
    padding: 20px 22px;
    border: 1px solid #e4e7ef;
}

    .admin-section label {
        font-size: 11px;
        font-weight: 600;
    }

/* consultation modal theme */
.consultation-modal .modal-dialog {
    max-width: 820px;
}

.consultation-modal-content {
    border-radius: 28px;
    border: none;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
    box-shadow: 0 34px 80px rgba(15, 47, 108, .18);
}

.consultation-modal-header {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-bottom: none;
    text-align: center;
    padding: 1.6rem 1.75rem 0.8rem;
}

    .consultation-modal-header > div {
        width: 100%;
    }

    .consultation-modal-header .btn-close {
        position: absolute;
        right: 1.25rem;
        top: 1.25rem;
    }

    .consultation-modal-header .modal-title {
        font-size: 2rem;
        letter-spacing: .2px;
        color: #0f2f6c;
        margin-bottom: .25rem;
        text-align: center;
    }

    .consultation-modal-header .text-muted {
        color: #5a74a4;
        font-size: .95rem;
        text-align: center;
    }

.consultation-modal-body {
    padding: 1.8rem 2rem 2.3rem;
}

.consultation-modal-body-content p.lead {
    max-width: 660px;
    margin: 0 auto 1.75rem;
    color: #45679d;
    font-size: 1.02rem;
    line-height: 1.8;
}

.consultation-modal-body .form-label {
    color: #08111f;
    font-weight: 600;
}

.consultation-modal-body .form-control {
    border: 1px solid rgba(15, 47, 108, .18);
    box-shadow: none;
    border-radius: 14px;
    background: #fff;
    color: #08111f;
}

.consultation-modal-body .consultation-service-dropdown .dropdown-toggle {
    border: 1px solid rgba(15, 47, 108, .18);
    color: #08111f;
    border-radius: 14px;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: auto;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 1rem;
}

    .consultation-modal-body .consultation-service-dropdown .dropdown-toggle::after {
        margin-left: .5rem;
    }

.consultation-modal-body .consultation-service-dropdown .dropdown-menu {
    background: #fff;
    border: 1px solid rgba(15, 47, 108, .15);
    box-shadow: 0 18px 40px rgba(15, 47, 108, .14);
    border-radius: 16px;
    max-height: 340px;
    overflow-y: auto;
}

.consultation-modal-body .consultation-service-option + label {
    color: #08111f;
}

.consultation-modal-body .consultation-service-option {
    margin-right: .65rem;
}

.consultation-modal-body .consultation-service-dropdown .dropdown-item,
.consultation-modal-body .consultation-service-dropdown .form-check {
    width: 100%;
}

.consultation-modal-body .consultation-service-dropdown .dropdown-menu .form-check {
    margin-bottom: .5rem;
}

.consultation-modal-body .form-control::placeholder {
    color: #7a8ab8;
}

.consultation-modal-body .form-control:focus {
    border-color: #2388ED;
    box-shadow: 0 0 0 .2rem rgba(47, 116, 240, .15);
}

.consultation-modal-body .form-range {
    width: 100%;
    accent-color: #2388ED;
}

.consultation-budget-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.budget-range-wrapper {
    width: 100%;
}

.budget-range-inputs {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.budget-min-input,
.budget-max-input {
    flex: 0 0 120px;
    font-weight: 600;
    color: #08111f;
    text-align: center;
}

.budget-range-separator {
    color: #08111f;
    font-weight: 700;
    font-size: 1.2rem;
}

.budget-slider-container {
    position: relative;
    margin-bottom: 18px;
    height: 6px;
    background: #e9f0ff;
    border-radius: 8px;
    overflow: visible;
}

.budget-slider-min,
.budget-slider-max {
    position: absolute;
    width: 100%;
    height: 6px;
    top: 0;
    left: 0;
    appearance: none;
    -webkit-appearance: none;
    pointer-events: none;
    border-radius: 8px;
    background: none;
    z-index: 5;
}

    .budget-slider-min::-webkit-slider-thumb,
    .budget-slider-max::-webkit-slider-thumb {
        appearance: none;
        -webkit-appearance: none;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: #2388ED;
        cursor: pointer;
        pointer-events: auto;
        box-shadow: 0 2px 8px rgba(47, 116, 240, .3);
        border: 2px solid #fff;
    }

    .budget-slider-min::-moz-range-thumb,
    .budget-slider-max::-moz-range-thumb {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: #2388ED;
        cursor: pointer;
        pointer-events: auto;
        box-shadow: 0 2px 8px rgba(47, 116, 240, .3);
        border: 2px solid #fff;
    }

    .budget-slider-min::-webkit-slider-runnable-track,
    .budget-slider-max::-webkit-slider-runnable-track {
        width: 100%;
        height: 6px;
        background: transparent;
        border-radius: 8px;
    }

    .budget-slider-min::-moz-range-track,
    .budget-slider-max::-moz-range-track {
        background: transparent;
        border-radius: 8px;
    }

.budget-display-value {
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    color: #2388ED;
    padding: 8px 12px;
    background: #e9f0ff;
    border-radius: 12px;
}

@media (max-width: 767.98px) {
    .budget-min-input,
    .budget-max-input {
        flex: 1;
        min-width: calc(50% - 6px);
    }

    .budget-range-inputs {
        flex-wrap: wrap;
    }

    .budget-range-separator {
        order: 2;
        width: 100%;
        text-align: center;
        margin: 8px 0;
    }
}

.consultation-budget-value {
    min-width: 130px;
    padding: 0.95rem 1rem;
    border-radius: 14px;
    background: #e9f0ff;
    color: #20439d;
    font-weight: 700;
    text-align: center;
}

.consultation-submit-btn {
    background: linear-gradient(135deg, #2388ED 0%, #1974d5 100%);
    border: none;
    box-shadow: 0 16px 28px rgba(25, 103, 221, .18);
}

    .consultation-submit-btn:hover,
    .consultation-submit-btn:focus {
        background: linear-gradient(135deg, #215fcd 0%, #1d6ed3 100%);
    }

.consultation-form-status {
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
}

.consultation-form-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.consultation-form-result {
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.75rem 1rem;
    border-radius: 18px;
    font-size: 1rem;
}

@media (max-width: 767.98px) {
    .consultation-modal-content {
        margin: 0 12px;
    }

    .consultation-modal-body {
        padding: 1.25rem 1rem 1.5rem;
    }

    .consultation-budget-value {
        width: 100%;
        min-width: unset;
    }
}

text-transform: uppercase;
letter-spacing: 1px;
color: #555;
display: block;
margin-bottom: 6px;
}

.admin-section input[type=text], .admin-section textarea {
    width: 100%;
    border: 1px solid #d0d7e6;
    border-radius: 6px;
    padding: 8px 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #333;
    outline: none;
    transition: border-color .2s;
}

/* Jump target offset to account for sticky/fixed header when navigating by anchor */
:root {
    --jump-offset: 120px;
}

@media (max-width: 991px) {
    :root {
        --jump-offset: 100px;
    }
}

.jump-target {
    scroll-margin-top: var(--jump-offset);
}

.admin-section input[type=text]:focus,
.admin-section textarea:focus {
    border-color: #2388ED;
    box-shadow: 0 0 0 3px rgba(35,136,237,.12);
}

.admin-section textarea {
    resize: vertical;
    min-height: 60px;
}

.admin-section input[type=color] {
    width: 48px;
    height: 34px;
    border: 1px solid #d0d7e6;
    border-radius: 6px;
    cursor: pointer;
    padding: 2px;
}

.color-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .color-row span {
        font-size: 12px;
        color: #666;
    }

.cards-admin-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.card-admin {
    background: #f8f9fb;
    border-radius: 8px;
    padding: 16px;
    border: 1px solid #e4e7ef;
}

    .card-admin label {
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #555;
        display: block;
        margin-bottom: 4px;
    }

    .card-admin input[type=text], .card-admin textarea {
        width: 100%;
        border: 1px solid #d0d7e6;
        border-radius: 6px;
        padding: 6px 10px;
        font-family: 'Poppins', sans-serif;
        font-size: 12px;
        color: #333;
        outline: none;
        transition: border-color .2s;
        margin-bottom: 8px;
    }

        .card-admin input[type=text]:focus,
        .card-admin textarea:focus {
            border-color: #2388ED;
            box-shadow: 0 0 0 3px rgba(35,136,237,.12);
        }

    .card-admin textarea {
        resize: vertical;
        min-height: 54px;
    }

    .card-admin .icon-btn {
        display: flex;
        gap: 4px;
        flex-wrap: wrap;
        margin-top: 4px;
    }

        .card-admin .icon-btn button {
            font-size: 10px;
            padding: 3px 7px;
            border-radius: 4px;
            border: 1px solid #ccc;
            cursor: pointer;
            background: #fff;
            color: #333;
            font-family: 'Poppins', sans-serif;
            transition: border-color .2s, background .2s;
        }

            .card-admin .icon-btn button:hover {
                border-color: #2388ED;
                background: #e8f3fe;
            }

            .card-admin .icon-btn button.active {
                border-color: #2388ED;
                background: #2388ED;
                color: #fff;
            }

.btn-apply {
    background: linear-gradient(135deg, #2388ED, #116ecc);
    color: #fff;
    border: none;
    padding: 13px 38px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity .2s, transform .15s;
    box-shadow: 0 4px 14px rgba(35,136,237,.4);
    letter-spacing: .3px;
}

    .btn-apply:hover {
        opacity: .9;
        transform: translateY(-1px);
    }

.btn-reset {
    background: #fff;
    color: #2388ED;
    border: 1.5px solid #2388ED;
    padding: 11px 28px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s, color .2s;
    margin-left: 12px;
}

    .btn-reset:hover {
        background: #2388ED;
        color: #fff;
    }

.show-for-desktop {
    display: none;
}

.cursor-pointer {
    cursor: pointer;
}

.text-align-justify {
    text-justify: inter-word;
    text-align-last: left;
}

.bg-hover-primary:hover {
    background: #2388ED !important;
}

.social-icons li:hover.social-icons-background a {
    background: #2388ED !important;
}

.border-color-light {
    border-color: #fff !important;
}

.border-color-dark {
    border-color: #000 !important;
}

@media (min-width: 992px) {
    .show-for-desktop {
        display: block;
    }
}

@media (min-width: 768px) {
    .sidebar-mt {
        margin-top: 2.5rem !important;
    }
}

/* Responsive updates for K2 capabilities widget */
@media (max-width: 1199px) {
    .k2-banner {
        height: auto;
        flex-wrap: wrap;
    }

    .k2-left {
        flex: 1 1 100%;
        padding: 48px 32px 40px 32px;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,.12);
        align-items: center;
        text-align: center;
    }

    .k2-cards {
        padding: 32px 32px 40px 32px;
        gap: 18px;
    }

    .k2-card {
        height: auto;
        min-height: 380px;
    }
}

@media (max-width: 991px) {
    .k2-banner {
        flex-direction: column;
        align-items: stretch;
        padding-bottom: 30px;
    }

    .k2-left {
        padding: 40px 28px 28px 28px;
        border-bottom: 1px solid rgba(255,255,255,.12);
        align-items: center;
        text-align: center;
    }

    .k2-heading-light {
        font-size: 28px;
        margin-bottom: 2px;
    }

    .k2-heading-bold {
        font-size: 32px;
        margin-bottom: 22px;
    }

    .k2-tagline {
        max-width: 100%;
        font-size: 14px;
    }

    .k2-cards {
        flex-wrap: wrap;
        padding: 28px 24px 24px 24px;
        justify-content: center;
    }

    .k2-card {
        flex: 1 1 calc(50% - 10px);
        min-width: 260px;
        max-width: calc(50% - 10px);
    }

    .k2-icon-ring {
        width: 90px;
        height: 90px;
    }

        .k2-icon-ring svg {
            width: 42px;
            height: 42px;
        }
}

@media (max-width: 767px) {
    .k2-left {
        padding: 32px 22px 24px 22px;
    }

    .k2-heading-light {
        font-size: 24px;
    }

    .k2-heading-bold {
        font-size: 28px;
    }

    .k2-cards {
        gap: 16px;
        padding: 24px 20px 24px 20px;
    }

    .k2-card {
        flex: 1 1 100%;
        max-width: 100%;
        min-height: auto;
    }

    .k2-card {
        padding: 26px 20px 24px;
    }

    .k2-icon-ring {
        width: 80px;
        height: 80px;
    }

        .k2-icon-ring svg {
            width: 36px;
            height: 36px;
        }

    .k2-banner .watermark {
        font-size: 180px;
        bottom: -42px;
        right: -28px;
    }

    .k2-banner .deco-ring.r1 {
        width: 420px;
        height: 420px;
        bottom: -170px;
        left: -70px;
    }

    .k2-banner .deco-ring.r2 {
        width: 260px;
        height: 260px;
        top: -90px;
        right: 120px;
    }
}

@media (max-width: 575px) {
    .k2-banner {
        height: auto;
    }

    .k2-left {
        padding: 28px 20px 20px 20px;
    }

    .k2-heading-light {
        font-size: 22px;
    }

    .k2-heading-bold {
        font-size: 24px;
        letter-spacing: 0;
    }

    .k2-tagline {
        font-size: 14px;
        max-width: 100%;
    }

    .k2-logo-badge {
        margin-top: 28px;
    }

    .k2-cards {
        padding: 20px 18px 24px 18px;
    }

    .k2-card {
        padding: 24px 18px 20px;
    }

    .k2-card-title {
        font-size: 1rem;
    }

    .k2-card-text {
        font-size: 14px;
        line-height: 1.6;
    }

    .k2-banner .watermark {
        display: none;
    }

    .k2-banner .deco-ring.r1,
    .k2-banner .deco-ring.r2 {
        display: none;
    }
}


.k2-migration-section {
    background: linear-gradient(160deg, #0d559d 0%, #2388ED 45%, #116ecc 100%);
    padding: 80px 40px 90px;
    position: relative;
    overflow: hidden;
}

    .k2-migration-section::before {
        content: 'MIGRATION';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: clamp(80px, 12vw, 160px);
        font-weight: 900;
        color: rgba(255,255,255,0.06);
        letter-spacing: 10px;
        white-space: nowrap;
        pointer-events: none;
        user-select: none;
        z-index: 0;
    }

    .k2-migration-section::after {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        border: 60px solid rgba(255,255,255,0.04);
        top: -160px;
        right: -160px;
        pointer-events: none;
        z-index: 0;
    }

.k2-section-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.k2-section-header {
    text-align: center;
    margin-bottom: 56px;
}

    .k2-section-header h2 {
        font-size: clamp(28px, 4vw, 44px);
        font-weight: 800;
        color: #fff;
        letter-spacing: -1px;
        line-height: 1.15;
        margin-bottom: 14px;
    }

.k2mj-title-accent {
    position: relative;
    display: inline-block;
}

    .k2mj-title-accent::after {
        content: '';
        position: absolute;
        bottom: 2px;
        left: 0;
        right: 0;
        height: 3px;
        background: rgba(255,255,255,0.45);
        border-radius: 2px;
    }

.k2-section-header p {
    font-size: 16px;
    color: rgba(255,255,255,0.82);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Timeline row */
.k2-timeline-bar {
    display: flex;
    align-items: stretch;
    position: relative;
}

    .k2-timeline-bar::before {
        content: '';
        position: absolute;
        top: 38px;
        left: calc(12.5% + 2px);
        right: calc(12.5% + 2px);
        height: 2px;
        background: rgba(255,255,255,0.25);
        z-index: 0;
    }

/* Phase card */
.k2-phase-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 0 10px;
}

.k2-phase-number {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    border: 2px solid rgba(255,255,255,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    transition: background 0.3s;
}

    .k2-phase-number i {
        font-size: 26px;
        color: #fff;
    }

.k2-phase-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #fff;
    color: #2388ED;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.k2-card-body {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.20);
    border-radius: 14px;
    padding: 28px 22px 24px;
    flex: 1;
    backdrop-filter: blur(4px);
    position: relative;
    overflow: hidden;
    transition: background 0.3s, transform 0.3s;
}

    .k2-card-body::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: rgba(255,255,255,0.50);
        border-radius: 14px 14px 0 0;
    }

.k2-phase-card:hover .k2-card-body {
    background: rgba(255,255,255,0.16);
    transform: translateY(-4px);
}

.k2-phase-card:hover .k2-phase-number {
    background: rgba(255,255,255,0.22);
}

.k2-phase-label {
    font-size: 0.9em;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-bottom: 6px;
}

.k2-card-body h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.k2-card-body p {
    font-size: 14px;
    color: rgba(255,255,255,0.80);
    line-height: 1.7;
    margin-bottom: 16px;
}

.k2-duration {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

    .k2-duration i {
        font-size: 11px;
        opacity: 0.85;
    }

/* CTA Strip */
.k2-cta-strip {
    margin-top: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

    .k2-cta-strip p {
        color: rgba(255,255,255,0.85);
        font-size: 15px;
        font-weight: 500;
    }

.k2-btn-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #2388ED;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.2s;
    cursor: pointer;
}

    .k2-btn-light:hover {
        background: transparent;
        color: #fff !important;
        border-color: #fff;
    }

.k2-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.50);
    transition: all 0.2s;
    cursor: pointer;
}

    .k2-btn-outline:hover {
        background: rgba(255,255,255,0.10);
        border-color: #fff;
        color: #fff !important;
    }

/* Responsive */
@media (max-width: 900px) {
    .k2-timeline-bar {
        flex-direction: column;
        gap: 20px;
    }

        .k2-timeline-bar::before {
            display: none;
        }

    .k2-phase-card {
        padding: 0;
    }

    .padding-lr-medium {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (max-width: 600px) {
    .k2-migration-section {
        padding: 50px 20px 60px;
    }
}

@media (max-width: 600px) {
    .padding-lr-small {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .text-align-justify-small {
        text-align: left;
    }

    .pb-xs-0 {
        padding-bottom: 0 !important;
    }
}

.expertise-logos-section {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
    background-color: #ffffff;
    background-image: radial-gradient(#c8d0d8 1px, transparent 1px);
    background-size: 25px 25px;
}

.section-header {
    text-align: center;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    margin: 0 auto;
    color: #6e7b88;
    font-size: 17px;
    line-height: 1.8;
    background: rgba(255, 255, 255, 0.8);
    display: inline-block;
}

.logo-strip-wrap {
    position: relative;
    z-index: 2;
}

.logo-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid #e8edf3;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(15, 34, 58, 0.06);
    position: relative;
    min-height: 225px;
    isolation: isolate;
}

.abstract-shapes {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

    .abstract-shapes svg {
        width: 100%;
        height: 100%;
        display: block;
    }

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 225px;
    position: relative;
    z-index: 2;
}

    .logo-item:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 132px;
        background: #e8edf3;
        z-index: 3;
    }

.logo-card {
    position: relative;
    width: 100%;
    max-width: 390px;
    min-height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.56);
    isolation: isolate;
}

.logo-watermark {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 1;
    opacity: 0.95; /* Increased opacity to ensure it is visible properly */
}

    .logo-watermark svg {
        width: 250px;
        height: 250px;
        max-width: 92%;
        max-height: 130%;
    }

.logo-item img {
    max-width: 100%;
    width: 320px;
    height: auto;
    display: block;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

@media (max-width: 991px) {
    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .logo-strip {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .logo-item {
        min-height: 210px;
    }

        .logo-item:not(:last-child)::after {
            right: 50%;
            top: auto;
            bottom: 0;
            transform: translateX(50%);
            width: 85%;
            height: 1px;
        }

    .logo-card {
        max-width: 420px;
    }

    .logo-watermark svg {
        width: 210px;
        height: 210px;
    }

    .logo-item img {
        width: 280px;
    }
}

@media (max-width: 767px) {
    .expertise-logos-section {
        padding: 65px 0;
    }

    .container {
        padding: 0 18px;
    }

    .section-title {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .logo-item {
        min-height: 165px;
        padding: 24px 16px;
    }

    .logo-card {
        min-height: 145px;
        padding: 18px 14px;
    }

    .logo-item img {
        width: 235px;
    }

    .logo-watermark svg {
        width: 170px;
        height: 170px;
    }
}

/**Who we are css**/

.who-we-are-section {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background: linear-gradient(135deg, #2388ED 0%, #116ecc 100%);
}

    .who-we-are-section::before,
    .who-we-are-section::after {
        content: "";
        position: absolute;
        border-radius: 50%;
        pointer-events: none;
    }

    .who-we-are-section::before {
        width: 900px;
        height: 900px;
        left: -180px;
        top: -120px;
        background: rgba(255, 255, 255, 0.06);
    }

    .who-we-are-section::after {
        width: 700px;
        height: 700px;
        left: 120px;
        top: 80px;
        background: rgba(255, 255, 255, 0.05);
    }

.wwa-container {
    width: 100%;
    max-width: auto;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.wwa-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.wwa-image-col,
.wwa-content-col {
    flex: 1 1 480px;
}

.wwa-image-wrap {
    position: relative;
    max-width: 560px;
    margin: 0 auto;
}

.wwa-image-shape {
    position: absolute;
    width: 180px;
    height: 180px;
    right: 30px;
    bottom: -10px;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    backdrop-filter: blur(6px);
}

.wwa-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    position: relative;
    z-index: 2;
    border: 8px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.wwa-badge {
    display: inline-block;
    padding: 12px 28px;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.wwa-title {
    font-size: 1.5rem;
    line-height: 1.12;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
}

.wwa-text {
    font-size: 14px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.92);
    max-width: 560px;
    margin-bottom: 32px;
}

@media (max-width: 991px) {
    .who-we-are-section {
        padding: 50px 0;
    }

    .wwa-row {
        gap: 0;
    }

    .wwa-title {
        font-size: 1.5rem;
    }

    .wwa-text {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .wwa-container {
        padding: 0 18px;
    }

    .wwa-row {
        flex-direction: column;
        text-align: center;
    }

    .wwa-title,
    .wwa-text {
        max-width: 100%;
    }

    .wwa-title {
        font-size: 1.5rem;
    }

    .wwa-text {
        font-size: 14px;
        line-height: 1.8;
    }

    .wwa-image-wrap {
        max-width: 360px;
    }

    .wwa-image-shape {
        width: 120px;
        height: 120px;
        right: 10px;
        bottom: -5px;
    }

    .section-small {
        padding: 3rem 0 !important;
    }
}

/* ── PRICING PLANS WIDGET FIX ── */
@media (min-width: 767px) {
    .pricing-table.pricing-table-style-1 {
        display: flex !important;
    }

        .pricing-table.pricing-table-style-1 .row {
            width: 100%;
            display: flex !important;
            align-items: stretch !important;
        }

        .pricing-table.pricing-table-style-1 [class^='col'] {
            display: flex !important;
            flex-direction: column !important;
        }

    .pricing-table .plan {
        display: flex !important;
        flex-direction: column !important;
        height: 100% !important;
        justify-content: space-between !important;
    }

    .pricing-table .plan-title {
        flex-shrink: 0 !important;
    }

    .pricing-table .plan-price {
        flex-shrink: 0 !important;
    }

    .pricing-table .plan-detail {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .pricing-table .plan .btn,
    .pricing-table .plan a.btn {
        flex-shrink: 0 !important;
        align-self: center !important;
        margin-top: auto !important;
        margin-bottom: 2rem !important;
    }
}
