/* ========== BPSC Clone – Optimized Responsive Stylesheet ========== */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@300;400;500;600;700&family=Noto+Sans+Devanagari:wght@400;600;700&display=swap');

:root {
  --sidebar-dark: #1a3a7a;
  --sidebar-active: #2a6ada;
  --sidebar-hover: #2255b8;
  --blue-header: #1565c0;
  --blue-ticker: #0e4fa8;
  --blue-btn-en: #0d9488;
  --gold: #c8a600;
  --text-dark: #1a1a2e;
  --text-mid: #333;
  --border: #c5d5e8;
  --font: 'Noto Sans', Arial, sans-serif;
  --font-hi: 'Noto Sans Devanagari', sans-serif;
  --white: #fff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 13.5px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: #ccd9ec;
  color: var(--text-dark);
  overflow-x: hidden;
  max-width: 100vw;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* =================== HEADER =================== */
.site-header {
  background: #fff;
  display: flex;
  align-items: center;
  padding: 8px 16px 8px 10px;
  border-bottom: 1px solid #dde4f0;
  gap: 10px;
  min-height: 88px;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text-dark);
  padding: 4px 8px;
  z-index: 110;
}

.hdr-logo {
  width: 78px;
  height: 78px;
  flex-shrink: 0;
}

.hdr-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hdr-center {
  flex: 1;
  text-align: center;
  min-width: 0;
}

.hdr-center h1 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
}

.hdr-center p {
  font-size: 0.82rem;
  color: #555;
  margin-top: 3px;
}

