* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", Arial, sans-serif;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

header {
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(12, 60, 40, 0.15);
  position: relative;
  z-index: 10;
}
.brand-bar {
  background: linear-gradient(120deg, #0d5f97, #49b6e6);
  padding: 24px 6vw 30px;
  color: #fff;
  position: relative;
}
.brand-bar::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -35px;
  width: 220px;
  height: 120px;
  background: radial-gradient(
    circle at 0% 0%,
    rgba(255, 255, 255, 0.45),
    transparent 70%
  );
  transform: skewX(-20deg);
  opacity: 0.5;
}
.logo-group {
  display: flex;
  align-items: center;
  gap: 22px;
}
.logo-img {
  width: 150px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.35));
}
.brand-copy h1 {
  margin: 0;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
}
.brand-copy small {
  display: block;
  margin-top: 4px;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}
.nav-bar {
  background: linear-gradient(120deg, #2c934b, #30c064);
  padding: 12px 6vw;
  position: relative;
  z-index: 50;
  flex-wrap: wrap;
}
.nav-bar nav {
  overflow: visible;
}
.nav-bar ul {
  list-style: none;
  display: flex;
  gap: 18px 26px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  align-items: center;
  white-space: nowrap;
  overflow: visible;
}
.nav-bar li {
  position: relative;
}
.nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  padding: 6px 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 1);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}
.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 260px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
  padding: 16px 0;
  display: none;
  z-index: 60;
  pointer-events: auto;
}
.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  color: var(--forest);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}
.dropdown-menu a:hover {
  background: var(--mint);
  color: var(--leaf);
}
.nav-bar li:hover > .dropdown-menu,
.nav-bar li:focus-within > .dropdown-menu {
  display: block;
}

/* ================= MAP ================= */
.map-box iframe {
  width: 100%;
  height: 420px;
  border: none;
}

/* ================= CONTACT INFO ================= */
.contact-info {
  display: flex;
  justify-content: center;
  gap: 70px;
  padding: 55px 0;
}

.info-box {
  width: 320px;
}

.info-box h3 {
  margin-bottom: 15px;
  color: #1b2c5a;
}

.link {
  color: #ffcc00;
  cursor: pointer;
}

/* ================= ENQUIRY ================= */
.enquiry {
  background: #f3f3f3;
  padding: 60px 0;
}

.enquiry h2 {
  text-align: center;
  margin-bottom: 30px;
}

.enquiry form {
  width: 600px;
  margin: auto;
}

.enquiry input,
.enquiry textarea {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
}

.enquiry button {
  margin-top: 20px;
  padding: 10px 30px;
  background: #1b2c5a;
  color: white;
  border: none;
  cursor: pointer;
}

.enquiry button:hover {
  background: #ffcc00;
  color: #000;
}

/* ================= FOOTER ================= */
.footer {
  background: #ffffff;
  padding: 60px 80px 30px;
  border-top: 1px solid #e5e5e5;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-left {
  width: 30%;
}

.footer-logo {
  width: 180px;
  margin-bottom: 15px;
}

.footer-title {
  font-weight: 500;
  margin-bottom: 10px;
}

.footer-left p {
  font-size: 14px;
  color: #666;
  margin-bottom: 6px;
}

.footer-links {
  display: flex;
  gap: 80px;
}

.footer-links h4 {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 15px;
}

.footer-links a {
  display: block;
  font-size: 13px;
  color: #777;
  margin-bottom: 10px;
  cursor: pointer;
}

.footer-links a:hover {
  color: #f6c400;
}

.footer-right {
  text-align: right;
}

.alumni-btn {
  background: #46d989;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  color: white;
  box-shadow: 0 12px 25px rgba(70, 217, 137, 0.35);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.social-icons i {
  color: #999;
  margin-top: 15px;
  margin-left: 9px;
  margin-right: 4px;
  font-size: 16px;
  cursor: pointer;
}

.page-title h2 {
  font-size: 2.2rem;
  text-align: center;
}

.social-icons i:hover {
  color: #333;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: #aaa;
}
