:where([class^="ri-"])::before {
    content: "\f3c2";
}

body {
    font-family: 'Poppins', sans-serif;
}

/*hero-section*/
.hero-section {
    height: 400px;
}

.hero-bg {
    background-image: linear-gradient(to right, rgba(0, 33, 87, 0.9), rgba(0, 33, 87, 0.6), rgba(0, 33, 87, 0.2)),
        url('https://public.readdy.ai/ai/img_res/614887023826658693789fbb17f9077d.jpg');
    background-size: cover;
    background-position: center;
    width: auto;
    padding-top: 30px;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.truncate {
    justify-content: left;
    max-width: 130px;
    white-space: wrap;
    text-overflow: ellipsis;
    width: 100%;
}

.row-icon {
    margin-right: 10px;
}

/* Responsive Design  */
@media (max-width: 1024px) {

    .table-container {
        border: none;
        box-shadow: none;
    }

    table thead {
        display: none;
    }

    table tr {
        display: block;
        margin-bottom: 2rem;
        border: 1px solid #e5e7eb;
        border-radius: 0.5rem;
        background-color: #0021571A;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        padding: 1.5rem 0.75rem;
    }

    table td {
        display: flex;
        justify-content: space-between;
        padding: 0.5rem 0;
        border: none;
        text-align: left;
        justify-content: left;
    }

    table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #002157;
    }

    .truncate h3 {
        font-size: 1.2rem;
        font-weight: bold;
        line-height: 1.5rem
    }

    table td:first-child {
        background: rgb(249 250 251/var(--tw-bg-opacity));
        color: black;
        border-radius: 25px;
        justify-content: center;
    }

    table td:last-child {
        justify-content: center;
    }

    .skill-container {
        justify-content: left;
    }

    .job-description-btn {
        padding: 10px 2rem;
    }

}