:root {
    --ink: #14213d;
    --muted: #7b8397;
    --accent: #ff6b3d;
    --teal: #2fbfad;
    --stripe: #eef0f7;
    --line: #eceef4;
    --green: #2ecc71;
    --red: #ef4a4a;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f8fafc;
    color: var(--ink);
}

.section-pad {
    /* padding: 0px 15px 100px; */
}

.note-title {
    text-align: start;
    margin-bottom: 45px;
}

.pro-title {
    text-align: center;
    margin-bottom: 45px;
}

.pro-title h4 {
    color: var(--accent);
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.pro-title h2 {
    font-weight: 700;
    font-size: 2.1rem;
    color: var(--ink);
    margin: 0;
}

.table-wrap {
    position: relative;
    max-width: 1260px;
    margin: 0 auto;
}

.icon-pri {
    position: absolute;
    top: -34px;
    left: 6px;
    color: var(--teal);
    font-size: 1.6rem;
    transform: rotate(-8deg);
    z-index: 2;
}

.pricing-wrapper {
    display: flex;
    align-items: flex-start;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: visible;
    gap: 20px;
    box-shadow: 0 10px 40px rgba(20, 33, 61, 0.05);
}

.pricing-col {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    min-width: 0;
    border-right: 1px solid var(--line);
    position: relative;
    background: #fff;
    border-radius: 16px;
}

.pricing-col:last-child {
    border-right: none;
}

.pricing-col.features-col {
    flex: 1.35 1 0;
    background: #fff;
}

.col-header {
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    text-align: center;
    border-bottom: 1px solid var(--line);
}

.col-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0;
}

.features-col .col-header {
    justify-content: flex-start;
    border-radius: 20px 20px 0px 0px;
}

.features-col .col-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
}

.row-item {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8px 16px;
    font-size: 0.92rem;
    color: var(--ink);
}

.features-col .row-item {
    justify-content: start;
    text-align: center;
    font-weight: 500;
    color: #2b3350;
}

.row-item.stripe {
    background: #f8f9ff;
}

.price-row {
    min-height: 122px;
    /* min-height: 85px; */
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    border-bottom: 1px solid var(--line);
}

.features-col .price-row {
    align-items: flex-start;
    padding-top: 30px;
}

.features-col .price-row h5 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.features-col .price-row span {
    font-size: 0.78rem;
    color: var(--muted);
}

.price-current {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--ink);
}

.price-current.custom {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ink);
}

.price-old {
    font-size: 1rem;
    color: #818590;
    text-decoration: line-through;
}

.price-tag {
    font-size: 0.75rem;
    color: var(--muted);
}

.bi-check-circle {
    color: var(--green);
    font-size: 16px;
    font-weight: 700;
}



.footer-row {
    min-height: 90px;
    align-items: center;
}

.btn-buy {
    border: 1.5px solid var(--accent);
    color: var(--accent);
    background: transparent;
    padding: 9px 26px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all .2s ease;
}

.btn-buy:hover {
    background: var(--accent);
    color: #fff;
}

