/* ================= GLOBAL ================= */
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f7fb;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

/* ================= TITLES ================= */
.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}

.sub-title {
  font-size: 22px;
  margin: 25px 0 15px;
  color: #333;
}

/* ================= ADMISSION ================= */
.admission-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

/* TABLE */
.table-responsive {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  margin-bottom: 25px;
  border-radius: 8px;
  overflow: hidden;
}

table th, table td {
  padding: 12px;
  border: 1px solid #ddd;
  text-align: center;
}

table th {
  background: #007bff;
  color: #fff;
  font-weight: 600;
}

table tr:hover {
  background: #f1f1f1;
}

/* ================= TEXT & NOTE ================= */
p {
  color: #555;
}

.note {
  color: #d9534f;
  font-size: 14px;
  margin-bottom: 10px;
}

/* ================= BUTTON ================= */
.apply-btn {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(45deg, #28a745, #218838);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  margin-top: 20px;
  transition: 0.3s;
}

.apply-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* ================= DEPARTMENTS ================= */
.department-section {
  padding: 60px 20px;
  background: #ffffff;
}

.dept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.dept-card {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.dept-card h3 {
  font-size: 20px;
  color: #007bff;
  margin-bottom: 10px;
}

.dept-card p {
  font-size: 14px;
  color: #555;
}

.dept-card:hover {
  transform: translateY(-8px);
  background: #007bff;
}

.dept-card:hover h3,
.dept-card:hover p {
  color: #fff;
}

/* ================= ELIGIBILITY ================= */
.eligibility-section {
  padding: 60px 20px;
  background: #f4f7fb;
}

.eligibility-box {
  background: #fff;
  padding: 20px;
  border-left: 5px solid #007bff;
  margin-bottom: 20px;
  border-radius: 8px;
}

.eligibility-box h4 {
  color: #007bff;
  margin-bottom: 10px;
}

.highlight-box {
  background: #e9f7ef;
  padding: 15px;
  border-left: 5px solid #28a745;
  border-radius: 8px;
  margin-bottom: 20px;
}

.doc-list {
  padding-left: 20px;
}

.doc-list li {
  margin-bottom: 8px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .dept-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 24px;
  }

  .sub-title {
    font-size: 18px;
  }

  table th, table td {
    font-size: 14px;
    padding: 8px;
  }
}

@media (max-width: 576px) {
  .dept-grid {
    grid-template-columns: 1fr;
  }
}