.courseListWrapper {
    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%;
    }
}



.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;
    }
}



.card {
    max-width: 25rem;
    min-height: 28rem;
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 2.25rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}


.cardHeader {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px 15px 25px;
    border-bottom: 1px solid #f5f5f5;
}

.date {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.courseType {
    font-size: 12px;
    color: #007bff;
    font-weight: 600;
    background: #f0f8ff;
    padding: 4px 12px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


.cardBody {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    flex-grow: 1;
    gap: 15px;
}

.cardBody:hover {
    text-decoration: none;
    color: inherit;
}


.titleSection {
    text-align: center;
    width: 100%;
}

.titleSection h3 {
    color: #2c3e50;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.titleSection p {
    color: #6c757d;
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
}


.courseDetails {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.detailRow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.detailLabel {
    font-size: 13px;
    color: #6c757d;
    font-weight: 500;
    flex-shrink: 0;
}

.detailValue {
    font-size: 13px;
    color: #2c3e50;
    font-weight: 600;
    text-align: right;
}

.priceTag {
    font-size: 14px;
    color: #007bff;
    font-weight: 700;
    background: #e3f2fd;
    padding: 4px 10px;
    border-radius: 8px;
    text-align: right;
}


.cardSvg {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100px;
    margin: 10px 0;
    padding: 10px;
}

.cardSvg>div {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cardSvg svg {
    width: 80px !important;
    height: 80px !important;
    max-width: 80px;
    max-height: 80px;
    object-fit: contain;
}

.cardSvg img {
    width: 80px;
    height: 80px;
    max-width: 80px;
    max-height: 80px;
    object-fit: contain;
}


.progress {
    width: 100%;
    margin-top: auto;
}

.progressDesc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 8px;
}

.progress p {
    color: #2c3e50;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.progress span {
    color: #007bff;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.progressBar {
    width: 100%;
    background: #e9ecef;
    height: 6px;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.progressFill {
    height: 100%;
    background: linear-gradient(90deg, #007bff 0%, #0056b3 100%);
    border-radius: 3px;
    transition: width 0.3s ease;
}


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

.btnCountdown {
    background: #34495e;
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btnCountdown:hover {
    background: #4a5a6a;
}

.tagMode {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: #fff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.tagModeDot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

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

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

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


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

.registerBtnCourse {
    background: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
    border: 1px solid #007bff;
    transition: all 0.3s ease-in-out;
}

.registerBtnCourse:focus {
    outline: none !important;
    box-shadow: none !important;
}



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

    .card {
        max-width: 24rem;
        min-height: 26rem;
    }

    .cardHeader {
        padding: 15px 20px 10px 20px;
    }

    .cardBody {
        padding: 15px;
        gap: 12px;
    }

    .titleSection h3 {
        font-size: 18px;
    }

    .cardFooter {
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .card {
        max-width: 100%;
        min-height: 24rem;
    }

    .cardHeader {
        padding: 12px 15px 8px 15px;
    }

    .cardBody {
        padding: 12px;
        gap: 10px;
    }

    .titleSection h3 {
        font-size: 16px;
    }

    .titleSection p {
        font-size: 13px;
    }

    .courseDetails {
        padding: 12px;
    }

    .detailLabel,
    .detailValue {
        font-size: 12px;
    }

    .priceTag {
        font-size: 13px;
        padding: 3px 8px;
    }

    .cardSvg {
        height: 80px;
        padding: 8px;
    }

    .cardSvg>div {
        width: 60px;
        height: 60px;
    }

    .cardSvg svg,
    .cardSvg img {
        width: 60px !important;
        height: 60px !important;
        max-width: 60px;
        max-height: 60px;
    }

    .cardFooter {
        padding: 12px;
    }

    .btnCountdown {
        padding: 6px 12px;
        font-size: 12px;
    }

    .tagMode {
        padding: 6px 10px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .card {
        max-width: 100%;
        min-height: 22rem;
    }

    .cardHeader {
        flex-direction: row;
        gap: 8px;
        align-items: center;
    }

    .courseType {
        font-size: 11px;
        padding: 3px 8px;
    }

    .titleSection h3 {
        font-size: 15px;
    }

    .courseDetails {
        padding: 10px;
        gap: 6px;
    }

    .detailRow {
        flex-direction: row;
        align-items: center;
        gap: 2px;
        line-height: 20px;
    }

    .detailValue,
    .priceTag {
        align-self: flex-end;
    }

    .cardSvg {
        height: 70px;
        padding: 5px;
    }

    .cardSvg>div {
        width: 50px;
        height: 50px;
    }

    .cardSvg svg,
    .cardSvg img {
        width: 50px !important;
        height: 50px !important;
        max-width: 50px;
        max-height: 50px;
    }

}


.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;
    }
}


.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;
}


.container {
    background-color: #111;
    border-radius: 20px;
    margin-top: 120px;
    padding: 60px 40px;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.title {
    color: #fff;
    font-size: 58px;
    font-weight: 500;
    margin-bottom: 40px;
}


.form {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
}


.input {
    background-color: transparent;
    border: 1px solid #555;
    padding: 12px 15px;
    border-radius: 5px;
    color: #f7f7f7 !important;
    font-size: 16px;
    width: 250px !important;
    height: 50px;
    text-align: left;
}

.input::placeholder {
    color: #afafaf;
}

.input:focus {
    border-color: #888;
    outline: none;
    color: #fff;
}


.buttonContact {
    display: inline-block;
    padding: 12px 20px;
    background: transparent;
    color: white;
    text-decoration: none;
    border: 1px solid #828282;
    border-radius: 10px;
    font-size: 21px;
    line-height: 1;
    transition: background 0.3s ease;
    cursor: pointer;
}

.buttonContact:hover {
    background-color: #666;
}


.checkboxGroup {
    margin-top: 35px;
    color: #bbb;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    cursor: pointer;
}


.checkbox {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #888;
    border-radius: 4px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}


.checkbox:checked {
    background-color: #444;
    border-color: #fff;
    position: relative;
}


.checkbox:checked::after {
    content: "✔";
    font-size: 12px;
    color: #fff;
    position: absolute;
    top: 1px;
    left: 4px;
}


.checkbox:hover {
    border-color: #fff;
}


.link {
    color: #fff;
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}


.error {
    color: #ff4d4d;
    font-size: 12px;
    margin-top: 5px;
    display: block;
    text-align: left;
}


@media (max-width: 1024px) {
    .container {
        padding: 40px 30px;
    }

    .title {
        font-size: 42px;
    }

    .form {
        gap: 10px;
        flex-direction: column;
    }
    .form div {
        width: 100%;
    }
    .input {
        width: 100% !important;
    }

    .buttonContact {
        font-size: 18px;
        padding: 10px 16px;
        width: 100%;
    }
}


@media (max-width: 610px) {
    .container {
        padding: 30px 20px;
        margin-top: 60px;
    }

    .title {
        font-size: 32px;
    }

    .form {
        flex-direction: column;
        gap: 8px;
    }

    .form div {
        width: 100%;
    }

    .input {
        width: 100% !important;
        max-width: 100%;
    }

    .buttonContact {
        width: 100%;
        font-size: 16px;
        padding: 10px;
    }

    .checkboxGroup {
        gap: 8px;
        font-size: 14px;
    }

    .checkboxGroup label {
        text-align: left;
    }

    .checkboxGroup input {
        min-width: 20px;
        width: 20px;
        height: 20px;
    }
}



input[type="text"],
input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    color: black;
    transition: all 0.2s;
}

input[type="text"]:focus,
input[type="email"]:focus {
    border: 1px solid #007bff;
}


.error {
    color: #ff4d4d;
    font-size: 12px;
    margin-top: 5px;
    display: block;
    text-align: left;
}


@media (max-width: 1024px) {
    input[type="text"],
    input[type="email"] {
        font-size: 16px;
    }
}


@media (max-width: 576px) {
    input[type="text"],
    input[type="email"] {
        font-size: 13px;
        padding: 8px;
    }
}
