/* ===== SHARED PAGE LAYOUT ===== */
.inner-page { padding-top: 109px; }
@media (max-width: 480px) { .inner-page { padding-top: 70px; } }

/* ===== ABOUT ===== */
.about-mission { padding: 72px 0; }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.mission-grid h2 { font-size: clamp(26px,3.2vw,36px); color: var(--navy); margin-bottom: 18px; }
.mission-quote { font-family: var(--font-display); font-size: 20px; font-style: italic; color: var(--gold); border-left: 3px solid var(--gold); padding: 10px 18px; margin: 18px 0; background: rgba(200,165,75,0.06); border-radius: 0 8px 8px 0; }
.mission-grid > div > p { color: var(--text-muted); line-height: 1.8; margin-bottom: 14px; }
.mission-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 22px; display: flex; gap: 14px; align-items: flex-start; transition: all 0.2s; box-shadow: var(--shadow); margin-bottom: 14px; }
.mission-card:hover { border-color: var(--gold); transform: translateX(4px); }
.mission-card-icon { width: 44px; height: 44px; background: rgba(200,165,75,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.mission-card-icon svg { width: 22px; height: 22px; fill: none; stroke: var(--gold); stroke-width: 2; }
.mission-card h4 { font-size: 15px; color: var(--navy); margin-bottom: 3px; }
.mission-card p { font-size: 13px; color: var(--text-muted); }
.history-section { padding: 72px 0; background: var(--cream); }
.history-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.history-img { border-radius: var(--radius-lg); overflow: hidden; height: 420px; box-shadow: var(--shadow-lg); }
.history-img img { width: 100%; height: 100%; object-fit: cover; }
.history-text h2 { font-size: clamp(22px,2.8vw,32px); color: var(--navy); margin-bottom: 18px; }
.history-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 12px; }
.values-section { padding: 72px 0; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.value-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; text-align: center; transition: all 0.3s; }
.value-card:hover { border-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-4px); }
.value-emoji { font-size: 32px; margin-bottom: 14px; }
.value-card h4 { font-size: 17px; color: var(--navy); margin-bottom: 8px; }
.value-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; }
.features-section { padding: 72px 0; background: var(--cream); }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.features-grid h2 { font-size: clamp(24px,3vw,34px); color: var(--navy); margin-bottom: 14px; }
.features-lead { color: var(--text-muted); margin-bottom: 26px; line-height: 1.8; }
.features-list { display: flex; flex-direction: column; gap: 11px; }
.features-list li { display: flex; align-items: center; gap: 9px; font-size: 14.5px; }
.features-list li svg { width: 16px; height: 16px; fill: none; stroke: var(--gold); stroke-width: 2; flex-shrink: 0; }
.features-img-wrap { border-radius: var(--radius-lg); overflow: hidden; height: 480px; box-shadow: var(--shadow-lg); }
.features-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) { .mission-grid,.history-grid,.features-grid { grid-template-columns: 1fr; gap: 36px; } .values-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .values-grid { grid-template-columns: 1fr; } }

