:root {
  --blue-dark: #0a2463;
  --blue-mid: #1a3a8f;
  --blue-light: #2563eb;
  --blue-pale: #dbeafe;
  --orange: #f97316;
  --orange-dark: #ea580c;
  --orange-light: #fed7aa;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-600: #000;
  --gray-800: #1e293b;
  --font-heading: 'DM Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --shadow-sm: 0 2px 8px rgba(10,36,99,0.08);
  --shadow-md: 0 8px 24px rgba(10,36,99,0.12);
  --shadow-lg: 0 16px 48px rgba(10,36,99,0.16);
  --radius: 12px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--gray-800); background: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-tag { display: inline-block; background: var(--orange-light); color: var(--orange-dark); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 14px; border-radius: 50px; margin-bottom: 12px; }
.section-title { font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2rem); color: var(--blue-dark); line-height: 1.2; margin-bottom: 14px; }
.section-sub { color: var(--gray-600); font-size: 1rem; line-height: 1.7; max-width: 560px; }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--orange); color: var(--white); font-family: var(--font-body); font-weight: 600; font-size: 0.9rem; padding: 12px 26px; border-radius: 8px; border: none; cursor: pointer; transition: all 0.3s; }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(249,115,22,0.35); }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--blue-mid); font-family: var(--font-body); font-weight: 600; font-size: 0.9rem; padding: 11px 24px; border-radius: 8px; border: 2px solid var(--blue-mid); cursor: pointer; transition: all 0.3s; }
.btn-outline:hover { background: var(--blue-mid); color: var(--white); }

/* ── TOP BAR ── */
#topbar { background: var(--blue-dark); color: rgba(255,255,255,0.85); font-size: 0.9rem; padding: 8px 0; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.topbar-contact { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar-contact a { color: rgba(255,255,255,0.85); display: flex; align-items: center; gap: 6px; transition: color 0.2s; }
.topbar-contact a:hover { color: var(--orange); }
.topbar-contact i { color: var(--orange); font-size: 0.75rem; }
.topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar-social a { color: rgba(255,255,255,0.7); margin-left: 8px; font-size: 0.85rem; transition: color 0.2s; }
.topbar-social a:hover { color: var(--orange); }
.topbar-actions { display: flex; gap: 10px; }
.topbar-actions a { background: var(--orange); color: var(--white); padding: 4px 14px; border-radius: 4px; font-size: 0.78rem; font-weight: 600; transition: background 0.2s; }
.topbar-actions a:hover { background: var(--orange-dark); }

/* ── NAVBAR ── */
#navbar { background: #ffffff; box-shadow: var(--shadow-sm); position: sticky; top: 0; z-index: 1000; transition: box-shadow 0.3s; }
#navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 0px 0; gap: 20px; }

