body {
    background-color: #ffffff;
    font-family: Arial, sans-serif;
}
.custom-navbar {
    background: rgba(0, 0, 0, 0.6); /* semi-transparent black */
    backdrop-filter: blur(4px); /* smooth blur effect */
    -webkit-backdrop-filter: blur(4px); /* Safari support */
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* subtle divider */
}
.navbar-logo {
    height: 48px; /* adjust based on your design */
    width: auto;
}
/* Search Bar */
.search-container {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.search-container input {
    border-radius: 8px;
    padding: 12px;
    font-size: 1rem;
}
/* Job Cards */
.job-card {
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
    background: #dbdbdb;
    padding: 20px;
}
.job-card:hover {
    transform: scale(1.03);
}
.job-card h5 {
    font-weight: bold;
}
.job-card p {
    font-size: 0.95rem;
    margin-bottom: 5px;
}

/* Hidden job cards */
.not-live-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: red;
    color: white;
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: bold;
    z-index: 1;
    opacity: 1;
    filter: none;
}

.job-card.inactive {
    opacity: 0.5;
    filter: grayscale(100%);
}
.job-card.inactive:hover {
    transform: none;
}

/* End of Hidden job cards */

.btn-apply {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    font-weight: bold;
    padding: 12px;
    border-radius: 8px;
    transition: 0.3s;
}
.btn-apply:hover {
    background: linear-gradient(135deg, #0056b3, #003d80);
	color: white;
}

/* Responsive */
@media (max-width: 768px) {
.search-container {
    padding: 15px;
}
}
.filter-btn {
    background-color: #ddd;
    color: #333;
    border: none;
    border-radius: 2rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}
.filter-btn:hover {
    background-color: #ccc;
}
.dropdown-menu {
    min-width: 200px;
}
/* Gotham Light */
@font-face {
    font-family: 'Gotham';
    src: url('/_assets/fonts/Gotham-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}
/* Gotham Book (Regular) */
@font-face {
    font-family: 'Gotham';
    src: url('/_assets/fonts/Gotham-Book.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
/* Gotham Medium */
@font-face {
    font-family: 'Gotham';
    src: url('/_assets/fonts/Gotham-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
/* Gotham Bold */
@font-face {
    font-family: 'Gotham';
    src: url('/_assets/fonts/Gotham-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
.light-text {
    font-family: 'Gotham', sans-serif;
    font-weight: 300;
}
.regular-text {
    font-family: 'Gotham', sans-serif;
    font-weight: 400;
}

p {
    font-family: 'Gotham', sans-serif;
    font-weight: 400;
}

.medium-text {
    font-family: 'Gotham', sans-serif;
    font-weight: 500;
}
.bold-text {
    font-family: 'Gotham', sans-serif;
    font-weight: 700;
}
.brandSelect {
    background-color: #dbdbdb;
}
.jobTitleSelect {
    background-color: #dbdbdb;
}
.locationSelect {
    background-color: #dbdbdb;
}
.navbar-colour {
    background-color: gray;
}
/* Navbar gradient with transparency */
.bg-black-gradient {
    background: black;
    color: white;
    backdrop-filter: blur(4px); /* blur effect */
    -webkit-backdrop-filter: blur(4px);
}	

.fa {
  padding: 20px;
  font-size: 30px;
  width: 30px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
  border-radius: 50%;
}

.fa:hover {
    opacity: 0.7;
}

/* Social Icons */
.footer-socials {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding: 20px 0;
    background-color: #000; /* Black footer */
}

.social-icon {
    color: #fff; /* White icons */
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
}


.social-icon:hover {
    transform: scale(1.2);
}

.social-icon[aria-label="Facebook"]:hover {
    color: #1877f2;
}

.social-icon[aria-label="LinkedIn"]:hover {
    color: #0a66c2;
}

.social-icon[aria-label="Instagram"]:hover {
    color: #e1306c;
}

/* End of Social Icons */