/* ============================================================
   SEMICON 2.0
   PILLAR 2 — MACHINES AND MATERIALS
============================================================ */
/* ============================================================
   SEMICON 2.0 INTRODUCTION
============================================================ */

.semicon-intro {
    width: 100%;
    background: linear-gradient( 90deg, #ffffff 0%, #ffffff 65%, #f4f8fd 100% );
    border-bottom: 1px solid #edf1f7;
}


.semicon-intro-inner {
    position: relative;
    max-width: 100%;
    min-height: 150px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 25px 20px;
}


.semicon-intro-content {
    position: relative;
    z-index: 2;
    /*    width: 68%;*/
}


.semicon-intro-title {
    margin: 0 0 10px;
    color: #102b5f;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: .2px;
    line-height: 1.2;
}


.semicon-intro-text {
    max-width: 98%;
    margin: 0;
    color: #26334f;
    font-size: 16px;
    line-height: 1.65;
}
/* ============================================================
   SEMICON 2.0 — CHIP IMAGE
============================================================ */

.semicon-intro-visual {
    position: absolute;
    top: 0;
    right: 0;
    width: 34%;
    height: 100%;
    overflow: hidden;
}

    .semicon-intro-visual::before,
    .semicon-intro-visual::after {
        content: "";
        position: absolute;
        border: 1px solid rgba(45,103,177,.12);
        transform: rotate(25deg);
    }


    .semicon-intro-visual::before {
        width: 280px;
        height: 280px;
        right: -80px;
        top: -110px;
    }


    .semicon-intro-visual::after {
        width: 220px;
        height: 220px;
        right: 60px;
        bottom: -150px;
    }

.semicon-chip-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}
/* ============================================================
   CHIP ILLUSTRATION
============================================================ */

.chip {
    position: absolute;
    right: 95px;
    top: 50%;
    width: 115px;
    height: 75px;
    transform: translateY(-50%) perspective(300px) rotateX(45deg) rotateZ(-1deg);
    background: linear-gradient( 135deg, #1c62ad, #0a3879 );
    border: 2px solid rgba(255,255,255,.65);
    border-radius: 4px;
    box-shadow: 0 15px 25px rgba(18,63,112,.28);
}


    .chip::before {
        content: "";
        position: absolute;
        inset: -9px;
        border: 1px solid rgba(36,103,177,.55);
        border-radius: 5px;
    }


    .chip::after {
        content: "";
        position: absolute;
        left: -20px;
        right: -20px;
        bottom: -13px;
        height: 8px;
        background: repeating-linear-gradient( 90deg, #1d5d9e 0, #1d5d9e 4px, transparent 4px, transparent 9px );
        opacity: .65;
    }


.chip-core {
    position: absolute;
    width: 42px;
    height: 42px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(255,255,255,.75);
    border-radius: 3px;
}


    .chip-core::after {
        content: "";
        position: absolute;
        inset: 8px;
        border: 1px solid rgba(255,255,255,.55);
        border-radius: 2px;
    }


/* ============================================================
   CHIP CIRCUIT LINES
============================================================ */

.chip-line {
    position: absolute;
    height: 1px;
    background: rgba(255,255,255,.5);
}


.line-1 {
    width: 30px;
    left: -28px;
    top: 20px;
}


.line-2 {
    width: 24px;
    left: -23px;
    top: 50px;
}


.line-3 {
    width: 30px;
    right: -28px;
    top: 20px;
}


.line-4 {
    width: 24px;
    right: -23px;
    top: 50px;
}


/* ============================================================
   INTRO RESPONSIVE
============================================================ */

@media (max-width: 900px) {

    .semicon-intro-inner {
        min-height: 145px;
    }

    .semicon-intro-content {
        width: 75%;
    }

    .semicon-intro-visual {
        width: 30%;
    }

    .chip {
        right: 45px;
    }
}


@media (max-width: 768px) {

    .semicon-intro-inner {
        min-height: auto;
        padding: 20px 14px;
    }

    .semicon-intro-content {
        width: 100%;
    }

    .semicon-intro-title {
        font-size: 18px;
    }

    .semicon-intro-text {
        font-size: 11.5px;
        line-height: 1.6;
    }

    .semicon-intro-visual {
        display: none;
    }
}




/* ============================================================
   GLOBAL
============================================================ */

* {
    box-sizing: border-box;
}

.semicon-page {
    width: 100%;
    background: #fff;
    color: #17213d;
}

.semicon-wrapper {
/*    width: 100%;
    max-width: 1180px;*/
    margin: 0 auto;
    padding: 26px 20px 50px;
}


/* ============================================================
   PILLAR HERO
============================================================ */

.pillar-hero {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 18px;
    padding: 25px 28px;
    border-radius: 9px;
    background: linear-gradient( 105deg, #071f55 0%, #0b2e70 58%, #123e83 100% );
    color: #fff;
}


.pillar-hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}


.pillar-label {
    display: block;
    margin-bottom: 7px;
    color: #4de0bb;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}


.pillar-title {
    margin: 0 0 8px;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
}


.pillar-description {
    max-width: 680px;
    margin: 0;
    color: rgba(255,255,255,.92);
    font-size: 16px;
    line-height: 1.65;
}


/* ============================================================
   HERO GRAPHIC
============================================================ */

.pillar-hero-graphic {
    position: absolute;
    top: 0;
    right: 0;
    width: 340px;
    height: 100%;
    z-index: 1;
}


    .pillar-hero-graphic img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: contain;
    }


/* ============================================================
   CATEGORY
============================================================ */

.pillar-category-section {
    margin-bottom: 14px;
}


.category-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 76px;
    padding: 14px 18px;
    border: 1px solid #c9e8db;
    border-radius: 8px;
    background: #f8fdfb;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}


    .category-card:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 18px rgba(30,60,100,.08);
    }


    .category-card.active {
        border-color: #26966d;
    }


        .category-card.active::after {
            content: "";
            position: absolute;
            left: 16px;
            right: 16px;
            bottom: -1px;
            height: 3px;
            border-radius: 4px 4px 0 0;
            background: #26966d;
        }


.category-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #edf9f4;
    color: #159568;
}


    .category-icon svg {
        width: 25px;
        height: 25px;
    }