.pricing-col.premium-col .col-header {
    height: 55px;
    background: linear-gradient(180deg, #fff 0%, #fff 100%);
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    /* background:#FFF7F1; */
}

.pricing-col.premium-col .col-header h3 {
    font-size: 1.3rem;
    color: var(--accent);
}

.pricing-col.premium-col .price-row {
    min-height: 122px;
}


.pricing-col.premium-col .btn-buy {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

@media (max-width: 1100px) {
    .pricing-wrapper {
        overflow-x: auto;
    }

    .pricing-col.premium-col {
        transform: translateY(-12px);
    }
}

@media (max-width: 992px) {
    .pricing-wrapper {
        flex-wrap: nowrap;
        min-width: 1000px;
    }

    .table-wrap {
        overflow-x: auto;
        padding-bottom: 10px;
    }
}

/* ============================================================
     RESPONSIVE ADDITIONS (mobile & tablet only, ≤992px)
     Nothing above this line has been modified. Desktop (>992px)
     keeps the original side-by-side table exactly as-is. Below
     992px the table stacks into one full-width plan card after
     another (Essential, then Professional, then Premium, ...),
     each card listing its own Features internally.
     ============================================================ */

@media (max-width: 992px) {
    .pricing-wrapper {
        display: block;
        flex-wrap: unset;
        min-width: 0;
        border: none;
        box-shadow: none;
        background: transparent;
    }

    .table-wrap {
        overflow-x: visible;
        padding-bottom: 0;
    }

    .icon-pri {
        display: none;
    }

    .pricing-col.features-col {
        display: none;
    }

    .pricing-col {
        display: block;
        width: 100%;
        border: 1px solid var(--line);
        border-radius: 16px;
        margin-bottom: 35px;
        overflow: hidden;
        box-shadow: 0 8px 26px rgba(20, 33, 61, 0.06);
    }

    .pricing-col:last-child {
        margin-bottom: 0;
    }

    .pricing-col.premium-col {
        border-color: var(--accent);
        box-shadow: 0 14px 34px rgba(255, 107, 61, 0.18);
    }

    .col-header {
        height: auto;
        padding: 20px 16px;
        background: var(--stripe);
        justify-content: center;
    }

    .pricing-col.premium-col .col-header {
        height: auto;
        background: var(--accent);
    }

    .pricing-col.premium-col .col-header h3 {
        color: #fff;
    }

    .row-item {
        min-height: 0;
        justify-content: space-between;
        text-align: right;
        padding: 12px 16px;
        border-bottom: 1px solid var(--line);
    }

    .row-item:last-child {
        border-bottom: none;
    }

    /* Show the feature name inside each plan card, taken from
       the row's data-label attribute */
    .row-item[data-label]::before {
        content: attr(data-label);
        text-align: left;
        font-weight: 500;
        color: #2b3350;
        margin-right: 12px;
    }

    .price-row {
        min-height: 0;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 4px 10px;
        border-bottom: 1px solid var(--line);
    }

    .price-row[data-label]::before {
        content: attr(data-label);
        width: 100%;
        text-align: left;
        font-weight: 600;
        font-size: 0.95rem;
        color: var(--ink);
    }

    .pricing-col.premium-col .price-row {
        min-height: 0;
    }

    .footer-row {
        min-height: 0;
        padding: 18px 16px;
        justify-content: center;
    }

    .pricing-col.premium-col .footer-row {
        min-height: 0;
    }

    .btn-buy {
        width: 100%;
    }
}

/* Small phones: tighten padding a little further */
@media (max-width: 480px) {
    .col-header {
        padding: 16px 14px;
    }

    .row-item,
    .price-row {
        padding: 10px 14px;
        font-size: 0.85rem;
    }

    .price-current {
        font-size: 1.15rem;
    }

    .footer-row {
        padding: 14px;
    }
}

/* Respect users who've asked for reduced motion */
@media (prefers-reduced-motion: reduce) {
    .btn-buy {
        transition: none;
    }
}


.lists ul li {
    font-size: 14px;
    line-height: 30px;
}



.hero-section {
    text-align: center;
    padding: 60px 15px 20px;
    width: 100%;
    z-index: 10;
}

.hero-section h4 {
    color: #0c2340;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.hero-section h1 {
    color: #0c2340;
    font-weight: 700;
    font-size: 38px;
    margin-top: 0;
    margin-bottom: 25px;
    line-height: 1.2;
}

.highlight-text {
    background: #0196d6;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.alert-banner {
    background-color: #edf5ff;
    border: 1px solid #cce3ff;
    border-radius: 30px;
    display: inline-block;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 600;
    color: #0c2340;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(88, 80, 236, 0.05);
}

.alert-banner span {
    color: #3b82f6;
    font-weight: 700;
}

@media (max-width: 991px) {
    .hero-section h1 {
        font-size: 32px;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }

    .free-trail {
        margin-top: 0px !important;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 26px;
    }

}




.col-header {
    position: sticky;
    top: 75px;
    z-index: 400;
    background-color: #fff;
    border-radius: 20px 20px 0px 0px;
}

.sticky-header2 {
    position: sticky;
    top: 130px;
    z-index: 400;
    background-color: #fff;
}

.sticky-header3 {
    position: sticky;
    top: 220px;
    z-index: 400;
    background-color: #fff;
}





.btn-table-action {
    background: #0196d6;
    color: #fff;
    border: 1.5px solid #cbd5e0;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 18px;
    border-radius: 6px;
    width: 100%;
    transition: all 0.2s ease;
    margin-top: 5px;
}

.btn-table-action:hover {
    color: #ffffff !important;
    border-color: #fff !important;
}

.free-trail {
    margin-top: 31px;
}

@media (max-width: 992px) {

    .col-header,
    .sticky-header2,
    .sticky-header3 {
        position: static !important;
        top: auto !important;
        z-index: auto !important;
        background: transparent !important;
    }

    .pricing-col .col-header {
        background: var(--stripe) !important;
    }

    .pricing-col.premium-col .col-header {
        background: var(--accent) !important;
    }

    .price-row {
        padding: 12px 16px !important;
        min-height: auto !important;
    }

    .row-item[data-label]::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--ink);
        margin-right: 10px;
        flex-shrink: 0;
    }

    .price-row[data-label]::before {
        width: auto !important;
    }

    .free-link {
        margin: 0px !important;
    }
}



