/* =====================================
   GLOBAL
===================================== */

body {
  font-family: "Segoe UI", sans-serif;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4 {
  font-weight: 700;
}

ul li {
  margin-bottom: 6px;
}

.container p {
  line-height: 1.7;
}

#bg-white {
  background-color: rgb(242 236 225) !important;
}


/* =====================================
   NAVBAR
===================================== */

.navbar-brand strong {
  font-size: 16px;
  line-height: 1.2;
}

.navbar-brand small {
  font-size: 13px;
}

.nav-link {
  color: #003366 !important;
}

.nav-link:hover {
  color: #0d6efd !important;
}


/* =====================================
   HERO SLIDER (FINAL – NO CROP)
===================================== */

#heroSlider {
  height: 75vh;
  max-height: 75vh;
  overflow: hidden;
  background: #000;
  position: relative;
}

#heroSlider .carousel-inner,
#heroSlider .carousel-item {
  height: 100%;
}

#heroSlider .slider-img {
  width: 100%;
  height: 100%;
  object-fit: 100% 100%;        /* FULL IMAGE */
  object-position: center;
  display: block;
}

#heroSlider .carousel-caption {
  background: rgba(0,0,0,0.55);
  padding: 20px 25px;
  border-radius: 8px;
  bottom: 18%;
  max-width: 720px;
  margin: auto;
}

#heroSlider .carousel-caption h1 {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 700;
}

#heroSlider .carousel-caption p {
  font-size: clamp(14px, 2.2vw, 18px);
}

@media (max-width: 768px) {
  #heroSlider {
    height: 60vh;
    max-height: 60vh;
  }

  #heroSlider .carousel-caption {
    bottom: 10%;
    padding: 15px;
  }
}


/* =====================================
   NOTICE BAR
===================================== */

.notice-bar {
  font-size: 15px;
}


/* =====================================
   SECTIONS
===================================== */

section h2,
section h3,
section h4 {
  font-weight: 700;
}

section p,
section li {
  font-size: 15px;
  line-height: 1.7;
}

.section-title {
  font-weight: 700;
  color: #0b5c8f;
}

.divider {
  width: 60px;
  height: 3px;
  background: #1a237e;
  margin: 10px auto 0;
}


/* =====================================
   CARDS
===================================== */

.card {
  border: none;
}

.card h5 {
  font-weight: 600;
  color: #003366;
}

.card p {
  font-size: 14px;
}


/* =====================================
   FACULTY
===================================== */

.faculty-section {
  background: #ffffff;
}

.faculty-card {
  background: #fff7ec;
  border-radius: 8px;
  text-align: center;
  padding: 15px 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  height: 100%;
}

.faculty-card img {
  width: 110px;
  height: 110px;
  border-radius: 6px;
  object-fit: cover;
  margin-bottom: 10px;
}

.faculty-card h6 {
  font-size: 14px;
  margin-bottom: 5px;
}

.faculty-card .badge {
  background: #1aa3a3;
  color: #fff;
  font-size: 11px;
  padding: 6px 8px;
}


/* =====================================
   DIGNITARIES
===================================== */

.dignitaries-section {
  background: #f7f1e1;
}

.dignitary-card {
  background: #0d6efd;
  text-align: center;
  padding: 20px 15px;
  border-radius: 6px;
  color: #fff;
  height: 100%;
  transition: transform .3s;
}

.dignitary-card:hover {
  transform: translateY(-5px);
}

.dignitary-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  margin-bottom: 15px;
}

.dignitary-card .post {
  font-size: 13px;
}

.dignitary-card h6 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}


/* =====================================
   NOTICE BOARD
===================================== */

.notice-board-container {
  width: 100%;
  border: 2px solid #0b5ed7;
  background: #fff;
  position: relative;
  height: 360px;
  font-family: Arial;
}

.notice-header {
  background: #0b5ed7;
  color: #fff;
  padding: 10px;
  font-weight: bold;
  text-align: center;
  font-size: 16px;
}

.notice-body {
  height: 280px;
  overflow-y: auto;
  padding: 10px;
}

.notice-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.notice-body li {
  margin-bottom: 12px;
  font-size: 14px;
  border-bottom: 1px dashed #aaa;
  padding-bottom: 6px;
}

.notice-body li a {
  text-decoration: none;
  color: #000;
}

.notice-body li a:hover {
  color: #0b5ed7;
  text-decoration: underline;
}

.notice-body .date {
  display: block;
  font-size: 12px;
  color: #666;
}


/* =====================================
   GALLERY
===================================== */

.gallery-thumb img {
  cursor: pointer;
  transition: .4s;
}

.gallery-thumb img:hover {
  transform: scale(1.07);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}


/* =====================================
   LIGHTBOX
===================================== */

.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.lightbox-content img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 8px;
}

.lightbox-caption {
  color: #fff;
  margin-top: 12px;
  text-align: center;
  font-size: 15px;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 35px;
  font-size: 42px;
  color: #fff;
  cursor: pointer;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 55px;
  color: #fff;
  cursor: pointer;
  padding: 10px;
  user-select: none;
}

.lightbox-arrow.left { left: 25px; }
.lightbox-arrow.right { right: 25px; }
