.modalBackdropApply {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    backdrop-filter: blur(0px);
    background-color: rgba(0,0,0,0);
    transition: opacity 0.3s ease, backdrop-filter 0.3s ease, background-color 0.3s ease;
    z-index: 1000;
    pointer-events: none;
}

.modalBackdropApply.active {
    opacity: 1;
    backdrop-filter: blur(6px);
    background-color: rgba(0,0,0,0.5);
    pointer-events: all;
}

.modalContainerApply {
    background-color: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    width: 550px;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -80%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.modalContainerApply.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    pointer-events: auto;
    z-index: 9999;
}



.modalTitle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.modalTitle h1 {
    font-size: 36px;
    line-height: normal;
    color: #000;
}

.modalTitle h1 span {
    color: #007bff;
}

.modalTitle p {
    color: #000000bb;
    font-size: 18px;
}

.modalTitle a {
    color: #000000bb;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.modalTitle a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}


.modalContainerApply ul {
    padding-left: 20px;
    margin-top: 8px;
}

.modalContainerApply li {
    font-size: 18px;
    color: #333;
    margin-bottom: 6px;
}


.modalContainerApply p {
    font-size: 18px;
    color: #444;
    line-height: 1.5;
    margin-bottom: 12px;
}

.closeBtnApply {
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    background: transparent;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    color: black;
    transition: all 0.2s ease;
}

.closeBtnApply svg {
    width: 15px;
    height: 15px;
}


@media (max-width: 1024px) {
    .modalContainerApply {
        width: 90%;
        padding: 20px;
        max-height: 90vh;
        overflow-y: auto;
    }

    .modalTitle h1 {
        font-size: 28px;
    }

    .modalTitle p,
    .modalTitle a,
    .modalContainerApply p,
    .modalContainerApply li {
        font-size: 16px;
    }
}


@media (max-width: 576px) {
    .modalContainerApply {
        width: 95%;
        padding: 15px;
        max-height: 90vh;
        overflow-y: auto;
    }

    .modalTitle h1 {
        font-size: 24px;
        text-align: center;
    }

    .modalTitle p,
    .modalTitle a,
    .modalContainerApply p,
    .modalContainerApply li {
        font-size: 14px;
    }

    .modalContainerApply ul {
        padding-left: 15px;
    }

    .closeBtnApply svg {
        width: 14px;
        height: 14px;
    }
}


.card {
    max-width: 20rem;
    min-height: 22rem;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 2.25rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    position: relative;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cardHeader {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 15px 25px 0 25px;
}

.date {
    font-size: 14px;
    color: #555;
}


.cardBody {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 1.25em;
    text-align: center;
}

.cardBody h3 {
    color: #000;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cardBody p {
    color: #444;
    font-size: 15px;
    margin-bottom: 1rem;
}

.cardSvg {
    margin-top: 1rem;
    max-height: 100px;
}

.cardSvg img {
    display: block;
    max-height: 100px;
    object-fit: contain;
}


.cardFooter {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f9f9f9;
    border-bottom-left-radius: 2.25rem;
    border-bottom-right-radius: 2.25rem;
}

.tagMode {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    background: #eaeaea;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: #333;
}

.tagModeDot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}


.tagMode[data-mode="2"] .tagModeDot,
.tagMode[data-mode="2"] .tagModeDot {
    background: #ff5722;
}

.tagMode[data-mode="1"] .tagModeDot,
.tagMode[data-mode="1"] .tagModeDot {
    background: #07c500;
}

.tagMode[data-mode="Internship"] .tagModeDot,
.tagMode[data-mode="Պրակտիկա"] .tagModeDot {
    background: transparent;
    border: 2px solid #007bff;
}

.tagMode[data-mode="Remote"] .tagModeDot,
.tagMode[data-mode="Հեռակա"] .tagModeDot {
    background: #4caf50;
}

.tagMode[data-mode="3"] .tagModeDot,
.tagMode[data-mode="3"] .tagModeDot {
    background: #ffc107;
}

.tagMode[data-mode="4"] .tagModeDot,
.tagMode[data-mode="4"] .tagModeDot {
    background: #5236f4;
}




.applyBtn {
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.applyBtn:hover {
    background-color: #0056b3;
}

.tooltip {
    color: #fff;
    padding: 3px 8px;
    font-size: 12px;
    border-radius: 6px;
    white-space: nowrap;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(150, 150, 150, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

@media (max-width: 1024px) {
    .tooltip {
        display: none;
    }
}

.card {
    transition: transform 0.3s;
}



.heroContainer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 120px;
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 40%;
}

.heroImage {
    display: block;
    width: 50%;
}

.heroImage img {
    display: block;
    object-fit: contain;
    width: 100%;
    height: auto;
    border: none;
    border-radius: 15px;
}

.heroTitle {
    font-size: 56px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
}

.highlight {
    color: #007bff;
}

.heroSubtitle {
    font-size: 18px;
    max-width: 80%;
}

.ctaButtons {
    margin-top: 40px;
    display: flex;
    gap: 15px;
}

.btnPrimary,
.btnSecondary {
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btnPrimary {
    background: #007bff;
    color: #fff;
}

.btnPrimary:hover {
    background: #0056b3;
}

.btnSecondary {
    background: transparent;
    color: #007bff;
    border: 2px solid #007bff;
}

.btnPrimary {
    border: 2px solid #007bff;
}

.btnSecondary:hover {
    background: rgba(0, 123, 255, 0.2);
}

@media (max-width: 1024px) {
    .heroContainer {
        flex-direction: column;
        align-items: center;
        text-align: left;
        margin-bottom: 80px;
    }

    .hero,
    .heroImage {
        width: 100%;
    }

    .heroTitle {
        font-size: 42px;
        margin-bottom: 20px;
        max-width: 60%;
    }

    .heroSubtitle {
        font-size: 18px;
        max-width: 50%;
    }

    .ctaButtons {
        margin: 40px 0;
        display: flex;
        gap: 15px;
    }
}

@media (max-width: 576px) {

    .heroContainer {
        margin-bottom: 60px;
    }

    .heroTitle {
        font-size: 32px;
        max-width: 100%;
    }

    .heroSubtitle {
        font-size: 16px;
        max-width: 100%;
    }

    .btnPrimary,
    .btnSecondary {
        width: 100%;
        text-align: center;
        padding: 14px;
    }

    .ctaButtons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin: 20px 0;
    }

    .btnPrimary,
    .btnSecondary {
        padding: 8px 10px;
        border-radius: 6px;
        font-size: 14px;
        font-weight: bold;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
    }
}



.jobModalBackdrop {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    backdrop-filter: blur(0px);
    background-color: rgba(0,0,0,0);
    transition: opacity 0.3s ease, backdrop-filter 0.3s ease, background-color 0.3s ease;
    z-index: 1000;
    pointer-events: none;
}

.jobModalBackdrop.active {
    opacity: 1;
    backdrop-filter: blur(6px);
    background-color: rgba(0,0,0,0.5);
    pointer-events: all;
}

.JobModalContainer {
    background-color: #fff;
    border-radius: 15px;
    width: 650px;
    max-height: 600px;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -80%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #000;
}

.JobModalContainer.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    pointer-events: auto;
    z-index: 9999;
}




.closeBtnJob {
    position: absolute;
    top: 15px;
    right: 15px;
    border: none;
    background: transparent;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    color: black;
    transition: all 0.2s ease;
}

.closeBtnJob svg {
    width: 15px;
    height: 15px;
}

.header {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    padding: 15px 25px 10px 25px;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    height: auto;
    max-height: 380px;
    overflow: auto;
    padding: 10px 25px;
}

.divider {
    width: 100%;
    height: 1px;
    background-color: rgb(207, 207, 207);
}

.JobModalContainer h2 {
    font-size: 32px;
    margin-bottom: 5px;
}

.JobModalContainer h4 {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 500;
}

.JobModalContainer ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 15px;
}

.JobModalContainer p.intro {
    font-size: 16px;
    margin-bottom: 10px;
}

.email{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.email p{
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    color: #3d3d3d;
}

.email a {
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    color: black;
}

.email a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}


@media (max-width: 1024px) {
    .JobModalContainer {
        width: 90%;
        padding: 0;
    }

    .JobModalContainer h2 {
        font-size: 26px;
    }

    .JobModalContainer h4 {
        font-size: 16px;
    }

    .JobModalContainer p.intro,
    .JobModalContainer p,
    .JobModalContainer li {
        font-size: 15px;
    }

    .email p,
    .email a {
        font-size: 15px;
    }

    .header,
    .content {
        padding: 15px 20px;
    }
}

@media (max-width: 576px) {
    .JobModalContainer {
        width: 95%;
        padding: 0;
        max-height: fit-content;
        overflow-y: auto;
    }

    .JobModalContainer h2 {
        font-size: 22px;
    }

    .JobModalContainer h4 {
        font-size: 15px;
        margin-top: 15px;
    }

    .JobModalContainer p.intro,
    .JobModalContainer p,
    .JobModalContainer li {
        font-size: 14px;
    }

    .email p,
    .email a {
        font-size: 14px;
        text-align: center;
    }

    .closeBtnJob svg {
        width: 14px;
        height: 14px;
    }

    .header,
    .content {
        padding: 15px;
        max-height: 100%;
    }
}



.faqContainer {
    width: 100%;
    max-width: 1024px;
    margin: 120px auto 0 auto;
    padding: 20px;
    border-radius: 10px;
}

.titleFaq {
    text-align: center;
    font-size: 58px;
    font-weight: bold;
    margin-bottom: 60px;

}

.faqList {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faqItem {
    background: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
}

.question {
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    color: #000;
    border-radius: 8px;
    transition: all 0.3s ease;

}

.question:hover {
    background-color: #007bff;
    color: #fff;
    transition: all 0.3s ease;
}

.icon {
    font-size: 20px;
}

.answerWrapper {
    overflow: hidden;
}

.answer {
    padding: 10px 15px;
    font-size: 16px;
    background: white;
    color: #333;
    border-top: 1px solid #dddddd62;
}



@media (max-width: 1024px) {
    .faqContainer {
        padding: 0;
        margin-top: 80px;
    }

    .titleFaq {
        font-size: 42px;
        margin-bottom: 40px;
    }

    .question {
        font-size: 16px;
        padding: 12px;
    }

    .answer {
        font-size: 15px;
        padding: 10px 12px;
    }

    .icon {
        font-size: 18px;
    }
}



@media (max-width: 576px) {
    .faqContainer {
        padding: 0;
        margin-top: 60px;
    }

    .titleFaq {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .question {
        font-size: 15px;
        padding: 10px;
    }

    .answer {
        font-size: 14px;
        padding: 8px 10px;
    }

    .icon {
        font-size: 16px;
    }
}


.emptyState {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: fit-content;
    border: 1px solid #ffb700;
    border-radius: 10px;
    padding: 15px;
    background-color: #fff0d1;
}

.emptyState h3 {
    font-size: 14px;
    color: #000;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 10px;
}
.emptyState span {
    font-size: 14px;
    color: #000;
    line-height: 1.3;
    margin-bottom: 20px;
}

.emptyState button {
    width: fit-content;
    padding: 6px 12px;
    border: 1px solid #868aa5;
    border-radius: 15px;
    background-color: transparent;
    font-size: 14px;
    color: black;
    cursor: pointer;
    transition: all 0.3s ease;
}

.emptyState button:hover {
    background-color: #868aa5;
    color: #fff;
    transition: all 0.3s ease;
}



.careersListWrapper {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
}

.courseList {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
    gap: 20px;
    width: 100%;
}


.filterContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

.filterContainer h1 {
    font-size: 58px;
    line-height: 1;
    margin-bottom: 20px;
}

.filterContainer p {
    font-size: 21px;
    line-height: 1;
    margin-bottom: 60px;
    max-width: 800px;
    text-align: center;
}

.filters {
    display: flex;
    justify-content: center;
    align-items: end;
    gap: 15px;
    margin: 0 auto 60px auto;
    width: 100%;
    max-width: fit-content;
}


.tabs {
    display: flex;
    gap: 10px;
}

.tabs button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: #f0f0f0;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
}

.tabs button:hover,
.tabs button.active {
    background: #000;
    color: #fff;
    transition: all 0.3s ease;
}


.searchInput {
    padding: 10px;
    border: 1px solid #020202;
    border-radius: 20px;
    width: 300px;
    outline: none;
    transition: border 0.3s ease-in-out;
}

.searchInput:focus {
    border: 1px solid #007bff;
}


.tabsContainer {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
}



.modeContainer,
.tabsContainer,
.searchContainer {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
}
.modes {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.modesLabel,
.tabsLabel,
.searchLabel {
    font-size: 14px;
    font-weight: bold;
    color: #00000096;
    margin: 5px 0 0 5px;
}

.modeButton {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: #f0f0f0;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
}

.modeButton:hover,
.modeButton.active {
    background: #000;
    color: #fff;
    transition: all 0.3s ease;
}

.modeButton .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}


.modeButton[data-mode="Օֆլայն"] .dot,
.modeButton[data-mode="Offline"] .dot {
    background: #ff5722;
}

.modeButton[data-mode="Օնլայն"] .dot,
.modeButton[data-mode="Online"] .dot {
    background: #07c500;
}

.modeButton[data-mode="Internship"] .dot,
.modeButton[data-mode="Պրակտիկա"] .dot {
    background: transparent;
    border: 2px solid #007bff;
}

.modeButton[data-mode="Remote"] .dot,
.modeButton[data-mode="Հեռակա"] .dot {
    background: #4caf50;
}

.modeButton[data-mode="Հիբրիդ"] .dot,
.modeButton[data-mode="Hybrid"] .dot {
    background: #ffc107;
}

.modeButton[data-mode="Գրասենյակում"] .dot,
.modeButton[data-mode="On-site"] .dot {
    background: #5236f4;
}

@media (max-width: 1024px) {
    .filterContainer h1 {
        font-size: 42px;
        text-align: center;
    }

    .filterContainer p {
        font-size: 18px;
        margin-bottom: 40px;
        padding: 0 20px;
    }

    .filters {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        max-width: 100%;
        margin-bottom: 40px;
    }

    .searchContainer {
        width: 100%;
        max-width: 350px;
    }

    .searchInput {
        width: 100%;
        max-width: 100%;
    }

    .tabs,
    .modes {
        flex-wrap: wrap;
        justify-content: center;
    }
}


@media (max-width: 576px) {
    .filterContainer h1 {
        font-size: 32px;
    }

    .filterContainer p {
        font-size: 16px;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .filters {
        gap: 20px;
    }

    .tabs button,
    .modeButton {
        font-size: 13px;
        padding: 8px 12px;
        border-radius: 16px;
    }

    .searchContainer {
        width: 100%;
        max-width: 350px;
    }

    .searchInput {
        width: 100%;
        font-size: 14px;
        padding: 8px 12px;
    }

    .modesLabel,
    .tabsLabel,
    .searchLabel {
        font-size: 13px;
        margin-left: 0;
        text-align: left;
        width: 100%;
    }

    .modes,
    .tabs {
        gap: 5px;
        width: 100%;
    }
}
