﻿body {
    font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
    color: #042333;
}

.section-container {
    padding: 40px 0;
}

.header-image-container {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.header-image {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 1024px) {
}

@media (max-width: 768px) {
    .header-image {
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .header-image {
        max-height: 250px;
    }
}

.small-image {
    display: none;
}

@media (max-width: 750px) {
    .large-image {
        display: none;
    }

    .small-image {
        display: block;
    }
}

.hidden {
    display: none;
}

/* General Landing Pages Layout */
.career-container,
.institutions-container,
.job-zone-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.career-card,
.institution-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    min-height: 60px;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    box-shadow: none;
    position: relative;
}

.career-card.expanded,
.institution-card.expanded {
    padding: 0;
}

.career-card-header,
.institution-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px 10px 15px;
    font-weight: bold;
    font-size: 16px;
    min-height: 60px;
    flex-grow: 1;
    position: relative;
}

.career-title,
.institution-title {
    font-size: 16px;
    word-wrap: break-word;
    white-space: normal;
    max-width: 70%;
}

.career-fit {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: right;
    flex-shrink: 0;
    color: #042333;
}

.career-card.expanded .career-fit::after {
    color: white;
}

.toggle-card {
    background-color: transparent;
    border: none;
    font-weight: bold;
    width: 30px;
    height: 30px;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: absolute;
    top: 0;
    right: 0;
    line-height: 1;
    z-index: 2;
}

.career-details,
.institution-details {
    display: none;
    padding: 15px;
    border-radius: 0 0 10px 10px;
    border-top: none;
}

.career-card.expanded .career-details,
.institution-card.expanded .institution-details {
    display: block;
}

.career-details .detail-item,
.institution-details .detail-item {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    margin-bottom: 10px;
    font-size: 14px;
}

.career-details .detail-title,
.institution-details .detail-title {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 5px;
    text-align: left;
    font-weight: bold;
}

.career-details .detail-value,
.institution-details .detail-value {
    font-size: 14px;
    margin-left: 29px;
}

.career-details .salary-details {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    margin-left: 29px;
    flex-wrap: wrap;
}

.career-details .salary-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2px;
    white-space: nowrap;
}

.career-details .salary-label {
    font-weight: bold;
}

.career-details .salary-value,
.career-details .salary-connector {
    font-size: 14px;
}

.career-details .salary-connector {
    content: "—";
    font-size: 14px;
}

.iconSvg {
    width: 50px;
}

.more-info-btn {
    display: block;
    background-color: #042333;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 10px;
    width: 100%;
    max-width: 200px;
    text-transform: uppercase;
    transition: background-color 0.3s ease-in-out;
    margin: auto;
    text-decoration: none;
    text-align: center;
}

.more-info-btn:hover {
    background-color: #005f91;
}

.bottom-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 20px auto;
    max-width: 900px;
}

.expand-print-btn,
.explore-another-btn,
.retake-profiler-btn,
.see-more-btn {
    display: inline-block;
    background-color: #042333;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    transition: background-color 0.3s ease-in-out;
    text-decoration: none;
    text-align: center;
}

.expand-print-btn:hover,
.explore-another-btn:hover,
.retake-profiler-btn:hover,
.see-more-btn:hover {
    background-color: #005f91;
}

.see-more-btn {
    display: block;
    background-color: #042333;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    transition: background-color 0.3s ease-in-out;
    text-decoration: none;
    text-align: center;
    margin: auto;
    margin-top: 20px;
}

.see-more-btn:hover {
    background-color: #005f91;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    /*align-items: center;*/
    gap: 20px;
    margin: auto;
    margin-top: 20px;
}

.header-left,
.header-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.header-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #042333;
}

.view-toggle-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.view-label {
    font-weight: bold;
    color: #042333;
}

.view-toggle-container label {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 10px;
}

.dropdown-label {
    font-weight: 600;
    margin-bottom: 5px;
    color: #042333;
}

.dropdown-select,
.degree-select {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    max-width: 250px;
    font-size: 14px;
    color: #042333;
}

.degree-select {
    width: 200px;
}

.description {
    font-size: 14px;
    line-height: 1.5;
    color: #042333;
}