.category-details {
    min-width: 0;
}


.category-number {
    display: block;
    margin-bottom: 3px;
    color: #26966d;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .5px;
}


.category-title {
    margin: 0;
    color: #192f60;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.35;
}


/* ============================================================
   INFORMATION GRID
============================================================ */

.pillar-information {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
}


/* ============================================================
   INFORMATION CARD
============================================================ */

.info-card {
    display: flex;
    gap: 15px;
    min-width: 0;
    min-height: 150px;
    padding: 17px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(25,45,80,.025);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}


    .info-card:hover {
        transform: translateY(-1px);
        border-color: #d6dfec;
        box-shadow: 0 7px 20px rgba(25,45,80,.07);
    }


    .info-card.full-width {
        grid-column: 1 / -1;
        min-height: auto;
    }


/* ============================================================
   ICON
============================================================ */

.info-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #edf4ff;
    color: #155cc5;
}


    .info-icon svg {
        width: 25px;
        height: 25px;
    }


.rupee-symbol {
    font-size: 27px;
    font-weight: 500;
    line-height: 1;
}


/* ============================================================
   ICON COLORS
============================================================ */

.info-card.green .info-icon {
    background: #e9f9f2;
    color: #12a16e;
}


.info-card.teal .info-icon {
    background: #e8f8f8;
    color: #15969c;
}


.info-card.orange .info-icon {
    background: #fff2e8;
    color: #eb6917;
}


.info-card.purple .info-icon {
    background: #f1edff;
    color: #6843d9;
}


/* ============================================================
   CONTENT
============================================================ */

.info-details {
    flex: 1;
    min-width: 0;
}


.info-title {
    margin: 3px 0 11px;
    color: #1254a2;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
}
h2 {
    font-family: 'Poppins', sans-serif !important;
}


.info-card.green .info-title {
    color: #118a61;
}


.info-card.teal .info-title {
    color: #14898e;
}


.info-card.orange .info-title {
    color: #df6417;
}


.info-card.purple .info-title {
    color: #6140d0;
}


.info-text {
    margin: 0 0 10px;
    color: #26334f;
    font-size: 16px;
    line-height: 1.65;
}


    .info-text:last-child {
        margin-bottom: 0;
    }


    .info-text strong {
        color: #17213d;
        font-weight: 700;
    }


/* ============================================================
   BULLET LIST
============================================================ */

.info-list {
    margin: 2px 0 0;
    padding-left: 17px;
}


    .info-list li {
        margin-bottom: 8px;
        color: #26334f;
        font-size: 16px;
        line-height: 1.58;
    }


        .info-list li:last-child {
            margin-bottom: 0;
        }


/* ============================================================
   FISCAL SUPPORT LINK
============================================================ */

.info-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 6px;
    padding: 7px 12px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s ease;
}


.teal-link {
    border: 1px solid #15878d;
    background: #fff;
    color: #15878d;
}


    .teal-link:hover {
        background: #15878d;
        color: #fff;
    }


