/* ================================================
   NATIONAL COLLEGE OF EDUCATION – style.css
   Premium University Website Design System
   ================================================ */

/* ── TOKENS ── */
:root {
  --gold:        #C9A84C;
  --gold-light:  #E8C97A;
  --gold-dark:   #A07830;
  --navy:        #0D1B3E;
  --navy-mid:    #1A2F5C;
  --charcoal:    #1C1C1E;
  --white:       #FFFFFF;
  --off-white:   #F8F7F4;
  --light-gray:  #F2F1EE;
  --mid-gray:    #E5E3DE;
  --text-body:   #3A3530;
  --text-muted:  #7A7570;
  --shadow-sm:   0 2px 12px rgba(0,0,0,.08);
  --shadow-md:   0 8px 32px rgba(0,0,0,.12);
  --shadow-lg:   0 20px 60px rgba(0,0,0,.18);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  0.35s cubic-bezier(.4,0,.2,1);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.gold-eyebrow { color: var(--gold-light); }
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--gold-dark); }
.white-title { color: var(--white) !important; }
.white-title em { color: var(--gold-light) !important; }
.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto;
}
.section-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.section-pad { padding: 100px 0; }

/* ── LOADER ── */
#loader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s, visibility .6s;
}
#loader.fade-out { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo img, .loader-logo div {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  padding: 10px;
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 8px rgba(201, 168, 76, 0.15), 0 8px 30px rgba(0, 0, 0, 0.4);
}
.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,.15);
  border-radius: 99px;
  margin: 0 auto 1rem;
  overflow: hidden;
}
.loader-progress {
  height: 100%;
  background: var(--gold);
  border-radius: 99px;
  width: 0;
  animation: loadAnim 2s ease forwards;
}
@keyframes loadAnim { to { width: 100%; } }
.loader-caption {
  color: rgba(255,255,255,.6);
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-family: 'Cormorant Garamond', serif;
}

/* ── NAVBAR ── */
#mainNav {
  background: transparent;
  padding: 1rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
#mainNav.scrolled {
  background: rgba(13, 27, 62, .97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: .6rem 0;
  box-shadow: 0 2px 30px rgba(0,0,0,.25);
}

/* ── NAV LOGO FIX – white backing so logo is visible on dark navbar ── */
.nav-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 10px;
  padding: 4px 6px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.nav-logo-fallback {
  height: 52px;
  width: 52px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .01em;
}
.brand-sub {
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: .05em;
}
.nav-link {
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.85) !important;
  letter-spacing: .03em;
  padding: .5rem .75rem !important;
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: .75rem;
  right: .75rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--gold-light) !important; }
.nav-link:hover::after { transform: scaleX(1); }
.btn-gold-nav {
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 6px;
  padding: .55rem 1.4rem !important;
  transition: background var(--transition), box-shadow var(--transition);
}
.btn-gold-nav:hover { background: var(--gold-light); box-shadow: 0 4px 20px rgba(201,168,76,.35); }
.hamburger-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}
.hamburger-icon span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar-toggler { border: none; outline: none; box-shadow: none !important; }

/* Mega Menu */
.mega-menu {
  border: none;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 2rem;
  min-width: 560px;
  margin-top: .5rem;
}
.mega-col { padding: 0 1.5rem; border-right: 1px solid var(--mid-gray); }
.mega-col:last-child { border-right: none; }
.mega-title {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: .75rem;
}
.mega-link {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .4rem 0;
  font-size: .87rem;
  color: var(--text-body);
  transition: color var(--transition);
}
.mega-link i { color: var(--gold); font-size: .85rem; width: 16px; }
.mega-link:hover { color: var(--navy-mid); }
@media (max-width: 991px) {
  .mega-menu { min-width: auto; padding: 1rem; }
  .mega-col { border: none; padding: .5rem 0; }
}

