/*----Header----*/

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

.top-bar {
    background-color: #1a2b4c;
    color: white;
    padding: 10px 0;
}

.top-bar .left-align {
    display: flex;
    align-items: center;
}

.top-bar .left-align a {
    color: white;
    margin-right: 15px;
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
}

.top-bar .right-align {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.top-bar .right-align a {
    color: white;
    margin-left: 15px;
}

.navbar-nav .nav-link {
    color: #1a2b4c;
    font-weight: 500;
}

.navbar-nav .nav-link.active {
    color: #ff4500;
}

.navbar-brand {
    font-size: 2rem;
    font-weight: 600;
}


/*----Footer----*/

.footer {
    padding: 40px 0;
    background-color: #0a2a45;
    color: #ffffff;
}

.footer h5 {
    font-size: 24px;
    margin-bottom: 20px;
}

.footer a {
    color: #ffffff;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer .quick-links,
.footer .newsletter h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
}

.footer .quick-links ul li {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
}

.footer .newsletter input[type="email"] {
    border: none;
    padding: 10px;
    width: calc(100% - 50px);
    display: inline-block;
    vertical-align: middle;
}

.footer .newsletter button {
    border: none;
    padding: 10px 15px;
    background-color: #ff5722;
    color: #ffffff;
    display: inline-block;
    width: 50px;
    vertical-align: middle;
}

.footer .newsletter {
    display: flex;
}

.footer .newsletter input[type="email"] {
    flex: 1;
}

.footer .newsletter button i {
    font-size: 16px;
}

.footer .copyright {
    border-top: 1px solid #ffffff;
    padding-top: 20px;
    margin-top: 20px;
    font-size: 14px;
    color: #b0b0b0;
}




/*---Search filter-----*/


.search-container {
    text-align: center;
    padding: 50px 0;
}

.search-container h1 {
    color: #ff4d4d;
    font-size: 36px;
    font-weight: bold;
}

.search-bar {
    position: relative;
    margin: 20px auto;
    width: 60%;
}

.search-bar input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    /* Adjusted padding to move text away from icon */
    border-radius: 50px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.search-bar i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #ccc;
}

.filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.filter-group select {
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.filter-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}


/*----Job Card ------*/

.job-alert {
    background-color: #ff5a5f;
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
}

.job-alert button {
    background-color: #002f6c;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
}

.job-card {
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.job-card .company-logo {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.job-card .job-details {
    display: flex;
    align-items: center;
}

.job-card .job-details div {
    margin-right: 10px;
}

.job-description {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.job-header {
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.btn-primary {
    background-color: #ff5a5f;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
}

.btn-outline-primary {
    background-color: white;
    color: #ff5a5f;
    border: 1px solid #ff5a5f;
    padding: 10px 20px;
    border-radius: 5px;
}

.btn-outline-primary:hover {
    background-color: #ff5a5f;
    border: 1px solid #ff5a5f;
    color: white;
}

.red {
    color: #ff5a5f;
}

.job-header .apply-btn {
    background-color: #ff5a5f;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    position: absolute;
    right: 20px;
    top: 20px;
    /* hide underline */
    text-decoration: none;
}

.job-header .job-meta {
    display: flex;
    align-items: center;
    margin-top: 10px;
    flex-wrap: wrap;
    line-height: 30px;
}

.job-header .job-meta div {
    margin-right: 10px;
}

.job-header .job-meta i {
    margin-right: 5px;
}

.job-header .extra-links {
    margin-top: 10px;
}

.job-header .extra-links a {
    margin-right: 10px;
    color: #ff5a5f;
    text-decoration: none;
}

.job-header .company-logo {
    width: 100px;
    height: auto;
    margin-right: 20px;
}