/* LOGO AREA */
.logo-area { display: flex; align-items: center; gap: 12px; }
.logo-icon { width: 52px; height: 52px; background: linear-gradient(135deg, var(--blue-dark), var(--blue-light)); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo-icon i { color: var(--white); font-size: 1.4rem; }
.logo-text h1 { font-family: var(--font-heading); font-size: 1.1rem; color: var(--blue-dark); line-height: 1.2; }
.logo-text span { font-size: 0.72rem; color: var(--gray-600); letter-spacing: 0.06em; text-transform: uppercase; }

/* CERT LOGOS */
.cert-logos { display: flex; align-items: center; gap: 10px; }
.cert-badge { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 52px; height: 52px; border: 2px solid var(--gray-200); border-radius: 8px; padding: 4px; transition: border-color 0.2s; cursor: default; }
.cert-badge:hover { border-color: var(--orange); }
.cert-badge i { font-size: 1.1rem; color: var(--blue-mid); }
.cert-badge span { font-size: 0.5rem; font-weight: 700; color: var(--gray-600); text-align: center; line-height: 1.2; margin-top: 2px; }

/* MENU */
.nav-menu { display: flex; align-items: center; list-style: none; gap: 2px; }
.nav-menu > li { position: relative; }
.nav-menu > li > a { display: flex; align-items: center; gap: 4px; padding: 10px 14px; font-size: 1rem; font-weight: 500; color: var(--gray-800); border-radius: 6px; transition: all 0.2s; white-space: nowrap; }
.nav-menu > li > a:hover, .nav-menu > li > a.active { color: var(--blue-mid); background: var(--blue-pale); }
.nav-menu > li > a i.fa-chevron-down { font-size: 0.65rem; transition: transform 0.2s; }
.nav-menu > li:hover > a i.fa-chevron-down { transform: rotate(180deg); }
.dropdown { position: absolute; top: calc(100% + 4px); left: 0; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); box-shadow: var(--shadow-lg); min-width: 200px; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all 0.25s; z-index: 200; }
.nav-menu > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a { display: flex; align-items: center; gap: 10px; padding: 10px 18px; font-size: 0.85rem; color: var(--gray-800); transition: all 0.15s; border-bottom: 1px solid var(--gray-100); }
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: var(--blue-pale); color: var(--blue-mid); padding-left: 24px; }
.dropdown li a i { width: 16px; color: var(--orange); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { width: 24px; height: 2.5px; background: var(--blue-dark); border-radius: 2px; transition: all 0.3s; }

/* ── HERO SLIDER ── */
#hero { position: relative; overflow: hidden; height: 580px; }
.slides { display: flex; height: 100%; transition: transform 0.7s cubic-bezier(0.77,0,0.18,1); }
.slide { min-width: 100%; position: relative; display: flex; align-items: center; }
.slide-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.slide-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,36,99,0.82) 0%, rgba(10,36,99,0.35) 60%, transparent 100%); }
.slide-content { position: relative; z-index: 2; padding: 0 60px; max-width: 640px; }
.slide-tag { display: inline-block; background: var(--orange); color: var(--white); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 5px 14px; border-radius: 4px; margin-bottom: 16px; }
.slide-content h2 { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3.2rem); color: var(--white); line-height: 1.15; margin-bottom: 16px; }
.slide-content p { color: rgba(255,255,255,0.85); font-size: 1rem; line-height: 1.7; margin-bottom: 28px; max-width: 460px; }
.slide-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.slider-nav { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.45); border: none; cursor: pointer; transition: all 0.3s; }
.dot.active { width: 28px; border-radius: 5px; background: var(--orange); }
.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.15); border: 2px solid rgba(255,255,255,0.4); color: var(--white); font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s; backdrop-filter: blur(4px); }
.slider-arrow:hover { background: var(--orange); border-color: var(--orange); }
.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

/* ── ABOUT + NEWS ── */
#about-news { padding: 80px 0; background: var(--gray-50); }
.about-news-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about-img-wrap { position: relative; border-radius: var(--radius); overflow: hidden; margin-bottom: 24px; }
.about-img-wrap img { width: 100%; height: 260px; object-fit: cover; border-radius: var(--radius); }
.about-badge { position: absolute; bottom: -16px; right: 20px; background: var(--orange); color: var(--white); padding: 12px 20px; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.about-badge .num { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700; line-height: 1; }
.about-badge .lbl { font-size: 0.72rem; font-weight: 600; opacity: 0.9; }
.about-text { padding-top: 20px; }
.about-text p { color: var(--gray-600); font-size: 1rem; line-height: 1.8; margin-bottom: 14px; }
.about-points { list-style: none; margin: 18px 0 24px; display: flex; flex-direction: column; gap: 10px; }
.about-points li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--gray-800); }
.about-points li i { color: var(--orange); margin-top: 3px; flex-shrink: 0; }

/* NEWS */
.news-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.news-header a { font-size: 0.82rem; color: var(--blue-mid); font-weight: 600; }
.news-ticker { background: var(--blue-dark); color: var(--white); padding: 10px 16px; border-radius: 0px; margin-bottom: 0px; display: flex; gap: 12px; align-items: center; overflow: hidden; }
.ticker-label { z-index:1;background: var(--orange); color: var(--white); font-size: 0.7rem; font-weight: 700; padding: 3px 10px; border-radius: 4px; flex-shrink: 0; }
.ticker-text { font-size: 0.9rem; animation: tickerScroll 18s linear infinite; white-space: nowrap; }
@keyframes tickerScroll { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
.news-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--gray-200); }
.news-item:last-child { border-bottom: none; }
.news-date { background: var(--blue-dark); color: var(--white); border-radius: 8px; min-width: 48px; height: 52px; display: flex; flex-direction: column; align-items: center; justify-content: center; flex-shrink: 0; }
.news-date .day { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; line-height: 1; }
.news-date .month { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.8; }
.news-body h4 { font-size: 0.88rem; font-weight: 600; color: var(--blue-dark); margin-bottom: 4px; line-height: 1.4; }
.news-body p { font-size: 0.8rem; color: var(--gray-600); line-height: 1.5; }
.news-cat { display: inline-block; font-size: 0.68rem; font-weight: 600; color: var(--orange-dark); background: var(--orange-light); padding: 2px 8px; border-radius: 4px; margin-bottom: 6px; }

