body {
  font-family: 'Roboto', sans-serif;
  background-color: #e2877f; /* This color will be visible if the image doesn't load */
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/2.png'); /* Ensure this path is correct for your project */
  background-size: cover; 
  background-repeat: no-repeat; 
  background-attachment: fixed;
  background-position: center center; 
}

/* NAVIGATION BAR */
#TUPC {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-size: 18px;
}

#TUPC img {
  height: 30px;
  width: auto;
  flex-shrink: 0;
}

@media (max-width: 576px) {
  #TUPC {
      font-size: 0.9rem;
  }
}

.navbar-brand img {
  height: 30px;
  width: auto;
}


.navbar-custom {
  background: linear-gradient(to right, #000000, #7b000a, #000000);
}

.navbar-custom .navbar-brand,
.navbar-custom .nav-link {
  color: white;
  font-weight: 500;
  margin-right: 10px;
  font-size: 17px;
}

/* HOVER NAV */
.navbar-custom .nav-link:hover {
  color: #adb5bd;
}

.navbar-custom .nav-link.active {
  font-weight: bold;
  font-size: 1.1rem;
  text-decoration: underline;
  text-underline-offset: 4px;
  color: white;
}

/* LOGIN BTN */
.nav-btn {
  background-color: #75000e;
  color: #ffffff !important;
  font-weight: bold;
  padding: 8px 20px;
  border-radius: 18px;
  border: none;
  transition: all 0.3s ease;
  text-align: center;
}

/* Hover effect for the button */
.nav-btn:hover {
  background-color: #49040c;
  color: #e7e1e1 !important;
  text-decoration: underline;
  font-weight: bold;
}

/* BURGER */
.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5); /* Light border */
}

/* 3 LINES */
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


.acso-accreditation-title {
  color: white; 
  font-weight: bold;
  text-align: center;
  font-size: 2.5rem; 
  margin-top: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); 
}

.requirements-box {
  border: 2px solid white; 
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.7);
  color: white; 
  border-radius: 10px; 
}

.requirements-heading {
  font-weight: bold;
  font-size: 1.5rem; 
  text-align: center;
  margin-bottom: 1.5rem;
}

.requirements-list {
  text-align: left; 
  font-style: italic;
  font-size: 1.2rem; 
  line-height: 1.8; 
  max-width: 400px; 
  margin-left: auto;
  margin-right: auto;
}

.requirements-list li {
  margin-bottom: 0.5rem; 
}

@media (max-width: 768px) {
  .acso-accreditation-title {
      font-size: 2rem;
  }
  .requirements-heading {
      font-size: 1.3rem;
  }
  .requirements-list {
      font-size: 1.1rem;
  }
  .requirements-box {
      padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .acso-accreditation-title {
      font-size: 1.8rem;
  }
  .requirements-heading {
      font-size: 1.1rem;
  }
  .requirements-list {
      font-size: 1rem;
      padding-left: 0; 
  }
  .requirements-box {
      padding: 1rem;
  }
}