.naac-section {
  background: #f8f9ff;
  padding: 60px 0;
}

.naac-image-box {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 360px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.naac-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.naac-image-box:hover img {
  transform: scale(1.05);
}

.naac-text {
  color: #555;
  line-height: 1.8;
  font-size: 15px;
}
.ee-check-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.ee-check-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #444;
}

.ee-check-list li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 18px;
  color: var(--primary);
}

.table {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.table th {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
}

.table td {
  vertical-align: middle;
}

.table tbody tr:hover {
  background: #f1f4ff;
  transition: 0.3s;
}

.join-box {
  background: #ffffff;
  padding: 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  transition: 0.4s;
}

.join-box:hover {
  transform: translateY(-5px);
}

.btnss {
  background: var(--primary);
  color: #fff;
  border-radius: 50px;
  padding: 10px;
  font-weight: 600;
  transition: 0.3s;
}

.btnss:hover {
  background: #2f3292;
  color: #fff;
}

.top-university {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  margin-top: 25px;
}

.uni-item {
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 12px;
  border-radius: 12px;
  text-decoration: none;
  transition: 0.3s;
}

.uni-item:hover {
  background: #f1f4ff;
  transform: translateX(5px);
}

.uni-item img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  padding: 5px;
}

.uni-item h6 {
  margin: 0;
  font-weight: 600;
  color: #222;
}

.uni-item small {
  color: #777;
}

.badge {
  background: var(--primary);
  padding: 6px 12px;
  font-weight: 500;
  border-radius: 50px;
}

@media(max-width: 992px) {
  .naac-image-box {
    height: 250px;
  }
}

@media(max-width: 768px) {
  .naac-section {
    padding: 40px 0;
  }

  .naac-image-box {
    height: 200px;
  }

  .table {
    font-size: 14px;
  }

  .uni-item {
    flex-direction: column;
    text-align: center;
  }

  .uni-item img {
    width: 60px;
    height: 60px;
  }
}