/* ========== Global Styles ========== */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background-color: #f8f9fa;
  color: #333;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

a:hover {
  background-color: #f0f8ff;
  transition: background-color 0.3s ease;
}

/* ========== Header ========== */
#header {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 5px 0;
    position: sticky;
  top: 0;
  z-index: 1050;
}

#header .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#header .d-flex {
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

#header img {
  max-height: 80px;
  width: auto;
}

#header h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  margin: 0;
  color: #003B73;
}

#header p {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  margin: 0;
  color: #555;
}

/* ========== Navbar ========== */
.navbar {
  background: #003B73;
  padding: 10px 0;
}

.jpnce-main-menu {
  position: relative;
  z-index: 10;
  width: 100%;
  margin-bottom: 10px;
  padding: 10px 14px !important;
  background: linear-gradient(135deg, #003B73 0%, #005EB8 100%);
  border-radius: 34px 34px 0 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.jpnce-main-menu .navbar-collapse {
  min-width: 0;
}

.jpnce-main-menu .navbar-nav {
  gap: 2px 4px;
  width: auto;
  max-width: 100%;
}

.navbar-brand {
  font-weight: bold;
  color: #FFD700 !important;
  font-size: 1.5rem;
}

.navbar-nav .nav-link {
  color: #fff !important;
  padding: 8px 10px;
  font-size: 0.94rem;
  line-height: 1.25;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #FFC107 !important;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.jpnce-main-menu .dropdown-menu {
  border: 1px solid #d7e6f8;
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(0, 59, 115, 0.16);
}

.jpnce-main-menu .dropdown-item {
  color: #003B73;
  font-weight: 600;
  padding: 8px 16px;
}

.jpnce-main-menu .dropdown-item:hover,
.jpnce-main-menu .dropdown-item:focus {
  background: #003B73;
  color: #fff;
}

@media (min-width: 1200px) {
  .jpnce-main-menu .navbar-collapse {
    display: flex !important;
  }
}

@media (max-width: 1199px) {
  .jpnce-main-menu {
    border-radius: 22px 22px 0 0;
  }

  .jpnce-main-menu .navbar-nav {
    align-items: stretch;
    padding-top: 8px;
  }

  .jpnce-main-menu .nav-link {
    border-radius: 8px;
  }
}

/* ========== Slider Styles ========== */
.slider-container {
  width: 100%;
  max-width: 1200px;
  height: 500px;
  margin: auto;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  background: #000;
  border: 2px solid #003B73;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}

.slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.caption {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  width: 100%;
  text-align: center;
  padding: 10px;
  font-size: 1rem;
}

/* Thumbnails for optional use */
.thumbnails {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.thumbnail {
  width: 60px;
  height: 40px;
  object-fit: cover;
  opacity: 0.6;
  border: 2px solid transparent;
  transition: 0.3s;
  cursor: pointer;
}

.thumbnail.active {
  opacity: 1;
  border-color: #003B73;
}

/* ========== Section Titles ========== */
.section-title h2 {
  color: #FFC107;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 30px;
  text-align: center;
}

/* ========== Contact Section ========== */
.contact {
  background: #fffde7;
  padding: 50px 0;
}

.alert-warning {
  background: #ffeb3b;
  border: 2px solid #ffc107;
  color: #003B73;
  font-weight: bold;
}

/* ========== Footer ========== */
footer {
  background: #003B73;
  color: #fff;
  text-align: center;
  padding: 30px 0;
  font-size: 0.95rem;
}

.footer-section a:hover,
.footer-section .bi:hover {
  color: #ffc107;
  text-decoration: none;
  transform: scale(1.1);
  transition: all 0.3s ease;
}

.footer-section iframe {
  border-radius: 10px;
}

/* ========== News Ticker ========== */
.news-ticker {
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 1rem;
  margin-top: 10px;
  overflow: hidden;
  background: #fff;
  border-block: 1px solid #e9ecef;
  padding: 8px 0;
  white-space: nowrap;
}

.news-ticker__track {
  display: inline-block;
  min-width: 100%;
  padding-left: 100%;
  animation: news-scroll 22s linear infinite;
}

.news-ticker:hover .news-ticker__track {
  animation-play-state: paused;
}

.news-ticker a {
  text-decoration: none;
  color: #003B73;
}

.news-ticker a:hover {
  text-decoration: underline;
  color: #ffc107;
}

@keyframes news-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/* ========== Tabs ========== */
.nav-tabs .nav-link.active {
  background: #003B73;
  color: #fff !important;
  border-color: #003B73 #003B73 #fff;
  border-radius: 10px 10px 0 0;
}

.nav-tabs .nav-link:hover {
  background: #005EB8;
  color: #fff !important;
}

/* ========== Counters ========== */
.counter-wrapper img {
  transition: transform 0.3s ease;
}

.counter-wrapper img:hover {
  transform: scale(1.1);
}

.counter-section h2 {
  font-size: 2rem;
  font-weight: bold;
}

/* ========== Sidebar Links ========== */
#about-sidebar {
  position: sticky;
  top: 90px;
}

#about-sidebar a:hover,
#about-sidebar ul li a.active,
.sidebar-link.active {
  color: #0d6efd;
  font-weight: 500;
  text-decoration: underline;
}

/* ========== About Banner ========== */
.about-banner img {
  border-bottom: 5px solid #003B73;
}

.page-banner {
  width: min(1100px, 100%);
  height: clamp(180px, 32vw, 350px);
  overflow: hidden;
}

.page-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-banner--tall {
  height: clamp(220px, 36vw, 450px);
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
  #header h2 {
    font-size: 1.4rem;
  }

  .slider-container {
    height: 300px;
  }

  .caption {
    font-size: 0.85rem;
    padding: 6px;
  }

  .page-banner {
    height: 190px;
  }

  .bg-white.shadow-sm.rounded.p-4,
  .department-detail-card {
    padding: 18px !important;
  }

  .table-responsive {
    border: 1px solid #e4edf7;
    border-radius: 8px;
  }
}


.hover-shadow:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.video-corner video:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transform: scale(1.01);
  transition: all 0.3s ease;
}
.counter-value {
  transition: all 0.5s ease-in-out;
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Segoe UI', sans-serif;
}

.client-carousel .item:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.academic-stat {
  border: 1px solid #e4edf7;
  border-left: 4px solid #003B73;
  border-radius: 8px;
  padding: 16px;
  background: #f8fbff;
}

.academic-stat strong,
.academic-stat span {
  display: block;
}

.academic-stat span {
  color: #555;
  margin-top: 4px;
}

.department-card {
  scroll-margin-top: 120px;
}

.department-logo-wrap {
  width: 150px;
}

.department-logo {
  width: 150px;
  height: 120px;
  object-fit: contain;
  background: #f8fbff;
  border: 1px solid #e4edf7;
  padding: 12px;
}

.department-logo-placeholder {
  width: 150px;
  height: 120px;
  display: grid;
  place-items: center;
  background: #f8fbff;
  border: 1px solid #e4edf7;
  color: #003B73;
  font-size: 3rem;
  font-weight: 700;
}

@media (max-width: 991px) {
  .department-logo-wrap,
  .department-logo,
  .department-logo-placeholder {
    width: 100%;
  }
}

.department-detail-list {
  display: grid;
  gap: 24px;
}

.department-detail-card {
  scroll-margin-top: 120px;
  border: 1px solid #e4edf7;
  border-radius: 8px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 4px 14px rgba(0, 59, 115, 0.06);
}

.department-programs,
.department-focus {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.department-programs span {
  border-radius: 999px;
  background: #003B73;
  color: #fff;
  padding: 6px 12px;
  font-size: 0.9rem;
  font-weight: 600;
}

.department-focus span {
  border-radius: 999px;
  background: #f8fbff;
  color: #003B73;
  border: 1px solid #e4edf7;
  padding: 6px 12px;
  font-size: 0.88rem;
  font-weight: 600;
}

.department-info-block {
  border: 1px solid #e4edf7;
  border-radius: 8px;
  background: #f8fbff;
  padding: 16px;
}

.department-info-block h5 {
  color: #003B73;
  font-weight: 700;
  margin-bottom: 10px;
}

.department-info-block p,
.department-info-block ul {
  margin-bottom: 0;
}

.department-resource-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.department-resource-card {
  border: 1px solid #e4edf7;
  border-radius: 8px;
  background: #fff;
  padding: 16px;
}

.department-resource-card h5 {
  color: #003B73;
  font-weight: 700;
  margin-bottom: 8px;
}

.department-resource-card p {
  margin-bottom: 0;
  color: #555;
}

.department-hero {
  position: relative;
  min-height: clamp(240px, 34vw, 420px);
  overflow: hidden;
  background: #003B73;
}

.department-hero__image {
  width: 100%;
  height: clamp(240px, 34vw, 420px);
  object-fit: cover;
  display: block;
  opacity: 0.7;
}

.department-hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: end;
  color: #fff;
  background: linear-gradient(90deg, rgba(0, 45, 88, 0.88), rgba(0, 59, 115, 0.42), rgba(0, 0, 0, 0.2));
  padding: 40px 0;
}

.department-hero__overlay p {
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 700;
  color: #ffc107;
}

.department-hero__overlay h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
}

