:root {
    --body-font: "Roboto", sans-serif;
    --color-green: #87ae15;
    --color-lightgrey: #e9e9e9;
    --color-gray: #cccccc;
    --color-d-gray: #999;
    --color-text: #1e1e1e;
    --color-black: #000000;
    --color-white: #ffffff;
    --color-carmine-red: #9d0f0f;
    --color-links: #006699;
    --color-blue: #0073d9;
    --color-d-blue: #006699;
    --color-l-blue: #c3d8f7;
    --color-slc-blue: #f84e1d;
    --color-pink: #e85656;
    --color-panel: #5b5b5b;
    --color-yellow: #ffab15;
    --color-purple: #5263ab;
    --color-d-purple: #764ba2;
    --color-slc-blue:#26749b
}

body {
    font-family: var(--body-font);
    color: var(--color-text);
    font-size: 14px;
    font-weight: 400;
}

a {
    color: var(--color-links);
}

.button {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 12px;
    padding: 8px 16px;
    font-weight: 500;
    font-size: 14px;
    background-color: transparent;
    border: 1px solid currentColor;
    color: var(--color-white);
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
}

.button_primary {
    background-color: var(--color-slc-blue);
    border-color: var(--color-slc-blue);
    color: var(--color-white);
}

    .button_primary:hover {
        background-color: var(--color-white);
        color: var(--color-slc-blue);
    }

.button_secondary {
    background-color: #252525;
    border-color: #252525;
    color: var(--color-white);
}

    .button_secondary:hover {
        background-color: var(--color-white);
        color: #252525;
    }

.navbar {
    padding-block: 0;
}

    .navbar > .container {
        border-bottom: 1px solid #e5e7eb;
        padding-block: 12px;
    }

.navbar-brand {
    max-width: 60px;
    min-width: 60px;
}

.navbar-expand-lg .navbar-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    text-decoration: none;
    font-size: 14px;
    color: var(--color-text);
    border-radius: 6px;
}

    .navbar-expand-lg .navbar-nav .nav-link:hover {
        background: var(--color-lightgrey);
    }

    .navbar-expand-lg .navbar-nav .nav-link svg {
        width: 13px;
        height: 13px;
        flex-shrink: 0;
    }

    .navbar-expand-lg .navbar-nav .nav-link::after {
        content: none;
    }

.navbar-nav .dropdown-menu {
    padding: 0;
    border-radius: 0;
}

.navbar-nav .dropdown-menu li {
    background: var(--color-lightgrey);
    border-bottom: 1px solid var(--color-white);
    padding: 0px;
}

.navbar-nav .dropdown-menu li a {
    display: block;
    font-size: 12px;
    background: transparent;
    color: var(--color-text);
    padding: 6px 20px;
}

.navbar-expand-lg .form-control {
    font-size: 14px;
}

/* css for submenu*/
/* Positioning for nested dropdowns */
.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu > .dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -1px;
        display: none; /* Hidden by default */
        visibility: hidden;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease-in-out;
    }

/* Show submenu on hover */
.navbar-nav .dropdown-submenu:hover > .dropdown-menu {
    display: block;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

/* Styling for dropdown items */
.navbar-nav .dropdown-menu {
    padding: 0;
    border-radius: 0;
}

    .navbar-nav .dropdown-menu li {
        background: var(--color-lightgrey);
        border-bottom: 1px solid var(--color-white);
        padding: 0px;
    }

        .navbar-nav .dropdown-menu li a {
            display: block;
            font-size: 12px;
            background: transparent;
            color: var(--color-text);
            padding: 6px 20px;
        }

            .navbar-nav .dropdown-menu li a:hover {
                background: var(--color-gray);
                color: var(--color-white);
            }
/* end css for submenu*/

.search-button {
    position: absolute;
    top: 50%;
    right: 6px;
    border: 0;
    background: transparent;
    color: var(--color-d-gray);
    transform: translateY(-50%);
}

.form-select {
    font-size: 11px;
}

.login-user {
    margin-left: 10px;
    padding: 2px;
    border: 1px solid currentColor;
    color: var(--color-black);
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    min-width: 36px;
    height: 36px;
    vertical-align: middle;
}

.userprofilelink {
    display: flex;
    gap: 5px;
    color: var(--color-links);
}

#ctl00_bodypageheader_lblUser span a {
    color: var(--color-links);
}

.login-user .icon {
    width: 100%;
    height: 100%;
}