/* ── TEAM ── */
#team { padding: 80px 0; background: var(--white); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.team-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); transition: all 0.35s; text-align: center; }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--blue-light); }
.team-img { position: relative; overflow: hidden; height: 240px; background: var(--blue-pale); }
.team-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.4s; }
.team-card:hover .team-img img { transform: scale(1.05); }
.team-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(10,36,99,0.75) 100%); opacity: 0; transition: opacity 0.3s; display: flex; align-items: flex-end; justify-content: center; padding-bottom: 16px; gap: 10px; }
.team-card:hover .team-overlay { opacity: 1; }
.team-overlay a { width: 36px; height: 36px; border-radius: 50%; background: var(--white); display: flex; align-items: center; justify-content: center; color: var(--blue-dark); font-size: 0.85rem; transition: all 0.2s; }
.team-overlay a:hover { background: var(--orange); color: var(--white); }
.team-info { padding: 20px; }
.team-role { display: inline-block; background: var(--orange); color: var(--white); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 12px; border-radius: 4px; margin-bottom: 10px; }
.team-info h3 { font-family: var(--font-heading); font-size: 1.2rem; color: var(--blue-dark); margin-bottom: 6px; }
.team-info p { font-size: 1rem; color: var(--gray-600); line-height: 1.6; }

/* ── FACILITIES ── */
#facilities { padding: 80px 0; background: var(--gray-50); }
.fac-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.fac-card { border-radius: var(--radius); overflow: hidden; position: relative; height: 240px; cursor: pointer; box-shadow: var(--shadow-sm); }
.fac-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.fac-card:hover img { transform: scale(1.08); }
.fac-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(10,36,99,0.88) 100%); display: flex; flex-direction: column; align-items: center; justify-content: flex-end; padding: 22px; text-align: center; }
.fac-icon { width: 48px; height: 48px; background: var(--orange); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; transition: transform 0.3s; }
.fac-card:hover .fac-icon { transform: scale(1.1) rotate(-5deg); }
.fac-icon i { color: var(--white); font-size: 1.2rem; }
.fac-overlay h3 { color: var(--white); font-family: var(--font-heading); font-size: 1.05rem; margin-bottom: 4px; }
.fac-overlay p { color: rgba(255,255,255,0.8); font-size: 0.78rem; line-height: 1.5; }

/* ── WHY CHOOSE ── */
#why { padding: 80px 0; background: var(--blue-dark); position: relative; overflow: hidden; }
#why::before { content: ''; position: absolute; top: -60px; right: -60px; width: 300px; height: 300px; border-radius: 50%; background: rgba(249,115,22,0.08); }
#why::after { content: ''; position: absolute; bottom: -80px; left: -40px; width: 240px; height: 240px; border-radius: 50%; background: rgba(37,99,235,0.15); }
#why .section-title { color: var(--white); }
#why .section-sub { color: rgba(255,255,255,0.7); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.why-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 28px 22px; transition: all 0.35s; backdrop-filter: blur(4px); }
.why-card:hover { background: rgba(255,255,255,0.12); border-color: var(--orange); transform: translateY(-4px); }
.why-icon { width: 52px; height: 52px; background: var(--orange); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.why-icon i { color: var(--white); font-size: 1.2rem; }
.why-card h3 { font-family: var(--font-heading); font-size: 1.05rem; color: var(--white); margin-bottom: 10px; }
.why-card p { font-size: 1rem; color: rgba(255,255,255,0.68); line-height: 1.7; }

/* ── COURSES ── */
#courses { padding: 80px 0; background: var(--white); }
.courses-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 48px; }
.course-panel { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gray-200); }
.course-panel-header { padding: 22px 28px; display: flex; align-items: center; gap: 14px; }
.course-panel.ug .course-panel-header { background: var(--blue-dark); }
.course-panel.pg .course-panel-header { background: var(--orange); }
.course-panel-header i { font-size: 1.5rem; color: rgba(255,255,255,0.85); }
.course-panel-header div h3 { font-family: var(--font-heading); font-size: 1.2rem; color: var(--white); }
.course-panel-header div p { font-size: 0.78rem; color: rgba(255,255,255,0.8); }
.course-list { padding: 10px 0; }
.course-item { display: flex; align-items: center; justify-content: space-between; padding: 13px 28px; border-bottom: 1px solid var(--gray-100); transition: background 0.2s; }
.course-item:last-child { border-bottom: none; }
.course-item:hover { background: var(--gray-50); }
.course-item-left { display: flex; align-items: center; gap: 12px; }
.course-item-left i { color: var(--orange); width: 18px; }
.course-item-left .c-name { font-size: 0.88rem; font-weight: 500; color: var(--gray-800); }
.course-item-left .c-dept { font-size: 0.75rem; color: var(--gray-600); }
.course-badge { background: var(--blue-pale); color: var(--blue-mid); font-size: 0.7rem; font-weight: 600; padding: 3px 10px; border-radius: 20px; white-space: nowrap; }
.course-panel.pg .course-badge { background: var(--orange-light); color: var(--orange-dark); }