.department-hero__overlay span {
  display: block;
  max-width: 760px;
  margin-top: 10px;
  color: #eef6ff;
  font-size: 1rem;
}

.department-menu {
  position: sticky;
  top: 96px;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid #e4edf7;
  box-shadow: 0 4px 14px rgba(0, 59, 115, 0.08);
}

.department-menu__scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px 0;
}

.department-menu a {
  flex: 0 0 auto;
  border: 1px solid #e4edf7;
  border-radius: 8px;
  padding: 8px 12px;
  color: #003B73;
  text-decoration: none;
  font-weight: 700;
  background: #f8fbff;
}

.department-menu a:hover,
.department-menu a.active {
  background: #003B73;
  color: #fff;
}

.department-hero--civil .department-hero__overlay {
  background: linear-gradient(90deg, rgba(33, 71, 45, 0.9), rgba(0, 59, 115, 0.42), rgba(0, 0, 0, 0.2));
}

.department-hero--eee .department-hero__overlay {
  background: linear-gradient(90deg, rgba(80, 58, 0, 0.9), rgba(0, 59, 115, 0.42), rgba(0, 0, 0, 0.2));
}

.department-hero--mech .department-hero__overlay {
  background: linear-gradient(90deg, rgba(47, 55, 66, 0.92), rgba(0, 59, 115, 0.42), rgba(0, 0, 0, 0.2));
}

