.sidebar {
  background: #e44d1c;
  min-height: 100vh;
  padding: 20px 0;
}

.sidebar h5 {
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}

.sidebar .nav-link {
  color: #fff;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.sidebar .nav-link.active {
  background-color: #fff;
  color: #e44d1c;
  font-weight: bold;
}

.sidebar .nav-link:hover {
  background-color: #ff7733;
  color: #fff;
}

/* Content Area */
.content {
  padding: 40px;
  background: #fff;

  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}

.content h2 {
  font-weight: bold;

  padding-left: 12px;
  margin-bottom: 20px;
  color: #333;
  text-align: center;
  text-decoration: underline;
}

p {
  line-height: 1.8;

}

/* vision &mission */
.para {
  background: #fff;
  /* light shade background */
  padding: 20px;
  margin-bottom: 25px;
  border-left: 6px solid #e86c0c;
  /* orange border */
  border-radius: 5px;
}

.para h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  /* text-decoration: underline; */
  margin-bottom: 30px;
  color: #fff;
  /* Orange theme color */
  background-color: #255ABD;
  border-radius: 4px;

}

.para h2::before {
  color: #9c2700;
}



.para h2 {
  margin-top: 0;
  color: #fff;
  /* orange heading */
  font-size: 1.4rem;
}

.para p {
  line-height: 1.6;
  margin: 10px 0 0;
}

.para ol {
  margin: 10px 0 0 18px;
  line-height: 1.6;
}

.para ol li b {
  color: #333;
}

/* Affiliation page */
* {
  margin: 0;
  padding: 0;
}

.page-title {
  font-size: 40px;
  font-weight: 900;
  text-align: center;
  
  font-family: algerya sc;
  text-decoration: underline;
  margin-top: 20px;
  margin-bottom: 25px;
  
}

.card-Affiliation {
  border-radius: 12px;
  border: 1 px solid black;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);

}



/* Add a thin underline accent */
.page-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  /* background: #1e2a38; */
  margin: 8px auto 0;

}

/* ===== Table Styling ===== */
.table {
  font-size: 15px;
  background: #fff;
  margin-top: 20px;
  margin-bottom: 25px;

}

.table thead.thead-custom th {
  background: #255ABD;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
  
}

.table tbody tr:hover {
  background: #f5f0e9b8;
}

/* contact page */
.page {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  margin: 0;
  padding: 40px 20px ;
  width: 100vw;
  /* min-height: 100vh; */
  box-sizing: border-box;
  margin-bottom: 0;
  padding-bottom: 0;

  /* display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh; */
}

.contact-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 30px;
  color: #000;
  font-weight: bold;
  text-decoration: underline;
}

.container {
   display: grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); 
  width: 100%;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  /* max-width: 900px;
  margin: 0 auto;
  justify-content: center;
  flex-wrap: wrap; */
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* width: 300px;
  flex: 1; */
}

.card h2 {
  color: #e94e1b;
  margin-bottom: 20px;
  font-size: 22px;
}

.card p {
  margin: 10px 0;
  font-size: 15px;
}

.card p strong {
  font-weight: bold;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group input,
.form-group textarea {
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

.form-group textarea {
  resize: none;
  height: 80px;
}

.btn {
  background-color: #e94e1b;
  color: #fff;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.btn:hover {
  background-color: #d94313;
}