/* ── HERO ── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  transform: scale(1.05);
  animation: heroZoom 8s ease forwards;
}
.hero-slide.active { opacity: 1; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,62,.88) 0%, rgba(13,27,62,.55) 60%, rgba(0,0,0,.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 90px;
  width: 100%;
}
.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,.2);
  border: 1px solid rgba(201,168,76,.45);
  color: var(--gold-light);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .45rem 1.2rem;
  border-radius: 99px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,.8);
  max-width: 620px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.btn-hero-primary {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .05em;
  padding: .9rem 2.2rem;
  border-radius: 8px;
  transition: all var(--transition);
  border: 2px solid var(--gold);
}
.btn-hero-primary:hover {
  background: var(--gold-light);
  color: var(--navy);
  box-shadow: 0 8px 30px rgba(201,168,76,.4);
  transform: translateY(-2px);
}
.btn-hero-outline {
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: .9rem;
  padding: .9rem 2.2rem;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,.5);
  transition: all var(--transition);
}
.btn-hero-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); color: var(--white); }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.hstat { display: flex; flex-direction: column; align-items: flex-start; }
.hstat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hstat-plus { font-size: 1.2rem; color: var(--gold); font-weight: 700; line-height: 1; }
.hstat-lbl { font-size: .72rem; color: rgba(255,255,255,.6); letter-spacing: .08em; text-transform: uppercase; margin-top: .2rem; }
.hstat-div { width: 1px; height: 40px; background: rgba(255,255,255,.2); }
.hero-nav {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 3;
  display: flex;
  gap: .5rem;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}
.hero-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.5);
  font-size: .9rem;
  animation: scrollBounce 2s infinite;
  z-index: 3;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── MARQUEE STRIP ── */
.marquee-strip {
  background: var(--navy);
  overflow: hidden;
  padding: .9rem 0;
  border-top: 1px solid rgba(201,168,76,.2);
  border-bottom: 1px solid rgba(201,168,76,.2);
}
.marquee-inner {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marqueeScroll 25s linear infinite;
  width: max-content;
}
.marquee-inner span {
  color: rgba(255,255,255,.75);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .08em;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.marquee-inner i { color: var(--gold); font-size: .75rem; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── ABOUT ── */
.about-img-grid {
  position: relative;
  height: 520px;
}
.about-img {
  position: absolute;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-md);
}
.about-img-1 {
  width: 68%;
  height: 75%;
  top: 0;
  left: 0;
  z-index: 2;
}
.about-img-2 {
  width: 48%;
  height: 48%;
  bottom: 0;
  left: 0;
  z-index: 3;
  border: 5px solid var(--white);
}
.about-img-3 {
  width: 46%;
  height: 52%;
  top: 40%;
  right: 0;
  z-index: 2;
}
.about-badge-float {
  position: absolute;
  top: 55%;
  right: 0;
  background: var(--gold);
  color: var(--navy);
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  text-align: center;
  z-index: 4;
  box-shadow: var(--shadow-md);
}
.af-year { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; display: block; line-height: 1; }
.af-text { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

/* VM Tabs */
.vm-tabs {
  display: flex;
  gap: .5rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}
.vm-tab {
  background: transparent;
  border: 2px solid var(--mid-gray);
  color: var(--text-muted);
  font-size: .82rem;
  font-weight: 600;
  padding: .45rem 1.1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition);
}
.vm-tab.active, .vm-tab:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.vm-panel { display: none; font-size: .95rem; color: var(--text-muted); }
.vm-panel.active { display: block; }
.vm-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  padding: .3rem 0;
  font-size: .9rem;
  color: var(--text-muted);
}
.vm-list i { color: var(--gold); margin-top: 4px; flex-shrink: 0; }

/* Counter Cards */
.counter-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 1.2rem .8rem;
  text-align: center;
  border-bottom: 3px solid var(--gold);
  transition: box-shadow var(--transition);
}
.counter-card:hover { box-shadow: var(--shadow-sm); }
.cc-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.cc-plus { font-size: 1.2rem; color: var(--gold); font-weight: 700; }
.cc-lbl { display: block; font-size: .7rem; font-weight: 600; color: var(--text-muted); letter-spacing: .08em; text-transform: uppercase; margin-top: .3rem; }