.info-link span {
    font-size: 14px;
}


/* ============================================================
   FISCAL TABLE
============================================================ */

    .pillar2-table-wrapper {
        width: 100%;
        margin-top: 15px;
        overflow-x: auto;
        border: 1px solid #dfe5ed;
        border-radius: 7px;
        background: #fff;
        -webkit-overflow-scrolling: touch;
    }


    .pillar2-fiscal-table {
        width: 100%;
        min-width: 900px;
        border-collapse: collapse;
        background: #fff;
        font-size: 16px;
    }

    /* ============================================================
   TABLE HEADER
============================================================ */

    .pillar2-fiscal-table th {
        padding: 10px 8px;
        background: #192f60;
        color: #fff;
        text-align: center;
        vertical-align: middle;
        font-size: 13px;
        font-weight: 700;
        line-height: 1.35;
        border-right: 1px solid rgba(255,255,255,.25);
    }


        .pillar2-fiscal-table th:last-child {
            border-right: none;
        }


        .pillar2-fiscal-table th small {
            display: block;
            margin-top: 4px;
            color: rgba(255,255,255,.78);
            font-size: 8.5px;
            font-weight: 400;
            line-height: 1.4;
        }


    /* ============================================================
   TABLE BODY
============================================================ */

    .pillar2-fiscal-table td {
        padding: 11px 9px;
/*        vertical-align: top;*/
        color: #526174;
        line-height: 1.5;
        border-right: 1px solid #e2e7ef;
        border-bottom: 1px solid #e2e7ef;
    }


        .pillar2-fiscal-table td:last-child {
            border-right: none;
        }


    .pillar2-fiscal-table tr:last-child td {
        border-bottom: none;
    }


    .pillar2-fiscal-table tbody tr:hover {
        background: #f8fbff;
    }


/* ============================================================
   TABLE COLUMNS
============================================================ */

.table-serial {
    width: 45px;
    text-align: center;
    font-weight: 700;
}


.table-subvertical {
    width: 31%;
    font-weight: 600;
}


.table-capital {
    width: 13%;
    text-align: center;
    font-weight: 700;
    white-space: nowrap;
}


.table-revenue {
    width: 17%;
    text-align: center;
    font-weight: 700;
    white-space: nowrap;
}


.table-support {
    width: 27%;
}


.table-number {
    text-align: center;
    font-weight: 700;
    white-space: nowrap;
}


.table-subtext {
    margin-top: 7px;
    color: #687587;
    font-size: 13px;
    line-height: 1.5;
}

.table-subvertical {
    width: 34%;
}

.table-capital {
    width: 13%;
}

.table-revenue {
    width: 15%;
    text-align: center;
    font-weight: 700;
    white-space: normal;
}

.table-support {
    width: 27%;
}
/* ============================================================
   SUPPORT HIGHLIGHT
============================================================ */

.support-highlight {
    display: inline-block;
    margin-bottom: 5px;
    padding: 5px 8px;
    border-radius: 4px;
    background: #edf9f4;
    color: #16855e;
    font-weight: 700;
}


/* ============================================================
   PLI HIGHLIGHT
============================================================ */

.pli-highlight {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-top: 8px;
    padding: 9px;
    border-left: 3px solid #e9671b;
    border-radius: 3px;
    background: #fff6ed;
    color: #7b563c;
    font-size: 16px;
    line-height: 1.5;
}


    .pli-highlight strong {
        color: #dc641e;
    }


/* ============================================================
   TABLE NOTE
============================================================ */

.table-note {
    padding: 10px 12px;
    border-top: 1px solid #e1e6ee;
    background: #f8f9fc;
    color: #687587;
    font-size: 16px;
    line-height: 1.5;
}




/* ============================================================
   NOTIFICATIONS
============================================================ */

.notifications-section {
    margin-top: 20px;
    padding: 18px 15px 15px;
    border-radius: 7px;
    background: #f4f7fd;
}


.notifications-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 12px;
    padding: 0 5px;
}


.notifications-label {
    margin-bottom: 2px;
    color: #60739a;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
}


.notifications-title {
    margin: 0;
    color: #172f62;
    font-size: 21px;
    font-weight: 700;
}


/* ============================================================
   NOTIFICATION GRID
============================================================ */


.notification-grid {
    /*    display: grid;*/
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}


/* ============================================================
   NOTIFICATION CARD
============================================================ */

.notification-card {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
    padding: 11px;
    border: 1px solid #e1e7f0;
    border-radius: 7px;
    background: #fff;
    color: inherit;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}


    .notification-card:hover {
        transform: translateY(-1px);
        border-color: #d3dce9;
        box-shadow: 0 5px 15px rgba(30,55,90,.07);
    }