/* ===== COURSES ===== */
.courses-intro-bar { background: var(--navy); padding: 13px 24px; }
.cib-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.cib-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,0.8); }
.cib-sep { width: 1px; height: 16px; background: rgba(255,255,255,0.2); }
.courses-section { padding: 48px 24px 80px; }
.courses-container { max-width: 1160px; margin: 0 auto; }
.tab-toggle-row { display: flex; align-items: center; gap: 12px; margin-bottom: 26px; justify-content: center; }
.tab-toggle-label { font-size: 14px; color: var(--text-muted); font-weight: 500; }
.tab-toggle { display: flex; background: var(--cream-dark); border-radius: 50px; padding: 4px; gap: 2px; }
.tab-toggle button { display: flex; align-items: center; gap: 6px; padding: 8px 20px; border-radius: 50px; border: none; background: transparent; font-size: 14px; font-weight: 500; color: var(--text-muted); cursor: pointer; transition: all 0.2s; font-family: var(--font-body); }
.tab-toggle button svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; }
.tab-toggle button.active { background: var(--white); color: var(--navy); box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.courses-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }
.course-box { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow); transition: transform 0.3s, box-shadow 0.3s; display: flex; flex-direction: column; }
.course-box:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.course-box-header { padding: 26px; color: var(--white); }
.course-box-code { font-family: var(--font-display); font-size: 30px; font-weight: 900; letter-spacing: -0.5px; line-height: 1; margin-bottom: 4px; }
.course-box-name { font-size: 13.5px; opacity: 0.82; margin-bottom: 14px; }
.course-box-meta { display: flex; gap: 12px; flex-wrap: wrap; }
.course-box-meta span { display: flex; align-items: center; gap: 6px; font-size: 12.5px; background: rgba(255,255,255,0.15); padding: 4px 12px; border-radius: 20px; }
.course-box-meta svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2; }
.course-box-tabs { display: flex; border-bottom: 1px solid var(--cream-dark); }
.ctab { flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px; padding: 12px; font-size: 13.5px; font-weight: 500; color: var(--text-muted); background: var(--cream); border: none; cursor: pointer; transition: all 0.2s; font-family: var(--font-body); border-bottom: 3px solid transparent; }
.ctab svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; }
.ctab:hover { color: var(--navy); }
.ctab.active { background: var(--white); color: var(--navy); border-bottom-color: var(--gold); }
.ctab + .ctab { border-left: 1px solid var(--cream-dark); }
.course-box-body { padding: 22px; min-height: 340px; flex: 1 1 auto; }
.syllabus-list { display: flex; flex-direction: column; gap: 14px; }
.sem-block { border: 1px solid var(--cream-dark); border-radius: 9px; overflow: hidden; }
.sem-title { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--navy); background: var(--cream); padding: 9px 13px; border-bottom: 1px solid var(--cream-dark); }
.sem-title svg { width: 15px; height: 15px; fill: none; stroke: var(--gold); stroke-width: 2; flex-shrink: 0; }
.sem-subjects { list-style: none; padding: 10px 13px; display: flex; flex-direction: column; gap: 6px; }
.sem-subjects li { display: flex; align-items: flex-start; gap: 7px; font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.sem-subjects li svg { width: 13px; height: 13px; fill: none; stroke: var(--gold); stroke-width: 2; flex-shrink: 0; margin-top: 2px; }
.fee-table { width: 100%; border-collapse: collapse; font-size: 13.5px; margin-bottom: 14px; }
.fee-table th { text-align: left; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); padding: 8px 12px; background: var(--cream); border-bottom: 1px solid var(--cream-dark); }
.fee-table td { padding: 10px 12px; border-bottom: 1px solid #f5f2ee; color: var(--text); }
.fee-table tr:last-child td { border-bottom: none; }
.fee-table tr:hover td { background: var(--cream); }
.fee-amount { font-size: 13px; color: var(--navy); font-weight: 500; }
.fee-note-box { display: flex; gap: 9px; align-items: flex-start; background: rgba(200,165,75,0.08); border: 1px solid rgba(200,165,75,0.22); border-radius: 8px; padding: 11px 13px; font-size: 13px; color: var(--text-muted); }
.fee-note-box p { line-height: 1.6; }
.course-box-footer { padding: 14px 22px 22px; border-top: 1px solid var(--cream-dark); margin-top: auto; }
.apply-btn { display: inline-flex; align-items: center; gap: 6px; padding: 10px 22px; border-radius: 50px; color: var(--white); font-size: 13.5px; font-weight: 600; text-decoration: none; transition: opacity 0.2s, transform 0.2s; }
.apply-btn:hover { opacity: 0.88; transform: translateX(3px); }
.apply-btn svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; }
@media (max-width: 820px) { .courses-grid { grid-template-columns: 1fr; } }

/* ===== GALLERY ===== */
.gallery-section { padding: 56px 0 80px; }
.gallery-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-btn { padding: 8px 20px; border-radius: 50px; border: 1px solid var(--border); background: var(--white); color: var(--text); font-size: 13.5px; font-weight: 500; cursor: pointer; transition: all 0.2s; font-family: var(--font-body); }
.filter-btn:hover { border-color: var(--gold); color: var(--navy); }
.filter-btn.active { background: var(--navy); border-color: var(--navy); color: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; aspect-ratio: 4/3; background: var(--cream-dark); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; display: block; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(11,31,58,0.75); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 9px; color: white; opacity: 0; transition: opacity 0.3s; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay svg { width: 22px; height: 22px; fill: none; stroke: white; stroke-width: 2; }
.gallery-overlay span { font-size: 13.5px; font-weight: 500; }
.gallery-cat-tag { position: absolute; top: 10px; left: 10px; background: rgba(200,165,75,0.9); color: var(--navy); font-size: 10.5px; font-weight: 700; padding: 3px 9px; border-radius: 10px; letter-spacing: 0.04em; }
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 20px; }
.lightbox.open { display: flex; }
.lightbox-close { position: absolute; top: 18px; right: 18px; width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.1); color: white; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.lightbox-close:hover { background: rgba(255,255,255,0.25); }
.lightbox-close svg { width: 22px; height: 22px; fill: none; stroke: white; stroke-width: 2; }
.lightbox-img-wrap { max-width: 880px; width: 100%; }
.lightbox-img-wrap img { width: 100%; border-radius: var(--radius); max-height: 80vh; object-fit: contain; }
.lightbox-caption { text-align: center; color: rgba(255,255,255,0.7); margin-top: 12px; font-size: 14.5px; }
@media (max-width: 860px) { .gallery-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 580px) { .gallery-grid { grid-template-columns: repeat(2,1fr); } }

