body {
    background-color: #f8fafc;
}
.inner-hero {
    background-image: url("../img/home-2/header.webp");
    background-size: cover;
    background-position: center;
    padding-top: 180px;
    padding-bottom: 90px;
    position: relative;
    overflow: hidden;
}
.inner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.75); /* Highly readable dark slate overlay */
    z-index: 1;
}
.inner-hero .container {
    position: relative;
    z-index: 2;
}
.inner-hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, rgba(37, 99, 235, 0) 70%);
    border-radius: 50%;
}
.job-main-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.7);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.job-main-card:hover {
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.04);
}
.sidebar-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.7);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
    position: sticky;
    top: 120px;
}
.btn-premium {
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 16px 30px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}
.btn-premium:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
    color: white;
}
.badge-type {
    background: rgba(37, 99, 235, 0.08);
    color: #2563eb;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    border-radius: 30px;
    padding: 8px 18px;
    display: inline-block;
    text-transform: uppercase;
}
.fact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.5);
    transition: all 0.3s ease;
}
.fact-item:hover {
    background: #ffffff;
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
}
.fact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.08);
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}
.highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fffbeb;
    color: #d97706;
    border: 1px solid #fde68a;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
}
.bullet-point {
    position: relative;
    padding-left: 36px;
    margin-bottom: 16px;
    font-size: 15px;
    color: #4b5563;
    line-height: 24px;
}
.bullet-point svg {
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    color: #2563eb;
}