/* ── FACULTY ── */
#faculty { padding: 80px 0; background: var(--gray-50); }
.faculty-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 48px; }
.faculty-img { position: relative; border-radius: var(--radius); overflow: hidden; }
.faculty-img img { width: 100%; height: 380px; object-fit: cover; border-radius: var(--radius); }
.faculty-img-badge { position: absolute; top: 20px; left: 20px; background: var(--white); border-radius: var(--radius); padding: 14px 18px; box-shadow: var(--shadow-md); }
.faculty-img-badge .num { font-family: var(--font-heading); font-size: 2rem; color: var(--blue-dark); font-weight: 700; line-height: 1; }
.faculty-img-badge .lbl { font-size: 0.72rem; color: var(--gray-600); font-weight: 500; }
.faculty-features { display: flex; flex-direction: column; gap: 20px; }
.faculty-feat { display: flex; gap: 16px; align-items: flex-start; padding: 18px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-200); transition: all 0.3s; }
.faculty-feat:hover { border-color: var(--orange); box-shadow: var(--shadow-sm); }
.faculty-feat-icon { width: 44px; height: 44px; flex-shrink: 0; background: linear-gradient(135deg, var(--blue-dark), var(--blue-light)); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.faculty-feat-icon i { color: var(--white); font-size: 1rem; }
.faculty-feat h4 { font-size: 0.95rem; font-weight: 600; color: var(--blue-dark); margin-bottom: 5px; }
.faculty-feat p { font-size: 0.95rem; color: var(--gray-600); line-height: 1.6; }

/* ── COUNTER ── */
#counter { padding: 70px 0; background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 50%, #1e40af 100%); position: relative; overflow: hidden; }
#counter::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 80%, rgba(249,115,22,0.15) 0%, transparent 40%), radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 40%); }
.counter-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.counter-item { text-align: center; padding: 40px 30px; position: relative; }
.counter-item:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 20%; height: 60%; width: 1px; background: rgba(255,255,255,0.15); }
.counter-icon { width: 60px; height: 60px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.counter-icon i { color: var(--orange); font-size: 1.4rem; }
.counter-num { font-family: var(--font-heading); font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 700; color: var(--white); line-height: 1; margin-bottom: 8px; }
.counter-num sup { font-size: 1.2rem; vertical-align: super; }
.counter-label { font-size: 0.85rem; color: rgba(255,255,255,0.72); font-weight: 400; line-height: 1.4; }

/* ── FOOTER ── */
footer { background: #050f2e; color: rgba(255,255,255,0.72); }
.footer-top { padding: 60px 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; }
.footer-brand .logo-area { margin-bottom: 16px; }
.footer-brand .logo-text h1 { color: var(--white); }
.footer-brand .logo-text span { color: rgba(255,255,255,0.5); }
.footer-brand p { font-size: 0.85rem; line-height: 1.8; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); transition: all 0.2s; font-size: 0.9rem; }
.footer-social a:hover { background: var(--orange); color: var(--white); transform: translateY(-2px); }
.footer-col h4 { font-family: var(--font-heading); font-size: 1rem; color: var(--white); margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 32px; height: 2px; background: var(--orange); border-radius: 2px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links li a { font-size: 0.83rem; color: rgba(255,255,255,0.65); transition: all 0.2s; display: flex; align-items: center; gap: 8px; }
.footer-links li a i { color: var(--orange); font-size: 0.65rem; }
.footer-links li a:hover { color: var(--white); padding-left: 4px; }
.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer-contact-list li { display: flex; gap: 12px; font-size: 0.83rem; line-height: 1.6; }
.footer-contact-list li i { color: var(--orange); margin-top: 3px; flex-shrink: 0; width: 14px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 18px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.78rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--orange); }
.accred-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.accred-chip { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 6px; padding: 4px 12px; font-size: 0.72rem; color: rgba(255,255,255,0.65); }

/* ── MOBILE ── */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cert-logos { display: none; }
}
@media (max-width: 768px) {
  .topbar-contact { display: none; }
  #hero { height: 480px; }
  .slide-content { padding: 0 24px; }
  .about-news-grid, .faculty-inner, .courses-grid { grid-template-columns: 1fr; gap: 32px; }
  .team-grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
  .fac-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .counter-grid { grid-template-columns: repeat(2, 1fr); }
  .counter-item:nth-child(2)::after { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-menu { display: none; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--white); padding: 80px 24px 24px; overflow-y: auto; z-index: 999; gap: 4px; }
  .nav-menu.open { display: flex; }
  .nav-menu > li > a { font-size: 1rem; padding: 12px 16px; }
  .dropdown { position: static; box-shadow: none; border: none; opacity: 1; visibility: visible; transform: none; display: none; background: var(--gray-50); border-radius: 8px; margin: 4px 0 0 12px; }
  .dropdown.open { display: block; }
  .hamburger { display: flex; z-index: 1000; position: relative; }
  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
}
@media (max-width: 480px) {
  .fac-grid { grid-template-columns: 1fr; }
  .counter-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 100%; }
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* 1. Fix: Remove Round Circles (Bullets) from Navigation */
#menu_nav, 
#menu_nav ul, 
#menu_nav li {
    list-style: none !important;
    list-style-type: none !important;
    margin: 0;
    padding: 0;
    text-decoration: none;
}