/* ===== CONTACT ===== */
.map-section { line-height: 0; }
.contact-section { padding: 72px 0 80px; }
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: start; }
.contact-form-wrap h2,.contact-info-wrap h2 { font-size: clamp(22px,2.8vw,30px); color: var(--navy); margin-bottom: 7px; }
.contact-sub { color: var(--text-muted); margin-bottom: 28px; font-size: 15px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 5px; }
.form-field label { font-size: 12.5px; font-weight: 600; color: var(--text); letter-spacing: 0.02em; }
.form-field input,.form-field textarea { padding: 12px 15px; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: 14.5px; font-family: var(--font-body); color: var(--text); background: var(--white); transition: border-color 0.2s, box-shadow 0.2s; outline: none; resize: vertical; }
.form-field input:focus,.form-field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,165,75,0.12); }
.form-field.has-error input,.form-field.has-error textarea { border-color: #c0392b; }
.form-error { font-size: 12px; color: #c0392b; }
.success-msg { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 56px 28px; background: var(--cream); border-radius: var(--radius-lg); gap: 11px; }
.success-msg svg { width: 40px; height: 40px; fill: none; stroke: var(--gold); stroke-width: 2; }
.success-msg h3 { font-size: 22px; color: var(--navy); }
.success-msg p { color: var(--text-muted); }
.info-cards { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.info-card { display: flex; gap: 14px; align-items: flex-start; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; transition: all 0.2s; }
.info-card:hover { border-color: var(--gold); transform: translateX(3px); }
.info-icon { width: 44px; height: 44px; background: rgba(200,165,75,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-icon svg { width: 20px; height: 20px; fill: none; stroke: var(--gold); stroke-width: 2; }
.info-card h4 { font-size: 14.5px; color: var(--navy); margin-bottom: 5px; }
.info-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; margin-bottom: 2px; }
.info-card a { color: var(--text-muted); transition: color 0.2s; }
.info-card a:hover { color: var(--gold); }
.office-hours { background: var(--navy); border-radius: var(--radius); padding: 22px; }
.office-hours h4 { font-size: 14.5px; color: var(--gold); margin-bottom: 14px; }
.hours-grid { display: flex; flex-direction: column; gap: 9px; }
.hours-row { display: flex; justify-content: space-between; font-size: 13.5px; }
.hours-row span:first-child { color: rgba(255,255,255,0.6); }
.hours-row span:last-child { color: var(--white); font-weight: 500; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 36px; } .form-row { grid-template-columns: 1fr; } }

/* ===== INFRASTRUCTURE ===== */
.infra-docs-section { padding: 56px 0; }
.infra-container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.infra-sec-head { margin-bottom: 32px; }
.infra-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 7px; }
.infra-sec-head h2 { font-size: clamp(24px,3vw,32px); color: var(--navy); margin-bottom: 9px; }
.infra-sec-head p { color: var(--text-muted); font-size: 15px; }
.docs-list { display: flex; flex-direction: column; gap: 14px; }
.doc-card { display: flex; align-items: center; gap: 18px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 22px; box-shadow: var(--shadow); transition: transform 0.2s, box-shadow 0.2s; }
.doc-card:hover { transform: translateX(4px); box-shadow: var(--shadow-lg); }
.doc-icon { width: 46px; height: 46px; background: rgba(200,165,75,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.doc-icon svg { width: 22px; height: 22px; fill: none; stroke: var(--gold); stroke-width: 2; }
.doc-body { flex: 1; }
.doc-body h4 { font-size: 15.5px; color: var(--navy); margin-bottom: 4px; }
.doc-body p { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; }
.doc-view { display: flex; align-items: center; gap: 6px; padding: 9px 18px; border-radius: 50px; border: 1px solid var(--gold); background: transparent; color: var(--gold-dark); font-size: 13px; font-weight: 600; cursor: pointer; white-space: nowrap; font-family: var(--font-body); transition: all 0.2s; }
.doc-view svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }
.doc-view:hover { background: var(--gold); color: var(--white); }
.infra-facilities-section { padding: 56px 0 80px; background: var(--cream); }
.facilities-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.facility-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); transition: transform 0.3s, box-shadow 0.3s; }
.facility-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.facility-img { height: 168px; overflow: hidden; }
.facility-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; display: block; }
.facility-card:hover .facility-img img { transform: scale(1.06); }
.facility-body { padding: 18px 20px; }
.facility-icon { margin-bottom: 9px; }
.facility-icon svg { width: 26px; height: 26px; fill: none; stroke: var(--gold); stroke-width: 2; }
.facility-body h4 { font-size: 15.5px; color: var(--navy); margin-bottom: 6px; }
.facility-body p { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; }
@media (max-width: 820px) { .facilities-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .facilities-grid { grid-template-columns: 1fr; } .doc-card { flex-wrap: wrap; } .doc-view { width: 100%; justify-content: center; } }

