/* ---------- GLOBAL ---------- */
body {
    background:#f5f7fb;
    font-family: system-ui, -apple-system, sans-serif;
}

/* ---------- LAYOUT ---------- */
.container {
    max-width:1150px;
    margin:auto;
    padding:30px 20px;
    display:flex;
    gap:25px;
}

.left {flex:2;}
.right {flex:1;}

/* ===================================== */
/* 🔥 HERO CARD */
/* ===================================== */

.job-hero-card {
    background: linear-gradient(135deg,#ffffff,#f8fbff);
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,0.08);
    margin-bottom:25px;
}

/* IMAGE */
.job-image-box {
    height:380px;
    background:linear-gradient(135deg,#eef2ff,#f0fdf4);
    display:flex;
    align-items:center;
    justify-content:center;
}

.job-image-box img {
    max-width:100%;
    max-height:100%;
    object-fit:contain;
}

/* CONTENT */
.job-hero-content {
    padding:24px;
}

/* TITLE */
.job-title {
    font-size:28px;
    font-weight:700;
    margin-bottom:10px;
    line-height:1.3;
}

/* META */
.job-meta {
    margin-bottom:15px;
}

.job-meta span {
    display:inline-flex;
    padding:6px 12px;
    border-radius:999px;
    font-size:13px;
    margin-right:8px;
    margin-bottom:8px;
}

/* COLORS */
.job-meta span:nth-child(1) {
    background:#e0f2fe;
    color:#0369a1;
}
.job-meta span:nth-child(2) {
    background:#fef3c7;
    color:#92400e;
}
.job-meta span:nth-child(3) {
    background:#dcfce7;
    color:#166534;
}

/* ACTION BAR */
.job-actions {
    margin-top:10px;
    display:flex;
    align-items:center;
    gap:12px;
}

/* SHARE BUTTON */
.share-btn {
    padding:8px 14px;
    border:none;
    border-radius:10px;
    background:#111827;
    color:#fff;
    font-size:13px;
    cursor:pointer;
}

/* DROPDOWN */
.share-wrapper {
    position:relative;
}

.share-dropdown {
    display:none;
    position:absolute;
    top:40px;
    left:0;
    background:#fff;
    border-radius:10px;
    padding:10px;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

.share-dropdown.active {
    display:block;
}

.share-dropdown a {
    display:block;
    padding:8px;
    font-size:13px;
    border-radius:6px;
}

.share-dropdown a:hover {
    background:#f1f5f9;
}

/* REPORT */
.report-btn {
    color:#dc2626;
    font-weight:500;
    font-size:13px;
}

/* ===================================== */
/* 🔥 CONTENT CARD */
/* ===================================== */

.job-content-card {
    background:#fff;
    padding:25px;
    border-radius:18px;
    box-shadow:0 12px 40px rgba(0,0,0,0.06);
    margin-bottom:25px;
}

.job-content {
    font-size:15px;
    line-height:1.8;
}

/* HEADINGS */
.job-content h2 {
    font-size:20px;
    margin:25px 0 10px;
}

.job-content p {
    margin-bottom:12px;
}

/* ===================================== */
/* 🔥 FAQ CARD */
/* ===================================== */

.faq-card {
    background:#fff;
    padding:25px;
    border-radius:18px;
    box-shadow:0 12px 40px rgba(0,0,0,0.05);
}

.faq-item {
    margin-bottom:10px;
}

.faq-question {
    width:100%;
    padding:12px;
    border:none;
    background:#f3f4f6;
    border-radius:10px;
    cursor:pointer;
}

.faq-answer {
    display:none;
    padding:10px;
    font-size:14px;
}

.faq-item.active .faq-answer {
    display:block;
}

/* ===================================== */
/* SIDEBAR */
/* ===================================== */

.sidebar {
    background:#fff;
    padding:18px;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    position:sticky;
    top:90px;
}

/* ===================================== */
/* APPLY BUTTON */
/* ===================================== */

.nm-apply-now-btn {
    position:fixed;
    bottom:20px;
    left:50%;
    transform:translateX(-50%);
    background:linear-gradient(135deg,#2563eb,#06b6d4);
    color:#fff;
    font-weight:600;
    text-align:center;
    border-radius:12px;
    box-shadow:0 12px 30px rgba(37,99,235,0.4);
    z-index:9999;
}

/* DESKTOP */
@media (min-width:1025px){
    .nm-apply-now-btn {
        width:320px;
        padding:14px 0;
    }
}

/* MOBILE */
@media (max-width:767px){

    .container {
        flex-direction:column;
    }

    .sidebar {
        position:static;
    }

    .nm-apply-now-btn {
        width:95%;
        padding:12px 0;
    }
}


/* ===================================== */
/* 🔥 PREMIUM FAQ */
/* ===================================== */

.faq-card {
    margin-top:25px;
    background:#ffffff;
    padding:25px;
    border-radius:18px;
    box-shadow:0 12px 40px rgba(0,0,0,0.05);
}

.faq-card h2 {
    margin-bottom:15px;
    font-size:22px;
    font-weight:600;
}

/* ITEM */
.faq-item {
    border:1px solid #e5e7eb;
    border-radius:12px;
    margin-bottom:12px;
    overflow:hidden;
    transition:0.3s;
}

/* QUESTION */
.faq-question {
    width:100%;
    text-align:left;
    padding:14px 16px;
    border:none;
    background:#f9fafb;
    font-size:14px;
    font-weight:500;
    cursor:pointer;
    position:relative;
}

/* ARROW */
.faq-question::after {
    content:"+";
    position:absolute;
    right:15px;
    font-size:18px;
    transition:0.3s;
}

/* ACTIVE STATE */
.faq-item.active .faq-question {
    background:#eef2ff;
}

/* CHANGE + TO - */
.faq-item.active .faq-question::after {
    content:"−";
}

/* ANSWER */
.faq-answer {
    max-height:0;
    overflow:hidden;
    padding:0 16px;
    font-size:14px;
    color:#555;
    transition:all 0.3s ease;
}

/* OPEN */
.faq-item.active .faq-answer {
    max-height:200px;
    padding:12px 16px;
}










/* ===================================== */
/* 🔥 APPLY AD SPACING */
/* ===================================== */

.apply-ad {
    margin: 20px 0 80px; /* नीचे space ताकि button overlap न करे */
    text-align: center;
}

.ad-box {
    margin: 20px 0;
    text-align: center;
}