
        .ptp-stepper {
            font-family: 'Inter', sans-serif;
            padding: 72px 140px;
            background-image: url(../images/bgstepper.png);
            background-repeat: no-repeat;
            background-position:top;
            background-size: cover;

        }

        /* ---------- Breadcrumb ---------- */
        .ptp-stepper .ptp-breadcrumb {
            display: flex;
            align-items: center;
            gap: 3px;
            flex-wrap: wrap;
            margin-bottom: 24px;
        }

        .ptp-stepper .ptp-breadcrumb-link {
            font-size: 14px;
            font-weight: 500;
            line-height: 1.6;
            color: #75757D;
            /*text-decoration: underline;*/
        }

        /*.ptp-stepper .ptp-breadcrumb-link:hover {
            color: #3A58EF;
        }*/

        .ptp-stepper .ptp-breadcrumb-separator {
            width: 16px;
            height: 16px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .ptp-stepper .ptp-breadcrumb-separator svg {
            width: 16px;
            height: 16px;
        }

        .ptp-stepper .ptp-breadcrumb-current {
            font-size: 14px;
            font-weight: 500;
            line-height: 20px;
            color: #1D2939;
        }

        /* ---------- Page Title ---------- */
        .ptp-stepper .ptp-page-title {
            font-size: 42px;
            font-weight: 700;
            line-height: 60px;
            letter-spacing: -0.84px;
            color: #101828;
            margin-bottom: 0;
        }

        /* ---------- Step Progress Bar ---------- */
        .ptp-stepper .ptp-steps-bar {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
            margin-top: 48px;
            margin-bottom: 36px;
        }

        .ptp-stepper .ptp-step-item {
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
        }

        .ptp-stepper .ptp-step-circle {
            width: 40px;
            height: 40px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 600;
            line-height: 24px;
            flex-shrink: 0;
        }

        .ptp-stepper .ptp-step-circle.is-active {
            background-color: #ffffff;
            border: 1px solid #3A58EF;
            color: #3A58EF;
        }

        .ptp-stepper .ptp-step-circle.is-completed {
            background-color: #3A58EF;
            border: 1px solid #3A58EF;
            color: #ffffff;
        }

        .ptp-stepper .ptp-step-circle.is-upcoming {
            background-color: #ffffff;
            border: 1px solid #EAECF0;
            color: #475467;
        }

        .ptp-stepper .ptp-step-label {
            font-size: 14px;
            font-weight: 600;
            line-height: 20px;
        }

        .ptp-stepper .ptp-step-label.is-active,
        .ptp-stepper .ptp-step-label.is-completed {
            color: #3A58EF;
        }

        .ptp-stepper .ptp-step-label.is-upcoming {
            color: #475467;
        }

        .ptp-stepper .ptp-step-divider {
            flex: 1;
            min-width: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }

        .ptp-stepper .ptp-step-divider-chevron {
            color: #3A58EF;
            font-size: 10px;
        }

        /* ---------- Content Card Wrapper ---------- */
        .ptp-stepper .ptp-content-wrapper {
            position: relative;
            padding-bottom: 40px;
        }

        .ptp-stepper .ptp-content-icon-top {
            position: relative;
            z-index: 2;
            width: 80px;
            height: 80px;
            margin: 0 auto -40px;
        }

        .ptp-stepper .ptp-content-icon-circle {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: #ffffff;
            border: 1px solid #EAECF0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .ptp-stepper .ptp-content-icon-circle svg {
            width: 36px;
            height: 36px;
        }

        .ptp-stepper .ptp-content-card {
            position: relative;
            z-index: 1;
            background: #ffffff;
            border: 1px solid #EAECF0;
            border-radius: 12px;
            padding: 60px 24px 36px;
        }

        /* ---------- Section Title & Subtitle ---------- */
        .ptp-stepper .ptp-section-title {
            font-size: 26px;
            font-weight: 700;
            line-height: 1.3;
            color: #26244A;
            text-align: center;
            margin-bottom: 8px;
        }

        .ptp-stepper .ptp-section-subtitle {
            font-size: 18px;
            font-weight: 400;
            line-height: 28px;
            color: #475467;
            text-align: center;
            margin-bottom: 24px;
        }

        /* ---------- Feature Cards (icon type) ---------- */
        .ptp-stepper .ptp-feature-cards {
            display: flex;
            gap: 32px;
            justify-content: center;
        }

        .ptp-stepper .ptp-feature-card-col {
            width: 368px;
            padding-top: 12px;
        }

        .ptp-stepper .ptp-feature-card {
            background: #ffffff;
            border: 1px solid #EAECF0;
            border-radius: 12px;
            padding: 24px;
            height: 214px;
            display: flex;
            flex-direction: column;
            gap: 24px;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
            cursor: default;
        }

        .ptp-stepper .ptp-feature-card:hover {
            border-color: #5D667B;
            box-shadow: 4px 4px 0px 0px #000000;
        }

        .ptp-stepper .ptp-feature-card .ptp-icon-box {
            width: 48px;
            height: 48px;
            border-radius: 8px;
            background-color: #EBEEFD;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: background-color 0.2s ease;
        }

        .ptp-stepper .ptp-feature-card:hover .ptp-icon-box {
            background-color: #04092A;
        }

        .ptp-stepper .ptp-feature-card .ptp-icon-box svg {
            width: 24px;
            height: 24px;
            transition: fill 0.2s ease;
        }

        .ptp-stepper .ptp-feature-card .ptp-icon-box svg path {
            transition: stroke 0.2s ease;
        }

        .ptp-stepper .ptp-feature-card:hover .ptp-icon-box svg path,.ptp-stepper .ptp-feature-card:hover .ptp-icon-box svg circle {
            stroke: #ffffff;
        }

        .ptp-stepper .ptp-feature-card .ptp-card-title {
            font-size: 20px;
            font-weight: 600;
            line-height: 30px;
            color: #2A3343;
            margin-bottom: 8px;
        }

        .ptp-stepper .ptp-feature-card .ptp-card-desc {
            font-size: 16px;
            font-weight: 400;
            line-height: 24px;
            color: #475467;
            margin-bottom: 0;
        }

        /* ---------- Badge-type Cards (Assessments) ---------- */
        .ptp-stepper .ptp-badge-card {
            background: #ffffff;
            border: 1px solid #EAECF0;
            border-radius: 12px;
            padding: 24px;
            display: flex;
            flex-direction: column;
            gap: 24px;
            height: 100%;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
            cursor: pointer;
        }

        .ptp-stepper .ptp-badge-card:hover {
            border-color: #5D667B;
            box-shadow: 4px 4px 0px 0px #000000;
        }

        .ptp-stepper .ptp-badge-pill {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 4px 16px;
            border-radius: 500px;
            background-color: #EBEEFD;
            font-size: 14px;
            font-weight: 500;
            line-height: 20px;
            color: #2A3343;
            align-self: flex-start;
            transition: background-color 0.2s ease, color 0.2s ease;
        }

        .ptp-stepper .ptp-badge-card:hover .ptp-badge-pill {
            background-color: #04092A;
            color: #ffffff;
        }

        .ptp-stepper .ptp-badge-card .ptp-hours-value {
            font-size: 36px;
            font-weight: 700;
            line-height: 44px;
            letter-spacing: -0.72px;
            color: #3A58EF;
            margin-bottom: 8px;
        }

        .ptp-stepper .ptp-badge-card .ptp-hours-desc {
            font-size: 16px;
            font-weight: 400;
            line-height: 24px;
            color: #475467;
            margin-bottom: 0;
        }

        /* ---------- Note Text ---------- */
        .ptp-stepper .ptp-note-text {
            font-size: 16px;
            font-weight: 400;
            line-height: 24px;
            color: #475467;
            text-align: center;
            margin-top: 24px;
        }

        .ptp-stepper .ptp-note-text .ptp-note-asterisk {
            color: #F04438;
        }

        .ptp-stepper .ptp-note-text .ptp-note-bold {
            font-weight: 700;
            color: #2A3343;
        }

        .ptp-stepper .ptp-note-text strong {
            font-weight: 700;
        }

        /* ---------- Bottom Note (inside card) ---------- */
        .ptp-stepper .ptp-bottom-note {
            font-size: 16px;
            font-weight: 400;
            line-height: 24px;
            color: #475467;
            text-align: center;
            margin-top: auto;
            padding-top: 24px;
        }

        .ptp-stepper .ptp-bottom-note strong {
            font-weight: 700;
        }

        /* ---------- Navigation Buttons ---------- */
        .ptp-stepper .ptp-nav-buttons {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 36px;
        }

        .ptp-stepper .ptp-btn-prev {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 20px;
            border: 1px solid #3A58EF;
            border-radius: 4px;
            background: transparent;
            color: #3A58EF;
            font-size: 16px;
            font-weight: 600;
            line-height: 24px;
            text-decoration: none;
            cursor: pointer;
            transition: background-color 0.2s ease, color 0.2s ease;
        }

        .ptp-stepper .ptp-btn-prev:hover {
            background-color: #3A58EF;
            color: #ffffff;
        }

        .ptp-stepper .ptp-btn-prev:hover svg path {
            fill: #ffffff;
        }
        .ptp-stepper .ptp-btn-prev:hover svg path {
            stroke: #fff;
        }
        .ptp-stepper .ptp-btn-prev.is-disabled {
            opacity: 0.5;
            pointer-events: none;
        }

        .ptp-stepper .ptp-btn-next {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 20px;
            border: none;
            border-radius: 4px;
            background: #3A58EF;
            color: #ffffff;
            font-size: 16px;
            font-weight: 600;
            line-height: 24px;
            text-decoration: none;
            cursor: pointer;
            box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
            transition: background-color 0.2s ease;
        }

        .ptp-stepper .ptp-btn-next:hover {
            background-color: #314BD0;
            color: #ffffff;
        }

        /* ---------- Check Icon in Step Circle ---------- */
        .ptp-stepper .ptp-check-icon {
            width: 18px;
            height: 18px;
        }
        .ptp-stepper .ptp-step-divider .ptp-step-divider-chevron:nth-child(5) svg path {
            stroke: #182878;
        }
        .ptp-stepper .ptp-step-divider .ptp-step-divider-chevron:nth-child(4) svg path {
            stroke: #314BD0;
        }
        .ptp-stepper .ptp-step-divider .ptp-step-divider-chevron:nth-child(3) svg path {
            stroke: #4E69F1;
        }
        .ptp-stepper .ptp-step-divider .ptp-step-divider-chevron:nth-child(2) svg path {
            stroke: #9CABF7;
        }
        .ptp-stepper .ptp-step-divider .ptp-step-divider-chevron:first-child svg path {
            stroke: #EBEEFD;
        }
        .btn-close-head {
            position: absolute;
            top: 36px;
            right: 36px;
            border-radius: 4px;
            border: 1px solid var(--Text-Grey-500, #5D667B);
            opacity: 0.6;
            display: flex;
            padding: 8px 14px;
            justify-content: center;
            align-items: center;
            gap: 8px;
            align-self: stretch;
            color: var(--Text-Grey-500, #5D667B);
            font-family: Inter;
            font-size: 14px;
            font-style: normal;
            font-weight: 600;
            line-height: 20px;
            background: #F7FDFF;
        }
        .close_active{
            opacity: 1;
        }
        .btn-close-head.close_active svg rect{
            fill: #F04438;
        }
        #info_screen .modal-body {
            padding: 0;
        }
        /* ========== RESPONSIVE ========== */
        @media (max-width: 1199.98px) {
            .ptp-stepper {
                padding: 48px 60px;
            }

            .ptp-stepper .ptp-feature-card-col {
                width: calc(50% - 16px);
            }
        }

        @media (max-width: 991.98px) {
            .ptp-stepper {
                padding: 40px 30px;
            }

            .ptp-stepper .ptp-page-title {
                font-size: 32px;
                line-height: 44px;
            }

            .ptp-stepper .ptp-steps-bar {
                gap: 6px;
            }

            .ptp-stepper .ptp-step-divider {
                min-width: 20px;
                gap: 6px;
            }

            .ptp-stepper .ptp-feature-cards {
                gap: 20px;
            }

            .ptp-stepper .ptp-feature-card-col {
                width: calc(50% - 10px);
            }

            .ptp-stepper .ptp-section-subtitle {
                max-width: 100%;
            }

            .ptp-stepper .ptp-content-card.has-fixed-height {
                height: auto;
            }
        }

        @media (max-width: 767.98px) {
            .ptp-stepper {
                padding: 32px 16px;
            }

            .ptp-stepper .ptp-page-title {
                font-size: 26px;
                line-height: 36px;
                letter-spacing: -0.5px;
            }

            .ptp-stepper .ptp-breadcrumb {
                display: none;
            }

            .ptp-stepper .ptp-steps-bar {
                flex-wrap: nowrap;
                overflow-x: auto;
                padding-bottom: 8px;
                -ms-overflow-style: none;
                scrollbar-width: none;
            }

            .ptp-stepper .ptp-steps-bar::-webkit-scrollbar {
                display: none;
            }

            .ptp-stepper .ptp-step-divider {
                min-width: 16px;
                gap: 4px;
            }

            .ptp-stepper .ptp-step-divider-chevron:nth-child(n+4) {
                display: none;
            }

            .ptp-stepper .ptp-step-circle {
                width: 36px;
                height: 36px;
                font-size: 14px;
            }

            .ptp-stepper .ptp-step-label {
                font-size: 12px;
            }

            .ptp-stepper .ptp-feature-cards {
                flex-direction: column;
                gap: 16px;
            }

            .ptp-stepper .ptp-feature-card-col {
                width: 100%;
                padding-top: 0;
            }

            .ptp-stepper .ptp-feature-card {
                height: auto;
                min-height: 0;
            }

            .ptp-stepper .ptp-badge-card {
                height: auto;
            }

            .ptp-stepper .ptp-section-title {
                font-size: 22px;
            }

            .ptp-stepper .ptp-section-subtitle {
                font-size: 16px;
                line-height: 24px;
            }

            .ptp-stepper .ptp-content-card {
                padding: 50px 16px 24px;
            }

            .ptp-stepper .ptp-content-card.has-fixed-height {
                height: auto;
            }

            .ptp-stepper .ptp-nav-buttons {
                margin-top: 24px;
            }

            .ptp-stepper .ptp-btn-prev,
            .ptp-stepper .ptp-btn-next {
                padding: 10px 16px;
                font-size: 14px;
            }
        }

        @media (max-width: 575.98px) {
            .ptp-stepper .ptp-step-label {
                display: none;
            }
        }