/* ===== RECOGNITION ===== */
.recog-section { padding: 56px 24px 80px; }
.recog-container { max-width: 940px; margin: 0 auto; display: flex; flex-direction: column; gap: 26px; }
.recog-card { display: flex; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); transition: transform 0.3s, box-shadow 0.3s; }
.recog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.recog-card-left { width: 100px; flex-shrink: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: var(--white); padding: 22px 10px; }
.recog-card-left svg { width: 26px; height: 26px; fill: none; stroke: white; stroke-width: 2; }
.recog-tag { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; opacity: 0.9; }
.recog-card-body { padding: 26px 30px; background: var(--white); flex: 1; }
.recog-meta { font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 5px; }
.recog-card-body h3 { font-size: 20px; color: var(--navy); margin-bottom: 11px; }
.recog-card-body > p { font-size: 14px; color: var(--text-muted); line-height: 1.8; margin-bottom: 14px; }
.recog-points { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 16px; }
.recog-points li { font-size: 12.5px; background: var(--cream); border: 1px solid var(--cream-dark); padding: 4px 12px; border-radius: 20px; color: var(--text); }
.recog-link { display: inline-flex; align-items: center; gap: 5px; color: var(--gold); font-size: 13.5px; font-weight: 600; text-decoration: none; transition: gap 0.2s; }
.recog-link:hover { gap: 10px; }
.recog-link svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2; }
.recog-links-row { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; }
.ngo-section { padding: 0 24px 80px; }
.ngo-card { background: var(--navy); border-radius: var(--radius-lg); padding: 52px; display: grid; grid-template-columns: 1fr auto; gap: 44px; align-items: center; max-width: 940px; margin: 0 auto; }
.ngo-text h2 { font-size: clamp(22px,2.8vw,30px); color: var(--white); margin-bottom: 14px; }
.ngo-text p { color: rgba(255,255,255,0.6); line-height: 1.8; font-size: 14.5px; margin-bottom: 12px; }
.ngo-text strong { color: rgba(255,255,255,0.9); }
.ngo-badges { display: flex; gap: 14px; }
.ngo-badge { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 18px 22px; text-align: center; min-width: 88px; }
.badge-num { font-family: var(--font-display); font-size: 20px; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 5px; }
.badge-label { font-size: 10.5px; color: rgba(255,255,255,0.4); letter-spacing: 0.04em; }
@media (max-width: 860px) { .recog-card { flex-direction: column; } .recog-card-left { width: 100%; flex-direction: row; padding: 14px 20px; } .ngo-card { grid-template-columns: 1fr; padding: 36px 26px; } }

/* ===== STAFF ===== */
.staff-section { padding: 52px 24px 80px; }
.staff-container { max-width: 1080px; margin: 0 auto; }
.staff-tabs { display: flex; gap: 4px; background: var(--cream-dark); padding: 5px; border-radius: 50px; width: fit-content; margin: 0 auto 36px; }
.staff-tabs button { padding: 10px 26px; border-radius: 50px; border: none; background: transparent; font-size: 14px; font-weight: 500; color: var(--text-muted); cursor: pointer; transition: all 0.2s; font-family: var(--font-body); }
.staff-tabs button.active { background: var(--white); color: var(--navy); box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.staff-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(250px,1fr)); gap: 18px; }
.staff-card { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); padding: 22px; display: flex; gap: 14px; align-items: flex-start; transition: transform 0.25s, box-shadow 0.25s; box-shadow: var(--shadow); }
.staff-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.staff-avatar { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.staff-avatar svg { width: 28px; height: 28px; fill: none; stroke-width: 2; }
.staff-avatar.navy { background: var(--navy); }
.staff-avatar.navy svg { stroke: var(--gold); }
.staff-avatar.brown { background: var(--gold-dark); }
.staff-avatar.brown svg { stroke: var(--white); }
.staff-name { font-size: 14.5px; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.staff-desig { font-size: 13px; color: var(--gold); font-weight: 500; margin-bottom: 3px; }
.staff-qual { font-size: 12.5px; color: var(--text-muted); margin-bottom: 3px; }
.staff-exp { font-size: 12px; color: var(--text-muted); }
@media (max-width: 560px) { .staff-grid { grid-template-columns: 1fr; } }

/* ===== STUDENT ===== */
.student-section { padding: 52px 24px; }
.student-section.alt { background: var(--cream); }
.student-container { max-width: 1080px; margin: 0 auto; }
.sec-head { display: flex; align-items: center; gap: 11px; margin-bottom: 28px; }
.sec-head svg { width: 22px; height: 22px; fill: none; stroke: var(--gold); stroke-width: 2; }
.sec-head h2 { font-size: clamp(22px,2.8vw,28px); color: var(--navy); }
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-bottom: 28px; }
.step-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); padding: 20px; box-shadow: var(--shadow); }
.step-num { font-family: var(--font-display); font-size: 26px; font-weight: 900; color: rgba(200,165,75,0.5); line-height: 1; margin-bottom: 9px; }
.step-card h4 { font-size: 14.5px; color: var(--navy); margin-bottom: 6px; }
.step-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }
.docs-box { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); padding: 22px 26px; }
.docs-box h4 { font-size: 16px; color: var(--navy); margin-bottom: 16px; }
.docs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.doc-item { display: flex; align-items: flex-start; gap: 8px; font-size: 13.5px; color: var(--text); }
.doc-item svg { width: 14px; height: 14px; fill: none; stroke: var(--gold); stroke-width: 2; flex-shrink: 0; margin-top: 2px; }
.rules-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.rule-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); padding: 18px; }
.rule-card h4 { font-size: 14.5px; color: var(--navy); margin-bottom: 11px; }
.rule-card ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.rule-card li { display: flex; align-items: flex-start; gap: 6px; font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.rule-card li svg { width: 13px; height: 13px; fill: none; stroke: var(--gold); stroke-width: 2; flex-shrink: 0; margin-top: 2px; }
.list-notice { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); padding: 30px; text-align: center; max-width: 560px; margin: 0 auto; }
.list-notice p { color: var(--text-muted); font-size: 15px; line-height: 1.8; margin-bottom: 18px; }
.list-btn { display: inline-flex; align-items: center; gap: 6px; background: var(--navy); color: var(--white); padding: 11px 22px; border-radius: 50px; font-size: 13.5px; font-weight: 600; text-decoration: none; transition: opacity 0.2s; }
.list-btn:hover { opacity: 0.88; }
.list-btn svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; }
.scholar-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 22px; }
.scholar-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); padding: 18px; box-shadow: var(--shadow); }
.scholar-badge { display: inline-block; background: rgba(200,165,75,0.12); color: var(--gold-dark); font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 3px 10px; border-radius: 10px; margin-bottom: 9px; }
.scholar-card h4 { font-size: 13.5px; color: var(--navy); margin-bottom: 7px; line-height: 1.4; }
.scholar-card p { font-size: 12.5px; color: var(--text-muted); margin-bottom: 3px; }
.scholar-card .snote { color: var(--text-muted); }
.scholar-note-box { background: rgba(200,165,75,0.08); border: 1px solid rgba(200,165,75,0.2); border-radius: 9px; padding: 16px 20px; font-size: 13.5px; color: var(--text-muted); line-height: 1.8; }
@media (max-width: 860px) { .steps-grid,.rules-grid { grid-template-columns: 1fr 1fr; } .scholar-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps-grid,.rules-grid,.scholar-grid,.docs-grid { grid-template-columns: 1fr; } }

