*{
    box-sizing:border-box;
}

html,
body{
    overflow-x:hidden;
    max-width:100%;
}

/* ---------- 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;
    min-width:0;
}

.right{
    flex:1;
    min-width:0;
}

/* ===================================== */
/* 🔥 HERO CARD */
/* ===================================== */

.job-hero-card {
    background: linear-gradient(135deg,#ffffff,#f8fbff);
    border-radius:20px;
    overflow:visible;
    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;
}

.job-posted-date{
    background:#ede9fe;
    color:#5b21b6;
}

/* 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;
    display:inline-block;
}

.share-dropdown{

    position:absolute;

    top:110%;
    left:0;

    min-width:180px;

    background:#fff;

    border:1px solid #e5e7eb;

    border-radius:12px;

    padding:8px 0;

    box-shadow:0 12px 35px rgba(0,0,0,.12);

    z-index:9999;

    display:none;
}

.share-dropdown.active{
    display:block;
}

.share-dropdown a{

    display:block;

    padding:10px 14px;

    color:#111827;

    text-decoration:none;

    font-size:14px;

    white-space:nowrap;
}

.share-dropdown a:hover{
    background:#f3f4f6;
}

/* 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;
}





.job-content img,
.job-content iframe,
.job-content table{
    max-width:100%;
    height:auto;
}















.rr-breadcrumb{
    display:flex;
    flex-wrap:wrap;
    gap:6px;
    align-items:center;

    font-size:14px;
    line-height:1.6;

    margin-bottom:18px;
}



.rr-breadcrumb a{
    color:#2563eb;
    text-decoration:none;
}

.rr-breadcrumb a:hover{
    text-decoration:underline;
}

.rr-breadcrumb .current{
    color:#666;
}

.rr-separator{
    color:#999;
}




/* =====================================
   JOB DETAILS CARD
===================================== */

.job-details-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:18px;
    padding:22px;
    margin-bottom:20px;

    box-shadow:
        0 1px 3px rgba(0,0,0,.04),
        0 10px 30px rgba(15,23,42,.06);
}

/* TITLE */

.job-details-card h3{
    position:relative;

    margin:0 0 22px;
    padding-bottom:12px;

    font-size:24px;
    font-weight:700;
    color:#0f172a;
    line-height:1.2;
}

.job-details-card h3:after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;

    width:58px;
    height:4px;

    border-radius:999px;
    background:#2563eb;
}

/* ROW */

.detail-row{
    background:#f8fafc;
    border:1px solid #e5e7eb;

    border-radius:14px;

    padding:14px 16px;
    margin-bottom:12px;

    transition:all .2s ease;
}

.detail-row:last-child{
    margin-bottom:0;
}

.detail-row:hover{
    background:#ffffff;
    border-color:#cbd5e1;

    transform:translateY(-1px);

    box-shadow:
        0 4px 12px rgba(15,23,42,.05);
}

/* LABEL */

.detail-row strong{
    display:block;

    font-size:12px;
    font-weight:700;

    text-transform:uppercase;
    letter-spacing:.7px;

    color:#2563eb;

    margin-bottom:6px;
}

/* VALUE */

.detail-row span{
    display:block;

    font-size:15px;
    line-height:1.65;

    font-weight:600;
    color:#111827;

    word-break:break-word;
}

/* LINKS */

.detail-row a{
    color:#2563eb;
    text-decoration:none;
    font-weight:600;
}

.detail-row a:hover{
    text-decoration:underline;
}

/* PHONE */

.detail-row a[href^="tel:"]{
    color:#2563eb;
}

/* WHATSAPP */

.detail-row a[href*="wa.me"]{
    color:#16a34a;
}




/* JOB ACTIVITY SPECIAL */

.activity-row{
    background:#fff7ed;
    border-color:#fed7aa;
}

.activity-row strong{
    color:#ea580c;
}

/* ==========================
   POSITIONS AVAILABLE
========================== */

.positions-row{
    background:#f0fdf4;
    border-color:#bbf7d0;
}

.positions-row strong{
    color:#15803d;
}

.positions-row span{
    color:#166534;
    font-weight:700;
    line-height:1.8;
}

/* MOBILE */

@media (max-width:768px){

    .job-details-card{
        padding:18px;
    }

    .job-details-card h3{
        font-size:22px;
    }

    .detail-row{
        padding:13px;
    }

    .detail-row span{
        font-size:14px;
    }
}