.department-hero--ece .department-hero__overlay,
.department-hero--cse .department-hero__overlay,
.department-hero--aiml .department-hero__overlay,
.department-hero--ds .department-hero__overlay,
.department-hero--cyber .department-hero__overlay,
.department-hero--mca .department-hero__overlay {
  background: linear-gradient(90deg, rgba(0, 45, 88, 0.9), rgba(0, 95, 130, 0.42), rgba(0, 0, 0, 0.2));
}

.department-hero--mba .department-hero__overlay {
  background: linear-gradient(90deg, rgba(74, 43, 83, 0.9), rgba(0, 59, 115, 0.42), rgba(0, 0, 0, 0.2));
}

.department-hero--hs .department-hero__overlay {
  background: linear-gradient(90deg, rgba(51, 76, 96, 0.9), rgba(0, 59, 115, 0.42), rgba(0, 0, 0, 0.2));
}

@media (max-width: 768px) {
  .department-resource-grid {
    grid-template-columns: 1fr;
  }

  .department-menu {
    top: 82px;
  }
}

.placement-contact-box {
  min-width: 240px;
  border: 1px solid #e4edf7;
  border-left: 4px solid #ffc107;
  border-radius: 8px;
  padding: 14px 16px;
  background: #fffdf3;
}

.placement-contact-box strong,
.placement-contact-box span {
  display: block;
}

.placement-contact-box span {
  color: #555;
  font-size: 0.95rem;
}

.placement-stat {
  border-radius: 8px;
  padding: 18px;
  background: #003B73;
  color: #fff;
  text-align: center;
}