/* ===== Admission Tab Styles ===== */
.adm-tab-row { display: flex; gap: 12px; margin-bottom: 28px; flex-wrap: wrap; }
.adm-tab-btn { display: inline-flex; align-items: center; gap: 9px; padding: 12px 26px; border-radius: 50px; border: 2px solid #ddd; background: var(--white); color: var(--text-muted); font-size: 14.5px; font-weight: 600; cursor: pointer; transition: all 0.25s; }
.adm-tab-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.adm-tab-btn.active[data-adm="bed-adm"] { background: #0b1f3a; color: #fff; border-color: #0b1f3a; }
.adm-tab-btn.active[data-adm="deled-adm"] { background: #8B5E10; color: #fff; border-color: #8B5E10; }
.adm-tab-btn:not(.active):hover { border-color: #aaa; color: #333; }
.adm-info-bar { display: flex; flex-wrap: wrap; gap: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(0,0,0,0.08); margin-bottom: 28px; }
.adm-info-item { flex: 1 1 200px; padding: 14px 20px; border-right: 1px solid rgba(0,0,0,0.07); display: flex; flex-direction: column; gap: 4px; }
.adm-info-item:last-child { border-right: none; }
.adm-info-label { font-size: 10.5px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--text-muted); }
.adm-info-item span, .adm-info-item a { font-size: 13.5px; font-weight: 600; color: var(--navy); text-decoration: none; }
.adm-info-item a:hover { text-decoration: underline; }
.adm-sub-head { font-family: var(--font-display); font-size: 18px; font-weight: 800; color: var(--navy); margin: 28px 0 16px; padding-bottom: 9px; border-bottom: 2px solid var(--cream-dark); }
.adm-steps { display: flex; flex-direction: column; gap: 14px; margin-bottom: 8px; }
.adm-step { display: flex; gap: 16px; align-items: flex-start; background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); padding: 18px 20px; box-shadow: var(--shadow); }
.adm-step-num { width: 38px; height: 38px; border-radius: 50%; color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 900; font-size: 13px; flex-shrink: 0; }
.adm-step-body h4 { font-size: 14.5px; color: var(--navy); margin-bottom: 5px; font-weight: 700; }
.adm-step-body p { font-size: 13.5px; color: var(--text-muted); line-height: 1.72; margin: 0; }
.adm-step-body a { color: var(--navy); font-weight: 600; }
.adm-dates-table { overflow-x: auto; }
.doc-req { display: inline-block; margin-left: 6px; font-size: 10px; font-weight: 700; background: rgba(11,31,58,0.08); color: #0b1f3a; padding: 1px 7px; border-radius: 8px; vertical-align: middle; }
.doc-opt { display: inline-block; margin-left: 6px; font-size: 10px; font-weight: 700; background: rgba(200,165,75,0.12); color: #8B5E10; padding: 1px 7px; border-radius: 8px; vertical-align: middle; }
.adm-note-box { background: var(--white); border-radius: var(--radius); border-left: 4px solid; padding: 20px 24px; margin-top: 24px; }
.adm-note-box strong { display: block; font-size: 14.5px; color: var(--navy); margin-bottom: 12px; }
.adm-note-box ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.adm-note-box li { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; padding-left: 16px; position: relative; }
.adm-note-box li::before { content: '■'; position: absolute; left: 0; color: var(--gold); font-size: 9px; top: 5px; }
.adm-portal-btn { display: inline-flex; align-items: center; gap: 6px; color: #fff; padding: 11px 24px; border-radius: 50px; font-size: 13.5px; font-weight: 600; text-decoration: none; transition: opacity 0.2s; }
.adm-portal-btn:hover { opacity: 0.85; }
@media (max-width: 700px) { .adm-info-bar { flex-direction: column; } .adm-info-item { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.07); } .adm-tab-btn { padding: 10px 18px; font-size: 13.5px; } }

/* ===== Student List Year Cards ===== */
.sl-year-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.sl-year-card { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow); transition: transform 0.25s, box-shadow 0.25s; }
.sl-year-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(11,31,58,0.12); }
.sl-year-header { display: flex; align-items: center; gap: 10px; padding: 16px 20px; color: #fff; }
.sl-year-header svg { width: 20px; height: 20px; flex-shrink: 0; }
.sl-year-header span { font-family: var(--font-display); font-size: 16px; font-weight: 800; }
.sl-year-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 14px; }
.sl-year-body p { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; margin: 0; }
.sl-view-btn { display: inline-flex; align-items: center; gap: 7px; color: #fff; padding: 10px 20px; border-radius: 50px; font-size: 13.5px; font-weight: 600; text-decoration: none; transition: opacity 0.2s; align-self: flex-start; }
.sl-view-btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.sl-view-btn:hover { opacity: 0.85; }
@media (max-width: 780px) { .sl-year-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .sl-year-grid { grid-template-columns: 1fr; } }

/* ===== Attendance Card ===== */
.attend-doc-card { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); padding: 28px 32px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 20px; }
.attend-doc-header { display: flex; align-items: flex-start; gap: 18px; }
.attend-doc-icon { width: 50px; height: 50px; border-radius: 12px; background: var(--navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.attend-doc-icon svg { width: 24px; height: 24px; stroke: #fff; }
.attend-doc-header h3 { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 7px; }
.attend-doc-header p { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin: 0; }
.attend-divider { border: none; border-top: 1px solid var(--border); margin: 0; }
.attend-info-box { display: flex; align-items: flex-start; gap: 12px; background: #eaf3fb; border-radius: 10px; padding: 14px 18px; }
.attend-info-box svg { width: 18px; height: 18px; stroke: var(--gold); flex-shrink: 0; margin-top: 1px; }
.attend-info-box p { font-size: 13.5px; color: var(--navy); line-height: 1.7; margin: 0; }
.attend-view-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--navy); color: #fff; padding: 12px 22px; border-radius: 9px; font-size: 14px; font-weight: 600; text-decoration: none; transition: opacity 0.2s; align-self: flex-start; }
.attend-view-btn svg { width: 16px; height: 16px; }
.attend-view-btn:hover { opacity: 0.85; }
@media (max-width: 560px) { .attend-doc-card { padding: 20px; } .attend-doc-header { flex-direction: column; } }

/* ============================================================
   ABOUT PAGE — Message cards + Governing Body table
   ============================================================ */
.message-section { padding: 70px 0; }
.message-section.alt { background: var(--cream); }
.message-section .section-header { margin-bottom: 44px; }
.message-grid {
  display: grid; grid-template-columns: 280px 1fr; gap: 44px; align-items: start;
  max-width: 1100px; margin: 30px auto 0;
}
.message-grid.reverse { grid-template-columns: 1fr 280px; }
.message-grid.reverse .message-photo { order: 2; }
.message-photo {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  border: 1px solid var(--border); position: relative;
  background: linear-gradient(160deg, var(--navy), var(--navy-light));
  aspect-ratio: 4/5; display: flex; align-items: center; justify-content: center;
}
.message-photo .avatar-icon { width: 96px; height: 96px; fill: none; stroke: var(--gold-light); stroke-width: 1.5; opacity: 0.9; }
.message-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.message-photo .photo-tag {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(11,31,58,0.85) 60%);
  color: var(--white); padding: 30px 16px 14px; text-align: center;
}
.photo-tag .name { font-family: var(--font-display); font-weight: 700; font-size: 17px; }
.photo-tag .role { font-size: 12px; color: var(--gold-light); margin-top: 2px; letter-spacing: 0.04em; text-transform: uppercase; }
.message-body .quote-mark { font-family: var(--font-display); font-size: 64px; color: var(--gold); line-height: 0.5; opacity: 0.5; display: block; margin-bottom: 4px; }
.message-body h2 { margin-bottom: 6px; }
.message-body .msg-role { color: var(--gold-dark); font-weight: 600; font-size: 13.5px; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 18px; }
.message-body p { color: var(--text); line-height: 1.8; margin-bottom: 14px; }
.message-body .signature { margin-top: 22px; font-family: var(--font-display); font-weight: 700; color: var(--navy); font-size: 18px; }
.message-body .signature span { display: block; font-family: var(--font-body); font-weight: 500; font-size: 12.5px; color: var(--text-muted); margin-top: 2px; text-transform: none; letter-spacing: 0; }

@media (max-width: 800px) {
  .message-grid, .message-grid.reverse { grid-template-columns: 1fr; gap: 26px; }
  .message-photo { max-width: 240px; margin: 0 auto; }
  .message-grid.reverse .message-photo { order: 0; }
}

/* Governing Body table */
.gb-table-wrap {
  max-width: 1100px; margin: 30px auto 0; overflow-x: auto;
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
table.gb-table { width: 100%; border-collapse: collapse; background: var(--white); font-size: 14.5px; min-width: 620px; }
table.gb-table thead th {
  background: var(--navy); color: var(--white); text-align: left;
  font-family: var(--font-body); font-weight: 600; font-size: 12.5px;
  letter-spacing: 0.04em; text-transform: uppercase; padding: 16px 18px;
}
table.gb-table thead th:first-child { width: 56px; text-align: center; }
table.gb-table tbody td { padding: 15px 18px; border-bottom: 1px solid var(--cream-dark); color: var(--text); vertical-align: middle; }
table.gb-table tbody td:first-child { text-align: center; color: var(--gold-dark); font-weight: 700; font-family: var(--font-display); }
table.gb-table tbody tr:last-child td { border-bottom: none; }
table.gb-table tbody tr:nth-child(even) { background: var(--cream); }
table.gb-table tbody tr:hover { background: var(--cream-dark); }
table.gb-table .gb-name { font-weight: 600; color: var(--navy); }
table.gb-table .gb-role-badge {
  display: inline-block; padding: 4px 12px; border-radius: 50px;
  background: rgba(200,165,75,0.14); color: var(--gold-dark);
  font-size: 12px; font-weight: 600; white-space: nowrap;
}
@media (max-width: 560px) {
  table.gb-table thead th, table.gb-table tbody td { padding: 12px 12px; font-size: 13px; }
}

/* About page — college image above highlight cards */
.about-college-img {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  border: 1px solid var(--border); margin-bottom: 22px;
}
.about-college-img img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }

/* ============================================================
   PROGRAMME OVERVIEW CARD (B.Ed / D.El.Ed) — reference design
   ============================================================ */
.prog-overview {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow); margin-bottom: 28px;
}
.prog-banner {
  position: relative; overflow: hidden; padding: 34px 40px 30px;
  background: linear-gradient(115deg, #0b1f3a 0%, var(--navy-light) 55%, var(--navy) 100%);
  color: var(--white);
}
.prog-banner.gold { background: linear-gradient(115deg, #6b4a10 0%, #8B5E10 55%, #b8841c 100%); }
.prog-banner::after {
  content: ""; position: absolute; top: -60px; right: -40px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.prog-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,140,40,0.18); border: 1px solid rgba(255,150,60,0.4);
  color: var(--gold-light); font-size: 11.5px; font-weight: 600; letter-spacing: 0.03em;
  padding: 5px 14px; border-radius: 50px; margin-bottom: 16px; position: relative; z-index: 1;
}
.prog-banner h2 {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(24px,2.6vw,32px);
  margin-bottom: 10px; position: relative; z-index: 1;
}
.prog-banner p { color: rgba(255,255,255,0.78); font-size: 14.5px; line-height: 1.6; max-width: 600px; position: relative; z-index: 1; }

.prog-stats {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 28px;
  padding: 28px 40px; border-bottom: 1px solid var(--cream-dark);
}
.prog-stat { border-left: 3px solid var(--gold); padding-left: 16px; }
.prog-stat .ps-label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.prog-stat .ps-value { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--navy); }

.prog-details { padding: 30px 40px 32px; }
.prog-details h3 { font-family: var(--font-display); font-weight: 700; font-size: 21px; color: var(--navy); margin-bottom: 12px; }
.prog-details p { color: var(--text-muted); line-height: 1.75; max-width: 880px; }

.prog-actions { display: flex; gap: 14px; padding: 22px 40px 32px; flex-wrap: wrap; }
.prog-btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 24px; border-radius: 9px; font-weight: 600; font-size: 14px; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; }
.prog-btn-primary { background: linear-gradient(135deg,#f6862a,#ef6a16); color: var(--white); box-shadow: 0 8px 20px rgba(239,106,22,0.25); }
.prog-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(239,106,22,0.32); }
.prog-btn-secondary { background: var(--navy); color: var(--white); }
.prog-btn-secondary.gold { background: #8B5E10; }
.prog-btn-secondary:hover { transform: translateY(-2px); }

@media (max-width: 860px) {
  .prog-stats { grid-template-columns: repeat(2,1fr); }
  .prog-banner, .prog-details, .prog-actions { padding-left: 24px; padding-right: 24px; }
}
@media (max-width: 480px) {
  .prog-stats { grid-template-columns: 1fr 1fr; gap: 20px 16px; }
  .prog-actions { flex-direction: column; }
  .prog-btn { justify-content: center; }
}

/* Nested optional/elective sub-list inside syllabus items */
.sem-sub-wrap { display: inline-block; }
.sem-sub-label { font-weight: 600; color: var(--navy); }
ul.sem-subjects-nested { list-style: none; margin: 6px 0 0; padding-left: 14px; }
ul.sem-subjects-nested li { position: relative; padding-left: 14px; font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }
ul.sem-subjects-nested li::before { content: "–"; position: absolute; left: 0; color: var(--gold-dark); }

/* ============================================================
   BANK DETAILS CARD (Financial page)
   ============================================================ */
.bank-card-section { padding: 50px 0 10px; }
.bank-card {
  position: relative; overflow: hidden;
  background: linear-gradient(115deg, var(--navy) 0%, var(--navy-light) 55%, var(--navy) 100%);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 40px; display: grid; grid-template-columns: 1fr 220px; gap: 36px; align-items: center;
  border: 1px solid rgba(200,165,75,0.25);
}
.bank-card::after {
  content: ""; position: absolute; top: -70px; right: 160px;
  width: 220px; height: 220px; border-radius: 50%; background: rgba(200,165,75,0.07);
}
.bank-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(200,165,75,0.16); border: 1px solid rgba(200,165,75,0.45);
  color: var(--gold-light); font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 5px 14px; border-radius: 50px; margin-bottom: 16px;
}
.bank-card h2 { font-family: var(--font-display); font-weight: 700; color: var(--white); font-size: clamp(22px,2.4vw,28px); margin-bottom: 22px; position: relative; z-index: 1; }
.bank-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; position: relative; z-index: 1; }
.bank-detail-item {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(200,165,75,0.22);
  border-left: 3px solid var(--gold); border-radius: 10px; padding: 13px 16px;
}
.bank-detail-item .bd-label { font-size: 11px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 5px; }
.bank-detail-item .bd-value { font-size: 15px; font-weight: 700; color: var(--white); }
.bank-qr-card {
  background: var(--white); border-radius: 14px; overflow: hidden; box-shadow: 0 16px 40px rgba(0,0,0,0.25);
  position: relative; z-index: 1;
}
.bank-qr-card img { width: 100%; height: auto; display: block; }

@media (max-width: 860px) {
  .bank-card { grid-template-columns: 1fr; padding: 30px; }
  .bank-qr-card { max-width: 220px; margin: 0 auto; }
}
@media (max-width: 480px) {
  .bank-detail-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   STAFF TABLE (reference-style: numbered badge, designation pill, qual chips)
   ============================================================ */
.staff-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow); border: 1px solid var(--border); }
table.staff-table { width: 100%; border-collapse: collapse; background: var(--white); font-size: 14px; min-width: 760px; }
table.staff-table thead th {
  background: linear-gradient(115deg, var(--navy), var(--navy)); color: var(--white); text-align: left;
  font-family: var(--font-body); font-weight: 600; font-size: 12px;
  letter-spacing: 0.05em; text-transform: uppercase; padding: 16px 18px;
}
table.staff-table thead th:first-child { width: 56px; text-align: center; }
table.staff-table tbody td { padding: 16px 18px; border-bottom: 1px solid var(--cream-dark); color: var(--text); vertical-align: middle; }
table.staff-table tbody tr:last-child td { border-bottom: none; }
table.staff-table tbody tr:nth-child(even) { background: var(--cream); }
table.staff-table tbody tr:hover { background: var(--cream-dark); }
.staff-num-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy)); color: var(--white);
  font-weight: 700; font-size: 13px; font-family: var(--font-display);
}
.staff-table .st-name { font-weight: 700; color: var(--navy); white-space: nowrap; }
.staff-desig-pill {
  display: inline-block; padding: 6px 14px; border-radius: 50px;
  background: linear-gradient(135deg, var(--navy), var(--navy)); color: var(--white);
  font-size: 12px; font-weight: 600; white-space: nowrap;
}
.staff-qual-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.staff-qual-chip {
  display: inline-block; padding: 4px 11px; border-radius: 50px;
  background: var(--cream); border: 1px solid var(--cream-dark);
  color: var(--text-muted); font-size: 12px; font-weight: 600; white-space: nowrap;
}
.staff-table .st-spec { color: var(--text-muted); font-size: 13.5px; }

.staff-tabs-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.staff-tab-btn {
  padding: 11px 22px; border-radius: 50px; border: 1px solid var(--border);
  background: var(--white); color: var(--text-muted); font-weight: 600; font-size: 14px;
  cursor: pointer; transition: all 0.2s; font-family: var(--font-body);
}
.staff-tab-btn.active { background: linear-gradient(135deg, var(--navy), var(--navy)); color: var(--white); border-color: transparent; box-shadow: var(--shadow); }
.staff-tab-btn:not(.active):hover { background: var(--cream); color: var(--navy); }

@media (max-width: 560px) {
  table.staff-table thead th, table.staff-table tbody td { padding: 12px 12px; font-size: 12.5px; }
  .staff-num-badge { width: 24px; height: 24px; font-size: 11.5px; }
}
