/*inner page section header */
.inner-header {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}
.inner-header-bg {
  position: relative;
  width: 100%;
  height: 100%;
}
.inner-header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Black overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* adjust darkness here */
  z-index: 1;
}
/* Page title on top of overlay */
.page-title {
  position: absolute;
  bottom: 20px;
  left: 30px;
  z-index: 1; /* Above overlay */
  background: rgba(0, 0, 0, 0.6);
  padding: 10px 20px;
  border-radius: 4px;
}
.page-title h1 {
  margin: 0;
  font-size: 2rem;
  color: #fff;
  font-weight: 600;
}
.page-title h2 {
  margin: 0;
  font-size: 24px;
  color: #fff;
  font-weight: 600;
}
/* About Page */
.site-main .container {
  position: relative;
  z-index: 2;
}
.about-section {

    position: relative;
}
.about-section .image-container {
    position: absolute;
    top: 50%;
    left: 0;
    width: 40%;
    transform: translateY(-50%);
    z-index: 1;
}
.about-section .about-image {
    border-radius: 15px;
    max-width: 100%;
    height: auto;
    transform: rotate(-5deg); /* Slight tilt for dynamic feel */
    transition: transform 0.3s ease;
}
.about-section .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 123, 255, 0.2); /* Subtle overlay for depth */
    border-radius: 15px;
}
.about-section .content-card {
    position: relative;
    z-index: 2;
    border-radius: 15px;
    transition: transform 0.3s ease;
}
.about-section .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.about-section .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
}
.about-section p {
    margin-bottom: 1.2rem;
}
/* Responsive Adjustments */
@media (max-width: 992px) {
    .about-section .image-container {
        position: static;
        width: 100%;
        transform: none;
        margin-bottom: 2rem;
    }
    .about-section .content-card {
        margin-left: 0;
    }
    .about-section .about-image {
        transform: none;
        max-width: 80%;
        margin: 0 auto;
        display: block;
    }
    .about-section .section-title {
        font-size: 2.2rem;
    }
}
@media (max-width: 576px) {
    .about-section .section-title {
        font-size: 1.8rem;
    }
    .about-section .lead {
        font-size: 1rem;
    }
}
/* Mission vision section*/
.vision-mission-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 80px 0;
  position: relative;
}
.vision-mission-section .content-card {
  position: relative;
  z-index: 2;
  border-radius: 15px;
  transition: transform 0.3s ease;
}
.vision-mission-section .section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.vision-mission-section p,
.vision-mission-section li {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 1.2rem;
}
.vision-mission-section h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1a1a;
}
.vision-mission-section .icon-box i {
  min-width: 40px;
  color: #0c4096;
}
@media (max-width: 992px) {
  .vision-mission-section .section-title {
    font-size: 2.2rem;
  }
  .vision-mission-section h4 {
    font-size: 1.2rem;
  }
}
@media (max-width: 576px) {
  .vision-mission-section .section-title {
    font-size: 1.8rem;
  }
  .vision-mission-section p,
  .vision-mission-section li {
    font-size: 0.95rem;
  }
  .vision-mission-section .d-flex {
    flex-direction: column;
  }
  .vision-mission-section .icon-box {
    margin-bottom: 1rem;
  }
}
/* Plagiarism Checker */
.plagiarism-policy-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 80px 0;
  position: relative;
}
.plagiarism-policy-section .content-card {
  position: relative;
  z-index: 2;
  border-radius: 15px;
  transition: transform 0.3s ease;
}
.plagiarism-policy-section .section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.plagiarism-policy-section p,
.plagiarism-policy-section li {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
}
.plagiarism-policy-section h5 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a1a1a;
}
.plagiarism-policy-section .custom-list li {
  margin-bottom: 0.6rem;
}
.plagiarism-policy-section .custom-list a {
  text-decoration: underline;
  color: #0c4096;
}
.plagiarism-policy-section .custom-list a:hover {
  color: #06307c;
}
/* Responsive */
@media (max-width: 992px) {
  .plagiarism-policy-section .section-title {
    font-size: 2.2rem;
  }
  .plagiarism-policy-section h5 {
    font-size: 1.1rem;
  }
}
@media (max-width: 576px) {
  .plagiarism-policy-section .section-title {
    font-size: 1.8rem;
  }
  .plagiarism-policy-section p,
  .plagiarism-policy-section li {
    font-size: 0.95rem;
  }
}
/* Achievement Section */
.achievements-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 80px 0;
  position: relative;
}
.achievements-section .content-card {
  position: relative;
  z-index: 2;
  border-radius: 15px;
  transition: transform 0.3s ease;
}
.achievements-section .section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.achievements-list ul {
  padding-left: 0;
}
.achievements-list li {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  position: relative;
}
.achievements-list i {
  color: #0c4096;
}
@media (max-width: 992px) {
  .achievements-section .section-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 576px) {
  .achievements-section .section-title {
    font-size: 1.8rem;
  }
  .achievements-list li {
    font-size: 0.95rem;
  }
}
.accreditation-section {
 background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 80px 0;
}
.accreditation-section .highlight-box a {
  color: #0c4096;
  text-decoration: none;
}
.accreditation-section .highlight-box a:hover {
  text-decoration: underline;
}
.accreditation-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #1a1a1a;
}
.accreditation-section .highlight-box {
  background: #f8f9fa;
  border-left: 4px solid #0c4096;
  transition: transform 0.3s ease;
}
.accreditation-section .highlight-box:hover {
  transform: scale(1.02);
}
/* Approvals & Accreditation */
.approval-card img {
  max-height: 80px;
  object-fit: contain;
}
.approval-card h6 {
  font-size: 1rem;
  color: #0c4096;
}
.approval-card p {
  font-size: 0.9rem;
}
.approvals-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #1a1a1a;
}
/* Chancellor Page */
.chancellor-section .chancellor-photo {
  max-width: 240px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}
