 

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;
}

/* footer {
    background: #f8f9fa;
    padding: 40px 0;
} */

.footer {
    background-color: #7b7e81;
}

.footer h5, 
.footer h6 {
    color: #cc0000;
}

.footer p {
    color: #fff5f5;
}