/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;600&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #ffffff;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
header {
    background-color: #002147;
    padding: 20px 0;
    color: #fff;
    width: 100%;
}

.logo h1 {
    margin-left: 40px;
    font-size: 2em;
    font-weight: 600;
}

.logo h1 a {
    color: #ffffff;
}

.menu {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.menu ul li a {
    color: #ffffff;
    font-weight: 500;
    font-size: 1em;
    transition: color 0.3s ease;
}

.menu ul li a:hover,
.menu ul li a.active {
    color: #84c5f4;
}

/* Banner */
.banner {
    background-color: #f0f4f8;
    padding: 60px 0;
    text-align: center;
}

.banner h2 {
    font-size: 2.8em;
    color: #002147;
    font-weight: 600;
}

/* News Content */
.announcement {
  max-width: 800px;
  margin: 40px auto;
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
}

.announcement h2 {
  color: #a80000;
  margin-bottom: 20px;
}

.announcement ul {
  margin: 10px 0 20px 20px;
}

.apply-link {
  display: inline-block;
  background-color: #a80000;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  margin-top: 10px;
}

.apply-link:hover {
  background-color: #880000;
}

.pdf-link {
  margin-top: 20px;
}

.pdf-link a {
  color: #a80000;
  text-decoration: none;
  font-weight: bold;
}

.pdf-link a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
    background: #ffffff;
    padding: 30px 0;
    text-align: center;
}

.footer-logos img {
	width: 120px;
    height: 120px;
    object-fit: contain;
    margin: 0 40px;
    vertical-align: middle}

.scale-up {
    transform: scale(1.5); /* Adjust if needed */
    transform-origin: center;
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    color: #0047AB;
    text-decoration: none;
    font-weight: 300;
}

.footer-links a:hover {
    text-decoration: underline;
}
