* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #000;
}

.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  background-color: #ffffff;
  border-bottom: 1px solid #ccc;
}

.logo img {
  height: 80px;
}

.navbar a {
  text-decoration: none;
  color: #333;
  margin: 0 15px;
  font-weight: 500;
  font-size: 16px;
}

.navbar a:hover {
  color: #0066cc;
  border-bottom: 2px solid #0066cc;
}

.hero-banner img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 20px;
}

.content {
  text-align: center;
  padding: 30px;
}

.content h1 {
  font-size: 28px;
  font-weight: bold;
}

.recognition {
  padding: 50px 30px;
  background: #f8f9fa;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

.recognition .box {
  background-color: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
  border-left: 5px solid #b71c1c;
}

.recognition .box a {
  color: #0066cc;
  font-weight: 500;
  text-decoration: none;
}

.recognition .box a:hover {
  text-decoration: underline;
}

.recognition .highlight {
  color: #444;
  font-weight: 600;
}

.recognition .subheading {
  font-weight: bold;
  color: #555;
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 16px;
}

.recognition .level-title {
  color: #b71c1c;
  font-weight: bold;
  font-size: 17px;
  margin-top: 15px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.board-list {
  padding-left: 20px;
  margin-bottom: 15px;
}

.board-list li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.recognition .and-others {
  font-weight: 500;
  margin-top: 10px;
}

.recognition .description p {
  text-align: justify;
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 20px;
}
.mission-section {
  margin: 60px auto;
  max-width: 90%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.mission-background {
  background: url("assets/ourmission.jpeg") center center/cover no-repeat;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-overlay {
  background-color: rgba(0, 0, 0, 0.5); /* Dark transparent overlay */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-content {
  text-align: center;
  color: white;
  font-size: 18px;
  line-height: 2.2;
  font-weight: 500;
}

.quotes-section {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 60px 20px;
  background-color: #ffffff;
}

.quote-card {
  background-color: #f5f7fc;
  border-radius: 8px;
  overflow: hidden;
  max-width: 350px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.quote-card img {
  width: 100%;
  height: auto;
  display: block;
}

.quote-content {
  padding: 15px 20px;
}

.quote-title {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.quote-text {
  font-size: 16px;
  font-weight: 500;
  color: #0a3d91;
  line-height: 1.6;
}
.footer {
  background-color: #1e262b;
  color: #ccc;
  padding: 40px 20px;
  position: relative;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1 1 250px;
  min-width: 200px;
}

.footer-logo {
  width: 120px;
}

.footer-column h4 {
  font-size: 15px;
  color: #999;
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.footer-column p {
  color: #ddd;
  font-size: 14px;
  line-height: 1.6;
}

/* Scroll-to-top button */
.back-to-top {
  position: absolute;
  bottom: 20px;
  right: 20px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
  font-size: 20px;
  width: 34px;
  height: 34px;
  text-align: center;
  line-height: 32px;
  border-radius: 2px;
}