.login-drawer .modal-header .btn-close {
    box-shadow: none;
}

.login-mainbox {
    padding: 20px;
}

.login-drawer.modal .modal-dialog {
    height: 100%;
    margin: 0 0 0 auto;
}

.login-drawer.modal:not(.show) .modal-dialog {
    transform: translateX(100%);
}

.login-drawer .modal-content {
    min-height: 100vh;
    height: 100%;
    border-radius: 20px 0 0 20px;
}

.login-mainbox > .col-md-12 {
    margin-bottom: 16px;
}

.forgot-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    font-size: 13px;
}

    .forgot-box label {
        display: flex;
        align-items: center;
        font-size: 13px;
        cursor: pointer;
    }

    .forgot-box input[type="checkbox"] {
        margin-right: 5px;
        cursor: pointer;
    }

.signup {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
}

    .forgot-box a,
    .signup a {
        color: var(--color-slc-blue);
        font-weight: 500;
        text-decoration: none;
    }

.navbar > .container > span p {
    margin: 0;
}


/* Welcome Username clickable dropdown */

.user-wrapper {
    position: relative;
}

.user-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    color: var(--color-slc-blue);
    font-weight: 500;
    padding: 7px 10px;
    border-radius: 6px;
    transition: background 0.2s;
    font-family: inherit;
}

    .user-btn::after {
        content: none;
    }

    .user-btn:hover {
        background: var(--color-lightgrey);
    }

    .user-btn b {
        font-weight: 700;
        color: var(--color-black);
        max-width: 120px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        display: inline-block;
        vertical-align: bottom;
    }

    .user-btn svg {
        width: 13px;
        height: 13px;
        color:;
        transition: transform 0.2s;
    }

    .user-btn.active svg {
        transform: rotate(180deg);
    }

    .user-btn:has(span:empty) {
        display: none;
    }

.user-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--color-white);
    border: 1px solid var(--color-lightgrey);
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
    min-width: 200px;
    z-index: 300;
    padding: 4px 0;
}

    .user-dropdown.open {
        display: block;
    }


/* NTA Admin as a styled select-like dropdown */

.user-dropdown-wrapper {
    position: relative;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.user-dropdown-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: border-color 0.2s;
    /* padding: 7px 12px;
    border: 1px solid var(--color-gray); */
    border-radius: 6px;
    background: var(--color-white);
    min-width: 150px;
    width: 100%;
}

    .user-dropdown-row:hover {
        border-color: var(--color-gray);
    }

.user-name-left {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--color-text);
    font-weight: 500;
}

    .user-name-left svg {
        width: 13px;
        height: 13px;
        color: var(--color-gray);
        transition: transform 0.2s;
    }

    .user-name-left.active svg {
        transform: rotate(180deg);
    }

.refresh-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 6px;
    color: var(--color-text);
    transition: background 0.2s;
    flex-shrink: 0;
}

    .refresh-icon:hover {
        background: var(--color-lightgrey);
    }

    .refresh-icon svg {
        width: 15px;
        height: 15px;
    }

.user-dropdown-sub {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% - 4px);
    background: var(--color-white);
    border: 1px solid var(--color-lightgrey);
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    z-index: 10;
    padding: 4px 0;
}

    .user-dropdown-wrapper:hover .user-dropdown-sub,
    .user-dropdown-sub.open {
        display: block;
    }

    .user-dropdown-sub a {
        display: block;
        padding: 8px 14px;
        text-decoration: none;
        color: var(--color-text);
        font-size: 13px;
        transition: background 0.15s;
    }

        .user-dropdown-sub a:hover {
            background: var(--color-lightgrey);
        }

        .user-dropdown-sub a.active-role {
            color: var(--color-text);
            font-weight: 600;
            background: var(--color-lightgrey);
        }

.h-dd-divider {
    height: 1px;
    background: var(--color-gray);
    margin: 4px 0;
}

.user-logout-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    text-decoration: none;
    color: var(--color-text);
    font-size: 13px;
    transition: background 0.15s;
    cursor: pointer;
}

    .user-logout-link:hover {
        background: var(--color-lightgrey);
    }

    .user-logout-link svg {
        width: 16px;
        height: 16px;
    }

    .user-logout-link.logout {
        color: var(--color-slc-blue);
    }


/* ===================== */


/* Hero Section Start */

.hero-section {
    position: relative;
}