/* Ensure sub-menus (dropdowns) are also clean */
#menu_nav li ul {
    list-style: none !important;
    padding: 0;
    margin: 0;
    border-radius: 0; /* Removes any unwanted rounding */
}

/* 2. Fix: Increase Left Side Content Width */
/* Adjusting the main flex container */
.main-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

/* Expand the left content area (Why Choose Us / Facilities) */
.content-left {
    flex: 0 0 72%; /* Sets a base width of 72% */
    max-width: 72%;
    padding: 15px;
    box-sizing: border-box;
}

/* Shrink the right sidebar (News/Notice Board) */
.sidebar-right {
    flex: 0 0 25%; /* Sets a base width of 25% */
    max-width: 25%;
    padding: 10px;
    box-sizing: border-box;
    background-color: #f9f9f9; /* Optional: light background to separate it */
}

/* Responsive adjustment for Mobile */
@media screen and (max-width: 992px) {
    .content-left, 
    .sidebar-right {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
#backToTop {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed position */
    bottom: 20px; /* 20px from the bottom */
    right: 30px; /* 30px from the right */
    z-index: 99; /* Ensure it stays on top of other elements */
    border: none; 
    outline: none; 
    background-color: #003366; /* Deep Blue to match your theme */
    color: white; 
    cursor: pointer; 
    padding: 15px; 
    border-radius: 50%; /* Makes it a circle */
    font-size: 18px; 
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
}

#backToTop:hover {
    background-color: #cc0000; /* Turns Red on hover */
    transform: scale(1.1); /* Slight grow effect */
}
/* Modal Overlay (Background) */
.modal-overlay {
    display: flex; /* Keeps content centered */
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 9999; /* Higher than everything else */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Dark semi-transparent background */
    align-items: center;
    justify-content: center;
}

/* Modal Content Box */
.modal-content {
    position: relative;
    max-width: 600px; /* Adjust based on your image size */
    width: 90%;
    animation: zoomIn 0.4s ease; /* Smooth entrance effect */
}

