#logo {
  width: 125px;
}

@media (max-width: 767px) {
#logo {
  width: 100px;
  }
}

@media (max-width: 479px) {
#logo {
  width: 80px;
  }
}
.education-assistance{
  display: inline-block; 
  vertical-align: middle;
}
#timeline {
  --color: rgba(30, 30, 30);
  --bgColor: rgba(245, 245, 245);
  min-height: 100vh;
  display: grid;
  align-content: center;
  gap: 2rem;
  padding: 2rem;
  font-family: "Poppins", sans-serif;
  color: var(--color);

} 

.timeline_ul {
  --col-gap: 2rem;
  --row-gap: 2rem;
  --line-w: 0.25rem;
  display: grid;
  grid-template-columns: var(--line-w) 1fr;
  grid-auto-columns: max-content;
  column-gap: var(--col-gap);
  list-style: none;
  width: min(60rem, 90%);
  margin-inline: auto;
  font-family: 'Poppins', sans-serif; /* Apply Poppins font here */
}

.timeline_ul::before {
  content: "";
  grid-column: 1;
  grid-row: 1 / span 20;
  background: rgb(185, 185, 185);
  border-radius: calc(var(--line-w) / 2);
}

.timeline_ul li:not(:last-child) {
  margin-bottom: var(--row-gap);
}

.timeline_ul li {
  grid-column: 2;
  --inlineP: 1.5rem;
  margin-inline: var(--inlineP);
  grid-row: span 2;
  display: grid;
  grid-template-rows: min-content min-content min-content;
}

.timeline_ul li .date {
  --dateH: 3rem;
  height: var(--dateH);
  margin-inline: calc(var(--inlineP) * -1);

  text-align: center;
  background-color: var(--accent-color);

  color: white;
  font-size: 1.25rem;
  font-weight: 700;

  display: grid;
  place-content: center;
  position: relative;

  border-radius: calc(var(--dateH) / 2) 0 0 calc(var(--dateH) / 2);
}

.timeline_ul li .date::before {
  content: "";
  width: var(--inlineP);
  aspect-ratio: 1;
  background: var(--accent-color);
  background-image: linear-gradient(rgba(0, 0, 0, 0.2) 100%, transparent);
  position: absolute;
  top: 100%;

  clip-path: polygon(0 0, 100% 0, 0 100%);
  right: 0;
}

.timeline_ul li .date::after {
  content: "";
  position: absolute;
  width: 2rem;
  aspect-ratio: 1;
  background: var(--bgColor);
  border: 0.3rem solid var(--accent-color);
  border-radius: 50%;
  top: 50%;

  transform: translate(50%, -50%);
  right: calc(100% + var(--col-gap) + var(--line-w) / 2);
}

.timeline_ul li .title,
.timeline_ul li .descr {
  background: var(--bgColor);
  position: relative;
  padding-inline: 1.5rem;
  font-family: 'Poppins', sans-serif; /* Apply Poppins font to title and description */
}

.timeline_ul li .title {
  overflow: hidden;
  padding-block-start: 1.5rem;
  padding-block-end: 1rem;
  font-weight: 500;
}

.timeline_ul li .descr {
  padding-block-end: 1.5rem;
  font-size: 17px;
  color: #47474a;
}

.timeline_ul li .title::before,
.timeline_ul li .descr::before {
  content: "";
  position: absolute;
  width: 90%;
  height: 0.5rem;
  background: rgba(77, 77, 77, 0.5);
  left: 50%;
  border-radius: 50%;
  filter: blur(3px);
  transform: translate(-50%, 50%);
}

.timeline_ul li .title::before {
  bottom: calc(100% + 0.125rem);
}

.timeline_ul li .descr::before {
  z-index: -1;
  bottom: 0.25rem;
}


@media (min-width: 40rem) {
  .timeline_ul {
    grid-template-columns: 1fr var(--line-w) 1fr;
  }
  .timeline_ul::before {
    grid-column: 2;
  }
  .timeline_ul li:nth-child(odd) {
    grid-column: 1;
  }
  .timeline_ul li:nth-child(even) {
    grid-column: 3;
  }


  .timeline_ul li:nth-child(2) {
    grid-row: 2/4;
  }

  .timeline_ul li:nth-child(odd) .date::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    left: 0;
  }

  .timeline_ul li:nth-child(odd) .date::after {
    transform: translate(-50%, -50%);
    left: calc(100% + var(--col-gap) + var(--line-w) / 2);
  }
  .timeline_ul li:nth-child(odd) .date {
    border-radius: 0 calc(var(--dateH) / 2) calc(var(--dateH) / 2) 0;
  }
}

.credits {
  margin-top: 1rem;
  text-align: right;
}
.credits a {
  color: var(--color);
}

/********NOTIFICATION********/
.notification-label {
  font-size: 18px; 
  font-weight: bold;
  padding: 10px 0; 
  margin-left: 10px;
}

.notification-separator {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 320px; 
  height: 1px;
  background-color: #efefef; 
}

.notification-item {
    padding: 10px; 
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 300px;

}

.notification-item:hover {
    background-color: #f8f8f8;
    width: 300px;
}

.notification-title {
    font-weight: bold;
    margin-bottom: 5px;
}



