.admission-section {
  background: #f6f3ef;
  padding: 100px 0;
}

.admission-card {
  max-width: 900px;
  margin: auto;
  background: #fff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  animation: fadeUp 1s ease;
}

.admission-title {
  font-size: 36px;
  color: #0e3c4c;
  margin-bottom: 30px;
}

.admission-card p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 15px;
}

.admission-card h3 {
  margin-top: 30px;
  color: #0e3c4c;
}

/* lists */

.admission-list {
  margin-left: 20px;
  line-height: 1.8;
  color: #555;
}

.document-list {
  margin-left: 20px;
  line-height: 1.8;
  color: #555;
}

/* highlight box */

.note-box {
  background: #fff3ee;
  border-left: 4px solid #ff5a2c;
  padding: 20px;
  margin-top: 30px;
  border-radius: 10px;
}

/* animation */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.faculty-section {
  background: #f6f3ef;
  padding: 100px 0;
}

/* HEADER */

.faculty-header {
  text-align: center;
  margin-bottom: 60px;
}

.faculty-header h2 {
  font-size: 38px;
  color: #0e3c4c;
  margin-bottom: 10px;
}

.faculty-header p {
  color: #666;
}

/* GRID */

.faculty-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* CARD */

.faculty-card {
  background: #fff;
  padding: 35px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  transition: 0.4s;
  animation: fadeUp 1s ease;
}

.faculty-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.faculty-card h3 {
  color: #0e3c4c;
  margin-bottom: 10px;
}

.faculty-card p {
  color: #666;
  margin-bottom: 20px;
}

/* LINKS */

.faculty-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faculty-links a {
  display: block;
  padding: 10px;
  border-radius: 8px;
  background: #fff3ee;
  color: #ff5a2c;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.faculty-links a:hover {
  background: #ff5a2c;
  color: #fff;
}

/* ANIMATION */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* rules and regulation  */
.rules-section {
  background: #f6f3ef;
  padding: 100px 0;
}

.rules-card {
  max-width: 900px;
  margin: auto;
  background: #fff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  animation: fadeUp 1s ease;
}

.rules-title {
  font-size: 36px;
  color: #0e3c4c;
  margin-bottom: 30px;
}

.rules-card h3 {
  margin-top: 30px;
  color: #0e3c4c;
}

.rules-list {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.rules-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #666;
  line-height: 1.7;
}

/* bullet icon */

.rules-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ff5a2c;
  font-weight: bold;
}

/* animation */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* infrastructure */
.infra-section {
  background: #f6f3ef;
  padding: 100px 0;
}

.infra-header {
  text-align: center;
  margin-bottom: 60px;
}

.infra-header h2 {
  font-size: 38px;
  color: #0e3c4c;
  margin-bottom: 10px;
}

.infra-header p {
  color: #666;
}

/* GRID */

.infra-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */

.infra-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  transition: 0.4s;
  text-align: center;
  animation: fadeUp 1s ease;
}

.infra-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.infra-card h3 {
  padding: 18px;
  color: #0e3c4c;
  font-size: 18px;
}

.infra-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/* animation */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* correspondent */
.message-section {
  background: #f6f3ef;
  padding: 100px 0;
}

.message-card {
  max-width: 850px;
  margin: auto;
  background: #fff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  animation: fadeUp 1s ease;
}

.message-title {
  font-size: 36px;
  color: #0e3c4c;
  margin-bottom: 30px;
}

.message-card p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 15px;
}

.author {
  margin-top: 30px;
  font-size: 16px;
  color: #0e3c4c;
}

/* animation */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* principle msg */

.principal-section {
  background: #f6f3ef;
  padding: 100px 0;
}

.principal-card {
  max-width: 900px;
  margin: auto;
  background: #fff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  animation: fadeUp 1s ease;
}

.principal-title {
  font-size: 36px;
  color: #0e3c4c;
  margin-bottom: 30px;
}

.principal-card p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 15px;
}

blockquote {
  border-left: 4px solid #ff5a2c;
  padding-left: 15px;
  font-weight: 600;
  color: #0e3c4c;
  margin: 20px 0;
}

.highlight {
  margin-top: 25px;
  color: #0e3c4c;
  font-weight: 700;
}

.author {
  margin-top: 30px;
  font-size: 16px;
  color: #0e3c4c;
}

/* animation */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* acolades */
.accolades-section {
  background: #f6f3ef;
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h1 {
  font-size: 38px;
  color: #0e3c4c;
  margin-bottom: 10px;
}

.section-header p {
  color: #666;
}

/* GRID */

.accolades-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* CARD */

.accolade-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  transition: 0.4s;
  animation: fadeUp 1s ease;
}

.accolade-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.accolade-card p {
  padding: 20px;
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

/* HOVER */

.accolade-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

/* ANIMATION */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */

/* academic */
.academics-section {
  background: #f6f3ef;
  padding: 100px 0;
}

.page-title {
  background: #fff;
  padding: 15px 25px;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-title h1 {
  color: #0e3c4c;
  font-size: 30px;
}

/* TABLE */

.curriculum-table {
  overflow-x: auto;
  margin-bottom: 60px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

th {
  background: #ff5a2c;
  color: #fff;
  padding: 15px;
  text-align: left;
}

td {
  padding: 15px;
  border-bottom: 1px solid #eee;
  color: #555;
}

tr:hover {
  background: #f9f9f9;
}

/* GROUP SECTION */

.group-section {
  margin-top: 40px;
}

.group-section h2 {
  margin-bottom: 30px;
  color: #0e3c4c;
}

.group-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.group-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  transition: 0.4s;
}

.group-card:hover {
  transform: translateY(-10px);
}

.group-card h3 {
  color: #ff5a2c;
  margin-bottom: 10px;
}

/* TEXT */

.academic-text {
  margin-top: 50px;
  color: #555;
  line-height: 1.8;
}

/* EVALUATION */

.evaluation-section {
  margin-top: 60px;
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.evaluation-section h2 {
  color: #0e3c4c;
  margin-bottom: 15px;
}

blockquote {
  border-left: 4px solid #ff5a2c;
  padding-left: 15px;
  margin: 20px 0;
  font-weight: 600;
  color: #333;
}

/* responsive */

@media (max-width: 992px) {
  .faculty-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .infra-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .accolades-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .group-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* responsive */

@media (max-width: 768px) {
  .admission-card {
    padding: 30px;
  }

  .admission-title {
    font-size: 28px;
  }
  .faculty-wrapper {
    grid-template-columns: 1fr;
  }
  .rules-card {
    padding: 30px;
  }

  .rules-title {
    font-size: 28px;
  }
  .message-card {
    padding: 30px;
  }

  .message-title {
    font-size: 28px;
  }
  .principal-card {
    padding: 30px;
  }

  .principal-title {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .infra-grid {
    grid-template-columns: 1fr;
  }
  .accolades-grid {
    grid-template-columns: 1fr;
  }
  .group-grid {
    grid-template-columns: 1fr;
  }
}
