/* ===== CLEAN ABOUT US HERO CSS ===== */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100vw;
  background: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
}@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@300;400;600;700&display=swap');

:root {
  --dark: #222;
  --gray: #808080;
  --purple: #7D3E92;
  --yellow: #F1CE3B;
}

/* ----- Core Styles - Desktop unchanged ----- */
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100vw;
  background: #fff;
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
}

/* ================= HEADER/NAV ================= */
/* ========= DESKTOP NAVBAR ========= */
header {
  background: #fff;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px 0 0;  /* No vertical padding, only space on ends */
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  box-sizing: border-box;
  z-index: 20;
  min-height: 160px; /* Forces header to be as tall as logo, no extra space */
}

.logo {
  margin-left: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo img {
  height: 160px;   /* Your specified "big" logo */
  width: auto;
  display: block;
  margin-left: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
}

.nav-links li {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-links a {
  color: var(--dark);
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  line-height: 160px; /* Vertically center links to logo in nav */
  display: inline-block;
  padding: 0; /* No vertical padding—tight to logo */
  transition: color 0.15s;
  background: none;
}

/* Active/hover underline effect */
.nav-links a.active,
.nav-links a:hover {
  color: var(--purple);
}
.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  display: block;
  width: 70%;
  height: 2px;
  margin: 0 auto;
  background: var(--purple);
  border-radius: 2px;
  margin-top: 2px;
}

/* Hamburger (hidden by default, shown on mobile/tablet) */
.nav-toggle {
  display: none;
  font-size: 2.1rem;
  cursor: pointer;
  margin-left: auto;
  margin-right: 28px;
  color: var(--dark);
  background: none;
  border: none;
}

/* ================= TABLET BREAKPOINT =============== */
@media (max-width: 900px) {
  header {
    min-height: 68px;           /* Shrink nav bar for tablet */
    padding: 0 5vw 0 0;
    position: fixed;
    z-index: 999;
  }
  .logo img {
    height: 60px;              /* Shrink logo for tablet */
  }
  .nav-links {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 100%;
    right: 0;
    width: 74vw;
    max-width: 320px;
    border-radius: 0 0 14px 14px;
    box-shadow: 0 8px 18px rgba(60,40,80,0.10);
    padding: 24px 0 10px 0;
    z-index: 1001;
    font-size: 1rem;
    gap: 18px;
  }
  .nav-links.show {
    display: flex;
  }
  .nav-links a {
    font-size: 17px;
    line-height: 1.4;
    padding: 8px 0;
    display: block;
  }
  .nav-toggle {
    display: block;
    position: absolute;
    top: 12px;
    right: 14px;
    z-index: 1002;
    font-size: 2.1rem;
  }
}

/* ================ MOBILE BREAKPOINT ================ */
@media (max-width: 600px) {
  header {
    min-height: 42px; 
    padding: 0 2.5vw 0 0 !important;
  }
  .logo img {
    height: 32px;
  }
  .nav-links {
    width: 94vw;
    right: 0;
    max-width: 98vw;
    border-radius: 0 0 8px 8px;
    font-size: 0.98rem;
    padding-top: 12px;
    gap: 11px;
  }
  .nav-links a {
    font-size: 16px;
    line-height: 1.2;
    padding: 7px 0;
  }
  .nav-toggle {
    top: 7px;
    right: 9px;
    font-size: 1.7rem;
  }
}

/* OPTIONAL: Slight tweak to ensure nav links fit perfectly alongside logo at all widths */
@media (min-width: 901px) {
  .nav-links a {
    line-height: 160px;
  }
}
@media (max-width: 900px) and (min-width: 601px) {
  .nav-links a {
    line-height: 60px;
  }
}


/* HERO SECTION */
.about-us-hero {
  position: relative;
  min-height: 670px;
  width: 100vw;
  margin-top: 170px; /* Adjust to match header/banner */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;

  /* Background image + overlay */
 background: url('images/plant-hands2.jpg') center center/cover no-repeat;

/* Decorative: VISION (Montserrat Black, outlined, behind) */
.vision-watermark {
  position: absolute;
  top: 0;
  left: 2vw;
  width: 96vw;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 9vw;
  color: transparent;
  letter-spacing: 0.03em;
  /* OUTLINE: very thick! */
  -webkit-text-stroke: 2.2px #fff;
  text-stroke: 2.2px #fff;
  opacity: 0.82;
  z-index: 1;
  user-select: none;
  pointer-events: none;
  line-height: 1.08;
  box-sizing: border-box;
}

.leaf-decoration {
  position: absolute;
  top: 0vw;      /* distance from the top of the containing element */
  right: 1vw;    /* distance from the right */
  height: 200px;
  opacity: 0.95;
  z-index: 2;
  pointer-events: none;
}
.about-vision-bg {
  position: relative;
  width: 100vw; 
  height: auto;
  min-height: 180px;
  z-index: 1;
  pointer-events: none;
}

/* Main content container: to right side */
.about-inner {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  min-height: 460px;
  max-width: 1400px;
  margin: 0 auto;
  z-index: 4;
}

/* About text block (white, rounded, shadow) */
.about-content {
  background: rgba(255,255,255,0.97);
  border-radius: 16px;
  box-shadow: 0 5px 30px 0 rgba(60,80,40,0.07);
  padding: 58px 54px 48px 54px;
  max-width: 700px;
  min-width: 300px;
  margin-top: 80px;
  margin-bottom: 90px;
  margin-right: 80px;
  z-index: 6;
  position: relative;
}

/* Heading, big bold outlined "ABOUT US" with bar and initials */
.section-heading {
  display: flex;
  align-items: end;
  margin-bottom: 42px;
}

.initials {
  font-family: 'Bebas Neue', Arial, sans-serif;
  font-size: 2.4rem;
  letter-spacing: 2px;
  opacity: 0.13;
  font-weight: 700;
  color: #555;
  margin-right: 16px;
  margin-bottom: 3px;
}
.yellow-bar {
  display: inline-block;
  width: 12px;
  height: 53px;
  background: #ffe02e;
  border-radius: 3px;
  margin-right: 15px;
  margin-bottom: 2px;
}
.about-label {
  display: flex;
  align-items: flex-end;
  margin-bottom: 2px;
}
.about-bold {
  font-size: 3.3rem;
  font-family: 'Bebas Neue', Arial, sans-serif;
  font-weight: 900;
  color: #232323;
  letter-spacing: 2.3px;
  line-height: 1;
}
.about-outline {
  font-size: 3.3rem;
  font-family: 'Bebas Neue', Arial, sans-serif;
  font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 2.5px #8e6ccd;
  text-stroke: 2.5px #8e6ccd;
  margin-left: 16px;
  line-height: 1;
}

/* About description, typographic tweaks */
.about-text {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.17rem;
  font-weight: 400;
  color: #232323;
  line-height: 1.63;
  background: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: 0;
  box-shadow: none;
}

.about-text h2,
.about-text h3 {
  margin-top: 0;
  margin-bottom: 13px;
  font-family: 'Bebas Neue', Arial, sans-serif;
  letter-spacing: 2px;
}
.about-text h2 {
  font-size: 2.02rem;
  color: #283c2a;
  font-weight: 900;
}
.about-text h3 {
  font-size: 1.22rem;
  color: #656371;
  font-weight: 700;
}

/* Vertical: KINGDOM KONSULT right side */
.vertical-side {
  position: absolute;
  top: 8%;
  right: -54px;
  font-size: 2.14rem;
  font-family: 'Bebas Neue', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 5px;
  color: #c1c9c4;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  opacity: 0.84;
  user-select: none;
  z-index: 7;
  display: block;
}

.about-content {
  position: relative; /* Needed for absolute positioning within the box */
  /* ...your background/padding/etc... */
}

/* Bottom right in the box! */
.go-green.go-green-box {
  position: absolute;
  right: 32px;
  bottom: 22px;
  display: flex;
  align-items: center;
  background: none;
  z-index: 2;
  border-radius: 5px;
  padding: 3px 8px;
  box-shadow: none;
}
.go-green.go-green-box img {
  height: 38px;   /* Adjust as needed */
  margin-right: 7px;
}
.go-green.go-green-box span {
  font-family: 'Bebas Neue', Arial, sans-serif;
  letter-spacing: 1.2px;
  color: #353b24;
  font-size: 1.09rem;
  font-weight: 600;
}

/* Responsive: shrink at mobile */
@media (max-width:600px) {
  .go-green.go-green-box {
    right: 8px;
    bottom: 5px;
    padding: 2px 5px;
  }
  .go-green.go-green-box img { height: 22px;}
  .go-green.go-green-box span { font-size: .7rem;}
}

/* ======= RESPONSIVE ======= */
@media (max-width: 1200px) {
  .about-inner { max-width: 97vw; }
  .about-content {
    margin-right: 14px;
    padding: 25px 3vw 19px 3vw;
    max-width: 99vw;
  }
}

@media (max-width: 800px) {
  .about-inner {
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    min-height: 0;
    width: 100%;
  }
  .about-content {
    margin: 38px 2vw 22px 2vw;
    padding: 12px 6vw 11px 6vw;
    max-width: 98vw;
    min-width: 0;
    border-radius: 10px;
  }
  .vertical-side { display: none; }
  .go-green {
    bottom: 9px; left: 10px;
    background: none; padding: 0 4px;
  }
  .about-bold,
  .about-outline { font-size: 2.1rem; }
}

@media (max-width: 600px) {
  .about-us-hero { min-height: 340px; }
  .about-content {
    margin: 11px 1vw 8px 1vw;
    padding: 5px 2vw;
    font-size: 0.95rem;
  }
  .vision-watermark { font-size: 14vw; left: 8vw; }
  .leaf-decoration { height: 32px; top: 18vw; left: 12vw;}
  .go-green img { height: 27px;}
  .go-green span { font-size: 0.85rem;}
  .about-bold, .about-outline { font-size: 1.36rem; }
  .section-heading { margin-bottom: 18px;}
}
.kk-emblem-heading {
  height: 52px;         /* Adjust as you need for harmony with the title */
  width: auto;
  opacity: 0.17;
  margin-right: 13px;
  vertical-align: bottom;
  display: inline-block;
  position: relative;
}

@media (max-width: 800px) {
  .kk-emblem-heading {
    height: 34px;
    margin-right: 8px;
  }
}
@media (max-width: 600px) {
  .kk-emblem-heading {
    height: 24px;
    margin-right: 5px;
  }
}
/* == Yellow Rectangle Boxes == */
.yellow-box {
  position: absolute;
  background: #F1CE3B;
  opacity: 0.88;
  z-index: 9;
}
.yellow-box-topright {
  top: 0; right: 0;
  width: 130px;
  height: 170px;
  /* No border-radius for sharp corners */
}
.yellow-box-bottomleft {
  left: 0; bottom: 0;
  width: 200px;
  height: 300px;
  /* No border-radius */
}
@media (max-width: 600px) {
  .yellow-box-topright, .yellow-box-bottomleft {
    width: 55px; height: 55px;
  }
}



.vision-watermark {
  position: absolute;
  top: 0;
  left: 2vw;
  font-size: 8vw;
  font-family: 'Montserrat', sans-serif;
  font-weight: 1000;
  color: transparent;
  letter-spacing: 0.04em;
  opacity: 0.82;
  -webkit-text-stroke: 2.2px #fff;
  text-stroke: 2.2px #fff;
  z-index: 2;
  user-select: none;
}



.board-section {
  margin: 48px auto 64px auto;
  max-width: 1200px;
  width: 98%;
  position: relative;
  text-align: center;
}

.board-title-img {
  display: block;
  max-width: 540px;
  width: 100%;
  margin: 0 auto 40px auto;
}

.board-image-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.board-image {
  max-width: 720px;  /* Adjust for desktop as needed */
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Tablet and below */
@media (max-width: 900px) {
  .board-section {
    max-width: 100vw;
    width: 100vw;
    margin: 24px 0 40px 0;
  }
  .board-title-img {
    max-width: 320px;
    margin-bottom: 16px;
  }
  .board-image {
    max-width: 95vw;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .board-section {
    max-width: 100vw;
    width: 100vw;
    margin-left: 0;
    margin-right: 0;
    padding: 0 0.5em;  /* optional side-padding so image never touches phone edge */
  }
  .board-title-img {
    max-width: 86vw;
    width: 100%;
    margin-bottom: 8px;
    margin-left: auto;
    margin-right: auto;
  }
  .board-image-wrap {
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  .board-image {
    max-width: 99vw;
    width: 99vw;
    margin: 0 auto;
    height: auto;
    display: block;
  }
}