body {
    background-color: #f8eed1;
    font-family: 'Times New Roman', serif;
    color: #000;
}

/* ===== JOB HEADER SECTION ===== */
.job-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #DBD8D7;
    border-bottom: 2px solid #f1c75b;
    padding: 20px 40px;
    flex-wrap: wrap;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.job-left img {
    height: 100px;
    border-radius: 10px;
}
.job-center {
    flex: 1;
    text-align: center;
    color: #f1c75b;
}
.job-center h2 {
    margin: 5px 0;
    font-size: 30px;
    font-weight: 700;
    color: #750000;
}
.job-center p {
    margin: 3px 0;
    font-size: 20px;
    font-weight: 500;
    color: #000000;
}
.job-right {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}
.job-right a {
    background-color: #f1c75b;
    color: #000;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
    width: 190px;
    text-align: center;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}
.job-right a:hover {
    background-color: #000;
    color: #f1c75b;
    transform: scale(1.05);
}

/* ===== CONTAINER ===== */
.container {
    width: 90%;
    margin: 30px auto;
    background: #fffdf6;
    border: 1px solid #c2a463;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}
.short-desc {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.6;
    text-align: justify;
}

/* ===== TWO COLUMN BOXES ===== */
.table-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.table-box {
    border: 1px solid #c2a463 !important;
    border-radius: 8px !important;
    background: #fdfcf7 !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05) !important;
    overflow: hidden !important;   /* ⭐ Ad kabhi bahar nahi nikal sakti */
}
.table-box ins.adsbygoogle {
    width: 100% !important;        /* ⭐ Column ke barabar hi rahegi */
    display: block !important;
}
.table-box h3 {
    margin: 0;
    background-color: #a5752b;
    color: white;
    padding: 10px;
    text-align: center;
    border-radius: 8px 8px 0 0;
    font-size: 20px;
}
.table-box table {
    width: 100%;
    border-collapse: collapse;
}
.table-box td {
    padding: 10px 14px;
    border-bottom: 1px solid #e5d3a5;
    font-size: 17px;
}

/* ===== ELIGIBILITY TABLE ===== */
.section {
    border: 1px solid #c2a463;
    border-radius: 8px;
    margin-top: 25px;
    background: #fdfcf7;
}
.section h3 {
    margin: 0;
    background-color: #a5752b;
    color: white;
    padding: 10px;
    text-align: center;
    border-radius: 8px 8px 0 0;
}
.section table {
    width: 100%;
    border-collapse: collapse;
}
.section th, .section td {
    border: 1px solid #e5d3a5;
    padding: 10px;
    text-align: center;
}
.section th {
    background-color: #f8eed1;
    color: #000;
    font-weight: bold;
}
.section p {
    padding: 12px 15px;
    margin: 0;
    font-size: 17px;
}

/* ===== EXAM PATTERN ===== */
.exam-table {
    border: 1px solid #c2a463;
    border-radius: 8px;
    background: #fdfcf7;
    margin-top: 25px;
}
.exam-table h3 {
    margin: 0;
    background-color: #a5752b;
    color: white;
    padding: 10px;
    text-align: center;
    border-radius: 8px 8px 0 0;
}
.exam-table table {
    width: 100%;
    border-collapse: collapse;
}
.exam-table th, .exam-table td {
    border: 1px solid #e5d3a5;
    padding: 10px;
    text-align: center;
}
.exam-table th {
    background-color: #f8eed1;
    color: #000;
}

/* ===== IMPORTANT LINKS ===== */
.links {
    border: 1px solid #c2a463;
    border-radius: 8px;
    background: #fdfcf7;
    margin-top: 30px;
}
.links h3 {
    margin: 0;
    background-color: #a5752b;
    color: white;
    padding: 10px;
    text-align: center;
    border-radius: 8px 8px 0 0;
}
.links table {
    width: 100%;
    border-collapse: collapse;
}
.links td {
    padding: 12px;
    border-bottom: 1px solid #e5d3a5;
}
.links a {
    background-color: #f1c75b;
    color: #000;
    text-decoration: none;
    padding: 7px 14px;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}
.links a:hover {
    background-color: #000;
    color: #f1c75b;
}

/* ===== JOIN CHANNELS ===== */
.channels {
    border: 1px solid #c2a463;
    border-radius: 8px;
    background: #fdfcf7;
    margin-top: 25px;
    text-align: center;
    padding: 25px;
}
.channels h3 {
    color: #a5752b;
    margin-bottom: 12px;
    font-size: 20px;
}
.channels a {
    display: inline-block;
    margin: 10px;
    padding: 10px 18px;
    background-color: #181818;
    color: #f1c75b;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: 0.3s;
}
.channels a:hover {
    background-color: #f1c75b;
    color: #000;
}