body {
  font-family: "Noto Sans", sans-serif;
}

.hero-section {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-btn {
  padding: 0.3rem;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.primary-btn {
  background-color: #007bff;
  color: white;
}

.secondary-btn {
  background-color: white;
  color: #007bff;
  border: 2px solid #007bff;
}

.hero-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

@media (max-width: 768px) {
  .hero-overlay {
    justify-content: center;
    padding: 1.5rem;
    left: 0;
    right: 0;
    text-align: center;
  }

  .hero-btn {
    width: auto;
    font-size: 0.7rem;
  }

  .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-btn {
    font-size: 0.5rem;
    /* padding: 0.6rem 1rem; */
    width: auto;
    height: auto;
    flex-direction: column;
  }

  .hero-overlay {
    flex-direction: column;
    align-items: center;
  }
}

.celebration-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  min-height: 100vh;
  box-sizing: border-box;
  background-color: #f9f9f9;
}

.celebration-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  max-width: 900px;
  background-color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
}

.celebration-img {
  flex: 1;
  min-height: 300px;
  background-image: url("wee-ee-cheong-ceo-portrait.jpg"); /* Replace with your image URL */
  background-size: cover;
  background-position: center;
}

.celebration-content {
  flex: 2;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.celebration-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #333;
}

.signature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: bold;
  font-family: "Courier New", Courier, monospace;
  font-style: italic;
  color: #042240;
}

.signature-line {
  width: 4px;
  height: 40px;
  /* background-color: red; */
  background: #022b54;
}

@media (max-width: 768px) {
  .celebration-card {
    flex-direction: column;
  }

  .celebration-img {
    height: 200px;
  }

  .celebration-content {
    padding: 1.5rem;
  }

  .celebration-content p {
    font-size: 1rem;
  }

  .signature {
    flex-direction: row;
    align-items: center;
  }
}

.drives-us-section {
  background-color: #004b8d; /* Replace with your brand blue */
  color: white;
  padding: 4rem 1.5rem;
  text-align: center;
}

.drives-us-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.drives-us-section p {
  max-width: 800px;
  margin: 1rem auto;
  font-size: 1.1rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .drives-us-section h2 {
    font-size: 2rem;
  }

  .drives-us-section p {
    font-size: 1rem;
  }
}

/* Sidebar wrapper - hidden by default */
.side-menu {
  display: none;
}

@media (min-width: 1024px) {
  .side-menu {
    position: fixed;
    top: 170px;
    right: 0;
    width: 145px;
    background-color: #ffffff;
    border-left: 1px solid #e0e0e0;
    padding: 1.5rem;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
  }

  .side-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    /* padding: 0.5rem 0; */
    transition: color 0.3s ease;
  }

  .side-menu a:hover {
    color: #0073e6; /* Adjust to your brand color */
  }

  .side-menu hr {
    margin: 0.5rem 0;
    border: 0;
    border-top: 1px solid #ddd;
  }
}

.impact-section {
  padding: 4rem 1rem;
  background-color: #fff;
  text-align: center;
}

.impact-section h2 {
  font-size: 1.8rem;
  font-weight: 400;
  max-width: 900px;
  margin: 0 auto 3rem;
  color: #003366;
}

.impact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  justify-items: center;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}

.impact-card {
  width: 100%;
  max-width: 400px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: left;
  transition: transform 0.3s ease;
}

.impact-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.impact-card:hover img {
  transform: scale(1.05);
}

.impact-card-content {
  padding: 1.5rem;
  flex-grow: 1;
}

.impact-card-content h3 {
  font-size: 1.2rem;
  color: #004b8d;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.impact-card-content h3:hover {
  text-decoration: underline;
}

.impact-card-content p {
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
}

@media (max-width: 768px) {
  .impact-section h2 {
    font-size: 1.2rem;
  }
}

.quick-links-section {
  background-color: gainsboro;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.quick-links-container {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.quick-link {
  text-align: center;
  max-width: 100px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.quick-link:hover {
  transform: scale(1.05);
}

.quick-link img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  margin-bottom: 0.5rem;
}

.quick-link span {
  display: block;
  font-size: 0.9rem;
  color: #333;
  font-weight: 500;
}

@media (max-width: 600px) {
  .quick-links-section {
    height: auto;
    padding: 1.5rem 1rem;
  }

  .quick-link img {
    width: 50px;
    height: 50px;
  }

  .quick-link span {
    font-size: 0.8rem;
  }
}

.cta-section {
  background: linear-gradient(135deg, #004080, #0072c6);
  color: #fff;
  padding: 4rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  max-width: 700px;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  line-height: 1.6;
  color: #e0f0ff;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-button {
  background-color: #ff3b3f;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
  min-width: 120px;
  text-align: center;
}

.cta-button:hover {
  background-color: #e23338;
}

@media (max-width: 768px) {
  .cta-section h2 {
    font-size: 2rem;
  }

  .cta-section p {
    font-size: 1rem;
  }

  .cta-button {
    font-size: 0.95rem;
    padding: 0.65rem 1.5rem;
  }
}

@media (max-width: 500px) {
  .cta-section h2 {
    font-size: 1.5rem;
  }

  .cta-section p {
    font-size: 0.9rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .cta-button {
    width: 100%;
    max-width: 250px;
  }
}

/* CSS */
.footer-section {
  background-color: #0053a4;
  color: white;
  padding: 3rem 1.5rem 2rem;
  font-family: "Segoe UI", sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-column h4 {
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  color: #dceeff;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 2rem 0;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-logo img {
  height: 40px;
  margin-bottom: 0.5rem;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #dceeff;
  margin: 0;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.footer-socials a:hover img {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    align-items: center;
    text-align: center;
  }
}