.form-label {
    font-size: 15px;
    font-weight: 600;
    color: #595f65;
    margin-bottom: 8px;
}

.form-control,
.form-select {
    height: 45px;
    border-radius: 12px;
    border: 1px solid #d8dde6;
    font-size: 15px;
    padding: 0 16px;
    box-shadow: none;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
    padding: 15px 16px;
}

.form-control:focus,
.form-select:focus {
    border-color: #0196d6;
    box-shadow: 0 0 0 .15rem rgba(1, 150, 214, .15);
}

.position-relative {
    position: relative;
}

.error-icon {
    position: absolute;
    right: 16px;
    top: 48px;
    color: #dc3545;
    display: none;
    font-size: 16px;
}

.form-control.is-invalid+.error-icon,
.form-select.is-invalid+.error-icon {
    display: block;
}

.invalid-feedback {
    display: none;
    font-size: 13px;
}

.is-invalid~.invalid-feedback {
    display: block;
}

.btn-contact,
.btn-contact:focus,
.btn-contact:hover,
.btn-contact:active,
.btn-contact.active,
.btn-contact:focus:active,
.btn-contact:visited {
    background-color: #0196d6 !important;
    border-color: #0196d6 !important;
    color: #fff !important;
}

.btn-contact {
    border: none;
    border-radius: 8px;
    height: 45px;
    min-width: 230px;
    font-size: 18px;
    font-weight: 600;
    transition: all .3s ease;
}

.btn-contact:focus,
.btn-contact:active {
    box-shadow: 0 0 0 0.2rem rgba(1, 150, 214, 0.25);
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #344054;
}

.form-control,
.form-select {
    height: 40px;
    border-radius: 10px;
    border: 1px solid #d6dce5;
    font-size: 15px;
    transition: .25s ease;
}

textarea.form-control {
    min-height: 70px;
    resize: none;
}

.form-control:focus,
.form-select:focus {
    border-color: #0f62fe;
    box-shadow: 0 0 0 .2rem rgba(15, 98, 254, .12);
}

::placeholder {
    color: #98a2b3 !important;
}

.invalid-feedback {
    font-size: 13px;
}

.error-icon {
    display: none;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #dc3545;
}

.form-control.is-invalid+.error-icon,
.form-select.is-invalid+.error-icon {
    display: block;
}

.modal-content {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .15);
}


/* form moniesh */