/* ── BG VARIANTS ── */
.bg-light-section { background: var(--off-white); }
.bg-dark-section { background: var(--navy); }

/* ── COURSES ── */
.course-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--mid-gray);
}
.course-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.course-card-gold { border-color: var(--gold); }
.course-card-img { position: relative; height: 220px; overflow: hidden; }
.course-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.course-card:hover .course-card-img img { transform: scale(1.07); }
.course-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--navy);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 99px;
}
.course-tag-gold { background: var(--gold); color: var(--navy); }
.course-card-body { padding: 2rem; }
.course-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: .75rem;
}
.course-abbr { color: var(--gold-dark); font-size: 1rem; }
.course-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}
.course-meta span { font-size: .82rem; color: var(--text-muted); display: flex; align-items: center; gap: .4rem; }
.course-meta i { color: var(--gold); }
.course-highlights { margin-bottom: 1.5rem; }
.course-highlights li { font-size: .88rem; color: var(--text-muted); padding: .3rem 0; display: flex; align-items: center; gap: .6rem; }
.course-highlights i { color: var(--gold-dark); font-size: .8rem; }
.btn-course {
  background: var(--navy);
  color: var(--white) !important;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .75rem 1.8rem;
  border-radius: 8px;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
}
.btn-course:hover { background: var(--navy-mid); transform: translateX(3px); }
.btn-course-gold { background: var(--gold); color: var(--navy) !important; }
.btn-course-gold:hover { background: var(--gold-light); }

/* ── WHY CHOOSE ── */
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--mid-gray);
  transition: all var(--transition);
  height: 100%;
}
.why-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.why-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  transition: all var(--transition);
}
.why-card:hover .why-icon { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%); }
.why-icon i { color: var(--gold); font-size: 1.4rem; }
.why-card:hover .why-icon i { color: var(--navy); }
.why-card h5 { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--charcoal); margin-bottom: .5rem; }
.why-card p { font-size: .86rem; color: var(--text-muted); line-height: 1.6; }

/* ── INFRASTRUCTURE ── */
.infra-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 12px;
}
.infra-item { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.infra-large { grid-column: span 2; }
.infra-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.infra-item:hover img { transform: scale(1.08); }
.infra-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,62,.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.infra-item:hover .infra-overlay { opacity: 1; }
.infra-overlay h5 { color: var(--white); font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: .3rem; }
.infra-overlay p { color: var(--gold-light); font-size: .82rem; margin: 0; }

/* ── PRINCIPAL ── */
.principal-wrapper {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 0;
  box-shadow: var(--shadow-md);
}
.principal-img-side {
  position: relative;
  overflow: hidden;
}
.principal-img-side img { width: 100%; height: 100%; object-fit: cover; }
.principal-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--gold);
  color: var(--navy);
  padding: .6rem 1rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 700;
}
.principal-content { padding: 3rem; }
.principal-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--gold-dark);
  border-left: 3px solid var(--gold);
  padding-left: 1.2rem;
  margin: 1rem 0 1.2rem;
}
.principal-content p { font-size: .93rem; color: var(--text-muted); margin-bottom: .8rem; }
.principal-sig { margin-top: 1.5rem; }
.principal-sig strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--charcoal); }
.principal-sig span { font-size: .82rem; color: var(--text-muted); }

/* ── FACULTY ── */
.faculty-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--mid-gray);
}
.faculty-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.faculty-img {
  height: 220px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f7f4;
}
.faculty-img img {
  width: auto;
  height: 100%;
  object-fit: contain;
  transition: transform .5s;
}
.faculty-card:hover .faculty-img img { transform: scale(1.03); }
.faculty-info { padding: 1.2rem; text-align: center; }
.faculty-info h6 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--charcoal); margin-bottom: .2rem; }
.faculty-info span { font-size: .78rem; color: var(--gold-dark); font-weight: 600; display: block; margin-bottom: .2rem; }
.faculty-info p { font-size: .82rem; color: var(--text-muted); margin: 0; }