.toggle-section {
    background-color: #042333;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 20px;
    cursor: pointer;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.toggle-section.expanded::after {
    content: "+";
}

.toggle-section:not(.expanded)::after {
    content: "-";
    margin-bottom: 3px;
}

.institutions-container, .career-container, .job-zone-content {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .career-container,
    .job-zone-content,
    .institutions-container {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .iconSvg {
        width: 25px;
    }

    .career-card,
    .institution-card {
        min-height: 50px;
    }

    .career-card-header,
    .institution-card-header {
        padding: 8px 43px 8px 12px;
        font-size: 14px;
        min-height: 50px;
    }

    .career-title,
    .institution-title {
        font-size: 14px;
        max-width: 70%;
    }

    .career-fit {
        font-size: 12px;
    }

    .toggle-card,
    .toggle-section {
        width: 25px;
        height: 25px;
        font-size: 18px;
        top: 8px;
        right: 8px;
    }

    .career-details,
    .institution-details {
        padding: 10px;
    }

    .career-details .detail-item,
    .institution-details .detail-item {
        gap: 3px;
        margin-bottom: 8px;
    }

    .career-details .detail-title,
    .institution-details .detail-title {
        font-size: 12px;
    }

    .career-details .detail-value,
    .institution-details .detail-value {
        font-size: 12px;
        margin-left: 21px;
    }

    .career-details .salary-details {
        gap: 2px;
        font-size: 12px;
        flex-wrap: wrap;
    }

    .career-details .salary-item {
        gap: 1px;
        white-space: nowrap;
    }

    .career-details .salary-label {
        font-size: 12px;
    }

    .career-details .salary-value {
        font-size: 12px;
    }

    .career-details .salary-connector {
        font-size: 12px;
    }

    .salary-item {
        font-size: 11px;
    }

    .salary-value {
        font-size: 12px;
    }

    .more-info-btn {
        padding: 6px 16px;
        font-size: 12px;
        max-width: 150px;
    }

    .bottom-buttons {
        flex-direction: column;
        gap: 10px;
        margin: 10px auto;
    }

    .expand-print-btn,
    .explore-another-btn,
    .retake-profiler-btn,
    .see-more-btn {
        width: 150px;
    }

    .header-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
    }

    .header-left,
    .header-right {
        width: 100%;
        align-items: center;
    }

    .dropdown-select {
        max-width: 100%;
    }

    .header-title {
        font-size: 18px;
    }

    .view-toggle-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .description {
        font-size: 13px;
    }

    .toggle-section {
        width: 25px;
        height: 25px;
        font-size: 18px;
    }

    .job-zone-header {
        padding: 8px 12px;
    }

    .job-zone-title-text {
        font-size: 14px;
    }

    .info-icon {
        width: 14px;
        height: 14px;
    }

    .toggle-and-dropdown-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .degree-dropdown-container {
        align-items: flex-start;
        width: 100%;
    }

    .degree-select {
        width: 100%;
        max-width: 250px;
    }

    .career-card,
    .institution-card {
        min-height: 50px;
    }

    .career-card-header,
    .institution-card-header {
        font-size: 14px;
        padding: 8px 43px 8px 12px;
        min-height: 50px;
    }

    .job-zone-header {
        padding: 8px 12px;
    }

    .job-zone-title-text {
        font-size: 14px;
    }
}


@media (min-width: 768px) {
    .career-container,
    .job-zone-content {
        grid-template-columns: 1fr 1fr;
    }

    .institutions-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media print {
    .more-info-btn,
    .toggle-card,
    .toggle-section,
    .expand-print-btn,
    .explore-another-btn,
    .retake-profiler-btn,
    .see-more-btn {
        display: none !important;
    }
}

#noCareers,
#noInstitutions {
    margin-top: 20px;
    display: none;
    text-align: center;
}

/*Salary page*/
.go-button {
    background-color: #042333;
    color: white;
    border: none;
    cursor: pointer;
    padding: 8px 16px;
    width: 60px;
    transition: background-color 0.3s border-radius: 25px;
}

.go-button:hover {
    background-color: #005f91;
}

.salary-range-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    color: #042333;
}

.salary-range-container label {
    font-weight: bold;
    font-size: 16px;
}

.salary-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.salary-input, .go-button {
    border: 1px solid #D9D9D9;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 14px;
    outline: none;
}

.salary-input {
    background-color: #F5F5F5;
    width: 120px;
    color: #333;
}

.salary-input::placeholder {
    color: #999;
    opacity: 1;
}

/*Matching Careers Page (some styles shared on majors and career pages)*/
.job-zone-section {
    margin-bottom: 15px;
    margin-top: 25px;
}

.job-zone-header,
.institutions-header,
.careers-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    position: relative;
    background-color: #ffffff;
    z-index: 1;
    overflow: visible;
}

.job-zone-header::after,
.institutions-header::after,
.careers-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #042333;
    z-index: 0;
}

.job-zone-title-text,
.institutions-title-text,
.careers-title-text {
    font-size: 1rem;
    font-weight: bold;
    color: #042333;
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
    z-index: 2;
}

.info-icon {
    width: 16px;
    height: 16px;
    cursor: pointer;
    position: relative;
}

.info-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.info-popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 90%;
}

