.school-footer {
  position: relative;
  background: url("../images/about2.jpg") center/cover no-repeat;
  color: #fff;
  padding: 80px 0 0;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.452);
}

.footer-container {
  position: relative;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 50px;
  padding: 0 20px 50px;
}

/* LOGO */
.footer-logo {
  max-width: 60px;
  margin-bottom: 20px;
}

/* HEADINGS */
.footer-col h3,
.footer-col h4 {
  color: #ffcc00;
  margin-bottom: 15px;
  font-weight: 700;
}

/* TEXT */
.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  color: #ddd;
}

/* LISTS */
.footer-list {
  list-style: none;
  padding: 0;
}

.footer-list li {
  margin-bottom: 10px;
  font-size: 14px;
  cursor: pointer;
  color: #eee;
  transition: 0.3s;
}

.footer-list li:hover {
  color: #ffcc00;
  transform: translateX(5px);
}

/* BOTTOM BAR */
.footer-bottom {
  background: linear-gradient(90deg, #ff7a18, #ff4b2b);
  text-align: center;
  padding: 15px;
  font-size: 13px;
  color: #f1f1f1;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-list li {
    justify-content: center;
  }
}