/* ── CAMPUS LIFE ── */
.campus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px;
  gap: 12px;
}
.campus-item { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.campus-tall { grid-row: span 2; }
.campus-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.campus-item:hover img { transform: scale(1.08); }
.campus-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,62,.8) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: all var(--transition);
}
.campus-overlay i {
  color: var(--gold-light);
  font-size: 1.5rem;
  margin-bottom: .5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all .4s;
}
.campus-item:hover .campus-overlay i { opacity: 1; transform: translateY(0); }
.campus-overlay h5 { color: var(--white); font-family: 'Playfair Display', serif; font-size: 1rem; margin: 0; }

/* ── PLACEMENT ── */
.placement-stat {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition);
}
.placement-stat:hover { background: rgba(201,168,76,.1); border-color: rgba(201,168,76,.3); }
.ps-icon { margin-bottom: .8rem; }
.ps-icon i { font-size: 1.8rem; color: var(--gold); }
.ps-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: inline;
}
.ps-plus { font-size: 1.5rem; color: var(--gold); font-weight: 700; display: inline; }
.ps-lbl { display: block; font-size: .75rem; color: rgba(255,255,255,.6); letter-spacing: .1em; text-transform: uppercase; margin-top: .4rem; }
.placement-feature {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1.2rem;
  text-align: center;
  color: rgba(255,255,255,.8);
  font-size: .85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  transition: all var(--transition);
}
.placement-feature:hover { background: rgba(201,168,76,.15); border-color: var(--gold); color: var(--gold-light); }
.placement-feature i { color: var(--gold); font-size: 1.1rem; }

/* ── ADMISSION ── */
.admission-section { background: linear-gradient(135deg, var(--navy) 0%, #0a1628 100%); }
.admission-wrapper { position: relative; }
.text-white-75 { color: rgba(255,255,255,.75); font-size: .95rem; margin-bottom: 2rem; }
.admission-steps {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.astep {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.8);
  font-size: .78rem;
  padding: .5rem 1rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.astep span {
  background: var(--gold);
  color: var(--navy);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 700;
  flex-shrink: 0;
}
.admission-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.admission-form-card h4 {
  font-family: 'Playfair Display', serif;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.adm-input {
  width: 100%;
  padding: .8rem 1rem;
  border: 2px solid var(--mid-gray);
  border-radius: 8px;
  font-size: .88rem;
  color: var(--text-body);
  background: var(--off-white);
  margin-bottom: .8rem;
  transition: border-color var(--transition);
  outline: none;
  font-family: 'Inter', sans-serif;
}
.adm-input:focus { border-color: var(--gold); background: var(--white); }
.btn-adm-submit {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .05em;
  padding: .9rem;
  border-radius: 8px;
  border: none;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .5rem;
}
.btn-adm-submit:hover { background: var(--navy-mid); }
.btn-adm-download {
  width: 100%;
  background: transparent;
  color: var(--text-muted);
  font-size: .82rem;
  text-align: center;
  padding: .6rem;
  border-radius: 8px;
  border: 2px solid var(--mid-gray);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-adm-download:hover { border-color: var(--gold); color: var(--gold-dark); }

/* ── TESTIMONIALS ── */
.testimonial-slider { position: relative; }
.tslide { display: none; }
.tslide.active { display: block; }
.tcard {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid var(--mid-gray);
}
.tcard-quote i { font-size: 2rem; color: var(--gold); opacity: .4; margin-bottom: 1rem; }
.tcard p { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--text-body); font-style: italic; line-height: 1.8; margin-bottom: 1.5rem; }
.tcard-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
}
.tcard-author img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 3px solid var(--gold); }
.tcard-author strong { display: block; font-family: 'Playfair Display', serif; font-size: .95rem; color: var(--charcoal); }
.tcard-author span { font-size: .78rem; color: var(--text-muted); }
.tcard-stars i { color: var(--gold); font-size: .85rem; }
.tslider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.tslider-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--mid-gray);
  background: var(--white);
  color: var(--text-body);
  font-size: .85rem;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tslider-btn:hover { border-color: var(--gold); color: var(--gold); }
.tslider-dots { display: flex; gap: .4rem; }
.tdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mid-gray);
  cursor: pointer;
  transition: all var(--transition);
}
.tdot.active { background: var(--gold); width: 20px; border-radius: 4px; }

