* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.apply-btn {
  background-color: #007bff;
  border-radius: 4px;
  color: white;
  padding: 0.75rem 2rem;
}
.apply-btn:hover {
  background-color: #0056b3;
}

.blue {
  color: #00549f;
}

.circle-icon {
  background-color: #FFD700;
  border-radius: 50%;
  color: #001489;
  display: inline-block;
  font-weight: bold;
  height: 36px;
  line-height: 36px;
  text-align: center;
  width: 36px;
}

.careers-content {
  max-width: 800px;
  padding: 1rem;
  position: relative;
  z-index: 2;
}
.careers-content h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.careers-hero {
  align-items: center;
  background-attachment: fixed;
  background-image: url('../assets/team-bg.jpg');
  background-position: center;
  background-size: cover;
  color: white;
  display: flex;
  height: 100vh;
  justify-content: center;
  position: relative;
  text-align: center;
}
.careers-hero::before {
  background-color: rgba(0, 0, 0, 0.5);
  content: '';
  inset: 0;
  position: absolute;
  z-index: 1;
}

.careers-hero1 {
  align-items: center;
  background-attachment: fixed;
  background-image: url('../assets/teaching.jpg');
  background-position: center;
  background-size: cover;
  color: white;
  display: flex;
  height: 100vh;
  justify-content: center;
  position: relative;
  text-align: center;
}
.careers-hero1::before {
  background-color: rgba(0, 0, 0, 0.5);
  content: '';
  inset: 0;
  position: absolute;
  z-index: 1;
}

.circle-icon {
  background-color: #FFD700;
  border-radius: 50%;
  color: #001489;
  display: inline-block;
  font-weight: bold;
  height: 36px;
  line-height: 36px;
  text-align: center;
  width: 36px;
}

.discover-card {
  text-align: center;
  width: 260px;
}
.discover-card img {
  border-radius: 8px;
  margin-bottom: 1rem;
}

.discover-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.discover-more {
  padding: 3rem 1rem;
  text-align: center;
}

.dropdown {
  position: relative;
}
.dropdown-menu {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  display: none;
  left: 0;
  min-width: 260px;
  padding: 0.5rem 0;
  position: absolute;
  top: 100%;
  z-index: 1000;
}
.dropdown-menu a {
  color: #002366;
  display: block;
  padding: 0.75rem 1.25rem;
  transition: background 0.2s ease;
}
.dropdown-menu li a::before {
  color: #ffcc00;
  content: '➤';
  margin-right: 0.6rem;
}
.dropdown-menu li a:hover {
  background-color: #f0f4f8;
}
.dropdown:hover .dropdown-menu {
  display: block;
}