.info-popup-header {
    background-color: #042333;
    color: white;
    padding: 15px;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-popup-title {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
}

.info-popup-close {
    background: none;
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.info-popup-body {
    padding: 15px;
    color: #042333;
    font-size: 14px;
    line-height: 1.5;
}

.info-popup-description {
    margin: 0;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .info-popup-content {
        width: 85%;
        max-width: 350px;
    }

    .info-popup-title {
        font-size: 14px;
    }

    .info-popup-description {
        font-size: 12px;
    }
}

.iDesc > p {
    margin: 0px auto !important;
}

.iDesc {
    margin-bottom: 10px;
}
/*Majors Page*/
.degree-dropdown-container {
    text-align: right;
    margin-bottom: 0;
}

.degree-dropdown-container label {
    /*display: block;*/
    margin-bottom: 5px;
    font-weight: 600;
    color: #042333;
    text-align: left;
}

.degree-select {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 200px;
    font-size: 14px;
    color: #042333;
}
/*Career Page*/
.career-info {
    padding-left: 0;
    padding-right: 0;
}

.occ-title {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.fit {
    font-size: x-large;
    font-weight: bold;
    text-transform: uppercase;
}

.insts, .occs {
    padding-left: 12px;
    padding-right: 12px;
}

.custom-fieldset {
    border: 1px solid #042333;
    padding: 1rem;
    border-radius: 5px;
    position: relative;
    height: 100%;
}

.custom-legend {
    font-weight: 600;
    font-size: 1rem;
    background: white;
    position: absolute;
    top: -0.7rem;
    left: 1rem;
    padding: 0 10px;
}

.toggle-and-dropdown-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
    width: 100%;
}

@media (max-width: 576px) {
    .custom-legend {
        font-size: 0.9rem;
        padding: 0 6px;
    }
}

@media (max-width: 280px) {
    .custom-legend {
        top: -1rem;
    }
}
/*Interest Profiler*/
#desc {
    text-align: center;
}

.styled-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 5px;
}

    .styled-table thead tr {
        text-align: center;
    }

    .styled-table thead td {
        padding: 10px;
    }

.emoji {
    width: 40px;
    height: auto;
}

.styled-table tbody tr:nth-child(odd) {
    background-color: #e0f2ff;
}

.styled-table tbody tr:nth-child(even) {
    background-color: #F2F2F2;
}

.question-text {
    padding: 10px;
    font-weight: bold;
    text-align: left;
}

.answers {
    text-align: center;
    padding: 10px;
}

.emoji-mobile {
    display: none;
    width: 25px;
    height: auto;
    margin-right: 10px;
}

.answers input[type="radio"] {
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .styled-table thead {
        display: none;
    }

    .styled-table tbody tr {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 10px;
        border-bottom: 1px solid #ddd;
        text-align: center;
    }

        .styled-table tbody tr td {
            text-align: center;
            padding: 8px;
        }

    .answers {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 5px;
    }

        .answers img.emoji-mobile {
            display: inline-block;
        }

        .answers input[type="radio"] {
            margin-left: 10px;
        }
}

.pagination-dots {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 5px;
}

    .dot.active {
        background-color: #333;
    }

#results {
    width: 100%;
}

.result-container {
    margin: auto;
    width: 80%;
    max-width: 600px;
    background-color: #cfeaf7;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.header {
    background-color: #042433;
    color: white;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    padding: 10px;
}

.content {
    display: flex;
    padding: 15px;
}

.interest-list {
    width: 40%;
}

.interest-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.score {
    width: 60px;
    height: 60px;
    background-color: #b0c4de;
    color: black;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    margin-right: 10px;
}

.area {
    font-size: 16px;
    font-weight: bold;
}

.description {
    font-size: 14px;
    line-height: 1.5;
}

#desc > p {
    margin-bottom: 5px;
}

@media (max-width: 600px) {
    .content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .interest-list {
        width: 100%;
    }

    .description {
        width: 100%;
        margin-top: 10px;
    }
}

.tooltip-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    max-width: 90%;
    background: #e6f2f7;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
    z-index: 1000;
}

.tooltip-header {
    background: #042433;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 15px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-tooltip {
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    background: none;
    color: white;
}

.tooltip-content {
    padding: 15px;
    max-height: 300px;
    overflow-y: auto;
}

    .tooltip-content h3 {
        font-size: 18px;
        color: #2c3e50;
        margin-bottom: 5px;
    }

    .tooltip-content p {
        font-size: 14px;
        color: #333;
        line-height: 1.5;
        margin-bottom: 10px;
    }

    .tooltip-content::-webkit-scrollbar {
        width: 6px;
    }

    .tooltip-content::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 5px;
    }

