/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to bottom right, #eef6ff, #ffffff);
  color: #2c3e50;
  padding: 30px;
}

/* .new-header */
.new-header {
  background: linear-gradient(135deg, #DC143C, #ff4d6d);
  color: #fff;
  text-align: center;
  padding: 60px 30px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.new-header h1 {
  font-size: 3rem;
  color: white;
  font-weight: bold;
  letter-spacing: 1px;
}
.new-header p {
  font-size: 1.2rem;
  opacity: 0.95;
  color: #ffd0d0;
  margin-top: 10px;
}

/* Sections */
section {
  background: #fff;
  padding: 40px;
  margin: 40px 0;
  /*box-shadow: 0 10px 22px rgba(0,0,0,0.06);*/
  border-bottom: .1px solid #ffcccc;
  transition: transform 0.3s ease;
}
section:hover {
  transform: translateY(-4px);
}
section h2 {
  font-size: 2.2rem;
  color: #DC143C;
  margin-bottom: 25px;
  position: relative;
}
section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #ff4d6d;
  border-radius: 4px;
  margin-top: 8px;
}

/* Admission Process Diagram */
.diagram ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  list-style: none;
}
.diagram li {
  background: #ffe5eb;
  border-left: 6px solid #ff4d6d;
  padding: 24px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
  width: 240px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.diagram li:hover {
  background: #ffd4df;
  transform: scale(1.05);
}

/* Seat Availability Table */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}
thead {
  background: #DC143C;
  color: #fff;
}
th, td {
  padding: 16px;
  text-align: center;
  border: 1px solid #fcd1d9;
  font-size: 1rem;
}
tbody tr:nth-child(even) {
  background-color: #fff4f7;
}
tbody tr:hover {
  background-color: #ffeef2;
}

/* Other Information */
#other-info ul {
  list-style-type: none;
  padding-left: 0;
  margin-top: 20px;
}
#other-info ul li {
  background: #fff8e2;
  padding: 18px;
  margin-bottom: 15px;
  border-radius: 12px;
  font-weight: 500;
  box-shadow: 0 6px 12px rgba(0,0,0,0.04);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background 0.3s ease;
}
#other-info ul li:hover {
  background-color: #ffe9b0;
}
#other-info ul li::before {
  content: "🌟";
  font-size: 1.4rem;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
  .new-header h1 {
    font-size: 2.4rem;
  }
  section {
    padding: 25px;
  }
  .diagram ul {
    flex-direction: column;
    align-items: center;
  }
  th, td {
    padding: 12px;
    font-size: 0.95rem;
  }
}