/* ============================================================
   NOTIFICATION ICON
============================================================ */

.notification-icon {
    width: 43px;
    height: 43px;
    min-width: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: #edf4ff;
    color: #3c6ec4;
}


    .notification-icon svg {
        width: 23px;
        height: 23px;
    }


/* ============================================================
   NOTIFICATION CONTENT
============================================================ */

.notification-content {
    flex: 1;
    min-width: 0;
}


.notification-name {
    color: #142d61;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
}


.notification-meta {
    margin-top: 5px;
    color: #7a879d;
    font-size: 13px;
}


/* ============================================================
   DOWNLOAD ICON
============================================================ */

.notification-download {
    width: 32px;
    height: 32px;
    min-width: 32px;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: #edf4ff;
    color: #1459c2;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}


    .notification-download svg {
        width: 18px;
        height: 18px;
    }


.notification-card:hover .notification-download {
    background: #1459c2;
    color: #fff;
    transform: translateY(1px);
}


/* ============================================================
   1024px
   Hide hero image
============================================================ */

@media (max-width: 1024px) {

    .pillar-hero-graphic {
        display: none;
    }
}


/* ============================================================
   900px
============================================================ */

@media (max-width: 900px) {

    .pillar-information {
        grid-template-columns: 1fr;
    }


    .info-card.full-width {
        grid-column: auto;
    }


    .notification-grid {
        grid-template-columns: 1fr;
    }


    .pillar-hero {
        min-height: 135px;
    }
}


/* ============================================================
   768px
============================================================ */

@media (max-width: 768px) {

    .semicon-wrapper {
        padding: 18px 12px 35px;
    }


    .pillar-hero {
        min-height: auto;
        padding: 22px 20px;
        margin-bottom: 14px;
    }


    .pillar-title {
        font-size: 23px;
    }


    .pillar-description {
        font-size: 16px;
    }


    .category-card {
        min-height: 68px;
        padding: 12px 14px;
    }


    .category-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }


        .category-icon svg {
            width: 22px;
            height: 22px;
        }


    .category-title {
        font-size: 13px;
    }


    .info-card {
        min-height: auto;
        padding: 14px;
        gap: 11px;
    }


    .info-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }


        .info-icon svg {
            width: 22px;
            height: 22px;
        }


    .info-title {
        font-size: 13px;
    }


    .info-text,
    .info-list li {
        font-size: 11.5px;
    }


    .pillar2-table-wrapper {
        margin-top: 12px;
    }


    .pillar2-fiscal-table {
        min-width: 850px;
        font-size: 10px;
    }


        .pillar2-fiscal-table th {
            padding: 9px 7px;
            font-size: 9px;
        }


        .pillar2-fiscal-table td {
            padding: 9px 7px;
            font-size: 10px;
            line-height: 1.45;
        }


    .pli-highlight {
        font-size: 9px;
        padding: 7px;
    }


    .table-note {
        font-size: 9px;
        padding: 8px 10px;
    }


    .notifications-section {
        margin-top: 14px;
        padding: 14px 10px;
    }


    .notifications-header {
        align-items: flex-start;
    }


    .notifications-title {
        font-size: 19px;
    }
}


/* ============================================================
   480px
============================================================ */

@media (max-width: 480px) {

    .pillar-hero {
        padding: 20px 16px;
    }


    .pillar-title {
        font-size: 21px;
    }


    .pillar-description {
        font-size: 11.5px;
    }


    .category-card {
        gap: 9px;
        padding: 10px 12px;
    }


    .category-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }


        .category-icon svg {
            width: 20px;
            height: 20px;
        }


    .category-number {
        font-size: 8px;
    }


    .category-title {
        font-size: 16px;
    }


    .info-card {
        padding: 12px;
    }


    .info-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }


    .info-title {
        font-size: 16px;
    }


    .info-text,
    .info-list li {
        font-size: 11px;
    }


    .notification-card {
        padding: 10px;
    }


    .notification-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }


        .notification-icon svg {
            width: 20px;
            height: 20px;
        }


    .notification-name {
        font-size: 10.5px;
    }


    .notification-download {
        width: 29px;
        height: 29px;
        min-width: 29px;
    }


        .notification-download svg {
            width: 16px;
            height: 16px;
        }
}


/* ============================================================
   COMMON RESPONSIVE
============================================================ */

