

/* Job title highlighting */
.job-title {
    color: #FD6802;
    /* Blue color for job title */
    font-weight: bold;
    /* Bold job title */
    font-size: 24px;
    /* Larger job title font size */
    text-transform: capitalize;
    /* Capitalize the job title */
    margin-bottom: 10px;
}

.job-card {
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    background-color: #fafafa;
}

.job-card h3 {
    margin: 0;
}

.job-card .job-icon {
    width: 35px;
    height: 35px;
    margin-right: 10px;
    vertical-align: middle;
}

.read-more {
    background-color: #FD6802;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

.read-more:hover {
    background-color: #FD6802;
}

/* Icon container styling */
.bt_bb_icon_containers {
    width: 50px;
    height: 50px;
    background-color: #007bff;
    /* Blue background */
    border-radius: 50%;
    /* Circular container */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.bt_bb_icons {
    font-size: 24px;
    color: #fff;
    /* Icon size */
}