.placement-stat strong,
.placement-stat span {
  display: block;
}

.placement-stat strong {
  font-size: 1.8rem;
  line-height: 1.1;
}

.placement-stat span {
  color: #e8f2ff;
  margin-top: 6px;
}

.placement-panel,
.process-card,
.training-card {
  border: 1px solid #e4edf7;
  border-radius: 8px;
  background: #fff;
  padding: 22px;
}

.placement-timeline {
  display: grid;
  gap: 12px;
}

.placement-timeline div {
  border-left: 4px solid #003B73;
  padding: 10px 0 10px 14px;
  background: #f8fbff;
}

.placement-timeline strong,
.placement-timeline span {
  display: block;
}

.placement-timeline span {
  color: #555;
}

.process-card span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #003B73;
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
}

.process-card h5,
.training-card h5 {
  color: #003B73;
  font-weight: 700;
}

.recruiter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 14px;
}

.recruiter-logo {
  display: grid;
  place-items: center;
  min-height: 100px;
  border: 1px solid #e4edf7;
  border-radius: 8px;
  background: #fff;
  padding: 12px;
}

.recruiter-logo img {
  max-width: 100%;
  max-height: 76px;
  object-fit: contain;
}

.training-card i {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #f8fbff;
  color: #003B73;
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.placement-link-card {
  display: block;
  height: 100%;
  border: 1px solid #e4edf7;
  border-radius: 8px;
  padding: 16px;
  background: #f8fbff;
  color: #003B73;
  font-weight: 700;
  text-decoration: none;
}

.placement-link-card:hover {
  background: #003B73;
  color: #fff;
}

.placement-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.placement-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #e4edf7;
}

@media (max-width: 768px) {
  .placement-gallery {
    grid-template-columns: 1fr;
  }
}

.campus-contact-box {
  min-width: 250px;
  border: 1px solid #e4edf7;
  border-left: 4px solid #ffc107;
  border-radius: 8px;
  padding: 14px 16px;
  background: #fffdf3;
}

.campus-contact-box strong,
.campus-contact-box span {
  display: block;
}

.campus-contact-box span {
  color: #555;
  font-size: 0.95rem;
}

.campus-stat {
  border-radius: 8px;
  padding: 18px;
  background: #003B73;
  color: #fff;
  text-align: center;
}

.campus-stat i {
  display: block;
  font-size: 1.6rem;
  color: #ffc107;
  margin-bottom: 8px;
}

.campus-stat strong,
.campus-stat span {
  display: block;
}

.campus-stat span {
  color: #e8f2ff;
  margin-top: 6px;
}

.campus-panel,
.campus-feature-card {
  border: 1px solid #e4edf7;
  border-radius: 8px;
  background: #fff;
  padding: 22px;
}

.campus-feature-card i {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #f8fbff;
  color: #003B73;
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.campus-feature-card h5 {
  color: #003B73;
  font-weight: 700;
}

.campus-activity-list {
  display: grid;
  gap: 12px;
}

.campus-activity-list div {
  border-left: 4px solid #003B73;
  padding: 12px 16px;
  background: #f8fbff;
}

.campus-activity-list strong,
.campus-activity-list span {
  display: block;
}

.campus-activity-list span {
  color: #555;
  margin-top: 3px;
}

.campus-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.campus-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #e4edf7;
}

.campus-link-card {
  display: block;
  height: 100%;
  border: 1px solid #e4edf7;
  border-radius: 8px;
  padding: 16px;
  background: #f8fbff;
  color: #003B73;
  font-weight: 700;
  text-decoration: none;
}

.campus-link-card:hover {
  background: #003B73;
  color: #fff;
}

@media (max-width: 768px) {
  .campus-gallery {
    grid-template-columns: 1fr;
  }
}

.committee-contact-box {
  min-width: 250px;
  border: 1px solid #e4edf7;
  border-left: 4px solid #ffc107;
  border-radius: 8px;
  padding: 14px 16px;
  background: #fffdf3;
}

.committee-contact-box strong,
.committee-contact-box span {
  display: block;
}