.hero-slider .carousel-item:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000 url('../images/herobg.svg')no-repeat center / cover;
    opacity: 0.6;
}

.hero-slider .carousel-item > img {
    height: calc(100vh - 110px);
    object-fit: cover;
}

.hero-slider .carousel-caption {
    bottom: 0;
    top: 0;
}

.hero-text-wrapper {
    position: relative;
    color: #fff;
    z-index: 1;
    max-width: 640px;
    text-align: center;
    margin: 0 auto;
}

    .hero-text-wrapper > *:not(:last-child) {
        margin-bottom: 24px;
    }

.hero-heading span {
    color: var(--color-slc-blue);
}

.hero-text-wrapper .description {
    font-size: 16px;
    max-width: 550px;
}

.hero-text-wrapper .btn {
    min-height: 60px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
}

.breadcrumb-wrapper {
    margin: 20px 0px;
}

    .breadcrumb-wrapper .breadcrumb-item {
        font-size: 12px;
        color: var(--color-d-gray);
    }

        .breadcrumb-wrapper .breadcrumb-item.active {
            color: var(--color-slc-blue);
        }

        .breadcrumb-wrapper .breadcrumb-item a {
            color: var(--color-links);
        }

div#reportViewer1 {
    width: 100% !important;
}

.serv-flexbox {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 20px;
}

.serv-item0 {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background-color: var(--color-slc-blue);
}

.serv-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

    .serv-item::before {
        content: "";
        background-color: var(--color-slc-blue);
        border-bottom-right-radius: 100%;
        position: absolute;
        inset: 0%;
        width: 0%;
        height: 0%;
        transition: width, height, 0.4s ease;
        opacity: 0.7;
    }

    .serv-item:hover::before {
        width: 150%;
        height: 150%;
    }

    .serv-item .serv-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        min-height: 210px;
    }

.serv-caption0 {
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px;
    color: var(--color-white);
    max-height: 100%;
    overflow-y: auto;
}

.serv-caption {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translate3d(0px, 70px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
    will-change: transform, opacity;
    padding: 10px;
    transition: all 0.6s ease;
    color: var(--color-white);
    max-height: 100%;
    overflow-y: auto;
}

.serv-item:hover .serv-caption {
    opacity: 1;
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
}

.serv-caption p:last-child {
    margin: 0;
}

.dv-centered {
    display: flex;
    justify-content: center;
    /* Centers horizontally */
    align-items: center;
}

h3 {
    font-size: 1.74em !important;
}

.notice-board {
    background: #ffffff;
    border: 1px solid var(--color-gray);
}

.notice-board-head {
    background: var(--color-l-blue);
}

.notice-board ul {
    padding-left: 0;
    list-style-position: inside;
}

.search-board {
    background: linear-gradient(180deg, #4a4b4c, #929999b0);
    color: var(--color-white);
}

.search-board-head svg {
    min-width: 20px;
}

.searchform .form-select,
.searchform .form-control {
    font-size: 14px;
}

.radio-btn-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

    .radio-btn-wrapper tr td {
        padding-right: 10px;
    }

        .radio-btn-wrapper tr td label {
            vertical-align: text-bottom;
            margin-right: 6px;
            margin-left: 6px;
        }

.radio-btn-label {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    cursor: pointer;
    user-select: none;
}

    .radio-btn-label input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

    .radio-btn-label .checkmark {
        position: relative;
        display: block;
        height: 18px;
        width: 18px;
        background-color: var(--color-white);
        border-radius: 50%;
        border: 2px solid var(--color-gray);
        transition: all 0.3s;
    }

    .radio-btn-label input:checked ~ .checkmark {
        border: 2px solid var(--color-slc-blue);
    }

    .radio-btn-label .checkmark:after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--color-slc-blue);
        -webkit-transition: all 0.2s ease;
        transition: all 0.2s ease;
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(0);
        transform: translate(-50%, -50%) scale(0);
    }

    .radio-btn-label input:checked ~ .checkmark:after {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
    }