.notification-time {
    font-style: italic;
    color: #888;
}

  .notification-badge {
      position: relative;
      display: inline-block;
  }

  .notification-badge .fa-bell {
      position: relative;
  }
  .notification-dropdown-menu {
    display: none;
    position: absolute;
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1000;
  }

  .dropdown-item {
    margin-bottom: 0;
    margin-top: 0;   
  }

  .preview-item {
    margin-bottom: 0;
    margin-top: 0;   
  }

  .notification-badge .badge {
      position: absolute;
      top: -7px;
      right: -7px;
      background-color: red;
      color: white;
      border-radius: 50%;
      padding: 5px;
      font-size: 7px;
  }
 
  .dropdown-menu {
    margin-right: 0 !important;
    padding-right: 0 !important;
  }

  .dropdown-menu {
    display: none;
    position: absolute;
    top: calc(70% + 10px);
    left: 0;
    max-width: 320px;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1;
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 13px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  

  #notificationDropdown {
    max-height: 400px;
    overflow-y: auto;
  }
 
  .notification-badge {
    position: relative;
  }

  .notification-info {
    margin-bottom: 0px;
  }

  .notification-title {
    font-weight: bold;
    font-size: medium;
    display: block;
    margin-right: 0 !important;
    padding-right: 0 !important;
  }

  .notification-description {
    color: #666;
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
    margin-right: 0 !important;
    padding-right: 0 !important;
  }

  .notification-time {
    color: #999;
    font-size: 12px;
    display: block;
    margin-right: 0 !important;
    padding-right: 0 !important;
  }

/********CAROUSEL**********/
.carousel-item img {
    max-height: 500px;
    width: 100%;
    object-fit: cover;
}

@media (max-width: 576px) {
    .carousel-item img {
        max-height: 300px;
    }
}


@media (min-width: 576px) and (max-width: 768px) {
    .carousel-item img {
        max-height: 400px;
    }
}


@media (min-width: 768px) and (max-width: 992px) {
    .carousel-item img {
        max-height: 500px;
    }
}


@media (min-width: 992px) {
    .carousel-item img {
        max-height: 600px;
    }
}

/************************************/
@media (max-width: 576px) {
    .education-assistance {
        font-size: 16px;
    }
}


@media (min-width: 576px) and (max-width: 768px) {
    .education-assistance {
        font-size: 20px;
    }
}


@media (min-width: 768px) and (max-width: 992px) {
    .education-assistance {
        font-size: 22px;
    }
}


@media (min-width: 992px) {
    .education-assistance {
      font-size: 24px;
    }
}

.mission-statement {
  font-size: 16px;
}


@media (min-width: 768px) {
  .mission-statement {
      font-size: 25px !important;
  }
}

.image_about {
  max-width: 15%;
  height: auto;    
  margin-top: 15px;
}

.image-character-formation{
  max-width: 15%;
  height: auto;    
  margin-top: 20px;
}

.leadership-about{
  max-width: 20%;
  height: auto;    
  margin-top: 20px;
}

@media (max-width: 767px) { 
  .image_about {
      max-width: 38%;
      margin-top: 15px;
  }

  .image-character-formation{
    max-width: 38%;
  }
  
  .leadership-about{
    max-width: 45%;
    margin-top: 15px;
    
  }
}


.user-profile {
  position: relative;
}

.user-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  min-width: 200px;
  padding: 10px;
  text-align: left; 
}

.user-dropdown-menu li {
  list-style: none;
  text-align: left;
  margin: 0;
  padding: 0;
}

.user-dropdown-menu button {
  display: block;
  width: 100%;
  padding: 8px 12px;
  border: none;
  background: none;
  text-align: left;
  color: #333;
  text-decoration: none;
}

.user-dropdown-menu button:hover {
  background-color: #f5f5f5;
}

.user-dropdown-menu button:focus, 
.user-dropdown-menu button:active {
  outline: none;
  background-color: #f5f5f5;
  color: #333;
}
.dropdown-item {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 16px;
  text-align: left;
  width: 100%;
}
.table-responsive {
  overflow-x: auto; 
}

.notes-column {
  max-width: 300px; 
  white-space: normal; 
  word-wrap: break-word; 
}
.tn-left li {
  transition: none;
}
.notification-dropdown-mobile {
  position: absolute;
  top: 50px;
  left: 0;
  width: 300px;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
  display: none;
}


.notification-dropdown-mobile.active {
  display: block;
}

.notification-list-mobile {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.notification-item-container-mobile {
  border-bottom: 1px solid #e5e5e5;
}

.notification-item-container-mobile:last-child {
  border-bottom: none;
}

.notification-item {
  display: flex;
  align-items: center;
  padding: 12px;
  cursor: pointer;
}

.notification-info-mobile {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.notification-title-mobile {
  font-weight: bold;
  font-size: 14px;
  color: #333;
}

.notification-description-mobile {
  font-size: 13px;
  color: #666;
  margin-top: 4px;
}

.notification-time-mobile {
  font-size: 12px;
  color: #999;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .notification-dropdown-mobile {
    width: 100%;
    top: 40px;
  }

  .notification-item-mobile {
    padding: 10px;
    
  }

  .notification-title-mobile {
    font-size: 13px;
  }

  .notification-description-mobile {
    font-size: 12px;
  }

  .notification-time-mobile {
    font-size: 11px;
  }
}


@media (max-width: 480px) {
  .notification-dropdown-mobile {
    width: 100%;
    max-height: 400px;
    top: 35px;
  }

  .notification-item-mobile {
    padding: 8px;
    padding: 10px; 
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 300px;
  }

  .notification-title-mobile {
    font-size: 12px;
  }

  .notification-description-mobile {
    font-size: 11px;
  }

  .notification-time-mobile {
    font-size: 10px;
  }
}