.committee-contact-box span {
  color: #555;
  font-size: 0.95rem;
}

.committee-stat {
  border-radius: 8px;
  padding: 18px;
  background: #003B73;
  color: #fff;
  text-align: center;
}

.committee-stat i {
  display: block;
  font-size: 1.6rem;
  color: #ffc107;
  margin-bottom: 8px;
}

.committee-stat strong,
.committee-stat span {
  display: block;
}

.committee-stat span {
  color: #e8f2ff;
  margin-top: 6px;
}

.committee-panel,
.committee-card {
  border: 1px solid #e4edf7;
  border-radius: 8px;
  background: #fff;
  padding: 22px;
}

.committee-card .bi {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 8px;
  background: #f8fbff;
  color: #003B73;
  font-size: 1.3rem;
}

.committee-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.committee-tags span {
  border-radius: 999px;
  background: #f8fbff;
  color: #003B73;
  border: 1px solid #e4edf7;
  padding: 5px 10px;
  font-size: 0.85rem;
}

.committee-process {
  display: grid;
  gap: 12px;
}

.committee-process div {
  border-left: 4px solid #003B73;
  padding: 12px 16px;
  background: #f8fbff;
}

.committee-process strong,
.committee-process span {
  display: block;
}

.committee-process span {
  color: #555;
  margin-top: 3px;
}

.committee-link-card {
  display: block;
  height: 100%;
  border: 1px solid #e4edf7;
  border-radius: 8px;
  padding: 16px;
  background: #f8fbff;
  color: #003B73;
  font-weight: 700;
  text-decoration: none;
}

.committee-link-card:hover {
  background: #003B73;
  color: #fff;
}

.recognition-contact-box {
  min-width: 250px;
  border: 1px solid #e4edf7;
  border-left: 4px solid #ffc107;
  border-radius: 8px;
  padding: 14px 16px;
  background: #fffdf3;
}

.recognition-contact-box strong,
.recognition-contact-box span {
  display: block;
}

.recognition-contact-box span {
  color: #555;
  font-size: 0.95rem;
}

.recognition-stat {
  min-height: 150px;
  border-radius: 8px;
  padding: 16px;
  background: #003B73;
  color: #fff;
  text-align: center;
}

.recognition-stat img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  padding: 8px;
  margin-bottom: 10px;
}

.recognition-stat strong,
.recognition-stat span {
  display: block;
}

.recognition-stat span {
  color: #e8f2ff;
  margin-top: 6px;
}

.recognition-card,
.recognition-panel {
  border: 1px solid #e4edf7;
  border-radius: 8px;
  background: #fff;
  padding: 22px;
}

.recognition-card .bi {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 8px;
  background: #f8fbff;
  color: #003B73;
  font-size: 1.3rem;
}

.recognition-document-list {
  display: grid;
  gap: 10px;
}

.recognition-document-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #e4edf7;
  border-radius: 8px;
  padding: 12px;
  color: #003B73;
  text-decoration: none;
  background: #f8fbff;
  font-weight: 600;
}

.recognition-document-list a:hover {
  background: #003B73;
  color: #fff;
}

.recognition-process {
  display: grid;
  gap: 12px;
}

.recognition-process div {
  border-left: 4px solid #003B73;
  padding: 12px 16px;
  background: #f8fbff;
}

.recognition-process strong,
.recognition-process span {
  display: block;
}

.recognition-process span {
  color: #555;
  margin-top: 3px;
}

.recognition-link-card {
  display: block;
  height: 100%;
  border: 1px solid #e4edf7;
  border-radius: 8px;
  padding: 16px;
  background: #f8fbff;
  color: #003B73;
  font-weight: 700;
  text-decoration: none;
}

.recognition-link-card:hover {
  background: #003B73;
  color: #fff;
}

.admission-contact-box {
  min-width: 260px;
  border: 1px solid #e4edf7;
  border-left: 4px solid #ffc107;
  border-radius: 8px;
  padding: 14px 16px;
  background: #fffdf3;
}

.admission-contact-box strong,
.admission-contact-box span {
  display: block;
}