.chancellor-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.chancellor-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
}
.chancellor-section h4{
    color:#243d80 !important;
}
@media (max-width: 767px) {
  .chancellor-section h2 {
    font-size: 1.5rem;
  }
  .chancellor-section .chancellor-photo {
    max-width: 180px;
  }
}
/* Pro Chancellor Page */
.pro-chancellor-section .chancellor-photo {
  max-width: 240px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}
.pro-chancellor-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.pro-chancellor-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
}
.pro-chancellor-section h4{
    color:#243d80 !important;
}
@media (max-width: 767px) {
  .pro-chancellor-section h2 {
    font-size: 1.5rem;
  }
  .pro-chancellor-section .chancellor-photo {
    max-width: 180px;
  }
}
/* Vice Chancellor / Chancellor / Pro-Chancellor Section */
.vc-section .vc-photo {
  max-width: 240px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}
.vc-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #1a1a1a;
}
.vc-section h4 {
  color: #243d80 !important;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.vc-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
}
@media (max-width: 767px) {
  .vc-section h2 {
    font-size: 1.5rem;
  }
  .vc-section .vc-photo {
    max-width: 180px;
  }
}
/* Admission Procedure Page */
.admission-section h2 {
  color:#05305a;
  font-size: 2.2rem;
  letter-spacing: 0.5px;
}
.admission-section .lead {
  font-size: 1.15rem;
  color: #05305a;
}
.admission-section p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
}
/* JET Page */
.jet-hero-section {
  position: relative;
  height: 100vh;
  background: url('../images/jisu-bg.jpg') no-repeat center center/cover;
  overflow: hidden;
}
.jet-hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65); /* Black overlay */
  z-index: 1;
}
.jet-hero-section .container {
  z-index: 2;
}
.jet-hero-section h1 {
  font-size: 3.5rem;
  letter-spacing: 1px;
  color: #fff;
}
.jet-hero-section h3 {
  font-size: 1.5rem;
  color: #f1f1f1;
}
.jet-hero-section .btn {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  border-radius: 50px;
}
.jet-hero-section .btn-outline-light:hover {
  background-color: #fff;
  color: #000;
}
@media (max-width: 768px) {
  .jet-hero-section h1 {
    font-size: 2.2rem;
  }
  .jet-hero-section h3 {
    font-size: 1.1rem;
  }
}
.jet-about-section h2 {
  font-size: 2rem;
  color: #0C4096 !important;
}
.jet-about-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}
.jet-about-section a {
  color: #0C4096;
  font-weight: 500;
  text-decoration: none;
}
.jet-about-section a:hover {
  text-decoration: underline;
}
.jet-accordion-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0C4096 !important;
}
.jet-accordion-section .accordion-button {
  font-weight: 600;
  font-size: 1.1rem;
}
.jet-accordion-section p, .jet-accordion-section li {
  font-size: 1rem;
  line-height: 1.7;
}
/*Gallery Page */
.gallery-section .overlay {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.gallery-section a:hover .overlay {
  opacity: 1;
}
/* Student Credit Card*/
.student-credit-card-section {
  background: linear-gradient(to bottom right, #f0f8ff, #ffffff);
}
.section-badge {
  display: inline-block;
  background-color: #004aad;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.custom-list {
  list-style: none;
  padding: 0;
  font-size: 1rem;
  color: #222;
}
.custom-list li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
  color: #212529;
}
.custom-list li i {
  color: #198754;
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 1.2rem;
}
.btn-apply {
  background-color: #004aad;
  color: white;
  font-weight: 600;
  padding: 0.6rem 1.4rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
.btn-apply:hover {
  background-color: #002c70;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.contact-info-enhanced {
  max-width: 700px;
  background: linear-gradient(135deg, #0d3b66, #145da0);
  color: #ffffff;
}
.contact-info-enhanced a:hover {
  color: #ffc107;
  text-decoration: none;
}
/* Admission Assistance */
.document-checklist-section ul li {
  font-size: 16px;
  padding-left: 0.5rem;
}
.document-checklist-section .list-group-item {
  background: transparent;
  border: none;
}
.document-checklist-section h2,h4{
 
}
/* Research */
.research-overview-section {
  background: #f8f9fc;
}
.research-overview-section h2 {
  color:#05305a !important;
  font-size: 2.2rem;
}
.research-overview-section p.lead {
  font-size: 1.125rem;
  line-height: 1.8;
}
.major-research-section ul.research-list {
  padding-left: 1.2rem;
  list-style-type: disc;
}
.major-research-section ul.research-list li {
  margin-bottom: 0.35rem;
  color: #212529;
  font-size: 1rem;
  line-height: 1.6;
}
.major-research-section h4 {
  font-size: 1.3rem;
  color: #0d3b66;
}
.major-research-section h5 {
  font-size: 1.1rem;
}
/*PhD Page*/
.phd-notification-section {
  background: linear-gradient(to bottom, #f9f9fc 0%, #f0f4ff 100%);
  padding: 60px 20px;
  color: #222;
}
.phd-notification-section .container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 20px;
}
.phd-notification-section h2 {
  font-size: 36px;
  color: #0c4096;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  text-transform: uppercase;
}
.phd-notification-section p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #333;
}
.phd-notification-section h3 {
  margin-top: 50px;
  margin-bottom: 25px;
  color: #0c4096;
  font-size: 26px;
  border-left: 6px solid #0c4096;
  padding-left: 12px;
  font-weight: 600;
}
.table-wrapper {
  overflow-x: auto;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}
.important-dates-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}
.important-dates-table th,
.important-dates-table td {
  padding: 14px 18px;
  border: 1px solid #ddd;
  text-align: left;
  font-size: 16px;
}
.important-dates-table thead {
  background-color: #0c4096;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: bold;
}
.important-dates-table tbody tr:hover {
  background-color: #eef4ff;
  transition: 0.3s ease;
}
.account-info {
  background: #ffffff;
  padding: 25px 30px;
  border-left: 6px solid #0c4096;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
  line-height: 1.8;
}
.account-info p {
  margin: 8px 0;
  font-size: 16.5px;
  color: #2a2a2a;
}
.account-info a {
  color: #0c4096;
  text-decoration: none;
  font-weight: 500;
}
.account-info a:hover {
  text-decoration: underline;
  color: #063075;
}
/*Hostel*/
.hostel-section h2, .hostel-section h4 {
  color: #0c4096 !important;
}
.hostel-section ul li {
  color: #444;
  margin-bottom: 8px;
}
.hostel-section p{
  color:#444;
}
.hostel-section .content-card {
  transition: all 0.3s ease;
}
.hostel-section .content-card:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
/* Global Infrastructure */
.infrastructure-section {
  background-color: #f4f9fc;
}
.infrastructure-section .text-justify {
  text-align: justify;
}
.infrastructure-section .check-icon {
  color: #f8d24b;
  font-weight: bold;
  margin-right: 6px;
}
.infrastructure-section .section-heading {
  font-size: 2rem;
}
.infrastructure-section li{
  color: #444;
}
.infrastructure-section .section-description {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
/*Co_curricular*/
.student-initiatives-section {
  background: #f8f9fb;
}
.student-initiatives-section .content-card {
  background: #fff;
}
.section-title.text-gradient {
  background: linear-gradient(90deg, #0C4096, #4379f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-size: 28px;
}
.custom-accordion .accordion-item {
  border: none;
  border-left: 3px solid #0c4096;
  border-radius: 0.5rem;
  margin-bottom: 10px;
  background-color: #fefefe;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.custom-accordion .accordion-button {
  background-color: #f8f9fb;
  color: #222a68;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 18px;
  transition: background-color 0.2s ease;
}
.custom-accordion .accordion-button:hover {
  background-color: #e9f0ff;
}
.custom-accordion .accordion-button:focus {
  box-shadow: none;
}
.custom-accordion .accordion-body {
  background: #fff;
  padding: 12px 18px;
  color: #555;
  border-top: 1px solid #ddd;
}
@media (max-width: 767px) {
  .section-title.text-gradient {
    font-size: 22px;
  }
  .accordion-button {
    font-size: 15px;
  }
}
.library-hero-section {
  position: relative;
}
.shadow-text {
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}
.text-custom {
  color: #444;
}
.library-overview-section ul li {
  margin-bottom: 0.5rem;
  font-size: 15px;
}
.library-overview-section h2,
.library-overview-section h3 {
  color: #0C4096;
}
/*Examination */
.examination-section {

}
.section-title {
  color: #0C4096;
  font-weight: 700;
  font-size: 28px;
}
.text-custom {
  color: #444;
  font-size: 15px;
  line-height: 1.7;
}
/* Vertical nav buttons under hero image */
.exam-nav-item {
  background-color: #fff;
  color: #0C4096;
  border: 1px solid #0C4096;
  border-radius: 30px;
  padding: 8px 16px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.2s ease;
  text-decoration: none;
}
.exam-nav-item:hover,
.exam-nav-item.active {
  background-color: #0C4096;
  color: #fff;
}
/* Tabs Header Styling */
.examination-notice-section .custom-tabs .nav-link {
  margin: 10px;
  font-weight: 600;
  color: #0C4096;
  background-color: #f1f5fb;
  border: 1px solid #ddd;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
  padding: 8px 20px;
}
.examination-notice-section .custom-tabs .nav-link:hover,
.examination-notice-section .custom-tabs .nav-link.active {
  background-color: #0C4096;
  color: #fff;
  border-color: #0C4096;
}
/* Tab Pane Styling */
.examination-notice-section .custom-tab-content {
  border-top: none;
  border-radius: 0 0 0.375rem 0.375rem;
  padding: 20px;
  background-color: #fff;
}
/* Custom List Styling */
.examination-notice-section .tt-custom-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.examination-notice-section .tt-custom-list li {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-bottom: 12px;
  border: 1px solid #e1e5ec;
  border-left: 4px solid #0C4096;
  border-radius: 0.375rem;
  background: #f9f9fc;
  transition: background 0.3s;
}
.examination-notice-section .tt-custom-list li:hover {
  background-color: #eef3fc;
}
.examination-notice-section .custom-icon {
  color: #0C4096;
  font-size: 1.2rem;
  margin-right: 10px;
}
/* Link Styling */
.examination-notice-section .tt-custom-list a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
.examination-notice-section .tt-custom-list a:hover {
  color: #0C4096;
  text-decoration: underline;
}

.image-hover {
  position: relative;
  overflow: hidden;
}

.image-hover img {
  transition: transform 0.3s ease;
  display: block;
  width: 100%;
  height: auto;
}

.image-hover .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.image-hover .overlay i {
  color: #fff;
  font-size: 2rem;
}

.gallery-item:hover .image-hover img {
  transform: scale(1.05);
}

.gallery-item:hover .overlay {
  opacity: 1;
}

 .filter-buttons {
      text-align: center;
      margin-bottom: 30px;
    }

    .filter-buttons button {
      cursor: pointer;
      background:none;
		color:#333;
      border: none;
      transition: 0.3s;
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    color: #313131;
    letter-spacing: 2.7px;
    text-transform: uppercase;
    padding-bottom: 9px;
    margin-right: 30px;
		padding: 0;
    }

    .filter-buttons button.active {
      border-bottom: #333 1px solid;
      color: #333;
    }

    .photogallery {
      display: grid;
	  grid-template-columns: repeat(3, 1fr); /* 3 images per row */
	  gap: 15px;
    }

    .photogallery-item {
      background: white;
      padding: 5px;
      border: 1px solid #ccc;
      border-radius: 6px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    .photogallery-item img {
      width: 100%;
      height: auto;
      border-radius: 4px;
      display: block;
    }

    .hidden {
      display: none !important;
    }
.photogallery-hover {
  position: relative;
  overflow: hidden;
}

.photogallery-hover img {
  transition: transform 0.3s ease;
  display: block;
  width: 100%;
  height: auto;
}

.photogallery-hover .photogallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.photogallery-hover .photogallery-overlay i {
  color: #fff;
  font-size: 2rem;
}

.photogallery-item:hover .photogallery-hover img {
  transform: scale(1.05);
}

.photogallery-item:hover .photogallery-overlay {
  opacity: 1;
}


    .publication-card {
      border: 1px solid #f1f1f1;
      border-radius: 0.75rem;
      padding: 2rem;
      background-color: #ffffff;
      transition: all 0.3s ease;
      position: relative;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .publication-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 0.75rem 1.25rem rgba(0, 0, 0, 0.075);
    }

    .publication-card .icon {
      font-size: 2rem;
      color: #f8d24b;
    }

    .publication-card a {
      font-weight: 600;
      text-decoration: none;
      color: #212529;
      display: inline-block;
      margin-top: 0.5rem;
    }

    .publication-card a:hover {
      color: #0d6efd;
    }
.faculty-img{ max-width: 130px}