:root {
    --navy: #002a54;
    --header-navy: #2b478b;
    --page-bg: #f7fafd;
    --label-gray: #595959;
    --value-gray: #808080;
    --border-gray: #e6e9ef;
    --orange-start: #f13800;
    --orange-end: #f4834a;
    --required-red: #ff3d3d;
}

.page-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 70px 40px;
}

.content-row {
    width: 100%;
}



.headline-col {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 75vh;
    text-align: start;

}

.headline {
    color: var(--navy);
    font-weight: 800;
    font-size: 34px;
    line-height: 1.4;
    max-width: 650px;
    margin: 0 auto;
}

.form-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 25px 50px rgba(20, 30, 70, 0.16);
    overflow: hidden;
    max-width: 420px;
    margin-left: auto;
    margin-right: 0;
}

.form-card-header {
    background-color: #1F3465;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    padding: 22px 30px;
    margin: 0;
}

.form-card-body {
    padding: 24px 30px 30px 30px;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: var(--label-gray);
    margin-bottom: 5px;
}

.required-star {
    color: var(--required-red);
    margin-left: 2px;
}

.form-control {
    border: 1px solid var(--border-gray);
    border-radius: 5px;
    box-shadow: none;
    height: 40px;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    color: var(--value-gray);
    padding: 8px 12px;
}

.form-control:focus {
    border-color: var(--header-navy);
    box-shadow: 0 0 0 2px rgba(43, 71, 139, 0.1);
}

.form-control::placeholder {
    color: var(--value-gray);
}

.captcha-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.captcha-canvas-wrap {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid var(--border-gray);
    border-radius: 5px;
    background-color: var(--page-bg);
    overflow: hidden;
    flex-shrink: 0;
}

#captchaCanvas {
    display: block;
}

.captcha-refresh-btn {
    background: #ffffff;
    border: 1px solid var(--border-gray);
    border-radius: 5px;
    height: 40px;
    width: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--header-navy);
    font-size: 16px;
    transition: background 0.15s ease;
}

.captcha-refresh-btn:hover {
    background: var(--page-bg);
}

.captcha-error {
    display: none;
    color: var(--required-red);
    font-size: 11px;
    margin-top: 5px;
}

.captcha-error.show {
    display: block;
}

.btn-get-started,
.btn-get-started:hover,
.btn-get-started:focus,
.btn-get-started:active,
.btn-get-started.active,
.btn-get-started:visited {
    width: 100%;
    border: none;
    padding: 13px 0;
    font-size: 15px;
    font-weight: 600;
    color: #fff !important;
    letter-spacing: 0.3px;
    margin-top: 6px;
    background: #1F3465 !important;
    transition: opacity 0.2s ease;
    outline: none;
}

.btn-get-started:hover,
.btn-get-started:focus,
.btn-get-started:active {
    opacity: 0.92;
    color: #fff !important;
    background: #1F3465 !important;
    border: none;
    outline: none;
}

.btn-get-started:focus,
.btn-get-started:active:focus {
    outline: none !important;
}

@media (max-width: 991px) {
    .headline {
        font-size: 27px;
        margin-bottom: 45px;
    }

    .form-card {
        margin-left: auto;
        margin-right: auto;
    }

    .headline-col {
        min-height: 0vh;
    }
}

@media (max-width: 480px) {
    .page-wrap {
        padding: 35px 16px;
    }

    .headline {
        font-size: 21px;
    }

    .form-card-header {
        font-size: 16px;
        padding: 18px 20px;
    }

    .form-card-body {
        padding: 22px 20px 24px 20px;
    }

    .captcha-row {
        flex-wrap: wrap;
    }
}

:root {
    --navy: #002a54;
    --header-navy: #2b478b;
    --page-bg: #f7fafd;
    --label-gray: #595959;
    --value-gray: #808080;
    --border-gray: #e6e9ef;
    --orange-start: #f13800;
    --orange-end: #f4834a;
    --required-red: #ff3d3d;
}

.page-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 40px;
    background-color: var(--page-bg);
}

