: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-orange: #f84e1d;
    --color-pink: #e85656;
    --color-panel: #5b5b5b;
    --color-yellow: #ffab15;
    --color-purple: #5263ab;
    --color-d-purple: #764ba2;
}

body {
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 400;
}

.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-orange);
    border-color: var(--color-orange);
    color: var(--color-white);
}

.button_primary:hover {
    background-color: var(--color-white);
    color: var(--color-orange);
}

.button_secondary {
    background-color: #252525;
    border-color: #252525;
    color: var(--color-white);
}

.button_secondary:hover {
    background-color: var(--color-white);
    color: #252525;
}

.navbar-brand {
    max-width: 60px;
}

.navbar-expand-lg .navbar-nav .nav-link {
    font-size: 14px;
    padding: 6px 25px;
    color: var(--color-text);
}

.navbar-nav .dropdown-menu {
    padding: 0;
    border-radius: 0;
}

.navbar-nav .dropdown-menu li {
    background: var(--color-gray);
    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;
}

.search-button {
    position: absolute;
    top: 50%;
    right: 6px;
    border: 0;
    background: transparent;
    color: var(--color-d-gray);
    transform: translateY(-50%);
}

.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;
    height: 36px;
}

.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;
}

.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-orange);
    font-weight: 500;
    text-decoration: none;
}


/* 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-orange);
}

.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;
}

.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-orange);
}
.serv-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.serv-item::before {
    content: "";
    background-color: var(--color-orange);
    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;
}
h3 {
    font-size:1.74em !important; 
}

.notice-board {
    background: #ffffff;
    border: 1px solid var(--color-gray);
}

.notice-board-head {
    background: var(--color-l-blue);
}

.search-board {
    background: linear-gradient(180deg, #06234e, #06234eb0);
    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-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-orange);
}

.radio-btn-label .checkmark:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-orange);
    -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-orange);
}

.footer {
    background: #212529;
    padding: 48px 0;
}

.footer-title {
    color: var(--color-orange);
}

.footer-info-wrapper>p,
.footer-info-wrapper>small {
    color: var(--color-gray);
    font-size: 14px;
}

.footer-info-wrapper a {
    color: var(--color-orange);
}

.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;
}

@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;
    }
}

@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 .navbar-nav .nav-link {
        font-size: 16px;
        padding: 6px 16px;
    }
    .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 {
        margin-left: auto;
        padding: 4px;
    }
    .navbar .navbar-collapse {
        order: 1;
    }
    .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;
    }
}