.doctors h3 {
  font-weight: 600 !important;
}

/* Strictly target h2 inside department-details section */
#department-details h2 {
  font-weight: 600 !important;
  /* example weight */
  text-transform: capitalize;
  /* capitalize each word */
  margin-bottom: 1rem;
  font-size: 26px !important;
  /* spacing */
  font-family: "Satoshi", sans-serif !important;
}

#department-details h3 {
  font-weight: 600 !important;
  /* example weight */
  text-transform: capitalize;
  /* capitalize each word */
  margin-bottom: 1rem;
  /* spacing */
  font-family: "Satoshi", sans-serif !important;
  font-size: 18px !important;
}

/* Optional: target the span inside h2 for special color */
#department-details h2 span.text-danger {
  color: #960c0c;
  /* theme color */
  text-transform: none;
  /* keep as typed, no capitalization */
}

/* NOTICES SECTION CUSTOM STYLE ==================================== */

.notices-section {
  padding: 60px 20px;
  background: #f8f8f8;
  font-family: 'Segoe UI', sans-serif;
}

/* .section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #960c0c; 
  position: relative;
}

.section-title::after {
  content: '';
  width: 80px;
  height: 3px;
  background: #960c0c;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
} */

.notices-table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.notices-table th,
.notices-table td {
  padding: 15px 20px;
  text-align: left;
}

.notices-table th {
  background-color: #960c0c;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.notices-table tbody tr {
  border-bottom: 1px solid #eee;
  transition: background 0.3s;
}

.notices-table tbody tr:hover {
  background: #fff1f1;
}

.btn-link {
  background: #960c0c;
  color: #fff;
  padding: 8px 15px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.btn-link:hover {
  background: #fff;
  color: #960c0c;
  border: 1px solid #960c0c;
}


/* CSR TABLE DESIGN =================== */

/* CSR Section Wrapper */
.csr-projects-section {
  margin-top: 40px;
}

/* Card Style */
.csr-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f1f1;
}

/* Year Heading */
.csr-year {
  font-weight: 600;
  margin-bottom: 20px;
  color: #960c0c;
  /* Theme color */
  border-left: 4px solid #960c0c;
  padding-left: 12px;
}

/* Table Styling */
.csr-table {
  width: 100%;
  border-collapse: collapse;
}

.csr-table thead {
  background: #960c0c;
  color: #ffffff;
}

.csr-table th {
  padding: 14px;
  font-weight: 600;
  text-align: left;
}

.csr-table td {
  padding: 14px;
  border-bottom: 1px solid #eee;
  vertical-align: top;
}

/* Row Hover Effect */
.csr-table tbody tr:hover {
  background: #fafafa;
  transition: 0.3s ease;
}

/* Sl No Styling */
.csr-table td:first-child {
  font-weight: 600;
  color: #960c0c;
}


/* csr policy pdf download- when click on the button ============== */

/* CSR Policy Section */
.csr-policy-section {
  margin-top: 50px;
  text-align: center;
}

.csr-policy-card {
  background: linear-gradient(135deg, #ffffff, #fafafa);
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0f0f0;
}

/* Title */
.policy-title {
  font-size: 28px;
  font-weight: 700;
  color: #0d2c3f;
  margin-bottom: 25px;
}

/* Button */
.policy-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #960c0c;
  color: #ffffff;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.policy-btn:hover {
  background: #b31212;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(150, 12, 12, 0.25);
  color: #ffffff;
}

.doctor-desc {
  display: none !important;
}

/* CAREER DESIGN ======================+++++++++++++++++ */

/* Left Panel */
.department-contact-panel {
  background: linear-gradient(135deg, #960c0c, #b31212);
  color: #fff;
}

.department-contact-panel .divider {
  border-color: rgba(255, 255, 255, 0.3);
  margin: 25px 0;
}

.icon-box {
  width: 45px;
  height: 45px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: #fff;
  font-size: 18px;
}

/* Right Panel */
.department-form-panel {
  background: #fff;
}

/* Custom Input Styling */
.custom-input {
  border: none;
  border-bottom: 2px solid #e5e5e5;
  border-radius: 0;
  box-shadow: none;
}

.custom-input:focus {
  border-color: #960c0c;
  box-shadow: none;
}

/* Submit Button */
.submit-btn {
  background: #960c0c;
  color: #fff;
  padding: 12px 40px;
  border-radius: 30px;
  border: none;
  transition: 0.3s ease;
}

.submit-btn:hover {
  background: #b31212;
  color: #fff;
  /* transform: translateY(-2px); */
}