* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  background: #fff;
  color: #111;
}

/* NAVBAR */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  background: transparent;
}

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

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
}

.logo {
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.9rem;
  color: #fff;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #7a8f3d;
  transition: 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 200;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: #fff;
  margin: 4px 0;
  transition: 0.4s ease;
}

/* ANIMATE TO X */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* MOBILE MENU */
@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 0;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 0;
    font-size: 1rem;
  }
}


.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 300;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.navbar.scrolled {
  background: rgba(0,0,0,0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.10);
}


@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100vh;
    width: 260px;
    background: #000;
    flex-direction: column;
    padding-top: 100px;
    gap: 1.5rem;
    transition: left 0.45s ease;
    z-index: 400;
  }

  .nav-links.open {
    left: 0;
  }

  .nav-links a {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s ease;
  }

  .nav-links.open a {
    opacity: 1;
    transform: translateX(0);
  }

  /* STAGGER EFFECT */
  .nav-links.open a:nth-child(1) { transition-delay: 0.1s; }
  .nav-links.open a:nth-child(2) { transition-delay: 0.2s; }
  .nav-links.open a:nth-child(3) { transition-delay: 0.3s; }
  .nav-links.open a:nth-child(4) { transition-delay: 0.4s; }
  .nav-links.open a:nth-child(5) { transition-delay: 0.5s; }
  .nav-links.open a:nth-child(6) { transition-delay: 0.6s; }
}

.nav-links a.active {
  color: #7a8f3d;
}

.nav-links a.active::after {
  width: 100%;
}




.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 250;
}


.menu-overlay.show {
  opacity: 1;
  pointer-events: all;
}



.hero-content h2 {
  font-size: 2.5rem;
  margin: 10px 0;
}

.hero-content h1 {
  font-size: 3rem;
  line-height: 1.2;
}

/* BUTTONS */
.buttons {
  margin-top: 25px;
}

.btn {
  padding: 12px 22px;
  font-size: 0.9rem;
  border-radius: 5px;
  text-decoration: none;
  margin-right: 10px;
  display: inline-block;
}

.btn.primary {
  background: #7a8f3d;
  color: #fff;
}

.btn.outline {
  border: 1px solid #7a8f3d;
  color: #7a8f3d;
}

/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* HERO */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 120px 5%;
  opacity: 0;
  transition: opacity 1s ease;
}


.slide.active {
  opacity: 1;
  z-index: 1;
}

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  color: #fff;
}

.intro {
  color: #cddc8c;
}

/* BUTTONS */
.btn.primary {
  background: #7a8f3d;
}

.btn.outline {
  border: 1px solid #fff;
  color: #fff;
}

/* SLIDE ARROWS */
.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  border: none;
  color: #fff;
  font-size: 1.4rem;
  width: 48px;
  height: 48px;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.slide-arrow:hover {
  background: rgba(0,0,0,0.7);
}

.slide-arrow.prev {
  left: 20px;
}

.slide-arrow.next {
  right: 20px;
}

/* MOBILE ADJUSTMENT */
@media (max-width: 768px) {
  .slide-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}


/* MOBILE */
@media (max-width: 900px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content h2 {
    font-size: 2rem;
  }
}


/* RESPONSIVE */
@media (max-width: 900px) {
  .slide {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .hero-image img {
    max-height: 350px;
    margin-top: 20px;
  }

  .nav-links {
    display: none;
  }
}





/* ABOUT SECTION */
.about {
  padding: 6rem 0;
  background: #f9f9f9;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.section-tag {
  display: inline-block;
  color: #7a8f3d;
  letter-spacing: 3px;
  font-size: 0.75rem;
  margin-bottom: 10px;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-text p {
  color: #444;
  margin-bottom: 15px;
  line-height: 1.7;
}

.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 30px;
}

.about-stats h3 {
  display: flex;
  align-items: baseline;
  gap: 2px;
}


.about-stats div h3 {
  font-size: 2rem;
  color: #7a8f3d;
}

.about-stats div span {
  font-size: 0.85rem;
  color: #555;
}

/* IMAGE */
.about-image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-stats {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ABOUT REVEAL ANIMATIONS */
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: all 0.9s ease;
}

.reveal-left {
  transform: translateX(-60px);
}

.reveal-right {
  transform: translateX(60px);
}

.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}



/* ACHIEVEMENTS – EDITORIAL LIST STYLE */
.achievements-list {
  padding: 7rem 0;
  background: #ffffff;
}

.achievements-header {
  max-width: 750px;
  margin-bottom: 5rem;
}

.achievements-header h2 {
  font-size: 2.6rem;
  margin: 0.8rem 0 1rem;
}

.achievements-header p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
}

/* PROJECT LIST */
.projects {
  max-width: 720px;
}

.project {
  padding-left: 1.5rem;
  border-left: 3px solid #7a8f3d;
}

.project h3 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  color: #1f2d16;
}

.project p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #333;
}

/* DOWN ARROW CONNECTOR */
.project-arrow {
  width: 3px;
  height: 50px;
  background: linear-gradient(
    to bottom,
    #7a8f3d,
    transparent
  );
  margin: 1.2rem 0 1.8rem 0.75rem;
  position: relative;
}

