
        label.error {
            color: red;
        }


        .custome-loader {
            inset: 0;
            display: none;
            align-items: center;
            justify-content: center;
            position: absolute;
        }

        .custome-loader:after {
            content: "";
            position: absolute;
            inset: 0;
            background-color: #fff;
            opacity: 0.6;
            z-index: 99;
            animation: loaderBg 0.8s infinite;
        }

        @keyframes loaderBg {
            0% {
                opacity: 0.6;
            }

            50% {
                opacity: 0.8;
            }

            100% {
                opacity: 0.6;
            }
        }

        .custome-loader img {
            width: 100px;
            z-index: 100;
            height: fit-content;
        }

        .active-loader {
            display: flex;
        }

        .disabled-input:focus,
        .disabled-input:active,
        .disabled-input {
            background-color: #e9ecef;
            opacity: 1;
        }

        .disabled-checkbox:before {
            background-color: #e9ecef;
            opacity: 1;
        }

        .ui-autocomplete {
            max-height: 200px;
            max-width: 169px;
            width: fit-content;
            overflow-y: auto;
            overflow-x: hidden;
            padding-right: 20px;
        }

        .ui-widget.ui-widget-content {
            padding: 10px !important;
            position: relative !important;
            border-radius: 12px 10px 10px 12px !important;
            border: 1px solid rgba(231, 231, 231, 1) !important;
        }

        .ui-widget.ui-widget-content::-webkit-scrollbar {
            width: 10px;
        }

        .ui-widget.ui-widget-content::-webkit-scrollbar-thumb {
            background: linear-gradient(260deg, #467efe 5.26%, #61cafd 100%);
            border-radius: 50px;
        }

        .ui-widget.ui-widget-content::-webkit-scrollbar-track {
            background: #dddddd;
            border-radius: 50px;
        }

        .ui-menu .ui-menu-item-wrapper {
            padding: 5px 10px;
            font-size: 16px;
            border-radius: 6px;
            font-weight: 400;
            font-family: 'Poppins', sans-serif;
        }

        .ui-state-active,
        .ui-widget-content .ui-state-active,
        .ui-widget-header .ui-state-active,
        a.ui-button:active,
        .ui-button:active,
        .ui-button.ui-state-active:hover {
            border: 1px solid #5897fb !important;
            background-color: #5897fb !important;
            font-weight: normal;
            color: #ffffff;
        }

        .input-dropdown {
            position: relative;
            width: 100%;
            height: 60px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 500;
            border: 1px solid #e7e7e7;
        }

        .input-dropdown input,
        .input-dropdown b {
            cursor: text;
        }

        .code-dropdown {
            padding: 0 20px !important;
            position: relative;
        }

        .cross-icon-state {
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            right: 26px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 5;
        }

        .cross-icon-code {
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 5;
        }

        .input-dropdown b {
            border-style: solid;
            height: 0;
            right: 12px;
            left: unset;
            margin-top: 0;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            border-color: #7e7f87 transparent transparent transparent !important;
            border-width: 6px 6px 0 6px !important;
        }
    

        /* NPA label highlight when checked */
        .county-code-label {
            cursor: pointer;
            padding: 6px 10px;
            border-radius: 8px;
            border: 1.5px solid #e0e4f0;
            margin: 3px;
            font-size: 14px;
            font-weight: 600;
            color: #222328;
            transition: background 0.15s, border-color 0.15s, color 0.15s;
            user-select: none;
        }

        .county-code-label input[type="checkbox"] {
            display: none;
        }

        .county-code-label:hover {
            border-color: #467efe;
            background: #eef3ff;
            color: #467efe;
        }

        .county-code-label:has(input:checked),
        .county-code-label.active {
            background: linear-gradient(95deg, #467efe 5%, #61cafd 100%);
            border-color: transparent;
            color: #fff;
        }
    

        .resources-dropdown {
            padding: 0px;
            border-radius: 20px;
            min-width: fit-content;
            background: var(--white);
            border: none;
            box-shadow: 0px 64px 250px 0px #00000040;
            right: 0;
            animation: scale-up-ver-top 0.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
        }

        @keyframes scale-up-ver-top {
            0% {
                -webkit-transform: scaleY(.5);
                transform: scaleY(0.5);
                -webkit-transform-origin: top;
                transform-origin: top;
            }

            100% {
                -webkit-transform: scaleY(1);
                transform: scaleY(1);
                -webkit-transform-origin: top;
                transform-origin: top;
            }
        }

        .resources-dropdown .dropdown-item:hover {
            background-color: #e2f1ff !important;
            border-radius: 20px !important;
        }

        .resources-part {
            border-right: 1px solid #E7E7E7;
        }

        .resources-dropdown h5 {
            font-size: 22px;
            font-weight: 600;
            line-height: 33px;
            color: #222328;
            margin-bottom: 5px;
        }

        .resources-dropdown p {
            font-size: 18px;
            font-weight: 400;
            line-height: 27px;
            color: #8C94B0;
            margin-bottom: 20px;
            max-width: 330px;
            white-space: initial;
        }

        .resources-dropdown ul {
            padding: 0;
        }

        .resources-dropdown li a {
            padding: 0 !important;
        }

        .resources-dropdown li {
            list-style: none;
        }

        .hero-section .hero-text {
            margin-bottom: 0;
        }

        .contactus-nav .resources-dropdown a {
            padding: 20px !important;
        }

        .contactus-nav .resources-dropdown {
            padding: 10px 0 !important;
        }

        @media (max-width: 991.99px) {
            .nav-item.dropdown.show .nav-link::before {
                display: none;
            }

            .resources-dropdown {
                box-shadow: none;
            }

            .contactus-nav .resources-dropdown a {
                padding: 10px 0px !important;
            }

            .resources-part {
                border-right: 0px;
            }

            .resources-link {
                margin: 0;
            }

            .resources-dropdown p {
                margin-bottom: 10px;
                font-size: 16px;
            }

            .resources-dropdown h5 {
                font-size: 18px;
            }
        }

        @media (min-width: 1500px) {
            .top-nav {
                margin-right: -70px;
            }
        }

        .switcher-row {
            width: fit-content;
            margin-left: auto;
            margin-right: auto;
        }

        /* ===== State Picker Section ===== */
        .state-picker-section {
            padding: 0px 0 80px;
            background: #fff;
        }

        .state-picker-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 16px;
        }

        .state-picker-title {
            font-size: 22px;
            font-weight: 700;
            color: var(--black);
            margin: 0;
        }

        .state-picker-search {
            display: flex;
            align-items: center;
            gap: 10px;
            background: #f7f7f7;
            border-radius: 30px;
            padding: 10px 18px;
            min-width: 260px;
        }

        .state-picker-search input {
            border: none;
            background: transparent;
            outline: none;
            font-size: 15px;
            color: #7e7f87;
            width: 100%;
        }

        .state-picker-divider {
            border: none;
            border-top: 1px solid #e7e7e7;
            margin: 0 0 24px;
        }

        .state-picker-tabs {
            display: flex;
            gap: 0;
            width: 68%;
            margin: auto;
            justify-content: center;
            margin-bottom: 30px;
            border-bottom: 2px solid #e7e7e7;
        }

        .state-picker-tab {
            background: none;
            border: none;
            padding: 12px 24px;
            font-size: 16px;
            font-weight: 500;
            color: #7e7f87;
            cursor: pointer;
            border-bottom: 3px solid transparent;
            margin-bottom: -2px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: color 0.2s, border-color 0.2s;
        }

        .state-picker-tab.active {
            color: #4260cb;
            border-bottom: 2px solid #4260cb;
            font-weight: 600;
            border-top-left-radius: 12px;
            border-top-right-radius: 12px;
            background-color: #f6f7fc;
        }

        .state-picker-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 4px 0;
        }

        .state-picker-grid a {
            font-size: 15px;
            font-weight: 400;
            color: #222328;
            text-decoration: none;
            padding: 10px 4px;
            transition: color 0.2s;
        }

        .state-picker-grid a:hover {
            color: var(--blue, #4260cb);
            font-weight: 500;
        }

        .state-picker-grid a.hidden {
            display: none;
        }

        .state-picker-map-wrap {
            width: 100%;
            overflow: hidden;
        }

        /* ── Tablet (≤991px) ────────────────────────────────────── */
        @media (max-width: 991px) {
            .state-picker-section {
                padding: 40px 0 60px;
            }

            .state-picker-grid {
                grid-template-columns: repeat(4, 1fr);
            }

            .state-picker-tabs {
                width: 100%;
            }

            .state-picker-tab {
                padding: 10px 18px;
                font-size: 15px;
                flex: 1;
            }

            .chart-map-section {
                width: 100%;
            }
        }

        /* ── Small tablet / large mobile (≤767px) ───────────────── */
        @media (max-width: 767px) {
            .state-picker-section {
                padding: 30px 0 48px;
            }

            .state-picker-title {
                font-size: 19px;
            }

            /* Wrap tabs into 2×2 grid */
            .state-picker-tabs {
                width: 100%;
                flex-wrap: wrap;
                margin-bottom: 20px;
                border-bottom: none;
                gap: 8px;
            }

            .state-picker-tab {
                flex: 1 1 calc(50% - 8px);
                min-width: 0;
                padding: 10px 12px;
                font-size: 14px;
                gap: 6px;
                justify-content: center;
                border: 1px solid #e7e7e7;
                border-radius: 10px;
                border-bottom: 1px solid #e7e7e7;
                margin-bottom: 0;
            }

            .state-picker-tab.active {
                border-color: #4260cb;
                border-radius: 10px;
            }

            /* State list sidebar: add scroll cap when stacked */
            .us-all-numberss,
            .canada-all-numbers {
                max-height: 380px;
                overflow-y: auto;
            }

            .search-box {
                margin-top: 16px;
            }
        }

        /* ── Mobile (≤575px) ────────────────────────────────────── */
        @media (max-width: 576px) {
            .state-picker-section {
                padding: 24px 0 40px;
            }
            
            .all-number-margine {
                margin-bottom: 6rem !important;
            }

            .state-picker-title {
                font-size: 17px;
            }

            .state-picker-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .state-picker-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 14px;
            }

            .result-waiting-btns {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
            }

            .state-picker-grid {
                text-align: center;
            }

            .state-picker-search {
                width: 100%;
                min-width: unset;
            }

            .state-picker-divider {
                margin-bottom: 16px;
            }

            .state-picker-tab {
                padding: 9px 10px;
                font-size: 13px;
            }

            /* Map SVG labels: slightly smaller on mobile */
            .map .map-section-search {
                font-size: 10px !important;
            }
        }

        /* ── Very small mobile (≤400px) ─────────────────────────── */
        @media (max-width: 400px) {
            .state-picker-tab {
                padding: 8px 8px;
                font-size: 12px;
            }

        }

        .choose-state .main-search {
            width: 100%;
        }

        .choose-state {
            display: flex;
            align-items: center;
            gap: 12px;
            justify-content: center
        }

        .sub-title {
            font-size: 18px;
            font-weight: 500;
            line-height: 27px;
            text-align: center;
            color: #7E7F87;
        }

        .search-help-modal .sub-title {
            font-size: 16px;
            line-height: unset;
        }

        .search-help-modal h2 {
            font-size: 18px;
            color: #222328;
            font-weight: 600;
            line-height: unset;
            text-align: center;
            margin-bottom: 8px;
        }

        .search-help-modal h2 span {
            color: #4260CB;
        }

        .search-help-modal .form-control {
            border: 1px solid rgba(231, 231, 231, 1);
            width: 8.0625rem;
            background-color: rgba(247, 247, 247, 1);
            border-radius: 1.875rem;
            height: 3.75rem;
            padding: 0.9375rem 1.2rem 1rem;
        }

        .search-help-modal .help-text,
        .filter-sub-title {
            font-size: 16px;
            font-weight: 600;
            line-height: unset;
            color: var(--black);
        }

        .search-help-modal .help-text {
            font-weight: 500;
            margin-bottom: 0;
        }

        .choose-input-main {
            display: flex;
            gap: 10px;
            align-items: center;
            width: fit-content;
            margin: 0 auto 8px;
        }

        .choose-input-sub {
            display: flex;
            gap: 20px;
            margin-bottom: 0;
        }

        .search-help-modal .main-descr {
            margin-bottom: 18px;
        }

        .search-help-modal .filter-sub-title {
            min-width: 171px;
            padding-right: 5px;
        }

        .search-help-modal .row .filter-sub-title {
            min-width: unset;
        }

        .search-help-modal .patterns .filter-sub-title {
            min-width: 250px;
        }

        .quick-filter h3 {
            width: 200px;
        }

        .quick-filter p {
            width: 360px;
        }

        .quick-filter {
            display: flex;
            justify-content: center;
        }

        .search-help-modal .badge {
            color: #222328;
            font-size: 16px;
            font-weight: 500;
            line-height: unset !important;
            text-align: center;
            padding: 6px 22px 3px;
            border: 1px solid #F7F7F7;
            background: #F7F7F7;
            width: 100px;
            border-radius: 30px;
            min-width: 100px;
            position: relative;
        }

        .search-help-modal .badge.arrow::after {
            border: 6px solid transparent;
            content: ' ';
            display: block;
            position: absolute;
            z-index: 2;
            border-top-color: #7E7F87;
            top: 58%;
            right: 13px;
            transform: translateY(-50%);
        }

        .search-help-modal .badge.badge-lg {
            min-width: 160px;
        }

        .search-help-modal .badge.badge-outline {
            color: #4260CB;
            background: #fff;
            border-color: #E7E7E7;
        }

        .search-help-btn {
            border-radius: 100%;
            background: #4260cb !important;
            width: 42px;
            min-width: 42px;
            height: 42px;
            /* padding: 1px 1px 0 0; */
            display: flex;
            font-size: 24px;
            justify-content: center;
            align-items: center;
            color: #fff !important;
            border: 1px solid #4260cb !important;
        }

        .search-help-modal .modal-content::-webkit-scrollbar {
            width: .3125rem;
        }

        .search-help-modal .modal-content::-webkit-scrollbar-thumb {
            background: linear-gradient(260deg, #467efe 5.26%, #61cafd 100%);
            border-radius: 3.125rem;
        }

        .search-help-modal .modal-content::-webkit-scrollbar-track {
            background: #dddddd;
            border-radius: 3.125rem;
        }

        @media (max-width: 767.98px) {
            .sub-title {
                font-size: 16px;
            }

            .search-help-modal .help-text,
            .filter-sub-title {
                font-size: 16px;
            }

            .search-help-modal .patterns .filter-sub-title {
                min-width: 180px;
            }
        }

        @media (max-width: 575.98px) {

            .search-help-modal .sub-title,
            .sub-title {
                font-size: 15px;
                line-height: normal;
            }

            .search-help-modal .help-text,
            .filter-sub-title {
                font-size: 16px;
                line-height: normal;
            }

            .choose-input-main {
                flex-wrap: wrap;
                gap: 4px;
            }

            .quick-filter:not(.patterns) {
                flex-direction: column;
            }

            .quick-filter.patterns h3 {
                min-width: fit-content !important;
                width: unset;
            }

            .search-help-modal .filter-sub-title {
                width: 100%;
            }

            .search-help-modal .help-text,
            .filter-sub-title {
                width: 100%;
                font-size: 14px;
            }

            .search-help-modal .sub-title {
                margin-bottom: 14px;
            }

            .search-help-modal h2 {
                font-size: 16px;
            }

            .quick-filter h3 {
                margin-bottom: 0;
            }

            .quick-filter {
                margin-bottom: 4px;
            }
        }

        .cross-icon-phrase {
            position: absolute;
            cursor: pointer;
            top: 14px !important;
            right: 15px !important;
        }

        /* Number Decoder Hero */
        .nd-hero-title {
            font-size: 42px;
            font-weight: 700;
            line-height: 1.25;
            color: #fff;
            margin-bottom: 28px;
            text-align: center;
        }

        .nd-toggle-tabs {
            display: inline-flex;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            padding: 5px;
            margin-bottom: 24px;
            gap: 4px;
        }

        .nd-tab-btn {
            border: none;
            border-radius: 50px;
            padding: 9px 36px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            background: transparent;
            color: #fff;
            transition: all 0.2s;
            font-family: 'Poppins', sans-serif;
        }

        .nd-tab-btn.active {
            background: #fff;
            color: #4260CB;
        }

        .nd-search-bar {
            display: inline-flex;
            align-items: center;
            background: #fff;
            border-radius: 50px;
            padding: 8px 8px 8px 20px;
            gap: 6px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        }

        .nd-input {
            border: none;
            outline: none;
            font-size: 18px;
            font-weight: 500;
            width: 70px;
            background: transparent;
            text-align: center;
            color: #222328;
            font-family: 'Poppins', sans-serif;
        }

        .nd-input::placeholder {
            color: #BDBDBD;
        }

        .nd-dash {
            color: #8C94B0;
            font-size: 20px;
            line-height: 1;
        }

        .nd-spell-input {
            width: 260px;
            text-align: left;
            padding-left: 6px;
        }

        .nd-search-btn {
            background: linear-gradient(90deg, #467efe 0%, #61cafd 100%);
            color: #fff !important;
            border-radius: 50px;
            padding: 12px 28px;
            font-size: 16px;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
            border: none;
            white-space: nowrap;
        }

        /* Steps Section */
        .nd-steps-section {
            padding: 70px 0 60px;
            background: #fff;
        }

        .nd-steps-title {
            font-size: 32px;
            font-weight: 700;
            text-align: center;
            color: #222328;
            margin-bottom: 12px;
            line-height: 1.35;
        }

        .nd-steps-subtitle {
            text-align: center;
            color: #7E7F87;
            font-size: 16px;
            margin-bottom: 50px;
        }

        .nd-steps-row {
            display: flex;
            align-items: flex-start;
            justify-content: center;
        }

        .nd-step-wrap {
            display: flex;
            align-items: flex-start;
        }

        .nd-step {
            flex: 1;
            text-align: center;
            max-width: 200px;
        }

        .nd-step-icon-wrap {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            border: 2px solid #E7E7E7;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            background: #fff;
        }

        .nd-step-icon-wrap img {
            width: 52px;
            height: 52px;
            object-fit: contain;
        }

        .nd-step-arrow {
            padding: 0 16px;
            color: #C4C4C4;
            font-size: 22px;
        }

        .nd-step h5 {
            font-size: 16px;
            font-weight: 600;
            color: #222328;
            margin-bottom: 8px;
        }

        .nd-step p {
            font-size: 14px;
            color: #7E7F87;
            line-height: 1.65;
            margin-bottom: 0;
        }

        .nd-spell-result-section {
            display: none;
            padding: 60px 0 40px;
            text-align: center;
        }

        .nd-spell-dial-section {
            display: none;
            justify-content: center;
            align-items: center;
            height: 900px;
            background-image: url('../images/image/Subtract.png');
            background-position: center center;
            background-repeat: no-repeat;
        }

        .nd-note-wrapper {
            position: absolute;
            display: flex;
            align-items: center;
            min-height: 500px;
        }

        .nd-oval-bg {
            position: absolute;
            top: 50%;
            left: 45%;
            transform: translate(-50%, -50%);
            width: 750px;
            /* was 600px */
            height: auto;
            z-index: 0;
            pointer-events: none;
        }

        .nd-note-inner {
            position: relative;
            z-index: 1;
            text-align: left;
            width: 50%;
            left: 15%;
            margin-top: -70px;
        }

        /* Features Section */
        .nd-features-section {
            padding: 220px 0 60px;
            background: url('../images/image/Subtract.png') center center / cover no-repeat;
        }

        .nd-features-title {
            font-size: 32px;
            font-weight: 700;
            text-align: center;
            color: #222328;
            margin-bottom: 14px;
            line-height: 1.35;
        }

        .nd-features-subtitle {
            text-align: center;
            color: #7E7F87;
            font-size: 16px;
            margin-bottom: 0;
            line-height: 1.7;
        }

        .nd-features-link {
            color: #4260CB;
            text-decoration: none;
            font-weight: 600;
        }

        .nd-features-link:hover {
            text-decoration: underline;
            color: #4260CB;
        }

        .nd-feature-card {
            background: #fff;
            border: 1px solid #E7E7E7;
            border-radius: 16px;
            padding: 30px 28px;
            height: 100%;
            display: flex;
            gap: 12px;
        }

        .nd-feature-bullet {
            display: block;
            width: 8px;
            min-width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #4260CB;
            margin-top: 7px;
        }

        .nd-feature-card p {
            font-size: 15px;
            color: #7E7F87;
            line-height: 1.75;
            margin-bottom: 0;
        }

        /* Phrases Section */
        .nd-phrases-section {
            padding: 0 0 60px;
            background: #fff;
        }

        .nd-phrases-title {
            font-size: 28px;
            font-weight: 700;
            text-align: center;
            color: #222328;
            margin-bottom: 10px;
        }

        .nd-phrases-title .nd-gradient-text {
            background: linear-gradient(90deg, #467EFE 0%, #61CAFD 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nd-phrases-subtitle {
            text-align: center;
            color: #7E7F87;
            font-size: 15px;
            margin-bottom: 20px;
        }

        .nd-phrases-subtitle span {
            background: linear-gradient(90deg, #467EFE 0%, #61CAFD 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 600;
        }

        .nd-try-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(90deg, #467EFE 0%, #61CAFD 100%);
            color: #fff !important;
            border-radius: 50px;
            padding: 10px 28px;
            font-size: 15px;
            font-weight: 500;
            border: none;
            text-decoration: none;
        }

        .nd-try-btn:hover {
            opacity: 0.9;
            color: #fff;
        }

        .nd-phrases-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            max-width: 1422px;
            margin: 0 auto;
            margin-bottom: 40px;
        }

        .nd-phrase-pill {
            background: white;
            font-size: 20px;
            font-weight: 600;
            background-clip: text;
            -webkit-background-clip: text;
            cursor: pointer;
            display: flex;
            transition: all 0.2s;
            white-space: nowrap;
            min-width: 212px;
            height: 60px;
            border-radius: 6px;
            text-align: center;
            justify-content: center;
            align-items: center;
            box-shadow: grey 0px 2px 4px, #fff 0px 1px 2px;
            background-image: linear-gradient(90deg, #467EFE 0%, #61CAFD 100%);
            -webkit-text-fill-color: transparent;
        }

        .nd-phrase-pill.active {
            background-image: linear-gradient(90deg, #467EFE 0%, #61CAFD 100%);
            -webkit-background-clip: border-box;
            background-clip: border-box;
            -webkit-text-fill-color: #fff;
            box-shadow: none;
        }

        .nd-phrase-pill:hover {
            border: 1px solid #467efe;
            transition: all 0.2s;
        }

        .nd-phrases-group-title {
            text-align: center;
            color: black;
            font-size: 22px;
            margin-bottom: 20px;
            margin-top: 10px;
            font-weight: 600;
        }

        .nd-phrases-group-title span {
            background: linear-gradient(90deg, #467EFE 0%, #61CAFD 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 600;
        }

        .phrase-container {
            margin-bottom: 80px;
        }

        /* Spell result display */
        .nd-convert-display {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0;
            margin-bottom: 28px;
        }

        .nd-convert-pill {
            font-size: 28px;
            font-weight: 700;
            color: #fff;
            padding: 14px 48px;
            border-radius: 50px;
            background: linear-gradient(90deg, #467EFE 0%, #61CAFD 100%);
            outline: 2px dashed rgba(70, 126, 254, 0.4);
            outline-offset: 6px;
            min-width: 180px;
            text-align: center;
        }

        .nd-convert-arrow {
            margin: 0 -10px;
            z-index: 1;
            display: flex;
            align-items: center;
        }

        .nd-dial-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: 1.5px solid #E7E7E7;
            border-radius: 50px;
            padding: 12px 32px;
            font-size: 15px;
            font-weight: 500;
            color: #222328;
            text-decoration: none;
            background: #fff;
            transition: all 0.2s;
        }

        .nd-dial-btn:hover {
            border-color: #467EFE;
            color: #467EFE;
        }

        /* Dial pad card */
        .nd-dialpad-card {
            border: 1.5px solid #E7E7E7;
            border-radius: 20px;
            padding: 36px 32px 28px;
        }

        .nd-dialpad-card .decorderdial-btns {
            justify-content: center;
            max-width: 100%;
        }

        .nd-note-title {
            font-size: 16px;
            font-weight: 700;
            color: #222328;
            margin-bottom: 12px;
        }

        .nd-note-text {
            font-size: 14px;
            color: #7E7F87;
            line-height: 1.75;
        }

        .nd-note-col {
            position: relative;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nd-note-title,
        .nd-note-text {
            position: relative;
            z-index: 1;
        }

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

            .nd-features-title {
                font-size: 26px;
            }

            .nd-convert-pill {
                font-size: 22px;
                padding: 12px 32px;
            }
        }

        @media (max-width: 767px) {
            .nd-steps-row {
                flex-direction: column;
                align-items: center;
                gap: 30px;
            }

            .nd-step-arrow {
                display: none;
            }

            .nd-step {
                max-width: 280px;
            }

            .nd-hero-title {
                font-size: 26px;
            }

            .nd-search-bar {
                flex-wrap: wrap;
                justify-content: center;
                border-radius: 20px;
                padding: 16px;
            }

            .nd-steps-title {
                font-size: 24px;
            }

            .nd-features-title {
                font-size: 22px;
            }

            .nd-phrases-title {
                font-size: 22px;
            }
        }

        .map-icon {
            padding: 12px 16px;
            border: 1px solid #E7E7E7;
            border-radius: 50px;
            background: #fff;
        }

        /* ===== FAQ section (number-cards-section override) ===== */
        .sbs-faq-section .title {
            text-align: center;
            max-width: 671px;
        }

        .sbs-faq-item {
            margin-bottom: 12px;
            border: 1px solid #dddddd !important;
            border-radius: 8px !important;
            overflow: hidden;
        }

        .sbs-faq-btn {
            font-size: 16px;
            font-weight: 600;
            line-height: 24px;
            color: var(--black);
            padding: 14px 22px;
            background: #fff;
            box-shadow: none !important;
            border: none;
            width: 100%;
            text-align: left;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: background 0.2s, color 0.2s;
        }

        .sbs-faq-btn::after {
            content: '+';
            font-size: 22px;
            font-weight: 400;
            line-height: 1;
            flex-shrink: 0;
            margin-left: 12px;
            background-image: none !important;
            width: auto;
            height: auto;
            color: inherit;
            transition: none;
        }

        .sbs-faq-btn:not(.collapsed) {
            background: linear-gradient(95.35deg, #467efe 5.26%, #61cafd 100%);
            color: #fff;
            border-radius: 8px 8px 0 0 !important;
        }

        .sbs-faq-btn:not(.collapsed)::after {
            content: '−';
            transform: none;
            color: #fff;
        }

        .sbs-faq-btn:hover {
            background: linear-gradient(95.35deg, #467efe 5.26%, #61cafd 100%);
            color: #fff;
        }

        .sbs-faq-btn:hover::after {
            color: #fff;
        }

        .sbs-faq-body {
            font-size: 15px;
            font-weight: 400;
            line-height: 24px;
            color: #7e7f87;
            padding: 12px 22px 16px;
            background: #fff;
        }


        .sh-modal-body {
            padding: 8px 24px 24px !important;
        }

        .sh-modal-desc {
            text-align: center;
            color: #555;
            font-size: 13.5px;
            line-height: 1.6;
            margin: 0 0 18px;
        }

        .sh-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin-bottom: 14px;
        }

        @media (max-width: 680px) {
            .sh-cards {
                grid-template-columns: 1fr;
            }
        }

        .sh-card {
            background: #EFF9FF;
            border-radius: 12px;
            padding: 14px 12px 16px;
        }

        .sh-card__title {
            font-size: 12.5px;
            font-weight: 700;
            color: #1a2472;
            text-align: center;
            margin-bottom: 14px;
            line-height: 1.4;
            min-height: 34px;
        }

        .sh-card__label {
            font-size: 11px;
            color: #888;
            margin-bottom: 6px;
        }

        .sh-card__fields {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 10px;
        }

        .sh-select {
            border: 1.5px solid #467EFE;
            border-radius: 8px;
            padding: 5px 8px;
            font-size: 12px;
            font-weight: 600;
            color: #467EFE;
            background: #fff;
            cursor: pointer;
            outline: none;
            appearance: auto;
            flex-shrink: 0;
        }

        .sh-select:focus {
            border-color: #2a5fe0;
        }

        .sh-input {
            border: 1.5px solid #467EFE;
            border-radius: 8px;
            padding: 5px 10px;
            font-size: 12px;
            font-weight: 600;
            color: #467EFE;
            background: #fff;
            outline: none;
            width: 100%;
            min-width: 0;
        }

        .sh-input::placeholder {
            color: #90aaff;
            font-weight: 500;
        }

        .sh-input:focus {
            border-color: #2a5fe0;
        }

        .sh-result {
            border: 1.5px solid #c8cfe0;
            border-radius: 8px;
            padding: 5px 10px;
            font-size: 12px;
            font-weight: 500;
            color: #666;
            background: #fff;
            flex-shrink: 0;
            white-space: nowrap;
        }

        .sh-bottom {
            background: #EFF9FF;
            border-radius: 12px;
            padding: 18px 20px;
            display: grid;
            grid-template-columns: 1fr 1fr auto;
            gap: 16px;
            align-items: start;
        }

        @media (max-width: 680px) {
            .sh-bottom {
                grid-template-columns: 1fr;
            }

            .sh-astro {
                display: none;
            }
        }

        .sh-bottom__title {
            font-size: 14px;
            font-weight: 700;
            color: #1a2472;
            margin: 0 0 10px;
        }

        .sh-row {
            display: flex;
            gap: 8px;
            margin-bottom: 6px;
            align-items: baseline;
        }

        .sh-row__key {
            font-size: 12.5px;
            font-weight: 700;
            color: #1a2472;
            min-width: 110px;
            flex-shrink: 0;
        }

        .sh-row__val {
            font-size: 12px;
            color: #555;
        }

        .sh-astro {
            width: 110px;
            object-fit: contain;
            align-self: flex-end;
            flex-shrink: 0;
        }
    