.admission-contact-box span {
  color: #555;
  font-size: 0.95rem;
}

.admission-stat {
  border-radius: 8px;
  padding: 18px;
  background: #003B73;
  color: #fff;
  text-align: center;
}

.admission-stat i {
  display: block;
  font-size: 1.6rem;
  color: #ffc107;
  margin-bottom: 8px;
}

.admission-stat strong,
.admission-stat span {
  display: block;
}

.admission-stat span {
  color: #e8f2ff;
  margin-top: 6px;
}

.admission-panel,
.admission-process-card,
.admission-program-card {
  border: 1px solid #e4edf7;
  border-radius: 8px;
  background: #fff;
  padding: 22px;
}

.admission-process-card span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #003B73;
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
}

.admission-process-card h5,
.admission-program-card h5 {
  color: #003B73;
  font-weight: 700;
}

.admission-document-list {
  display: grid;
  gap: 10px;
}

.admission-document-list div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid #e4edf7;
  border-radius: 8px;
  background: #f8fbff;
  padding: 12px 14px;
}

.admission-document-list i {
  color: #003B73;
  font-size: 1.15rem;
}

.admission-link-card {
  display: block;
  height: 100%;
  border: 1px solid #e4edf7;
  border-radius: 8px;
  padding: 16px;
  background: #f8fbff;
  color: #003B73;
  font-weight: 700;
  text-decoration: none;
}

.admission-link-card:hover {
  background: #003B73;
  color: #fff;
}

.download-group {
  border: 1px solid #e4edf7;
  border-radius: 8px;
  background: #fff;
  padding: 20px;
}

.download-list,
.search-results {
  display: grid;
  gap: 10px;
}

.download-list a,
.search-result-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid #e4edf7;
  border-radius: 8px;
  padding: 12px;
  background: #f8fbff;
  color: #003B73;
  text-decoration: none;
}

.download-list a:hover,
.search-result-item:hover {
  background: #003B73;
  color: #fff;
}

.search-result-item {
  display: block;
}

.search-result-item strong,
.search-result-item span {
  display: block;
}

.search-result-item span {
  color: inherit;
  opacity: 0.9;
  margin-top: 4px;
}

.home-notices {
  background: #fff;
  border-bottom: 1px solid #e9ecef;
}

.home-notice-card,
.notice-card {
  border: 1px solid #e4edf7;
  border-radius: 8px;
  background: #f8fbff;
}

.home-notice-card {
  display: grid;
  gap: 8px;
  min-height: 150px;
  height: 100%;
  padding: 16px;
  color: #003B73;
  text-decoration: none;
}

.home-notice-card:hover {
  background: #003B73;
  color: #fff;
}

.home-notice-card strong {
  line-height: 1.35;
}

.home-notice-card small {
  color: inherit;
  opacity: 0.85;
}

.notice-list {
  display: grid;
  gap: 14px;
}

.notice-card {
  padding: 18px;
}

.notice-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.notice-card__meta time {
  color: #555;
  font-size: 0.95rem;
}

.notice-card h2 {
  color: #003B73;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.notice-card p {
  color: #555;
  margin-bottom: 14px;
}

.student-link-card {
  display: flex;
  gap: 14px;
  height: 100%;
  min-height: 132px;
  border: 1px solid #e4edf7;
  border-radius: 8px;
  background: #fff;
  padding: 18px;
  color: #003B73;
  text-decoration: none;
}

.student-link-card:hover {
  background: #003B73;
  color: #fff;
}

.student-link-card i {
  display: grid;
  flex: 0 0 42px;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #f8fbff;
  color: #003B73;
  font-size: 1.25rem;
}

.student-link-card:hover i {
  background: #ffc107;
}

.student-link-card strong,
.student-link-card small {
  display: block;
}

.student-link-card strong {
  margin-bottom: 6px;
}

.student-link-card small {
  color: inherit;
  opacity: 0.85;
}


.btn:focus,
.form-control:focus,
.form-select:focus,
.nav-link:focus,
a:focus {
  outline: 3px solid #f6b21a;
  outline-offset: 2px;
}

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

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