.project-arrow::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: -6px;
  width: 14px;
  height: 14px;
  border-right: 3px solid #7a8f3d;
  border-bottom: 3px solid #7a8f3d;
  transform: rotate(45deg);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .achievements-header h2 {
    font-size: 2rem;
  }

  .projects {
    max-width: 100%;
  }
}

/* RECORD OF SERVICE */
.achievements-list {
  padding: 7rem 0;
  background: #ffffff;
}

.record-title {
  color: #111;
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 4.5rem;
  letter-spacing: 1px;
}

.record-title::after{
    content: "";
    width: 150px;
    height: 5px;
    display: block;
    background: #7a8f3d;
    border-radius: 5px;
    margin: 1px auto 30px;
}


/* GRID */
.achievements-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: start;
}

/* HEADER */
.achievements-header h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.achievements-header p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 3rem;
}

/* PROJECT LIST */
.projects {
  max-width: 700px;
}

.project {
  position: relative;
  padding-left: 2.5rem;
  border-left: 3px solid #7a8f3d;
  transition: transform 0.3s ease, background 0.3s ease;
}

.project:hover {
  transform: translateX(6px);
  background: linear-gradient(
    90deg,
    rgba(122,143,61,0.08),
    transparent
  );
}

.project h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.project p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #333;
}

/* YEAR LABEL */
.year {
  position: absolute;
  left: -70px;
  top: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: #7a8f3d;
}

/* ARROW CONNECTOR */
.project-arrow {
  width: 3px;
  height: 50px;
  background: linear-gradient(to bottom, #7a8f3d, transparent);
  margin: 1.4rem 0 2rem 1.1rem;
  position: relative;
}

.project-arrow::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: -6px;
  width: 14px;
  height: 14px;
  border-right: 3px solid #7a8f3d;
  border-bottom: 3px solid #7a8f3d;
  transform: rotate(45deg);
}

/* IMAGE */
.achievements-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

/* CTA */
.record-link {
  margin-top: 3.5rem;
}

.record-link a {
  font-weight: 600;
  color: #1f2d16;
  text-decoration: none;
  border-bottom: 2px solid #7a8f3d;
  padding-bottom: 4px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .achievements-grid {
    grid-template-columns: 1fr;
  }

  .year {
    position: static;
    display: block;
    margin-bottom: 0.4rem;
  }

  .record-title {
    font-size: 2.3rem;
  }

  .achievements-image {
    order: -1;
    text-align: center;
  }
}



/* CONTACT & TOWN HALL */
.contact-townhall {
  padding: 7rem 0;
  background: linear-gradient(
    to bottom,
    #f9faf7,
    #ffffff
  );
}

.section-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 4.5rem;
  letter-spacing: 1px;
}

/* GRID */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: start;
}

/* LEFT */
.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
}

.contact-info p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 2rem;
}

.info-block span {
  font-weight: 700;
  color: #7a8f3d;
  display: block;
  margin-bottom: 0.2rem;
}

.info-block p {
  margin-bottom: 1.4rem;
}

.townhall-note {
  border-left: 4px solid #7a8f3d;
  padding-left: 1.2rem;
  margin-top: 2.5rem;
}

.townhall-note strong {
  display: block;
  margin-bottom: 0.5rem;
}

/* FORM */
.contact-form {
  background: #ffffff;
  padding: 3rem;
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.field {
  position: relative;
  margin-bottom: 1.8rem;
}

.field input,
.field textarea {
  width: 100%;
  padding: 14px 12px;
  font-size: 0.95rem;
  border: none;
  border-bottom: 2px solid #ccc;
  outline: none;
  background: transparent;
}

.field label {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  font-size: 0.85rem;
  pointer-events: none;
  transition: 0.3s ease;
}

.field textarea + label {
  top: 18px;
  transform: none;
}

.field input:focus + label,
.field textarea:focus + label,
.field input:valid + label,
.field textarea:valid + label {
  top: -8px;
  font-size: 0.75rem;
  color: #7a8f3d;
}

button {
  width: 100%;
  padding: 14px;
  border: none;
  background: #7a8f3d;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.3s ease;
}

button:hover {
  background: #65792f;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2.3rem;
  }
}


.info-block span,
.townhall-note strong {
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-block i,
.townhall-note i {
  color: #7a8f3d;
  font-size: 0.95rem;
}

button i {
  margin-right: 6px;
}



/* FOOTER */
.site-footer {
  background: #111;
  color: #fff;
  padding: 5rem 0 2rem;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand h2 {
  color: #7a8f3d;
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.footer-brand p {
  color: #ccc;
  line-height: 1.6;
}

.footer-links h3,
.footer-contact h3 {
  color: #7a8f3d;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #7a8f3d;
}

.footer-contact p {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ccc;
}

.footer-socials {
  margin-top: 1rem;
  display: flex;
  gap: 12px;
}

.footer-socials a {
  color: #ccc;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: #7a8f3d;
}

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  color: #888;
  font-size: 0.85rem;
}

/* RESPONSIVE FOOTER */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }

  .footer-contact p {
    justify-content: center;
  }

  .footer-socials {
    justify-content: center;
  }
}