.hdr-right {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.hdr-top-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-en-btn {
  background: var(--blue-btn-en);
  color: #fff;
  border: none;
  padding: 3px 14px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  transition: opacity 0.2s;
}

.lang-en-btn:hover {
  opacity: 0.85;
}

.lang-hi-btn {
  background: transparent;
  color: var(--blue-header);
  border: 1px solid var(--blue-header);
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.78rem;
  cursor: pointer;
  font-family: var(--font-hi);
  transition: all 0.2s;
}

.lang-hi-btn:hover,
.lang-hi-btn.active {
  background: var(--blue-header);
  color: #fff;
}

.hdr-emblem {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.social-row {
  display: flex;
  gap: 6px;
}

/* =================== TICKER =================== */
.ticker-bar {
  background: #1255a8;
  color: #fff;
  display: flex;
  align-items: center;
  height: 30px;
  overflow: hidden;
  font-size: 0.78rem;
}

.ticker-icon {
  background: #0a3d80;
  padding: 0 12px;
  height: 100%;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  height: 100%;
  white-space: nowrap;
  animation: tkroll 42s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-track span {
  padding-right: 80px;
}

.ticker-track .t-bold {
  font-weight: 700;
  color: #ffd54f;
}

@keyframes tkroll {
  from { transform: translateX(60vw); }
  to { transform: translateX(-100%); }
}

/* =================== MOBILE OVERLAY =================== */
.mob-ov {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 90;
}

.mob-ov.open {
  display: block;
}

/* =================== LAYOUT =================== */
.page-wrap {
  display: flex;
  max-width: 100vw;
  margin: 0 auto;
  background: #c8d8ec;
}

/* =================== SIDEBAR =================== */
.sidebar {
  width: 185px;
  flex-shrink: 0;
  background: var(--sidebar-dark);
}

.nav-list > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-link,
.nav-drop {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  padding: 11px 12px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  text-align: left;
  transition: background 0.15s;
}

.nav-link:hover,
.nav-drop:hover {
  background: var(--sidebar-hover);
}

.nav-list > li.is-active > .nav-link,
.nav-list > li.is-active > .nav-drop {
  background: var(--sidebar-active);
  color: #fff;
  font-weight: 600;
}

.nav-icon-img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arr {
  margin-left: auto;
  font-size: 0.62rem;
  transition: transform 0.22s;
  opacity: 0.7;
}

.open > .nav-drop .arr {
  transform: rotate(180deg);
}

.sub-menu {
  background: rgba(0, 0, 0, 0.25);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.open > .sub-menu {
  max-height: 380px;
}

.sub-menu li {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sub-menu li a {
  display: block;
  padding: 8px 12px 8px 34px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.82);
  transition: background 0.15s;
}

.sub-menu li a:hover {
  background: var(--sidebar-hover);
  color: #fff;
}

/* =================== MAIN COLUMN =================== */
.main-col {
  flex: 1;
  min-width: 0;
  background: #fff;
  display: flex;
  flex-direction: column;
}

/* --- Banner Row --- */
.banner-row {
  display: flex;
  height: 290px;
}

.banner-slider {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 200px;
}

.slide {
  display: none;
  position: absolute;
  inset: 0;
}

.slide.active {
  display: block;
}

.slide-art {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-slogan {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10, 30, 80, 0.82) 0%, transparent 100%);
  padding: 16px 20px 10px;
}

.slogan-text {
  font-family: var(--font-hi);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.slide-dots {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  gap: 6px;
}

.sdot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.sdot.on {
  background: #ffd700;
}

/* What's New Panel */
.whats-new-panel {
  width: 290px;
  flex-shrink: 0;
  border-left: 1px solid var(--border);
  background: #fff;
  display: flex;
  flex-direction: column;
}

.wn-head {
  background: #fff;
  border-bottom: 2px solid var(--blue-header);
  padding: 6px 12px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue-header);
}

.wn-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 6px 10px;
}

.wn-scroll::-webkit-scrollbar {
  width: 4px;
}

.wn-scroll::-webkit-scrollbar-thumb {
  background: #b0c8e8;
  border-radius: 4px;
}

.wn-entry {
  padding: 6px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.73rem;
  line-height: 1.4;
  color: var(--text-mid);
}

.wn-entry strong {
  color: var(--text-dark);
}

.wn-badge {
  display: inline-block;
  background: #e53935;
  color: #fff;
  font-size: 0.58rem;
  padding: 1px 4px;
  border-radius: 7px;
  font-weight: 700;
  vertical-align: middle;
  margin-left: 3px;
}

.wn-foot {
  display: block;
  padding: 5px 10px;
  font-size: 0.72rem;
  color: var(--blue-header);
  font-weight: 600;
  border-top: 1px solid var(--border);
  text-align: right;
  transition: background 0.15s;
}

.wn-foot:hover {
  background: #edf3ff;
}

/* Quick actions */
.quick-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 2px solid var(--blue-header);
}

.qb-btn {
  background: #f5f8ff;
  border: none;
  border-right: 1px solid var(--border);
  padding: 8px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  font-family: var(--font);
  transition: background 0.15s;
}

.qb-btn:last-child {
  border-right: none;
}

.qb-btn:hover {
  background: var(--blue-header);
}

.qb-btn:hover .qb-lbl {
  color: #fff;
}

.qb-ico {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-header);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qb-lbl {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
  line-height: 1.2;
}

/* Search + Breadcrumb */
.search-bar {
  display: flex;
  gap: 6px;
  padding: 6px 10px;
  background: #edf3fb;
  border-bottom: 1px solid var(--border);
}

.search-bar input {
  flex: 1;
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-size: 0.78rem;
  font-family: var(--font);
  outline: none;
}

.search-bar input:focus {
  border-color: var(--blue-header);
}

.search-bar button {
  padding: 4px 14px;
  background: var(--blue-header);
  color: #fff;
  border: none;
  border-radius: 3px;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 4px 10px;
  font-size: 0.7rem;
  color: #666;
  border-bottom: 1px solid var(--border);
  background: #f9fbff;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--blue-header);
}

/* Content Row */
.content-row {
  display: flex;
  align-items: flex-start;
}

.ann-panel {
  flex: 1;
  min-width: 0;
  padding: 8px 10px;
  border-right: 1px solid var(--border);
  overflow-x: auto;
}

.panel-head {
  background: var(--blue-header);
  color: #fff;
  padding: 5px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 6px;
  border-radius: 2px;
}

.ann-tbl {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  font-size: 0.72rem;
}

.ann-tbl th {
  background: #1a3a7a;
  color: #fff;
  padding: 5px 6px;
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
}

.ann-tbl td {
  padding: 5px 6px;
  border-bottom: 1px solid #e0ebf8;
  vertical-align: top;
  line-height: 1.32;
}

.ann-tbl tr:nth-child(even) td {
  background: #f4f9ff;
}

.ann-tbl tr:hover td {
  background: #ddeeff;
}

.bi {
  display: inline-block;
  background: #e56000;
  color: #fff;
  font-size: 0.6rem;
  padding: 1px 6px;
  border-radius: 8px;
  font-weight: 700;
  white-space: nowrap;
}

.bd {
  display: inline-block;
  background: #1565c0;
  color: #fff;
  font-size: 0.6rem;
  padding: 1px 6px;
  border-radius: 8px;
  font-weight: 700;
  white-space: nowrap;
}

.bnw {
  display: inline-block;
  background: #c62828;
  color: #fff;
  font-size: 0.57rem;
  padding: 1px 4px;
  border-radius: 7px;
  font-weight: 700;
  margin-left: 3px;
  vertical-align: middle;
}

.bp {
  display: inline-block;
  background: #2e7d32;
  color: #fff;
  font-size: 0.6rem;
  padding: 1px 6px;
  border-radius: 8px;
  font-weight: 700;
  white-space: nowrap;
}

.dl {
  color: var(--blue-header);
  font-size: 0.7rem;
  font-weight: 600;
  white-space: nowrap;
}

.dl:hover {
  text-decoration: underline;
}

/* Right Mini Column */
.right-mini {
  width: 190px;
  flex-shrink: 0;
  padding: 8px 6px;
}

.vc-card {
  background: #1a3a7a;
  color: #fff;
  border-radius: 5px;
  padding: 7px 8px;
  margin-bottom: 7px;
}

.vc-head {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #ffd54f;
  margin-bottom: 5px;
  justify-content: center;
}

.vc-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.68rem;
  padding: 2px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vc-row:last-child {
  border: none;
}

.vc-val {
  font-weight: 700;
  color: #7ecfea;
}

.acc-link {
  display: block;
  border: 1px solid var(--blue-header);
  color: var(--blue-header);
  border-radius: 4px;
  padding: 5px 8px;
  font-size: 0.67rem;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 6px;
}

.acc-link:hover {
  background: var(--blue-header);
  color: #fff;
}

/* Bottom Section */
.bottom-section {
  background: #e8f0fa;
  border-top: 2px solid var(--border);
  padding: 10px;
}

.contacts-row {
  display: flex;
  gap: 10px;
}

.mini-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #1a3a7a;
  border-bottom: 2px solid var(--blue-header);
  padding-bottom: 3px;
  margin-bottom: 7px;
}