@media (max-width: 1100px) {

    .pillar-tab {
        padding: 9px 8px;
    }

    .pillar-tab-name {
        font-size: 11px;
    }

    .pillar-tab-icon {
        width: 27px;
        min-width: 27px;
    }

        .pillar-tab-icon svg {
            width: 24px;
            height: 24px;
        }
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 900px) {

    .pillar-tabs {
        grid-template-columns: repeat(3, 1fr);
    }

    .pillar-tab {
        border-bottom: 1px solid #9eb0cf;
    }

        .pillar-tab:nth-child(3),
        .pillar-tab:nth-child(6) {
            border-right: none;
        }

    .pillar-information {
        grid-template-columns: 1fr;
    }

    .info-card.full-width {
        grid-column: auto;
    }

    .notification-grid {
        grid-template-columns: 1fr;
    }

    .pillar-hero-graphic {
        right: 10px;
        opacity: .5;
    }
}


/* ============================================================
   PROCEDURE TO APPLY
============================================================ */

/*.scheme-apply-section {
    width: 100%;
}*/


/* ============================================================
   SECTION HEADING
============================================================ */

/*.scheme-section-heading {
    margin-bottom: 20px;
}

    .scheme-section-heading h2 {
        position: relative;
        display: inline-block;
        margin: 0;
        padding-bottom: 6px;
        color: #192f60;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 2rem;
        font-weight: 700;
        line-height: 1.2;
    }

        .scheme-section-heading h2::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 3px;
            border-radius: 3px;
            background: #192f60;
        }*/


/* ============================================================
   CARD
============================================================ */

/*.scheme-apply-card {
    height: 100%;
    min-height: 255px;
    display: flex;
    flex-direction: column;
    padding: 14px;
    border-radius: 8px;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}

    .scheme-apply-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 7px 18px rgba(25, 45, 80, .12);
    }*/


/* ============================================================
   CARD COLORS
============================================================ */

/*.scheme-apply-card--orange {
    background-color: #cf8107;
}

.scheme-apply-card--blue {
    background-color: #2ba1b5;
}

.scheme-apply-card--green {
    background-color: #059677;
}

.scheme-apply-card--pink {
    background-color: #da536a;
}*/


/* ============================================================
   CARD TITLE
============================================================ */

/*.scheme-apply-card__title {
    color: #fff;
}

    .scheme-apply-card__title img {
        width: auto;
        height: 48px;
        display: block;
        margin-bottom: 8px;
    }

    .scheme-apply-card__title h3 {
        margin: 0 0 8px;
        color: #fff;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 1.55rem;
        font-weight: 700;
        line-height: 1.1;
    }*/


/* ============================================================
   WHITE CONTENT BOX
============================================================ */

/*.scheme-apply-card__content {
    flex: 1;
    min-height: 0;
    padding: 13px 15px;
    border-radius: 8px;
    background: #fff;
    color: #111;
}

    .scheme-apply-card__content p {
        margin: 0;
        color: #111;
        font-size: .92rem;
        font-weight: 400;
        line-height: 1.55;
    }*/


/* ============================================================
   SMALL NOTE
============================================================ */

/*.scheme-apply-card__note {
    margin-top: 12px;
    color: #111;
    font-size: .72rem;
    line-height: 1.45;
}*/


/* ============================================================
   LARGE DESKTOP
============================================================ */

/*@media (min-width: 1200px) {

    .scheme-apply-section .container {
        max-width: 1280px;
    }

    .scheme-apply-card {
        min-height: 245px;
        padding: 13px;
    }

    .scheme-apply-card__title img {
        height: 46px;
    }

    .scheme-apply-card__title h3 {
        font-size: 1.55rem;
    }

    .scheme-apply-card__content {
        padding: 13px 15px;
    }
}*/


/* ============================================================
   1024px
============================================================ */

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

    .scheme-apply-card {
        min-height: 250px;
    }

    .scheme-apply-card__title h3 {
        font-size: 1.4rem;
    }
}*/


/* ============================================================
   TABLET
============================================================ */

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

    .scheme-apply-card {
        min-height: 230px;
    }
}*/


/* ============================================================
   MOBILE
============================================================ */

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

    .scheme-apply-section {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }

    .scheme-section-heading {
        margin-bottom: 18px;
    }

        .scheme-section-heading h2 {
            font-size: 1.75rem;
        }

    .scheme-apply-card {
        min-height: auto;
    }

    .scheme-apply-card__title img {
        height: 45px;
    }

    .scheme-apply-card__title h3 {
        font-size: 1.4rem;
    }
}*/


