* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Prompt", sans-serif;
  background: #f2f2f2;
  color: #333;
}

/* LOGO */
.logo img {
  width: 100%;
  max-width: 350px;
  display: block;
  margin: 10px auto;
}

/* NAVIGATION */
.nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  background: #003366;
}

.nav ul li a {
  color: white;
  text-decoration: none;
  padding: 10px 15px;
  display: block;
}

.nav ul li a:hover {
  background: #0055a5;
}

/* MARQUEE FONT-RUN */
.font-run .marquee {
  background: #ffcc00;
  overflow: hidden;
  white-space: nowrap;
}

.font-run .marquee p {
  display: inline-block;
  padding: 10px;
  animation: marquee 15s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(100%);}
  100% { transform: translateX(-100%);}
}

/* ACADEMIC BEST PRACTICE SECTION */
.academic {
  padding: 20px;
}

.academic h1 {
  text-align: center;
  margin-bottom: 20px;
  color: #003366;
}

/* GRID CARD MENU */
.box-left {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 20px;
}

.box-left-item {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box-left-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

.box-left-item img {
  width: 100%;
  height: auto;
  display: block;
}

.box-left-item h3 {
  font-size: 1.1rem;
  color: #003366;
  padding: 10px;
}

.box-left-item p {
  font-size: 0.95rem;
  padding: 0 10px 10px 10px;
  line-height: 1.4;
}

.box-left-item a {
  display: block;
  margin: 0 10px 10px 10px;
  padding: 10px 0;
  text-align: center;
  background: #4CAF50;
  color: white;
  border-radius: 5px;
  text-decoration: none;
}

.box-left-item a:hover {
  background: #45a049;
}

/* FOOTER */
footer {
  background: #003366;
  color: white;
  padding: 20px 10px;
}

.footer-top-con {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 20px;
  padding: 10px;
}

.footer-top-item iframe,
.footer-top-item .fb-page {
  max-width: 100%;
}

/* RESPONSIVE NAVIGATION MOBILE */
@media(max-width: 600px) {
  .nav ul {
    flex-direction: column;
  }
}