.tooltip-overlay {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

#resultBtn {
    background-color: #042433;
    color: white;
    font-size: larger;
    margin: 30px 0;
    transition: background-color 0.3s ease-in-out;
}

    #resultBtn:hover, .btnNav:hover, #home:hover, .resultsBtns:hover {
        background-color: #005f91 !important;
        color: white !important;
    }

#bottomNav, #steps {
    text-align: center;
}

.btnNav {
    border-radius: 25px;
    background-color: #042433 !important;
    color: white !important;
    margin: 0 5px;
    width: 150px;
    transition: background-color 0.3s ease-in-out;
}

#home, .resultsBtns {
    border-radius: 25px;
    background-color: #042433 !important;
    transition: background-color 0.3s ease-in-out;
    color: white !important;
    width: 150px;
}

#home, .resultsBtns {
    border-radius: 25px;
    background-color: #042433 !important;
    color: white !important;
    width: 250px;
}

#homeBtnSection {
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
    margin-bottom: 25px;
    text-align: center;
}

.bottomResultsBtns {
    margin-top: 25px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

#manualResults {
    margin-top: 25px;
    font-weight: bold;
}

.tooltip-trigger {
    cursor: pointer;
}
/*Index Page*/
.card {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
    text-align: center;
}

.card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    width: 100%;
    padding: 20px;
}

    .card-body .card-title {
        margin: 0 0 15px 0;
        font-size: 2rem;
        height: 8rem; /* Fixed height to accommodate 3 lines of text */
        display: flex;
        /*align-items: center;*/
        justify-content: center;
        flex-wrap: wrap;
    }

    .card-body .card-text {
        margin: 0 0 15px 0;
        font-size: 1.1rem;
        text-transform: uppercase;
        min-height: 45px; /* Consistent for h5 */
        display: flex;
        /*align-items: center;*/
        justify-content: center;
    }

    .card-body p {
        margin: 0 0 15px 0;
        flex-grow: 1;
        font-size: 1rem;
        min-height: 80px; /* Consistent for p */
        display: flex;
        /*align-items: center;*/
        justify-content: center;
    }

.card .form-control,
.card .btn {
    margin-top: 10px;
    margin-bottom: 10px;
    width: 80%;
    align-self: center;
}

.equal-height-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}
@media (max-width: 991px) {
    .card, .cards {
        margin-top: 15px;
        margin-bottom: 15px;
    }
    .card-body .card-title {
        height: 6rem !important;
    }
}
@media (max-width: 1199px) {
    .card-body .card-title {
        height: 10rem;
    }
}

    @media (max-width: 768px) {
        .card, .cards {
            margin-top: 15px;
            margin-bottom: 15px;
        }

        .card-body .card-title {
            height: auto !important; /* Allow flexibility on smaller screens */
            font-size: 1.8rem;
        }

        .card-body .card-text {
            min-height: auto;
        }

        .card-body p {
            min-height: auto;
        }
    }

    .occupation-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 20px;
    }

    .occupation-box {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        background-color: rgba(255,255,255,.11);
        padding: 20px;
        color: white;
        min-height: 100px;
        height: 100%;
        border-radius: 0;
    }

    .occupation-number {
        color: #FFC09E;
    }

    @media (max-width: 768px) {
        .occupation-grid {
            grid-template-columns: 1fr;
        }
    }

    .row {
        display: flex;
        align-items: stretch;
    }

    .overlay-container {
        position: relative;
        width: 100%;
        height: 100%;
    }

        .overlay-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

    .occupation-list {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-top: 15px;
    }

    .occupation-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px dotted #999;
        padding-bottom: 5px;
    }

    @media (max-width: 768px) {
        .col-md-4 {
            width: 100%;
            text-align: center;
            padding: 15px;
        }

        .col-md-8 {
            width: 100%;
            padding: 15px;
        }
    }

    .fastest-growing-title {
        font-size: 1.8rem;
        font-weight: bold;
        line-height: 1.2;
        text-transform: uppercase;
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    @media (max-width: 768px) {
        .fastest-growing-title {
            align-items: center;
            text-align: center;
        }
    }

    @media (max-width: 768px) {
        .card {
            margin-top: 15px;
            margin-bottom: 15px;
        }

        .occupation-grid {
            grid-template-columns: 1fr;
        }

        .fastest-growing-title {
            align-items: center;
            text-align: center;
        }
    }

    .k-input {
        width: 80%;
        margin: 10px 0;
    }

    .btnLandingSection {
        border-radius: 50px;
        transition: background-color 0.3s ease-in-out;
        background-color: #042333;
        color: white;
    }

        .btnLandingSection:hover {
            background-color: #005f91;
            color: white;
        }

    .ddSection {
        width: 100%;
        text-align: center;
    }

    .dd {
        margin: auto;
    }

    .homeLink {
        text-decoration: none;
        color: #042333
    }