/* ============================================================
   SMALL MOBILE
============================================================ */

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

    .scheme-section-heading h2 {
        font-size: 1.55rem;
    }

    .scheme-apply-card {
        padding: 12px;
    }

    .scheme-apply-card__title img {
        height: 42px;
    }

    .scheme-apply-card__title h3 {
        font-size: 1.3rem;
    }

    .scheme-apply-card__content {
        padding: 12px 14px;
    }

        .scheme-apply-card__content p {
            font-size: .88rem;
        }
}*/
/* ============================================================
   PROCEDURE TO APPLY
   CONNECTED STEPPER
============================================================ */

.procedure-section {
    width: 100%;
    padding: 10px 0 48px;
    background: #ffffff;
}


    /* ============================================================
   CONTAINER
============================================================ */

    .procedure-section .container {
        max-width: 1280px;
    }


/* ============================================================
   HEADING
============================================================ */

.procedure-heading {
    margin-bottom: 26px;
}


.procedure-heading-label {
    display: block;
    margin-bottom: 5px;
    color: #5d7192;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}


.procedure-heading h2 {
    position: relative;
    display: inline-block;
    margin: 0 0 10px;
    padding-bottom: 8px;
    color: #192f60;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.15;
}


.procedure-heading h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    border-radius: 3px;
    background: #192f60;
}


.procedure-heading p {
    margin: 0;
    color: #61728e;
    font-size: 16px;
    line-height: 1.6;
}


/* ============================================================
   STEPPER WRAPPER
============================================================ */

.procedure-stepper {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
    overflow: visible;
    border: 1px solid #dce4ee;
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 8px 25px rgba(28, 53, 88, .07);
}


/* ============================================================
   INDIVIDUAL STEP
============================================================ */

.procedure-step {
    position: relative;
    min-width: 0;
    min-height: 205px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 25px 25px 25px 30px;
    overflow: visible;
}


/* ============================================================
   STEP BACKGROUNDS
============================================================ */

