/* ============================================================
   IGNOU UNIVERSITY SYSTEM - MAIN CSS
   ============================================================ */

:root {
  --blue: #003087;
  --dblue: #001f5c;
  --lblue: #0056b3;
  --orange: #e8611a;
  --gold: #c9a227;
  --gray: #f5f5f5;
  --text: #333;
  --border: #ddd;
  --white: #fff;
  --shadow: 0 2px 10px rgba(0,0,0,0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Noto Sans', sans-serif; color: var(--text); background: #fff; font-size: 15px; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 10px; top: 10px; z-index: 9999; background: var(--blue); color: #fff; padding: 5px 10px; }

/* ===== TOP BAR ===== */
.top-bar { background: var(--dblue); color: #ccc; font-size: 12px; padding: 5px 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.top-bar-left { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.top-bar a { color: #aac4ff; text-decoration: none; transition: color .2s; }
.top-bar a:hover { color: #fff; }
.top-bar-right { display: flex; align-items: center; gap: 12px; }
.social-icons a { color: #aac4ff; font-size: 14px; margin: 0 4px; transition: color .2s; }
.social-icons a:hover { color: #fff; }
.acc-btns button { background: rgba(255,255,255,.15); color: #fff; border: none; padding: 2px 7px; margin-left: 3px; cursor: pointer; border-radius: 3px; font-size: 11px; transition: background .2s; }
.acc-btns button:hover { background: rgba(255,255,255,.3); }

/* ===== HEADER ===== */
#main-header { background: #fff; padding: 10px 20px; border-bottom: 3px solid var(--orange); box-shadow: 0 2px 8px rgba(0,0,0,.1); position: sticky; top: 0; z-index: 1000; }
.header-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; flex-wrap: wrap; gap: 10px; }
.logo-area { display: flex; align-items: center; gap: 14px; }
.logo-img { height: 72px; width: auto; object-fit: contain; }
.logo-text h1 { font-family: 'Noto Serif', serif; font-size: 19px; color: var(--blue); font-weight: 700; line-height: 1.2; }
.logo-text h2 { font-size: 13px; color: #555; font-weight: 400; }
.logo-text p { font-size: 11px; color: #888; margin-top: 2px; }
.header-badges { display: flex; gap: 8px; }
.badge { padding: 6px 12px; border-radius: 5px; font-size: 11px; font-weight: 700; text-align: center; line-height: 1.4; }
.badge-orange { background: var(--orange); color: #fff; }
.badge-blue { background: var(--blue); color: #fff; }

/* ===== NAVBAR ===== */
#main-nav { background: var(--blue); position: relative; z-index: 999; }
.nav-container { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; }
.nav-toggle { display: none; color: #fff; padding: 14px 16px; cursor: pointer; font-size: 18px; }
.nav-links { display: flex; align-items: center; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; }
.nav-links::-webkit-scrollbar { display: none; }
.nav-item { position: relative; }
.nav-item > a, .nav-item > span { display: block; padding: 13px 15px; color: #fff; text-decoration: none; font-size: 13px; font-weight: 500; white-space: nowrap; cursor: pointer; transition: background .2s; border-right: 1px solid rgba(255,255,255,.12); }
.nav-item:hover > a, .nav-item:hover > span, .nav-item.active > a { background: var(--orange); }
.nav-item .ci { font-size: 10px; margin-left: 3px; }
.result-nav > a { background: var(--orange); font-weight: 700; }
.result-nav > a:hover { background: #c9510e; }
.dropdown { display: none; position: absolute; top: 100%; left: 0; background: #fff; min-width: 230px; box-shadow: 0 4px 15px rgba(0,0,0,.15); z-index: 1001; border-top: 3px solid var(--orange); }
.nav-item:hover .dropdown { display: block; }
.dropdown a { display: block; padding: 10px 16px; color: var(--text); text-decoration: none; font-size: 13px; border-bottom: 1px solid #f0f0f0; transition: all .2s; }
.dropdown a:hover { background: var(--blue); color: #fff; padding-left: 22px; }

/* ===== TICKER ===== */
.ticker-bar { background: #f0f7ff; border-bottom: 1px solid #c5d9f2; padding: 7px 20px; display: flex; align-items: center; gap: 10px; overflow: hidden; }
.ticker-label { background: var(--orange); color: #fff; padding: 3px 10px; font-size: 12px; font-weight: 700; white-space: nowrap; border-radius: 3px; flex-shrink: 0; }
.ticker-content { flex: 1; overflow: hidden; }
.ticker-text { white-space: nowrap; animation: ticker 35s linear infinite; font-size: 13px; color: var(--blue); }
.ticker-text a { color: var(--blue); text-decoration: none; margin: 0 30px; }
.ticker-text a:hover { text-decoration: underline; }
@keyframes ticker { 0% { transform: translateX(100%); } 100% { transform: translateX(-200%); } }

/* ===== SLIDER ===== */
.slider-section { position: relative; overflow: hidden; background: #000; }
.slider-wrapper { display: flex; transition: transform .7s ease; }
.slide { min-width: 100%; height: 440px; position: relative; overflow: hidden; }
.slide-bg { width: 100%; height: 100%; background-size: cover; background-position: center; }
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.3) 60%, rgba(0,0,0,0) 100%); display: flex; align-items: center; padding: 40px 60px; }
.slide-content { max-width: 560px; color: #fff; }
.slide-tag { background: var(--orange); color: #fff; display: inline-block; padding: 4px 12px; font-size: 11px; font-weight: 700; border-radius: 3px; margin-bottom: 12px; letter-spacing: 1px; text-transform: uppercase; }
.slide-content h2 { font-family: 'Noto Serif', serif; font-size: 32px; font-weight: 700; line-height: 1.3; margin-bottom: 12px; text-shadow: 0 2px 8px rgba(0,0,0,.5); }
.slide-content p { font-size: 14px; line-height: 1.7; opacity: .9; margin-bottom: 20px; }
.slide-btn { display: inline-block; background: var(--orange); color: #fff; padding: 10px 24px; text-decoration: none; font-weight: 600; font-size: 14px; border-radius: 4px; transition: background .2s; }
.slide-btn:hover { background: #c9510e; }
.stat-cards-col { position: absolute; right: 50px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 12px; }
.slide-stat-card { background: rgba(255,255,255,.15); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.3); border-radius: 10px; padding: 12px 18px; text-align: center; color: #fff; }
.slide-stat-card .num { font-size: 26px; font-weight: 700; color: var(--gold); }
.slide-stat-card .lbl { font-size: 11px; opacity: .85; }
.s-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.2); color: #fff; border: 2px solid rgba(255,255,255,.5); width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 17px; z-index: 10; transition: all .2s; backdrop-filter: blur(4px); }
.s-arrow:hover { background: var(--orange); border-color: var(--orange); }
.s-arrow.prev { left: 18px; }
.s-arrow.next { right: 18px; }
.slider-dots { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.s-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.5); cursor: pointer; transition: all .3s; border: none; }
.s-dot.active { background: #fff; width: 28px; border-radius: 5px; }

/* ===== QUICK LINKS ===== */
.quick-links { background: #fff; border-bottom: 1px solid #e0e0e0; }
.ql-grid { display: grid; grid-template-columns: repeat(4,1fr); border-left: 1px solid #e0e0e0; }
.ql-card { padding: 20px; border-right: 1px solid #e0e0e0; border-bottom: 1px solid #e0e0e0; display: flex; align-items: flex-start; gap: 14px; text-decoration: none; color: inherit; transition: background .2s; }
.ql-card:hover { background: #f0f7ff; }
.ql-icon { width: 46px; height: 46px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.ql-card:nth-child(1) .ql-icon { background: #e8f4fd; color: var(--lblue); }
.ql-card:nth-child(2) .ql-icon { background: #fef3e8; color: var(--orange); }
.ql-card:nth-child(3) .ql-icon { background: #f0f9f0; color: #28a745; }
.ql-card:nth-child(4) .ql-icon { background: #fdf0f0; color: #dc3545; }
.ql-text h4 { font-size: 14px; font-weight: 600; color: var(--blue); margin-bottom: 3px; }
.ql-text p { font-size: 12px; color: #666; line-height: 1.5; }

/* ===== SECTIONS ===== */
.section { padding: 55px 20px; }
.section-alt { background: var(--gray); }
.sec-title { text-align: center; margin-bottom: 35px; }
.sec-title h2 { font-family: 'Noto Serif', serif; font-size: 27px; color: var(--blue); font-weight: 700; margin-bottom: 8px; }
.underline { width: 55px; height: 3px; background: var(--orange); margin: 0 auto 12px; border-radius: 2px; }
.sec-title p { color: #666; font-size: 14px; max-width: 600px; margin: 0 auto; }

/* ===== CARDS GRID ===== */
.cards-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.cards-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.cards-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.card { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: var(--shadow); transition: transform .3s, box-shadow .3s; text-decoration: none; color: inherit; display: block; }
.card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,.15); }
.card-img { width: 100%; height: 165px; object-fit: cover; display: block; }
.card-img-ph { width: 100%; height: 165px; display: flex; align-items: center; justify-content: center; font-size: 45px; }
.card-body { padding: 16px; }
.card-body h4 { font-size: 15px; font-weight: 600; color: var(--blue); margin-bottom: 6px; }
.card-body p { font-size: 13px; color: #666; line-height: 1.5; }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; }
.gallery-item { position: relative; overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(0,48,135,0); transition: background .3s; display: flex; align-items: flex-end; padding: 12px; }
.gallery-item:hover .gallery-overlay { background: rgba(0,48,135,.6); }
.gallery-overlay span { color: #fff; font-size: 13px; font-weight: 600; opacity: 0; transition: opacity .3s; }
.gallery-item:hover .gallery-overlay span { opacity: 1; }

/* ===== STATS SECTION ===== */
.stats-section { background: var(--blue); padding: 50px 20px; color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 20px; text-align: center; }
.stat-num { font-size: 36px; font-weight: 700; color: var(--gold); }
.stat-lbl { font-size: 13px; opacity: .85; margin-top: 5px; }

/* ===== VC SECTION ===== */
.vc-grid { display: grid; grid-template-columns: 280px 1fr; gap: 40px; align-items: start; }
.vc-photo-wrap { text-align: center; }
.vc-photo { width: 210px; height: 260px; object-fit: cover; border-radius: 8px; border: 4px solid var(--blue); display: block; margin: 0 auto 12px; }
.vc-name { font-weight: 700; color: var(--blue); font-size: 15px; }
.vc-title { font-size: 13px; color: #666; margin-top: 4px; }
.vc-msg h3 { font-family: 'Noto Serif', serif; font-size: 22px; color: var(--blue); margin-bottom: 14px; }
.vc-msg p { font-size: 14px; line-height: 1.8; color: #444; margin-bottom: 12px; }
.vc-msg strong { color: var(--blue); }
.btn-primary { display: inline-block; background: var(--blue); color: #fff; padding: 9px 22px; text-decoration: none; border-radius: 4px; font-size: 13px; font-weight: 600; transition: background .2s; border: none; cursor: pointer; font-family: inherit; }
.btn-primary:hover { background: var(--orange); }
.btn-orange { display: inline-block; background: var(--orange); color: #fff; padding: 9px 22px; text-decoration: none; border-radius: 4px; font-size: 13px; font-weight: 600; transition: background .2s; border: none; cursor: pointer; font-family: inherit; }
.btn-orange:hover { background: #c9510e; }

/* ===== PROGRAMMES ===== */
.prog-tabs { display: flex; gap: 8px; margin-bottom: 22px; flex-wrap: wrap; }
.prog-tab { padding: 7px 18px; background: #e8f0ff; color: var(--blue); border: none; border-radius: 4px; font-size: 13px; font-weight: 500; cursor: pointer; transition: all .2s; font-family: inherit; }
.prog-tab.active, .prog-tab:hover { background: var(--blue); color: #fff; }
.prog-card { border: 1px solid var(--border); border-radius: 8px; overflow: hidden; transition: all .2s; }
.prog-card:hover { border-color: var(--blue); box-shadow: 0 3px 15px rgba(0,48,135,.15); transform: translateY(-2px); }
.prog-card img { width: 100%; height: 105px; object-fit: cover; display: block; }
.prog-card-body { padding: 12px; }
.prog-card-body h4 { font-size: 12px; font-weight: 600; color: var(--blue); margin-bottom: 4px; line-height: 1.4; }
.prog-card-body p { font-size: 11px; color: #888; }

/* ===== SCHOOLS ===== */
.schools-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.school-item { background: #fff; border: 1px solid #e0e8ff; border-left: 4px solid var(--blue); padding: 11px 14px; border-radius: 0 6px 6px 0; font-size: 13px; transition: all .2s; text-decoration: none; color: inherit; display: block; }
.school-item:hover { background: var(--blue); color: #fff; border-left-color: var(--orange); }
.school-code { font-weight: 700; font-size: 11px; color: var(--orange); margin-bottom: 3px; }
.school-item:hover .school-code { color: var(--gold); }

/* ===== STEPS ===== */
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.step-card { text-align: center; padding: 25px 15px; background: #fff; border-radius: 12px; box-shadow: var(--shadow); position: relative; transition: transform .3s; }
.step-card:hover { transform: translateY(-5px); }
.step-num { width: 50px; height: 50px; background: var(--blue); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 700; margin: 0 auto 14px; }
.step-card h4 { font-size: 15px; font-weight: 600; color: var(--blue); margin-bottom: 8px; }
.step-card p { font-size: 13px; color: #666; line-height: 1.5; }
.step-arrow { position: absolute; right: -18px; top: 50%; transform: translateY(-50%); color: var(--orange); font-size: 20px; z-index: 1; }

/* ===== NEWS ===== */
.news-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 25px; }
.news-box { background: #fff; border-radius: 8px; box-shadow: var(--shadow); overflow: hidden; }
.news-hdr { background: var(--blue); color: #fff; padding: 12px 17px; font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.news-list { max-height: 290px; overflow-y: auto; }
.news-list::-webkit-scrollbar { width: 4px; }
.news-list::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 2px; }
.news-item { padding: 11px 17px; border-bottom: 1px solid #f0f0f0; display: flex; gap: 10px; align-items: flex-start; transition: background .2s; }
.news-item:hover { background: #f8f9ff; }
.news-date { background: var(--blue); color: #fff; padding: 3px 7px; border-radius: 3px; font-size: 10px; font-weight: 600; white-space: nowrap; flex-shrink: 0; }
.news-item a { font-size: 13px; color: var(--text); text-decoration: none; line-height: 1.4; }
.news-item a:hover { color: var(--blue); }
.new-tag { background: var(--orange); color: #fff; font-size: 9px; padding: 1px 5px; border-radius: 2px; vertical-align: middle; margin-left: 4px; font-weight: 700; }

/* ===== TESTIMONIALS ===== */
.testi-outer { overflow: hidden; }
.testi-wrap { display: flex; transition: transform .5s ease; }
.testi-card { min-width: 33.33%; padding: 0 10px; }
.testi-inner { background: #fff; border-radius: 10px; padding: 22px; box-shadow: var(--shadow); border-top: 4px solid var(--blue); }
.testi-q { font-size: 38px; color: var(--blue); opacity: .2; line-height: 1; margin-bottom: 4px; }
.testi-inner p { font-size: 13px; line-height: 1.7; color: #555; margin-bottom: 14px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av { width: 44px; height: 44px; border-radius: 50%; background: var(--blue); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 15px; flex-shrink: 0; }
.testi-info strong { font-size: 14px; color: var(--blue); display: block; }
.testi-info span { font-size: 12px; color: #888; }
.slider-nav { display: flex; justify-content: center; gap: 8px; margin-top: 18px; }
.nav-dot { width: 8px; height: 8px; border-radius: 50%; background: #ccc; cursor: pointer; border: none; transition: all .3s; }
.nav-dot.active { background: var(--blue); width: 22px; border-radius: 4px; }

/* ===== RESULT PORTAL ===== */
.result-hero { background: linear-gradient(135deg, var(--dblue) 0%, var(--blue) 60%, #0066cc 100%); padding: 60px 20px; text-align: center; color: #fff; }
.result-hero h1 { font-family: 'Noto Serif', serif; font-size: 34px; font-weight: 700; margin-bottom: 10px; }
.result-hero p { font-size: 15px; opacity: .85; }
.result-section { background: var(--gray); padding: 55px 20px; }
.result-box { max-width: 600px; margin: 0 auto; background: #fff; border-radius: 14px; padding: 40px; box-shadow: 0 10px 40px rgba(0,0,0,.12); }
.result-box h3 { font-size: 21px; color: var(--blue); font-weight: 700; margin-bottom: 6px; text-align: center; }
.result-box > p { color: #666; font-size: 14px; margin-bottom: 25px; text-align: center; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 13px; border: 2px solid #e0e0e0; border-radius: 6px; font-size: 14px; font-family: inherit; transition: border-color .2s; color: var(--text); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--blue); }
.form-submit-btn { width: 100%; background: var(--blue); color: #fff; border: none; padding: 13px; border-radius: 6px; font-size: 15px; font-weight: 600; cursor: pointer; transition: background .2s; display: flex; align-items: center; justify-content: center; gap: 8px; font-family: inherit; }
.form-submit-btn:hover { background: var(--orange); }
.result-found-box { background: #f0fff4; border: 2px solid #28a745; border-radius: 8px; padding: 18px; text-align: center; margin-top: 18px; }
.result-found-box h4 { font-size: 16px; margin-bottom: 8px; color: #155724; }
.result-found-box p { font-size: 13px; color: #555; margin-bottom: 5px; }
.btn-open-pdf { display: inline-block; background: #28a745; color: #fff; padding: 10px 22px; border-radius: 5px; text-decoration: none; font-weight: 600; font-size: 14px; margin-top: 10px; transition: background .2s; }
.btn-open-pdf:hover { background: #1e7e34; }
.result-not-found { background: #fff3f3; border: 2px solid #dc3545; border-radius: 8px; padding: 16px; text-align: center; margin-top: 18px; }
.result-not-found h4 { color: #721c24; font-size: 15px; margin-bottom: 5px; }
.result-not-found p { font-size: 13px; color: #721c24; }
.result-info-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; max-width: 900px; margin: 40px auto 0; }
.rcard { background: #fff; border-radius: 10px; padding: 20px; text-align: center; box-shadow: var(--shadow); }
.rcard i { font-size: 30px; color: var(--blue); margin-bottom: 9px; display: block; }
.rcard h4 { font-size: 14px; font-weight: 600; color: var(--blue); margin-bottom: 5px; }
.rcard p { font-size: 12px; color: #666; }

/* ===== FOOTER ===== */
#main-footer { background: var(--dblue); color: #ccc; }
.footer-top { padding: 45px 20px 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; }
.footer-about p { font-size: 13px; line-height: 1.7; margin-bottom: 15px; }
.footer-logo { height: 50px; filter: brightness(0) invert(1); margin-bottom: 12px; display: block; }
.footer-social a { color: #aac4ff; font-size: 17px; margin-right: 10px; transition: color .2s; }
.footer-social a:hover { color: #fff; }
.footer-col h4 { color: #fff; font-size: 14px; font-weight: 600; margin-bottom: 14px; padding-bottom: 7px; border-bottom: 2px solid var(--orange); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #aac4ff; text-decoration: none; font-size: 13px; transition: color .2s; }
.footer-col ul li a:hover { color: #fff; }
.contact-list { list-style: none; }
.contact-list li { display: flex; gap: 10px; margin-bottom: 10px; font-size: 13px; }
.contact-list li i { color: var(--orange); flex-shrink: 0; margin-top: 2px; width: 16px; }
.footer-bottom { background: rgba(0,0,0,.3); padding: 14px 20px; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; font-size: 12px; }

/* ===== ALERTS & MESSAGES ===== */
.alert { padding: 12px 16px; border-radius: 6px; font-size: 13px; margin-bottom: 15px; display: flex; align-items: center; gap: 8px; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-danger  { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.alert-warning { background: #fff3cd; color: #856404; border: 1px solid #ffeeba; }
.alert-info    { background: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; }

/* ===== TABLES ===== */
.table-wrap { overflow-x: auto; }
.tbl { width: 100%; border-collapse: collapse; font-size: 13px; }
.tbl th { background: #f0f4ff; padding: 10px 13px; text-align: left; font-weight: 600; color: var(--blue); border-bottom: 2px solid #dde4ff; }
.tbl td { padding: 10px 13px; border-bottom: 1px solid #f0f0f0; color: #444; vertical-align: middle; }
.tbl tr:hover td { background: #f8f9ff; }
.bpill { display: inline-block; padding: 3px 9px; border-radius: 12px; font-size: 11px; font-weight: 600; }
.b-success { background: #d4edda; color: #155724; }
.b-info    { background: #d1ecf1; color: #0c5460; }
.b-warning { background: #fff3cd; color: #856404; }
.b-danger  { background: #f8d7da; color: #721c24; }
.b-purple  { background: #ede3ff; color: #5a00b4; }

/* ===== PAGES ===== */
.page-hero { background: linear-gradient(135deg, var(--dblue), var(--blue)); color: #fff; padding: 40px 20px; }
.page-hero h1 { font-family: 'Noto Serif', serif; font-size: 28px; font-weight: 700; margin-bottom: 8px; }
.breadcrumb { font-size: 13px; opacity: .8; }
.breadcrumb a { color: rgba(255,255,255,.8); text-decoration: none; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { margin: 0 6px; }

/* ===== CONTACT ===== */
.contact-form-wrap { max-width: 700px; margin: 0 auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===== NOTIFICATIONS PAGE ===== */
.notif-item { background: #fff; border-radius: 8px; padding: 16px 20px; margin-bottom: 12px; box-shadow: 0 1px 6px rgba(0,0,0,.07); display: flex; gap: 14px; align-items: flex-start; border-left: 4px solid var(--blue); transition: box-shadow .2s; }
.notif-item.important { border-left-color: var(--orange); }
.notif-item:hover { box-shadow: 0 3px 12px rgba(0,0,0,.12); }
.notif-icon { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; background: #e8f0ff; color: var(--blue); }
.notif-item.important .notif-icon { background: #fef3e8; color: var(--orange); }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #f0f0f0; }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 4px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .vc-grid { grid-template-columns: 1fr; }
  .schools-grid { grid-template-columns: repeat(2,1fr); }
  .cards-4 { grid-template-columns: repeat(2,1fr); }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .step-arrow { display: none; }
  .result-info-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links { display: none; flex-direction: column; width: 100%; position: absolute; top: 100%; left: 0; background: var(--blue); z-index: 999; max-height: 80vh; overflow-y: auto; }
  .nav-links.open { display: flex; }
  .nav-item > a, .nav-item > span { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .dropdown { position: static; box-shadow: none; border-top: none; background: rgba(0,0,0,.2); }
  .dropdown a { color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.1); }
  .dropdown a:hover { background: var(--orange); color: #fff; }
  .stat-cards-col { display: none; }
  .slide { height: 280px; }
  .slide-content h2 { font-size: 22px; }
  .slide-overlay { padding: 20px; }
  .ql-grid { grid-template-columns: repeat(2,1fr); }
  .cards-3 { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .testi-card { min-width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .header-badges { display: none; }
}
@media (max-width: 480px) {
  .logo-text h1 { font-size: 15px; }
  .logo-text h2 { display: none; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .result-info-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .result-box { padding: 25px 18px; }
}