/* The Image itself */
.popup-img {
    width: 100%;
    height: auto;
    border: 5px solid #fff;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.5);
}

/* Close Button (X) */
.close-btn {
    position: absolute;
    top: -5px;
    right: -15px;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    background: #cc0000; /* Red background to match college theme */
    width: 40px;
    height: 40px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    z-index: 10000;
}

/* Entry Animation */
@keyframes zoomIn {
    from {transform: scale(0.7); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}
#masthead ul, 
#masthead li,
.main-navigation ul, 
.main-navigation li,
.sub-menu, 
.sub-menu li {
    list-style: none !important;
    list-style-type: none !important;
    background-image: none !important; /* In case it's an image icon */
}

/* Ensure no padding is pushing the text to the right */
.main-navigation ul ul {
    margin-left: 0 !important;
    padding-left: 0 !important;
}

.main-navigation ul li::before, 
.sub-menu li::before {
    content: none !important;
    display: none !important;
}
::marker{
	color: transparent;
	display: none !important;
}

:is(dir, menu, ol, ul) ul
Specificity: (0,0,2)
 {
    list-style-type: none !important;
}

/* Premium Academic Theme */
:root {
    --rk-blue: #003366;
    --rk-gold: #c5a059;
    --rk-text: #2d3436;
    --rk-light-bg: #fdfdfd;
}

.rk-section {
    background: var(--rk-light-bg);
    padding: 80px 20px;
  /*  font-family: 'Segoe UI', Roboto, sans-serif;*/
}

.rk-container {
    max-width: 1200px;
    margin: 0 auto;
}

.rk-intro {
    text-align: center;
    margin-bottom: 60px;
}

.rk-badge {
    background: #e1e8f0;
    color: var(--rk-blue);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rk-intro h1 {
    font-size: 1.5rem;
    color: var(--rk-blue);
    margin-top: 15px;
    font-weight: 800;
}

/* The Glass Cards */
.rk-dual-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.rk-glass-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.rk-glass-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.rk-card-content {
    padding: 50px 40px;
    z-index: 2;
    position: relative;
}

.rk-tag {
    color: var(--rk-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.rk-glass-card h2 {
    font-size: 1.5rem;
    color: var(--rk-blue);
    margin-bottom: 20px;
}

.rk-glass-card p {
    color: #636e72;
    line-height: 1.8;
    font-size: 1rem;
}

.rk-card-footer {
    height: 8px;
    width: 100%;
}

.vision-bg { background: linear-gradient(90deg, var(--rk-blue), var(--rk-gold)); }
.mission-bg { background: linear-gradient(90deg, var(--rk-gold), var(--rk-blue)); }

/* Quote Section */
.rk-accent-quote {
    margin-top: 80px;
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 40px;
}

.rk-accent-quote p {
    font-style: italic;
    font-size: 1.4rem;
    color: #b2bec3;
}

.rk-accent-quote span {
    display: block;
    margin-top: 10px;
    color: var(--rk-gold);
    font-weight: 600;
}

/* Mobile Fixes */
@media (max-width: 768px) {
    .rk-intro h1 { font-size: 2rem; }
    .rk-dual-grid { grid-template-columns: 1fr; }
    .rk-card-content { padding: 30px; }
}

.rk-hero {
    height: 300px;
 background: linear-gradient(rgba(0, 33, 71, 0.75), rgba(0, 33, 71, 0.75)), 
                url('images/about bg.png');
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.cursornone
{
	cursor:default;
}

/* Principal Section Styles */
.principal-section {
    padding: 80px 20px;
    background-color: #ffffff;
     
}

.principal-container {
    max-width: 1140px;
    margin: 0 auto;
}

.principal-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

/* Photo Column */
.principal-image-box {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.img-wrapper {
    width: 280px;
    height: 350px;
    margin: 0 auto 20px;
    border: 10px solid #050f2e;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-radius: 15px;
    overflow: hidden;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.principal-meta h3 {
    color: #002147;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.designation {
    color: #c5a059; /* College Gold */
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Content Column */
.principal-text-box {
    flex: 2;
    min-width: 350px;
}

.section-badge {
    background: #e0f2fe;
    color: #0369a1;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.principal-text-box h2 {
    font-size: 2.5rem;
    color: #002147;
    margin: 15px 0;
}

.rk-line-short {
    width: 60px;
    height: 4px;
    background: #c5a059;
    margin-bottom: 25px;
}

.principal-text-box p, .principalp {
    font-size: 1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 20px;
}

.signature {
    margin-top: 30px;
    border-left: 3px solid #c5a059;
    padding-left: 20px;
}

/* Responsive Mobile Adjustments */
@media (max-width: 768px) {
    .principal-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .rk-line-short {
        margin: 0 auto 25px;
    }
    
    .signature {
        border-left: none;
        padding-left: 0;
    }
}


.location,.designation{text-align:center;}


/*gallery facilities */
.fac-section { padding: 60px 20px; background: #ffffff; }
.fac-container { max-width: 1100px; margin: 0 auto; }
.fac-title { text-align: center; color: #002147; font-size: 2.5rem; }
.rk-line-center { width: 60px; height: 4px; background: #c5a059; margin: 15px auto 45px; }

.fac-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.fac-item {
    cursor: pointer;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s ease;
}

.fac-item:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

.fac-image-wrapper {
    position: relative;
    height: 300px;
}

.fac-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* THIS BOX MAKES THE TEXT PERMANENTLY VISIBLE */
.fac-permanent-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #002147; /* Dark Blue */
    color: #ffd700; /* Gold Text */
    padding: 10px;
    font-weight: bold;
    text-align: center;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.fac-details {
    padding: 20px;
    text-align: center;
}

.fac-details h3 { color: #002147; margin-bottom: 8px; }
.fac-details p { color: #666; font-size: 0.95rem; line-height: 1.5; }

/* Lightbox Container */
.rk-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 10000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* Black background */
    justify-content: center;
    align-items: center;
}

.rk-modal-inner {
    text-align: center;
    max-width: 90%;
}

#rkLightboxImg {
    max-height: 70vh;
    border: 5px solid #fff;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* THE CAPTION STYLE */
#rkCaption {
    color: #ffffff !important; /* GOLD TEXT */
    font-size: 24px;
    font-weight: bold;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 1px;
    display: block !important; /* Ensure it's not hidden */
}

.rk-close {
    position: absolute;
    top: 30px; right: 40px;
    color: #fff;
    font-size: 50px;
    cursor: pointer;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    /* This creates 3 equal columns on large screens */
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
    align-items: start;
}

/* On Tablets (2 columns) */
@media (max-width: 1024px) {
    .info-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* On Mobile (1 column) */
@media (max-width: 768px) {
    .info-container {
        grid-template-columns: 1fr;
    }
}

.info-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-top: 4px solid #002147;
    height: 100%; /* Ensures all boxes in a row are the same height */
}

.info-section {
    padding: 60px 20px;
    background-color: #f8fafc;
    font-family: 'Segoe UI', Tahoma, sans-serif;
}

.info-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-top: 4px solid #002147; /* Oxford Blue */
    transition: transform 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
}

.info-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.info-num {
    font-size: 1.2rem;
    font-weight: 800;
    color: #c5a059; /* Gold */
    margin-right: 15px;
    opacity: 0.5;
}

.info-box h3 {
    color: #002147;
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
}

.info-box p {
    color: #475569;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Mobile Adjustment */
@media (max-width: 600px) {
    .info-container {
        grid-template-columns: 1fr;
    }
    .info-box {
        padding: 20px;
    }
}

.contact-section {
    padding: 60px 20px;
    background-color: #fcfcfc;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
}

/* Info Side */
.contact-info {
    flex: 1;
    min-width: 320px;
}

.contact-badge {
    color: #c5a059;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: #002147;
    margin: 10px 0 20px;
}

.info-list {
    margin-top: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.info-item i {
    font-size: 1.5rem;
    color: #002147;
    margin-top: 5px;
}

.info-item strong {
    display: block;
    color: #002147;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-item p {
    color: #64748b;
    margin: 0;
}

.info-item a {
    color: #0369a1;
    text-decoration: none;
}

/* Map Side */
.contact-map {
    flex: 1;
    min-width: 350px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 8px solid #fff;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .contact-flex {
        flex-direction: column;
    }
    
    .contact-info, .contact-map {
        width: 100%;
    }
}