 

body 
{
    font-family: 'Segoe UI', sans-serif;
}

/* RED THEME */
.bg-primary-custom {
    background: linear-gradient(90deg, #8b0000, #ff4d4d);
    color: white;
}

.btn-primary {
    background-color: #cc0000;
    border: none;
}

.btn-primary:hover {
    background-color: #a30000;
}

/* NAV LINK BASE */
.custom-nav {
    position: relative;
    color: #333;
    font-weight: 500;
    transition: 0.3s ease;
}

/* HOVER EFFECT (RED) */
.custom-nav:hover {
    color: #cc0000 !important;
}

/* UNDERLINE EFFECT */
.custom-nav::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: 0;
    background-color: #cc0000;
    transition: width 0.3s ease;
}

/* HOVER UNDERLINE */
.custom-nav:hover::after {
    width: 100%;
}

/* ACTIVE LINK */
.custom-nav.active {
    color: #000 !important;
}

/* ACTIVE UNDERLINE (ALWAYS VISIBLE) */
.custom-nav.active::after {
    width: 100%;
}

.bg-gray{
    background: #edecec;
    border-radius: 10px;
}

.card {
    border-radius: 10px;
}

.job-img {
    width: 100%;
    height: 180px;
    object-fit: cover; /* prevents stretching */
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.card:hover {
    transform: translateY(-5px);
    transition: 0.3s ease;
}

.urgent-hire-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #cd2737 !important;  
    color: white !important;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 5px 0;
    z-index: 9999 !important;    
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
}

/* footer {
    background: #f8f9fa;
    padding: 40px 0;
} */

.footer {
    background-color: #7b7e81;
}

.footer h5, 
.footer h6 {
    color: #cc0000;
}

.footer p {
    color: #fff5f5;
}

.custom-input {
    height: 55px;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 15px;
}

.custom-input:focus {
    border-color: #cc0000;
    box-shadow: 0 0 0 0.15rem rgba(204, 0, 0, 0.2);
}

/* JOB DESCRIPTION STYLING */
.job-description {
    font-size: 17px;
    line-height: 1.9;
    color: #444;
}

/* Paragraph */
.job-description p {
    font-size: 18px;
    line-height: 1.9;
}

/* Headings */
.job-description h5 {
    font-size: 24px;
    color: #111;
}

/* Lists */
.job-description li {
    font-size: 17px;
    line-height: 1.8;
}

/* Form labels */
.form-label {
    font-size: 16px;
}

/* Buttons */
.btn {
    font-size: 15px;
}