/* ── NEWS ── */
.news-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--mid-gray);
  transition: all var(--transition);
  height: 100%;
}
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.news-img { position: relative; height: 200px; overflow: hidden; }
.news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.news-card:hover .news-img img { transform: scale(1.07); }
.news-date {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: var(--navy);
  color: var(--white);
  font-size: .72rem;
  font-weight: 600;
  padding: .3rem .8rem;
  border-radius: 99px;
}
.news-body { padding: 1.5rem; }
.news-tag {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .7rem;
  border-radius: 99px;
  margin-bottom: .75rem;
}
.news-tag-gold { background: var(--gold); color: var(--navy); }
.news-tag-green { background: #2d8a4e; }
.news-body h5 { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--charcoal); margin-bottom: .5rem; line-height: 1.4; }
.news-body p { font-size: .84rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.news-link {
  font-size: .82rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: .03em;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: gap var(--transition);
}
.news-link:hover { gap: .7rem; color: var(--navy); }

/* ── CONTACT ── */
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.ci-item { display: flex; gap: 1rem; align-items: flex-start; }
.ci-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-icon i { color: var(--gold); font-size: .95rem; }
.ci-item h6 { font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--charcoal); margin-bottom: .3rem; }
.ci-item p { font-size: .9rem; color: var(--text-muted); margin: 0; line-height: 1.7; }
.ci-item a { color: var(--text-muted); transition: color var(--transition); white-space: nowrap; display: inline-block; }
.ci-item a:hover { color: var(--gold-dark); }
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--mid-gray);
}
.cf-input {
  width: 100%;
  padding: .8rem 1rem;
  border: 2px solid var(--mid-gray);
  border-radius: 8px;
  font-size: .88rem;
  color: var(--text-body);
  background: var(--off-white);
  transition: border-color var(--transition);
  outline: none;
  font-family: 'Inter', sans-serif;
  resize: none;
}
.cf-input:focus { border-color: var(--gold); background: var(--white); }
.cf-textarea { min-height: 120px; }
.btn-cf-submit {
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .05em;
  padding: .9rem 2.5rem;
  border-radius: 8px;
  border: none;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
}
.btn-cf-submit:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }
.map-wrapper { border-radius: var(--radius-lg); overflow: hidden; height: 350px; }
.map-wrapper iframe { width: 100%; height: 100%; border: none; }