.contact-cards {
  display: flex;
  gap: 8px;
  flex: 1;
  flex-wrap: wrap;
}

.c-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 155px;
}

.c-ava {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a3a7a, #2a6ada);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  border: 2px solid var(--blue-header);
}

.c-info h4 {
  font-size: 0.72rem;
  font-weight: 700;
  color: #1a3a7a;
}

.c-info p {
  font-size: 0.65rem;
  color: #666;
}

.c-link {
  font-size: 0.64rem;
  color: var(--blue-header);
}

/* Video Box */
.video-box {
  width: 185px;
  flex-shrink: 0;
}

.vid-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 5px;
  position: relative;
  background: linear-gradient(135deg, #0a1428, #1a3a6e);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.vt-play {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(200, 0, 0, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vt-label {
  font-size: 0.62rem;
  color: #aaa;
  margin-top: 5px;
}

/* Useful Links */
.useful-box {
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.useful-head {
  background: var(--blue-header);
  color: #fff;
  text-align: center;
  padding: 5px;
  font-size: 0.8rem;
  font-weight: 700;
}

.useful-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  padding: 10px;
  background: #fff;
}

.ul-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.ul-logo {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: #fff;
}

.ul-nic { background: #0052cc; }
.ul-nta { background: #c62828; }
.ul-mea { background: #1b5e20; }
.ul-bssc { background: #6a1fa2; }
.ul-gob { background: #e65100; }
.ul-upsc { background: #1565c0; }

.ul-lbl {
  font-size: 0.62rem;
  color: #555;
  text-align: center;
}

/* Footer */
.site-footer {
  background: #1a3a7a;
  color: #b8d0f0;
  padding: 12px 20px 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.ft h4 {
  font-size: 0.78rem;
  font-weight: 700;
  color: #ffd54f;
  margin-bottom: 5px;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.ft p {
  font-size: 0.72rem;
  line-height: 1.6;
}

.ft .ph::before {
  content: '📞 ';
}

.ft-copy {
  width: 100%;
  text-align: center;
  font-size: 0.67rem;
  color: rgba(255, 255, 255, 0.45);
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 4px;
}

/* =================== KEY CONTACTS =================== */
.kc-box {
  border: 1px solid #c8ddf5;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  min-width: 220px;
}

.kc-head {
  background: #29b6d8;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 700;
}

.kc-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
}

.kc-photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #29b6d8;
  flex-shrink: 0;
}

.kc-placeholder {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #e3f0ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  border: 2px solid #bbd4f5;
}

.kc-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.kc-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: #1a1a1a;
}

.kc-role {
  font-size: 0.7rem;
  color: #555;
}

.kc-phone,
.kc-email {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: #29b6d8;
  text-decoration: none;
}

.kc-viewall {
  text-align: right;
  padding: 8px 14px;
  border-top: 1px solid #eef3fb;
}

.kc-viewall a {
  font-size: 0.73rem;
  color: #29b6d8;
  text-decoration: none;
  font-weight: 600;
}

/* =====================================================
   RESPONSIVE BREAKPOINTS
   ===================================================== */

/* Large Desktop */
@media screen and (min-width: 1200px) {
  .banner-row {
    height: 320px;
  }
  
  .whats-new-panel {
    width: 320px;
  }
}

/* Small Laptop (1024px) */
@media screen and (max-width: 1024px) {
  .page-wrap {
    max-width: 100%;
  }
  
  .sidebar {
    width: 160px;
  }
  
  .banner-row {
    height: 240px;
  }
  
  .whats-new-panel {
    width: 250px;
  }
  
  .slogan-text {
    font-size: 1.6rem;
  }
  
  .right-mini {
    width: 170px;
  }
  
  .useful-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Tablet Landscape (900px) */
@media screen and (max-width: 900px) {
  .useful-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet Portrait (768px) */
@media screen and (max-width: 768px) {
  /* Header */
  .site-header {
    flex-wrap: wrap;
    padding: 8px;
    min-height: auto;
    gap: 8px;
  }
  
  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #f0f0f0;
    border-radius: 4px;
    order: 1;
  }
  
  .hdr-logo {
    width: 55px;
    height: 55px;
    order: 2;
  }
  
  .hdr-center {
    order: 4;
    width: 100%;
    text-align: left;
    padding-left: 0;
  }
  
  .hdr-center h1 {
    font-size: 1.25rem;
  }
  
  .hdr-right {
    order: 3;
    flex-direction: row;
    align-items: center;
  }
  
  .hdr-emblem {
    width: 40px;
    height: 40px;
  }
  
  /* Ticker */
  .ticker-bar {
    height: 26px;
    font-size: 0.72rem;
  }
  
  /* Page Wrap */
  .page-wrap {
    display: block;
  }
  
  /* Sidebar - Mobile */
  .sidebar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 240px;
    height: 100vh;
    overflow-y: auto;
    z-index: 100;
    padding-top: 20px;
  }
  
  .sidebar.mob-open {
    display: block;
  }
  
  /* Banner */
  .banner-row {
    flex-direction: column;
    height: auto;
  }
  
  .banner-slider {
    height: 200px;
  }
  
  .whats-new-panel {
    width: 100%;
    height: 180px;
    border-left: none;
    border-top: 1px solid var(--border);
  }
  
  .slogan-text {
    font-size: 1.3rem;
  }
  
  /* Quick Bar */
  .quick-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Content Row */
  .content-row {
    flex-direction: column;
  }
  
  .ann-panel {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  
  .right-mini {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .vc-card,
  .acc-link {
    flex: 1;
    min-width: 140px;
  }
  
  /* Bottom Section */
  .contacts-row {
    flex-wrap: wrap;
  }
  
  .kc-box {
    width: 100%;
  }
  
  .video-box {
    width: 100%;
    display: flex;
    gap: 8px;
  }
  
  .vid-thumb {
    flex: 1;
  }
  
  /* Useful Grid */
  .useful-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  /* Footer */
  .site-footer {
    flex-direction: column;
    gap: 12px;
    padding: 12px;
  }
}

/* Mobile Large (480px) */
@media screen and (max-width: 480px) {
  /* Base */
  html {
    font-size: 11.5px;
  }
  
  body {
    overflow-x: hidden;
  }
  
  /* Header */
  .site-header {
    padding: 6px 8px;
    gap: 6px;
  }
  
  .hamburger {
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
  }
  
  .hdr-logo {
    width: 45px;
    height: 45px;
  }
  
  .hdr-center h1 {
    font-size: 1rem;
  }
  
  .hdr-center p {
    font-size: 0.68rem;
  }
  
  .hdr-emblem {
    width: 30px;
    height: 30px;
  }
  
  .lang-en-btn,
  .lang-hi-btn {
    padding: 2px 8px;
    font-size: 0.68rem;
  }
  
  .social-row {
    display: none;
  }
  
  /* Ticker */
  .ticker-bar {
    height: 24px;
    font-size: 0.65rem;
  }
  
  .ticker-icon {
    padding: 0 8px;
  }
  
  /* Banner */
  .banner-slider {
    height: 160px;
  }
  
  .slogan-text {
    font-size: 1rem;
  }
  
  .whats-new-panel {
    height: 150px;
  }
  
  /* Quick Bar */
  .quick-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .qb-btn {
    padding: 8px 4px;
  }
  
  .qb-ico {
    width: 32px;
    height: 32px;
  }
  
  .qb-lbl {
    font-size: 0.6rem;
  }
  
  /* Search & Breadcrumb */
  .search-bar {
    padding: 6px;
    gap: 4px;
  }
  
  .search-bar input {
    padding: 3px 8px;
    font-size: 0.72rem;
  }
  
  .search-bar button {
    padding: 3px 10px;
    font-size: 0.72rem;
  }
  
  .breadcrumb {
    padding: 5px 8px;
    font-size: 0.62rem;
  }
  
  /* Announcements */
  .ann-tbl {
    min-width: 500px;
    font-size: 0.65rem;
  }
  
  .panel-head {
    font-size: 0.78rem;
  }
  
  /* Right Mini */
  .right-mini {
    padding: 6px;
    gap: 6px;
  }
  
  .vc-card,
  .acc-link {
    min-width: 100px;
  }
  
  /* Bottom Section */
  .contacts-row {
    flex-direction: column;
  }
  
  .kc-box {
    min-width: auto;
  }
  
  .kc-card {
    padding: 8px 10px;
    gap: 8px;
  }
  
  .kc-photo,
  .kc-placeholder {
    width: 40px;
    height: 40px;
  }
  
  .kc-name {
    font-size: 0.72rem;
  }
  
  /* Video & Useful */
  .vid-thumb {
    min-height: 70px;
  }
  
  .useful-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    padding: 6px;
  }
  
  .ul-logo {
    width: 36px;
    height: 36px;
    font-size: 0.6rem;
  }
  
  .ul-lbl {
    font-size: 0.55rem;
  }
  
  /* Footer */
  .site-footer {
    padding: 10px 8px 8px;
  }
  
  .ft h4 {
    font-size: 0.72rem;
  }
  
  .ft p {
    font-size: 0.65rem;
  }
  
  .ft-copy {
    font-size: 0.58rem;
  }
  
  /* Contact Cards */
  .contact-cards {
    flex-direction: column;
  }
  
  .c-card {
    min-width: 100%;
  }
}

/* Mobile Small (320px) */
@media screen and (max-width: 360px) {
  .hdr-center h1 {
    font-size: 0.9rem;
  }
  
  .quick-bar {
    grid-template-columns: 1fr 1fr;
  }
  
  .qb-btn {
    padding: 6px 2px;
  }
  
  .qb-lbl {
    font-size: 0.55rem;
  }
}

/* =====================================================
   ACCESSIBILITY & UTILITY
   ===================================================== */

/* Focus states */
*:focus-visible {
  outline: 2px solid var(--blue-header);
  outline-offset: 2px;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--blue-header);
  color: #fff;
  padding: 8px 16px;
  z-index: 1000;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* High contrast */
@media (prefers-contrast: high) {
  .site-header {
    border-bottom: 2px solid #000;
  }
  
  .sidebar {
    border-right: 2px solid #000;
  }
  
  .site-footer {
    border-top: 2px solid #000;
  }
}

/* Print */
@media print {
  .sidebar,
  .hamburger,
  .quick-bar,
  .search-bar,
  .ticker-bar,
  .social-row,
  .video-box,
  .useful-box {
    display: none !important;
  }
  
  .page-wrap {
    display: block;
  }
  
  .main-col {
    width: 100%;
  }
  
  body {
    background: #fff;
  }
  
  .site-header {
    border-bottom: 1px solid #000;
  }
}