.footer-bottom {
  border-top: 1px solid #ccc;
  color: #666;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.9rem;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1rem;
}
.footer-column h4 {
  margin-bottom: 1rem;
}
.footer-column ul {
  list-style: none;
  padding: 0;
}
.footer-column ul li a {
  color: #333;
  font-size: 0.95rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.footer-socials a {
  color: #000;
  font-weight: bold;
  margin-left: 1rem;
}
.site-footer {
  background-color: #fff;
  border-top: 1px solid #ddd;
  padding: 3rem 1rem 2rem;
}

.green {
  color: #59b44d;
}

.hamburger {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  display: none;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
}
@media (max-width: 992px) {
  .hamburger {
    display: block;
  }
}

.job-content {
  display: flex;
  gap: 2rem;
  justify-content: center;
  width: 100%;
}
@media (max-width: 768px) {
  .job-content {
    flex-direction: column;
  }
}

.job-image {
  width: 50%;
}
.job-image img {
  border-radius: 8px;
  height: auto;
  max-height: 900px;
  max-width: 1200px;
  object-fit: cover;
  width: 100%;
}

.job-tab-btn {
  background-color: transparent;
  border: none;
  border-radius: 6px;
  color: white;
  cursor: pointer;
  font-weight: bold;
  padding: 0.9rem 1.7rem;
  transition: background-color 0.3s ease;
}
.job-tab-btn.active {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transform: scale(1.03);
}
.tab-gray {
  background-color: #333;
}
.tab-gray:hover {
  background-color: #111;
}
.tab-pink {
  background-color: #ec0f75;
}
.tab-pink:hover {
  background-color: #c50e64;
}
.tab-yellow {
  background-color: #f2c400;
}
.tab-yellow:hover {
  background-color: #d6ae00;
}

.job-tab-content {
  border-radius: 8px;
  display: none;
  flex-direction: row;
  gap: 2rem;
  opacity: 0;
  padding: 2rem;
  transition: opacity 0.5s ease;
}
.job-tab-content.active {
  display: flex;
}
.job-tab-content.active.fade-in {
  opacity: 1;
}

.job-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.job-tabs-section {
  font-family: 'Segoe UI', sans-serif;
  margin: 4rem auto;
  max-width: 1200px;
  padding: 0 1rem;
}

.job-text {
  width: 50%;
}
.job-text a {
  background-color: #0077cc;
  border-radius: 4px;
  color: white;
  display: inline-block;
  padding: 0.7rem 1.5rem;
  text-decoration: none;
}
.job-text h2 {
  color: #002366;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.job-text p {
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.logo-banner.horizontal-logo {
  align-items: center;
  background: #fff;
  display: flex;
  justify-content: center;
  padding: 2rem 1rem;
}
.logo-png {
  height: 80px;
  width: 80px;
}
.logo-wrap {
  align-items: center;
  display: flex;
  gap: 1.5rem;
}

.mission-container {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0 auto;
  max-width: 1240px;
  position: relative;
}
.mission-image img {
  border-radius: 0;
  border-right: 5px solid #fdd100;
  object-fit: cover;
  width: 550px;
}
.mission-image {
  z-index: 1;
}
.mission-section {
  background-color: #eaf0ff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 5rem 1.5rem;
}
.mission-text-box {
  background-color: #fff;
  box-shadow: 0 0 0 #0000;
  border-left: 4px solid #001d8e;
  margin-right: -100px;
  padding: 2.5rem 2rem;
  width: 500px;
  z-index: 2;
}
.mission-text-box h2 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}
.mission-text-box h2 .bold {
  color: #001d8e;
  font-weight: 700;
}
.mission-text-box h2 .thin {
  color: #333;
  font-weight: 300;
}
.mission-text-box p {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.75rem;
  margin-bottom: 1rem;
}
.mission-text-box strong {
  color: #001d8e;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 1.5rem;
  list-style: none;
  transition: max-height 0.3s ease;
}
.nav-links a {
  color: white;
  text-decoration: none;
}

.navbar {
  align-items: center;
  background-color: #002366;
  color: white;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 999;
}
.navbar.scrolled {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.nav-links {
  align-items: flex-start;
  background-color: #002366;
  display: none;
  flex-direction: column;
  width: 100%;
}
.nav-links.active {
  display: flex;
}
@media (max-width: 768px) {
  .nav-links {
    align-items: flex-start;
    background-color: #002366;
    display: none;
    flex-direction: column;
    width: 100%;
  }
  .nav-links.active {
    display: flex;
  }
}
@media (max-width: 992px) {
  .nav-links {
    background-color: #002366;
    display: none;
    flex-direction: column;
    width: 100%;
  }
  .nav-links.active {
    display: flex;
  }
}

.nav-links li {
  text-align: center;
  padding: 0.5rem 0;
}
@media (max-width: 768px) {
  .nav-links li {
    text-align: center;
    padding: 0.5rem 0;
  }
}

.school-name .line1 {
  font-size: 1.4rem;
  font-weight: bold;
}
.school-name .line2 {
  font-size: 1.2rem;
}
.school-name .line3 {
  color: #ccc;
  font-size: 0.9rem;
  font-weight: 300;
}

.site-footer {
  background-color: #fff;
  border-top: 1px solid #ddd;
  padding: 3rem 1rem 2rem;
}

.tab-gray {
  background-color: #333;
}
.tab-gray:hover {
  background-color: #111;
}
.tab-pink {
  background-color: #ec0f75;
}
.tab-pink:hover {
  background-color: #c50e64;
}
.tab-yellow {
  background-color: #f2c400;
}
.tab-yellow:hover {
  background-color: #d6ae00;
}

.yellow {
  color: #f2b300;
}
.yellow-bg {
  background-color: #fff3c2;
}

.yellow-bg,
.pink-bg,
.gray-bg {
  /* grouping background colors */
}

.yellow-bg {
  background-color: #fff3c2;
}
.pink-bg {
  background-color: #fce0eb;
}
.gray-bg {
  background-color: #eaeaea;
}

body {
  background: #f8f9fa;
  color: #333;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
}

.placeholder-img {
  align-items: center;
  background: #ccc;
  border-radius: 8px;
  color: #555;
  display: flex;
  font-size: 1.2rem;
  height: 900px;
  justify-content: center;
  max-width: 600px;
  width: 100%;
}

.why-join-section {
  background-color: #ffffff;
  padding: 4rem 1rem;
  text-align: center;
}

.why-join-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.why-join-item {
  flex: 1 1 250px;
  max-width: 280px;
  margin: auto;
}

.why-join-item img {
  width: 100px;
  height: 100px;
  margin-bottom: 1rem;
  border-radius: 50%;
}

.why-join-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.why-join-item p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
}

.blue {
  color: #00549f;
}

.green {
  color: #59b44d;
}

.yellow {
  color: #f2b300;
}

@media (max-width: 768px) {
  .why-join-container {
    flex-direction: column;
    align-items: center;
  }
}

/* Discover More Section */
.discover-more {
  background: #fdd835;
  background-image: url('../assets/watermark.jpg'); /* Replace with your faint logo PNG */
  background-repeat: no-repeat;
  background-position: center;
  background-size: 70%;
  text-align: center;
  padding: 3rem 1rem;
}
.discover-more h2 {
  font-size: 2rem;
  color: #002366;
  margin-bottom: 2rem;
}
.discover-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.discover-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  color: #002366;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  width: 250px;
}
.discover-card:hover {
  transform: translateY(-5px);
}
.discover-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.discover-card p {
  font-weight: bold;
  font-size: 1rem;
  padding: 1rem 0;
}
.about-section {
  background: #eaeaf5;
  padding: 4rem 2rem;
}
.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
  gap: 2rem;
}
.about-text {
  flex: 1 1 55%;
}
.about-text h1 {
  font-size: 2.5rem;
  color: #002366;
  margin-bottom: 0.5rem;
}
.about-text h2 {
  font-size: 1.5rem;
  color: #002366;
  margin-bottom: 1rem;
}
.about-text p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.about-text .highlight {
  color: #002366;
  font-weight: bold;
}
.about-image {
  flex: 1 1 40%;
}
.about-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }
  .about-text, .about-image {
    flex: 1 1 100%;
  }
  .about-text h1 {
    font-size: 2rem;
  }
}
.about-section2 {
  background-color: #ffffff;
  padding: 4rem 1.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.about-section2 .ethos1 {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .about-section2 .ethos1 {
    flex-direction: row;
    align-items: center;
  }
}

/* Floating Banner */
.floating-banner {
  position: fixed;
  top: 50%;
  right: 0;
  background: #ffcc00;
  color: #002366;
  padding: 1rem;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-weight: bold;
  z-index: 100;
}
.floating-banner a {
  color: inherit;
  text-decoration: none;
}