/* ── FOOTER ── */
#footer { background: var(--charcoal); }
.footer-top { padding: 70px 0 50px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-logo { height: 65px; width: auto; object-fit: contain; margin-bottom: 1rem; filter: brightness(1.2); }
.footer-logo-fb {
  height: 65px;
  width: 65px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.footer-brand p { font-size: .88rem; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 1.2rem; }
.footer-social { display: flex; gap: .5rem; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--navy); }
.footer-heading {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}
.footer-links li { margin-bottom: .5rem; }
.footer-links a { font-size: .86rem; color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact p { display: flex; align-items: flex-start; gap: .7rem; font-size: .86rem; color: rgba(255,255,255,.55); margin-bottom: .7rem; line-height: 1.6; }
.footer-contact i { color: var(--gold); font-size: .85rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,.55); transition: color var(--transition); white-space: nowrap; }
.footer-contact a:hover { color: var(--gold-light); }
.footer-contact .fc-numbers { display: flex; flex-direction: column; gap: .15rem; }
.footer-certs { display: flex; gap: .5rem; flex-wrap: wrap; }
.fcert {
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--gold-light);
  font-size: .72rem;
  font-weight: 600;
  padding: .3rem .8rem;
  border-radius: 99px;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.footer-bottom {
  padding: 1.5rem 0;
  background: rgba(0,0,0,.2);
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.4); margin: 0; }
.footer-bottom a { font-size: .82rem; color: rgba(255,255,255,.4); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ── FLOATING BUTTONS ── */
.float-whatsapp {
  position: fixed;
  bottom: 90px;
  right: 1.5rem;
  width: 54px;
  height: 54px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  z-index: 99;
  transition: transform var(--transition);
}
.float-whatsapp:hover { transform: scale(1.1); color: var(--white); }
.float-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulseBeat 2s infinite;
  pointer-events: none;
}
@keyframes pulseBeat { 0% { transform: scale(1); opacity: .6; } 100% { transform: scale(1.5); opacity: 0; } }
.float-apply {
  position: fixed;
  bottom: 155px;
  right: 1.5rem;
  background: var(--gold);
  color: var(--navy) !important;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .6rem 1rem;
  border-radius: 8px;
  z-index: 99;
  box-shadow: 0 4px 20px rgba(201,168,76,.35);
  transition: all var(--transition);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}
.float-apply:hover { background: var(--gold-light); box-shadow: 0 6px 25px rgba(201,168,76,.5); }
#backToTop {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: .9rem;
  cursor: pointer;
  z-index: 99;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
#backToTop:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); }
#backToTop.show { display: flex; }

/* ── SCROLL REVEAL ── */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: all .7s cubic-bezier(.4,0,.2,1);
}
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.revealed { opacity: 1 !important; transform: none !important; }

/* ══════════════════════════════════════════════
   RESPONSIVE — complete mobile overhaul
   ══════════════════════════════════════════════ */

/* ── PREVENT HORIZONTAL OVERFLOW GLOBALLY ── */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}
*, *::before, *::after {
  box-sizing: border-box;
  min-width: 0;
}
.container, .container-fluid {
  max-width: 100%;
  padding-left: 16px;
  padding-right: 16px;
}

/* ── TABLET LANDSCAPE (≤1199px) ── */
@media (max-width: 1199px) {
  .infra-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 220px 220px 220px;
  }
  .infra-large { grid-column: span 1; }
  .principal-wrapper { grid-template-columns: 1fr; }
  .principal-img-side { height: 340px; }
}

/* ── TABLET PORTRAIT (≤991px) ── */
@media (max-width: 991px) {
  .section-pad { padding: 70px 0; }

  /* Navbar */
  .navbar-collapse {
    background: rgba(13,27,62,.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.2rem 1.5rem 1.5rem;
    border-radius: 0 0 16px 16px;
    margin-top: .5rem;
    border-top: 1px solid rgba(201,168,76,.2);
  }
  .nav-link { padding: .65rem .5rem !important; font-size: .9rem; }
  .btn-gold-nav {
    margin-top: .5rem;
    width: 100%;
    text-align: center;
    justify-content: center;
    display: flex;
  }
  .brand-name { font-size: 1.05rem; }
  .brand-sub { font-size: .74rem; }

  /* Hero */
  .hero-title { font-size: clamp(2rem, 5.5vw, 3.2rem); }
  .hero-sub { font-size: .95rem; }
  .hero-stats { gap: 1.2rem; }
  .hstat-div { height: 30px; }
  .hstat-num { font-size: 1.7rem; }

  /* About */
  .about-img-grid { height: 360px; }

  /* Campus */
  .campus-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 200px 200px 200px;
  }
  .campus-tall { grid-row: span 1; }

  /* Principal */
  .principal-wrapper { grid-template-columns: 1fr; }
  .principal-img-side { height: 300px; }
  .principal-content { padding: 2rem; }

  .course-card-img { height: 190px; }
  .why-card { padding: 1.5rem 1rem; }
}

