
        /* ===== Base Reset ===== */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            color: #000;
            overflow-x: hidden;
        }

        /* ===== Page Wrapper — Full Width ===== */
        .page-wrapper {
            width: 100%;
            padding: 20px 40px 40px;
        }

        /* ===== Header ===== */
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            margin-bottom: 5px;
        }

        .header-logo {
            width: 76px;
            height: 78px;
            object-fit: contain;
        }

        /* ===== Org Name Block ===== */
        .org-name-block {
            text-align: center;
            margin-bottom: 10px;
        }

        .org-name-block__hindi {
            font-family: 'Mangal', serif;
            font-size: 10pt;
            font-weight: bold;
        }

        .org-name-block__english {
            font-family: 'Arial Narrow', sans-serif;
            font-size: 11pt;
            font-weight: bold;
            line-height: 1.5;
        }

        /* ===== Advertisement Title ===== */
        .ad-title {
            font-family: 'Cambria', serif;
            font-size: 18pt;
            font-weight: bold;
            color: #130593;
            text-align: center;
            margin-bottom: 15px;
        }

        /* ===== Action Buttons ===== */
        .action-bar {
            display: flex;
            gap: 17px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 33px;
            min-width: 100px;
            border-radius: 10px;
            font-family: 'Cambria', serif;
            font-size: 14pt;
            font-weight: bold;
            text-decoration: none;
            cursor: pointer;
            border: none;
            box-shadow: 0 1px 3px #666;
            transition: opacity 0.2s ease, transform 0.1s ease;
        }

        .btn:hover {
            opacity: 0.9;
            transform: translateY(-1px);
        }

        .btn:active {
            transform: translateY(0);
        }

        .btn--apply {
            background: #60d701;
            color: #020aff;
            min-width: 109px;
        }

        .btn--print {
            background: linear-gradient(to bottom, #1708ff 0%, #0413ce 40%, #0013f9 50%, #2719f3 60%, #000 100%);
            color: #fff;
        }

        .btn--verify {
            background: #6e070e;
            color: #fff;
            min-width: 162px;
        }

        /* ===== Important Dates Table ===== */
        .dates-table-wrapper {
            margin-bottom: 20px;
        }

        .dates-table {
            width: 100%;
            border-collapse: collapse;
            border: 1px solid #000;
            background: #f9fae8;
        }

        .dates-table th,
        .dates-table td {
            border: 1px solid #000;
            padding: 6px 12px;
            font-size: 11pt;
            text-align: center;
        }

        .dates-table__header {
            background: #c9f2f2;
            text-transform: uppercase;
            font-weight: bold;
        }

        .dates-table__label {
            text-transform: uppercase;
            font-weight: bold;
            text-align: left;
            font-size: 10pt;
        }

        .dates-table__value {
            font-weight: bold;
        }

        /* ===== Content Sections ===== */
        .content-section {
            margin-bottom: 10px;
        }

        .intro-text {
            margin: 0 30px 6px 40px;
            text-align: justify;
            line-height: normal;
        }

        .intro-text--bold {
            font-weight: bold;
        }

        .application-intro {
            margin: 0 30px 6px 40px;
            text-align: justify;
        }

        .application-intro strong {
            font-weight: bold;
        }

        /* ===== Position Table ===== */
        .position-table-wrapper {
            margin-bottom: 15px;
            box-shadow: 0 0 20px #0776ff;
        }

        .position-table {
            width: 100%;
            border-collapse: collapse;
            border: 1px solid windowtext;
            table-layout: fixed;
        }

        .position-table th,
        .position-table td {
            border: 1px solid windowtext;
            padding: 6px 8px;
            font-size: 11pt;
            vertical-align: top;
        }

        .position-table__header {
            background: #e8edf5;
            text-align: center;
            font-weight: bold;
            height: 55px;
        }

        .position-table__code {
            text-align: center;
            font-weight: bold;
            width: 92px;
        }

        .position-table__name {
            text-align: center;
            font-weight: bold;
            width: 106px;
        }

        .position-table__count {
            text-align: center;
            font-weight: bold;
            width: 107px;
        }

        .position-table__qual-header {
            width: 319px;
        }

        .position-table__age-header {
            width: 251px;
        }

        .position-table__details {
            background: #fff;
            padding: 6px 14px !important;
            text-align: justify;
            line-height: 1.5;
        }

        .position-table__details .qual-list {
            margin: 0;
            padding-left: 0;
            list-style: none;
        }

        .position-table__details .qual-list li {
            margin-bottom: 4px;
            text-indent: -18px;
            padding-left: 18px;
        }

        .position-table__details .or-separator {
            text-align: center;
            margin: 4px 0;
            font-weight: bold;
        }

        .position-table__details .sub-qual-list {
            margin: 2px 0 0 18px;
            padding-left: 0;
            list-style: none;
            counter-reset: qual-counter;
        }

        .position-table__details .sub-qual-list li {
            margin-bottom: 2px;
            text-indent: 0;
            padding-left: 0;
        }

        .position-table__details .sub-qual-list li::before {
            counter-increment: qual-counter;
            content: counter(qual-counter) ". ";
            font-weight: bold;
        }

        /* ===== Section Headings ===== */
        .section-heading {
            font-size: 11pt;
            font-weight: bold;
            text-decoration: underline;
            margin: 15px 30px 6px 40px;
        }

        .section-heading--center {
            text-align: center;
            text-transform: uppercase;
            margin: 12px 30px 10px;
        }

        /* ===== How To Apply ===== */
        .how-to-apply {
            margin: 0 30px 6px 40px;
            text-align: justify;
        }

        .how-to-apply a {
            color: #0066cc;
            text-decoration: underline;
        }

        .how-to-apply a:hover {
            color: #004499;
        }

        .gender-note {
            margin: 0 30px 6px 40px;
            text-align: justify;
            font-style: italic;
            font-weight: bold;
        }

        /* ===== Instructions List ===== */
        .instructions {
            margin: 0 30px 0 40px;
            padding: 0;
            list-style: none;
            counter-reset: instruction-counter;
        }

        .instructions li {
            margin-bottom: 6px;
            text-align: justify;
            text-indent: -22px;
            padding-left: 22px;
            line-height: 1.5;
        }

        .instructions li::before {
            counter-increment: instruction-counter;
            content: counter(instruction-counter, decimal-leading-zero) ". ";
            font-weight: bold;
            min-width: 22px;
            display: inline-block;
        }

        .instructions li strong {
            font-weight: bold;
        }

        .instructions li .sub-label {
            font-weight: bold;
            text-decoration: underline;
        }

        .instructions li .sub-list {
            list-style: none;
            padding-left: 18px;
            margin: 4px 0;
        }

        .instructions li .sub-list li {
            text-indent: 0;
            padding-left: 0;
            margin-bottom: 4px;
        }

        .instructions li .sub-list li::before {
            content: none;
        }

        /* ===== Emoluments Sub-section ===== */
        .emoluments-block {
            margin: 4px 0 6px 0;
            text-align: justify;
        }

        .hra-note {
            text-align: justify;
        }

        .hra-note strong {
            font-weight: normal;
        }

        /* ===== Service Conditions ===== */
        .service-text {
            font-weight: normal;
            text-align: justify;
        }

        /* ===== Selection Process ===== */
        .selection-text {
            text-align: justify;
        }

        /* ===== Document Lists ===== */
        .doc-list {
            list-style: none;
            padding-left: 18px;
            margin: 4px 0;
            counter-reset: doc-counter;
        }

        .doc-list li {
            text-indent: 0;
            padding-left: 0;
            margin-bottom: 3px;
        }

        .doc-list li::before {
            counter-increment: doc-counter;
            content: counter(doc-counter) ". ";
            font-weight: bold;
        }

        .interview-docs {
            list-style: none;
            padding-left: 18px;
            margin: 4px 0;
            counter-reset: doc-counter-2;
        }

        .interview-docs li {
            margin-bottom: 4px;
            text-indent: 0;
            padding-left: 0;
        }

        .interview-docs li::before {
            counter-increment: doc-counter-2;
            content: counter(doc-counter-2) ") ";
            font-weight: bold;
        }

        .field-note {
            margin-top: 6px;
            text-align: justify;
        }

        /* ===== Note Block ===== */
        .note-block {
            margin: 0 30px 6px 40px;
            text-align: justify;
        }

        .note-block__label {
            font-weight: bold;
            font-style: italic;
        }

        .note-block__text {
            font-weight: bold;
            font-style: italic;
        }

        /* ===== Warning Block ===== */
        .warning-block {
            margin: 10px 30px 0 40px;
        }

        .warning-block__title {
            font-weight: bold;
            font-style: italic;
            margin-top: 10px;
            margin-bottom: 6px;
        }

        .warning-block__list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .warning-block__list li {
            text-align: justify;
            line-height: 2;
            padding-left: 1em;
            position: relative;
        }

        .warning-block__list li::before {
            content: "•";
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        .warning-block__list li strong {
            font-weight: bold;
            font-style: italic;
        }

        /* ===== Spacers ===== */
        .spacer--sm {
            height: 10px;
        }

        .spacer--md {
            height: 20px;
        }

        /* ===== Print Adjustments ===== */
        @media print {
            .btn {
                box-shadow: none;
                border: 1px solid #999;
            }

            .position-table-wrapper {
                box-shadow: none;
                border: 1px solid #0776ff;
            }

            body {
                font-size: 10pt;
            }

            .page-wrapper {
                padding: 10px 20px;
            }
        }

        /* ===== Responsive ===== */
        @media (max-width: 768px) {
            .page-wrapper {
                padding: 15px;
            }

            .header {
                flex-direction: row;
                justify-content: space-between;
            }

            .header-logo {
                width: 55px;
                height: 56px;
            }

            .ad-title {
                font-size: 14pt;
            }

            .action-bar {
                justify-content: center;
            }

            .intro-text,
            .application-intro,
            .how-to-apply,
            .gender-note,
            .section-heading {
                margin-left: 10px;
                margin-right: 10px;
            }

            .instructions {
                margin-left: 15px;
                margin-right: 10px;
            }

            .note-block {
                margin-left: 15px;
                margin-right: 10px;
            }

            .warning-block {
                margin-left: 15px;
                margin-right: 10px;
            }

            .dates-table th,
            .dates-table td {
                font-size: 9pt;
                padding: 4px 6px;
            }

            .dates-table__label {
                font-size: 8pt;
            }

            .position-table {
                table-layout: auto;
            }
        }

        /*......... jithu........ */
        .heading--center {
            text-align: center;
            text-transform: uppercase;
            margin: 12px 30px 10px;
            font-size: large;
        }
        li{
            text-align: justify;
        }
         ol li::marker{
             font-weight: bold;
             line-height: 2rem;
         }
         ul li::marker{
            font-weight: bold;
            line-height: 2rem;
        }
        
         .card1 {
            position: relative;
            display: flex;
            flex-direction: column;
            min-width: 0;
            word-wrap: break-word;
            background-color: #fff;
            background-clip: border-box;
            border: 3px solid rgba(0, 0, 0, 0.125);
            border-radius: .45rem;
            width: 80%;
            margin: auto;
          }
          