.planer-boxes-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    background: var(--color-lightgrey);
    border: 1.5px solid var(--color-gray);
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
    transition: all 0.4s ease-in-out;
}

    .planer-boxes-item:hover {
        border-color: var(--color-black);
        box-shadow: 0 6px 24px #0003;
        transform: translate3d(0px, 8px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
        transform-style: preserve-3d;
    }

    .planer-boxes-item > div svg {
        min-width: 32px;
    }

    .planer-boxes-item .button {
        margin-top: auto;
    }

.qualified-box-wrapper {
    margin-bottom: 24px;
}

.qualified-box {
    display: grid;
    gap: 16px;
    height: 100%;
    padding: 20px;
    border: 1.5px solid var(--color-lightgrey);
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    border-radius: 10px;
    transition: all 0.4s ease-in-out;
}

    .qualified-box:hover {
        border-color: var(--color-black);
        box-shadow: 0 12px 40px #0003;
        transform: translate3d(0px, 8px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
        transform-style: preserve-3d;
    }

.qualified-box-icon {
    width: 46px;
    min-width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-black);
    border-radius: 50%;
    color: var(--color-white);
    transition: all 0.4s ease-in-out;
}

.qualified-box-text p {
    font-size: 14px;
    margin-bottom: 0;
}

.tvet-control-box {
    background: var(--color-l-blue);
}

.individuals-motivated-text {
    color: var(--color-slc-blue);
}

.footer {
    background: #212529;
    padding: 48px 0;
}

.footer-title {
    color: var(--color-slc-blue);
}

.footer-info-wrapper > p,
.footer-info-wrapper > small {
    color: var(--color-gray);
    font-size: 14px;
}

.footer-info-wrapper a {
    color: var(--color-slc-blue);
}

.footer-list li a,
.footer-bottom-links a {
    font-size: 14px;
    color: var(--color-gray);
    text-decoration: none;
}

    .footer-list li a:hover,
    .footer-bottom-links a:hover {
        color: var(--color-white);
    }

.footer-bottom-links {
    border-top: 1px solid #ffffff0f;
}

    .footer-bottom-links > span {
        display: inline-block;
        margin: 0px 20px;
        color: var(--color-gray);
    }

.userview-wrapper {
    width: 100%;
    position: relative;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.navbar > .container .form-select {
    max-width: calc(100% - 22px);
}

.tip-img {
    filter: invert(0%) sepia(100%) saturate(4350%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

.login-mainbox .form-control {
    display: block;
    max-width: 100%;
}

@media screen and (min-width: 768px) {
    .hero-heading {
        font-size: 64px;
    }

    .planer-boxes {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .serv-flexbox {
        grid-template-columns: repeat(5, 1fr);
    }

    .serv-caption {
        padding: 20px 10px;
    }

    .navbar > .container .form-select {
        max-width: 100%;
    }
}

@media screen and (min-width: 992px) and (max-width: 1399px) {
    .notice-board {
        min-height: 12rem;
    }

    .serv-caption {
        padding: 20px 10px;
    }
}

@media screen and (min-width: 1200px) {
    .navbar-expand-lg .form-control {
        font-size: 16px;
    }
}

@media screen and (max-width: 991px) {
    body {
        font-size: 13px;
    }

    .searchform .form-select {
        font-size: 13px;
    }

    .container {
        max-width: 100%;
    }

    .qualified-box {
        height: auto;
    }

    .radio-btn-wrapper {
        gap: 10px;
    }

    .navbar-toggler {
        padding: 4px;
        order: 1;
    }

    .navbar .navbar-collapse {
        order: 1;
    }

    .user-right-box {
        margin: auto;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 6px 0px;
    }
}

@media screen and (max-width: 767px) {
    .button {
        gap: 6px;
        padding: 6px 10px;
        font-size: 13px;
    }

        .button svg {
            width: 20px;
            height: 20px;
        }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 6px 0px;
    }

    .images-slider .carousel-caption {
        right: 10%;
        left: 10%;
    }

    .hero-text-wrapper {
        margin-bottom: 20px;
    }

        .hero-text-wrapper > *:not(:last-child) {
            margin-bottom: 14px;
        }

        .hero-text-wrapper .description {
            font-size: 14px;
        }

        .hero-text-wrapper .btn {
            min-height: auto;
            padding: 10px 16px;
        }

    .qualified-box-wrapper {
        margin-bottom: 0;
    }

    .qualified-box {
        margin-bottom: 20px;
    }

    .notice-board {
        margin-top: 30px;
    }

    .footer {
        padding: 30px 0;
    }

    .footer-info-wrapper {
        margin-bottom: 20px;
    }

    .footer-bottom-links > span {
        margin: 0px 8px;
        font-size: 13px;
    }

    .footer-info-wrapper > p,
    .footer-info-wrapper > small,
    .footer-list li a,
    .footer-bottom-links a {
        font-size: 13px;
    }
}