/* ── MOBILE (≤767px) ── */
@media (max-width: 767px) {
  .section-pad { padding: 50px 0; }
  .section-title { font-size: clamp(1.5rem, 5vw, 2rem); }
  .section-desc { font-size: .92rem; }

  /* Navbar */
  .nav-logo { height: 44px; }
  .brand-name { font-size: 1rem; }
  .brand-sub { font-size: .72rem; }

  /* ── HERO FIX ── */
  #hero {
    height: auto;
    min-height: 100vh;
    padding-bottom: 2rem;
  }
  .hero-content {
    padding-top: 85px;
    padding-bottom: 1rem;
  }
  .hero-badge {
    font-size: .62rem;
    padding: .3rem .8rem;
    letter-spacing: .08em;
    white-space: normal;
    text-align: center;
  }
  .hero-title {
    font-size: clamp(1.7rem, 6.5vw, 2.4rem);
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  .hero-sub {
    font-size: .85rem;
    margin-bottom: 1.5rem;
    max-width: 100%;
  }
  /* Buttons — stack vertically, full width */
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: .6rem;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 320px;
  }
  .btn-hero-primary,
  .btn-hero-outline {
    font-size: .85rem;
    padding: .85rem 1.2rem;
    width: 100%;
    text-align: center;
    justify-content: center;
    display: flex;
    max-width: 100%;
  }
  /* Stats — 2×2 grid instead of row */
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .6rem;
    width: 100%;
    max-width: 320px;
    margin-bottom: 1rem;
  }
  .hstat-div { display: none; }
  .hstat {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 10px;
    padding: .6rem .8rem;
    align-items: center;
  }
  .hstat-num { font-size: 1.5rem; }
  .hstat-plus { font-size: 1rem; }
  .hstat-lbl { font-size: .62rem; }

  /* Marquee */
  .marquee-inner { gap: 1.5rem; }
  .marquee-inner span { font-size: .72rem; }

  /* About — stack cleanly */
  .about-img-grid {
    position: static;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: .75rem;
  }
  .about-img {
    position: static !important;
    width: 100% !important;
    height: 200px !important;
    border-radius: var(--radius) !important;
    border: none !important;
    box-shadow: var(--shadow-sm) !important;
  }
  .about-img-3 { display: none; }
  .about-badge-float {
    position: static;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1rem;
    border-radius: 8px;
    align-self: flex-start;
    margin-top: .25rem;
  }
  .af-year { font-size: 1.2rem; }
  .af-text { font-size: .65rem; }

  /* Counter */
  .counter-card { padding: 1rem .5rem; }
  .cc-num { font-size: 1.5rem; }

  /* Courses */
  .course-card-body { padding: 1.3rem; }
  .course-name { font-size: 1.15rem; }
  .btn-course { width: 100%; justify-content: center; }

  /* Why */
  .why-icon { width: 52px; height: 52px; border-radius: 12px; }
  .why-icon i { font-size: 1.15rem; }
  .why-card h5 { font-size: .93rem; }
  .why-card p { font-size: .82rem; }

  /* Infrastructure */
  .infra-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 160px 160px 160px;
  }
  .infra-large { grid-column: span 1; }
  .infra-overlay { opacity: 1 !important; }

  /* Principal */
  .principal-wrapper { grid-template-columns: 1fr; }
  .principal-img-side { height: 250px; }
  .principal-content { padding: 1.5rem; }
  .principal-quote { font-size: 1.05rem; }

  /* Faculty */
  .faculty-img { height: 185px; }

  /* Campus */
  .campus-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 160px 160px 160px;
  }
  .campus-tall { grid-row: span 1; }
  .campus-overlay { opacity: 1 !important; }
  .campus-overlay i { opacity: 1 !important; transform: translateY(0) !important; }

  /* Placement */
  .placement-stat { padding: 1.4rem .8rem; }
  .ps-num { font-size: 2rem; }
  .placement-feature { font-size: .78rem; padding: .9rem; }

  /* Admission */
  .admission-form-card { padding: 1.5rem; }
  .admission-steps { gap: .5rem; flex-wrap: wrap; }
  .astep { font-size: .72rem; padding: .35rem .75rem; }

  /* Testimonials */
  .tcard { padding: 1.8rem 1.2rem; }
  .tcard p { font-size: .95rem; }
  .tcard-author { flex-direction: column; text-align: center; gap: .6rem; }

  /* News */
  .news-img { height: 175px; }
  .news-body { padding: 1.1rem; }
  .news-body h5 { font-size: .93rem; }

  /* Contact */
  .contact-form-card { padding: 1.5rem; }
  .map-wrapper { height: 250px; }

  /* Footer */
  .footer-top { padding: 45px 0 30px; }
  .footer-logo { height: 50px; }

  /* Floating */
  .float-apply { display: none; }
  .float-whatsapp { bottom: 75px; right: 1rem; width: 46px; height: 46px; font-size: 1.25rem; }
  #backToTop { bottom: 1rem; right: 1rem; }
}