.procedure-step--orange {
    background: linear-gradient( 135deg, #fff9ef 0%, #ffffff 100% );
    border-left: 4px solid #cf8107;
    color: #cf8107;
}


.procedure-step--blue {
    background: linear-gradient( 135deg, #f0fafc 0%, #ffffff 100% );
    border-left: 4px solid #2ba1b5;
    color: #2ba1b5;
}


.procedure-step--green {
    background: linear-gradient( 135deg, #effbf7 0%, #ffffff 100% );
    border-left: 4px solid #059677;
    color: #059677;
}


.procedure-step--pink {
    background: linear-gradient( 135deg, #fff3f6 0%, #ffffff 100% );
    border-left: 4px solid #da536a;
    color: #da536a;
}


/* ============================================================
   CONNECTING CHEVRON
============================================================ */

.procedure-step:not(:last-child)::after {
    content: "";
    position: absolute;
    z-index: 10;
    top: 50%;
    right: -14px;
    width: 27px;
    height: 27px;
    transform: translateY(-50%) rotate(45deg);
    background: #fff;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
}


/* ============================================================
   ICON AREA
============================================================ */

.procedure-step__icon {
    position: relative;
    width: 74px;
    height: 74px;
    min-width: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(30, 50, 80, .08);
}


/* ============================================================
   ICON BACKGROUND
============================================================ */

.procedure-step--orange .procedure-step__icon {
    background: #e59414;
}


.procedure-step--blue .procedure-step__icon {
    background: #2ba1b5;
}


.procedure-step--green .procedure-step__icon {
    background: #059677;
}


.procedure-step--pink .procedure-step__icon {
    background: #da536a;
}


/* ============================================================
   ICON IMAGE
============================================================ */

.procedure-step__icon img {
    width: auto;
    height: 42px;
    max-width: 48px;
    display: block;
    object-fit: contain;
}


/* ============================================================
   NUMBER BADGE
============================================================ */

.procedure-step__number {
    position: absolute;
    top: -8px;
    left: 50%;
    z-index: 3;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
    border-radius: 50%;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    box-shadow: 0 3px 8px rgba(25,45,80,.15);
}


.procedure-step--orange .procedure-step__number {
    background: #cf8107;
}


.procedure-step--blue .procedure-step__number {
    background: #2ba1b5;
}


.procedure-step--green .procedure-step__number {
    background: #059677;
}


.procedure-step--pink .procedure-step__number {
    background: #da536a;
}


/* ============================================================
   CONTENT
============================================================ */

.procedure-step__content {
    flex: 1;
    min-width: 0;
}


.procedure-step h3 {
    margin: 0 0 7px;
    color: #172f5c;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.50rem;
    font-weight: 700;
    line-height: 1.15;
}


/* ============================================================
   COLOR TITLE
============================================================ */

.procedure-step--orange h3 {
    color: #c87500;
}


.procedure-step--blue h3 {
    color: #168da1;
}


.procedure-step--green h3 {
    color: #078663;
}


.procedure-step--pink h3 {
    color: #d44962;
}


/* ============================================================
   TITLE UNDERLINE
============================================================ */

.procedure-step__line {
    display: block;
    width: 28px;
    height: 3px;
    margin-bottom: 9px;
    border-radius: 4px;
    background: currentColor;
}


/* ============================================================
   DESCRIPTION
============================================================ */

.procedure-step p {
    margin: 0;
    color: #243754;
    font-size: 16px;
    line-height: 1.6;
}


/* ============================================================
   NOTE
============================================================ */

.procedure-step small {
    display: block;
    margin-top: 9px;
    color: #68768b;
    font-size: 13px;
    line-height: 1.45;
}


/* ============================================================
   HOVER
============================================================ */

.procedure-step {
    transition: background .25s ease, transform .25s ease;
}


    .procedure-step:hover {
        z-index: 20;
        transform: translateY(-2px);
        background: #ffffff;
    }


.procedure-step__icon {
    transition: transform .25s ease, box-shadow .25s ease;
}


.procedure-step:hover .procedure-step__icon {
    transform: scale(1.05);
    box-shadow: 0 7px 16px rgba(30,50,80,.12);
}


/* ============================================================
   FIRST / LAST BORDER RADIUS
============================================================ */

.procedure-step:first-child {
    border-radius: 12px 0 0 12px;
}


.procedure-step:last-child {
    border-radius: 0 12px 12px 0;
}


/* ============================================================
   1200px+
============================================================ */

@media (min-width: 1200px) {

    .procedure-step {
        min-height: 205px;
        padding-left: 30px;
        padding-right: 26px;
    }
}


/* ============================================================
   1024px — COMPACT DESKTOP
============================================================ */

@media (max-width: 1199px) {

    .procedure-section .container {
        max-width: 1100px;
    }

    .procedure-step {
        min-height: 195px;
        gap: 12px;
        padding: 20px;
    }

    .procedure-step__icon {
        width: 62px;
        height: 62px;
        min-width: 62px;
    }

        .procedure-step__icon img {
            height: 36px;
        }

    .procedure-step h3 {
        font-size: 1.2rem;
    }
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 991.98px) {

    .procedure-stepper {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        border: none;
        box-shadow: none;
    }

    .procedure-step {
        min-height: 170px;
        border: 1px solid #dfe6ee;
        border-left-width: 4px;
        border-radius: 9px !important;
        box-shadow: 0 4px 13px rgba(25,45,80,.05);
    }

        .procedure-step:not(:last-child)::after {
            display: none;
        }
}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 767.98px) {

    .procedure-section {
        padding: 32px 0 38px;
    }

    .procedure-heading {
        margin-bottom: 20px;
    }

        .procedure-heading h2 {
            font-size: 1.8rem;
        }

    .procedure-stepper {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .procedure-step {
        min-height: 135px;
        padding: 17px;
    }

    .procedure-step__icon {
        width: 58px;
        height: 58px;
        min-width: 58px;
    }

        .procedure-step__icon img {
            height: 34px;
        }

    .procedure-step__number {
        width: 25px;
        height: 25px;
        font-size: 9px;
    }

    .procedure-step h3 {
        font-size: 1.2rem;
    }
}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 480px) {

    .procedure-section {
        padding: 28px 0 32px;
    }

    .procedure-heading h2 {
        font-size: 1.6rem;
    }

    .procedure-heading p {
        font-size: 11px;
    }

    .procedure-step {
        gap: 11px;
        min-height: 120px;
        padding: 14px;
    }

    .procedure-step__icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
    }

        .procedure-step__icon img {
            height: 30px;
            max-width: 38px;
        }

    .procedure-step h3 {
        font-size: 1.1rem;
    }

    .procedure-step p {
        font-size: 10.5px;
    }

    .procedure-step small {
        font-size: 8px;
    }
}

/* ============================================================
   SIX PILLARS
============================================================ */
.pillars-section {
    width: 100%;
    background: #f5f7fc;
    padding: 14px 20px 9px;
}


.pillars-inner {
    width: 1-0%;
    margin: 0 auto;
}


.pillars-label {
    margin-bottom: 2px;
    color: #192f60;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}


.pillars-title {
    margin: 0 0 10px;
    color: #102a5b;
    font-size: 24px;
    font-weight: 700;
}




/* ============================================================
   PILLAR TAB BAR
============================================================ */

.pillar-tabs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    width: 100%;
    overflow: hidden;
    border: 1px solid #8ea4cb;
    border-radius: 7px;
    background: #fff;
}


/* ============================================================
   PILLAR TAB
============================================================ */


.pillar-tabs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    width: 100%;
    overflow: hidden;
    border: 1px solid #8ea4cb;
    border-radius: 7px;
    background: #fff;
}


.pillar-tab {
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-right: 1px solid #9eb0cf;
    background: #fff;
    color: #0e224b;
    text-decoration: none;
    transition: all .2s ease;
}


.pillar-tab:last-child {
    border-right: none;
}


.pillar-tab:hover {
    background: #f2f6fd;
}


.pillar-tab.active {
    background: #192f60;
    color: #fff;
}


.pillar-tab-icon {
    width: 31px;
    min-width: 31px;
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.pillar-tab-icon svg {
    width: 27px;
    height: 27px;
}


.pillar-tab-number {
    display: block;
    margin-bottom: 3px;
    font-size: 10px;
    font-weight: 700;
    opacity: .85;
}


.pillar-tab-name {
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}

/* ============================================================
   HOVER
============================================================ */

.pillar-tab:hover {
/*    background: #f2f6fd;
    color: #0e224b;*/
    text-decoration: none;
}

/* ============================================================
   COMMON RESPONSIVE
============================================================ */

@media (max-width: 1100px) {

    .pillar-tab {
        padding: 9px 8px;
    }

    .pillar-tab-name {
        font-size: 11px;
    }

    .pillar-tab-icon {
        width: 27px;
        min-width: 27px;
    }

        .pillar-tab-icon svg {
            width: 24px;
            height: 24px;
        }
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 900px) {

    .pillar-tabs {
        grid-template-columns: repeat(3, 1fr);
    }

    .pillar-tab {
        border-bottom: 1px solid #9eb0cf;
    }

        .pillar-tab:nth-child(3),
        .pillar-tab:nth-child(6) {
            border-right: none;
        }

    .pillar-information {
        grid-template-columns: 1fr;
    }

    .info-card.full-width {
        grid-column: auto;
    }

    .notification-grid {
        grid-template-columns: 1fr;
    }

    .pillar-hero-graphic {
        right: 10px;
        opacity: .5;
    }
}


/* ============================================================
   MOBILE
============================================================ */

@media (min-width: 768px) and (max-width: 1024px) {

    .semicon-wrapper {
        padding: 18px 12px 35px;
    }


    .pillars-section {
        padding: 12px;
    }


    .pillars-title {
        font-size: 21px;
    }


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


    .pillar-tab {
        min-height: 58px;
        padding: 8px 10px;
        gap: 8px;
    }


        .pillar-tab:nth-child(3),
        .pillar-tab:nth-child(6) {
            border-right: 1px solid #9eb0cf;
        }


        .pillar-tab:nth-child(even) {
            border-right: none;
        }


    .pillar-tab-icon {
        width: 25px;
        min-width: 25px;
    }


        .pillar-tab-icon svg {
            width: 22px;
            height: 22px;
        }


    .pillar-tab-number {
        font-size: 9px;
    }


    .pillar-tab-name {
        font-size: 10px;
    }
}

/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 480px) {

    .pillar-tabs {
        grid-template-columns: 1fr;
    }


    .pillar-tab,
    .pillar-tab:nth-child(even) {
        min-height: 50px;
        border-right: none;
        border-bottom: 1px solid #9eb0cf;
    }


        .pillar-tab:last-child {
            border-bottom: none;
        }


        .pillar-tab.active {
            border-color: #192f60;
        }
}
/* ============================================================
   MAIN SEMICON CONTENT WIDTH
============================================================ */

.semicon-wrapper {
/*    width: 100%;
    max-width: 1440px;*/
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}


/* ============================================================
   LARGE DESKTOP
   1229px+
============================================================ */

@media (min-width: 1230px) {

    .semicon-wrapper {
/*        max-width: 1440px;*/
        padding-left: 30px;
        padding-right: 30px;
    }
}


/* ============================================================
   EXTRA LARGE SCREEN
   1600px+
============================================================ */

@media (min-width: 1600px) {

    .semicon-wrapper {
/*        max-width: 1540px;*/
        padding-left: 35px;
        padding-right: 35px;
    }
}


/* ============================================================
   VERY LARGE SCREEN
   1920px+
============================================================ */

@media (min-width: 1920px) {

    .semicon-wrapper {
/*        max-width: 1680px;*/
        padding-left: 40px;
        padding-right: 40px;
    }
}


/* ============================================================
   BELOW 1230px
============================================================ */

@media (max-width: 1229px) {

    .semicon-wrapper {
/*        max-width: 100%;*/
        padding-left: 20px;
        padding-right: 20px;
    }
}