/* Section */
.info-section {
  padding: 40px 0;
  background: #f4f6f9;
}

/* Container */
.container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
}

/* Title */
.info-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 20px;
  color: #222;
}

/* Box */
.aicte-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  padding: 20px;
}

/* Remove extra heading inside box */
.aicte-box h2 {
  display: none;
}

/* List */
.aicte-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* List items */
.aicte-list li {
  margin-bottom: 8px;
}

/* Links */
.aicte-list a {
  display: block;
  padding: 12px 15px;
  background: #f1f3f6;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  font-size: 15px;
  transition: all 0.3s ease;
}

/* Hover effect */
.aicte-list a:hover {
  background: #007bff;
  color: #fff;
  transform: translateX(5px);
}