/* ── SMALL MOBILE (≤575px) ── */
@media (max-width: 575px) {
  .section-pad { padding: 40px 0; }

  /* Navbar */
  .nav-logo { height: 40px; }
  .brand-name { font-size: .92rem; }
  .brand-sub { display: none; }

  /* Hero tweaks */
  .hero-title { font-size: clamp(1.5rem, 7.5vw, 2rem); }
  .hero-sub { font-size: .8rem; }
  .hero-actions { max-width: 100%; }

  /* About */
  .about-img { height: 175px !important; }

  /* Infra — single col */
  .infra-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 165px);
  }

  /* Campus — single col */
  .campus-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 165px);
  }

  /* Why cards */
  .why-card { padding: 1.1rem .8rem; }
  .why-icon { width: 46px; height: 46px; }
  .why-icon i { font-size: 1rem; }

  /* Courses */
  .course-card-img { height: 165px; }
  .course-card-body { padding: 1.1rem; }
  .course-meta { gap: .6rem; }

  /* Placement */
  .placement-stat { padding: 1.1rem .7rem; }
  .ps-num { font-size: 1.7rem; }

  /* Admission */
  .admission-steps { flex-direction: column; }
  .astep { width: 100%; }

  /* Testimonial */
  .tcard { padding: 1.4rem 1rem; }
  .tcard p { font-size: .88rem; }

  /* Principal */
  .principal-img-side { height: 210px; }
  .principal-content { padding: 1.2rem; }
  .principal-quote { font-size: .95rem; }

  /* Contact */
  .ci-icon { width: 36px; height: 36px; }
  .map-wrapper { height: 210px; }

  /* Footer */
  .footer-bottom .col-md-6 { text-align: center !important; }
  .footer-bottom p, .footer-bottom a { font-size: .76rem; }

  /* News */
  .news-img { height: 155px; }

  /* Loader */
  .loader-logo img, .loader-logo div { width: 80px; height: 80px; }
}

/* ── VERY SMALL PHONES (≤380px) ── */
@media (max-width: 380px) {
  .hero-title { font-size: 1.4rem; }
  .hero-badge { font-size: .58rem; letter-spacing: .06em; }
  .nav-logo { height: 36px; }
  .brand-name { font-size: .85rem; }
  .section-title { font-size: 1.4rem; }
  .cc-num { font-size: 1.3rem; }
  .hstat-num { font-size: 1.3rem; }
  .tcard { padding: 1.1rem .8rem; }
  .admission-form-card { padding: 1.1rem; }
  .adm-input { font-size: .8rem; padding: .65rem .8rem; }
  .contact-form-card { padding: 1.1rem; }
  .cf-input { font-size: .8rem; }
  .btn-hero-primary, .btn-hero-outline { font-size: .78rem; padding: .75rem 1rem; }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}