.content-row {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

/* 3. Streamline column behavior */
.headline-col {
    display: flex;
    align-items: center;
    text-align: left;
}

.headline {
    color: #1F3465;
    font-weight: 800;
    font-size: 36px;
    line-height: 1.2;
    max-width: 75%;
    margin: 0;
}

.form-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 25px 50px rgba(20, 30, 70, 0.16);
    overflow: hidden;
    max-width: 420px;
    margin: 0 0 0 auto;
}

@media (max-width: 991px) {
    .content-row {
        display: block;
    }

    .headline {
        font-size: 28px;
        margin: 0 auto 35px auto;
        text-align: center;
        max-width: 100%;
    }

    .form-card {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .page-wrap {
        padding: 35px 16px;
    }

    .headline {
        font-size: 22px;
    }

    .form-card-header {
        font-size: 16px;
        padding: 18px 20px;
    }

    .form-card-body {
        padding: 22px 20px 24px 20px;
    }

    .captcha-row {
        flex-wrap: wrap;
    }
}

/* form moniesh */


/* =========================================================
   VERIFY DETAILS PAGE — new rules only.
   Reused as-is from the project stylesheet: .form-card,
   .form-card-header, .form-card-body, .form-group,
   .required-star, .form-control, .btn-buy (+ premium-col fill
   logic), and the existing --navy/--ink/--muted/--accent/
   --border-gray/--page-bg/--label-gray/--value-gray variables.
   ========================================================= */

/* ---------- Widen the sidebar-style form-card for this layout ---------- */
.form-card-wide {
    max-width: none;
    margin: 0;
}

/* ---------- Read-only / muted input (Contact name, Mobile No, etc.) ---------- */
.form-control-muted {
    background-color: var(--page-bg);
    color: var(--value-gray);
    cursor: not-allowed;
}

/* ---------- Highlighted bank details box ---------- */
.bank-details-box {
    background-color: var(--page-bg);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    padding: 16px 18px;
}

.bank-details-box p {
    margin-bottom: 8px;
    font-size: 13px;
    color: var(--value-gray);
}

.bank-details-box p:last-child {
    margin-bottom: 0;
}

.bank-details-box strong {
    color: var(--navy);
    font-weight: 600;
}

/* ---------- Solid-fill modifier for .btn-buy used outside .premium-col ---------- */
.btn-buy-filled {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
}

.btn-buy-filled:hover {
    background: #2563eb;
    color: #fff;
}

.btn-buy-sm {
    padding: 7px 16px;
    font-size: 0.8rem;
}

/* ---------- Plan summary card (dark header + stats body) ---------- */
.plan-summary-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(20, 33, 61, 0.08);
}

.plan-summary-header {
    background-color: var(--navy);
    padding: 20px 24px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.plan-summary-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.plan-summary-price {
    font-size: 22px;
    font-weight: 700;
}

.plan-summary-body {
    background-color: #fff;
    padding: 20px 24px;
}

.plan-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 18px;
    column-gap: 20px;
}

.plan-stat-label {
    font-size: 12.5px;
    color: var(--muted);
    margin-bottom: 4px;
}

.plan-stat-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
}

/* ---------- Price / invoice summary card ---------- */
.price-summary-card {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(20, 33, 61, 0.05);
    padding: 4px 24px;
}

.price-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-gray);
    font-size: 13.5px;
    color: var(--ink);
}

.price-summary-row:last-child {
    border-bottom: none;
}

.price-summary-row.total {
    font-weight: 700;
    font-size: 15px;
}

.price-summary-row .muted-tax {
    font-size: 11.5px;
    color: var(--muted);
    font-weight: 400;
    margin-left: 4px;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {

    .plan-summary-header,
    .plan-summary-body {
        padding: 18px 20px;
    }
}

@media (max-width: 767.98px) {
    .plan-summary-header {
        flex-wrap: wrap;
    }

    .plan-stat-grid {
        grid-template-columns: 1fr 1fr;
    }
}