/* --------------------------------------------------
   GLOBAL SETTINGS
-------------------------------------------------- */
:root {
  --green: #1b7b39;
  --leaf: #2e9e49;
  --dark: #222;
  --light: #f9f9f9;
  --accent: #ffc839;
  --radius: 14px;
  --shadow: 0 8px 25px rgba(0,0,0,0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--dark);
  background: #fff;
  line-height: 1.6;
}

/* Containers */
.container {
  width: 92%;
  max-width: 1200px;
  margin: auto;
}


/* MODER HEADER */
.modern-header {
  background: linear-gradient(135deg, #092512, #0a2e16);
  padding: 20px 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  position: sticky;
  top: 0;
  z-index: 2000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  height: 85px;
}

.brand-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}

.brand-sub {
  color: #e6e6e6;
  font-size: 0.85rem;
}

/* Navigation */
.nav a {
  color: #f5f5f5;
  margin: 0 14px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.25s ease;
}

.nav a:hover {
  color: #ffd593;
}

/* CTA BUTTON (orange) */
.cta-btn {
  padding: 10px 20px;
  background: #f9a825;
  color: #111 !important;
  border-radius: 12px;
  font-weight: 600;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #ffbe47;
  color: #000;
}

/* Mobile */
.hamburger {
  display: none;
  background: none;
  color: #fff;
  border: none;
  font-size: 28px;
}

@media (max-width: 860px) {
  .nav {
    display: none;
  }
  .hamburger {
    display: block;
  }
}

/* GRASS BORDER */
.nav a,
.nav-item > a {
  padding: 8px 12px;
  border: 2px solid transparent;
  border-radius: 6px;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.nav a:hover,
.nav-item > a:hover {
  border-color: #c8dbc9;
  color: #71b378;
}

/* DROPDOWN MENU  */

.nav-item {
  position: relative;
}

.dropdown > a {
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: #ffffff;
  padding: 12px 0;
  border-radius: 12px;
  min-width: 180px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
  display: none;
  flex-direction: column;
  z-index: 3000;
  transition: 0.25s ease;
}

.dropdown-menu a {
  padding: 10px 18px;
  display: block;
  color: #123b1f;
  font-weight: 500;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: #f0f5f1;
  color: #000;
}

/* SHOW MENU ON HOVER (desktop) */
.dropdown:hover .dropdown-menu {
  display: flex;
}

/* MOBILE DROPDOWN */
@media (max-width: 860px) {

  .nav-item {
    width: 100%;
  }

  .dropdown-menu {
    position: relative;
    top: 0;
    left: 0;
    box-shadow: none;
    border-radius: 0;
    background: #0f3e1e;
    display: none;
  }

  .dropdown-menu a {
    color: #fff;
    padding-left: 35px;
  }

  .dropdown.open .dropdown-menu {
    display: flex;
  }
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  background: #fff;
  padding: 20px;
  box-shadow: var(--shadow);
}

.mobile-menu a {
  display: block;
  margin-bottom: 14px;
  color: var(--dark);
}

/* --------------------------------------------------
   reeeeeeeeeeeeeeeee mobile hover menu
-------------------------------------------------- */
#mobileMenu a {
  border: 2px solid transparent;
  border-radius: 6px;
  padding: 12px;
  transition: 0.25s;
}

#mobileMenu a:hover {
  border-color: #d1e2d3;
}

/* --------------------------------------------------
   HERO
-------------------------------------------------- */
.hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.hero-content {
  position: relative;
  color: #fff;
  text-align: center;
  z-index: 2;
  max-width: 700px;
}

.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 14px;
}

.lead {
  margin-bottom: 20px;
  color: #e7e7e7;
}

.hero-ctas {
  margin-top: 16px;
  display: flex;
  gap: 14px;
  justify-content: center;
}

.btn {
  
  padding: 12px 24px;
  border-radius: var(--radius);
  border: 2px solid #fff;
  cursor: pointer;
  font-weight: 600;
  background: #f9a825;
  color: #111 !important;
  transition: 0.3s;
  text-decoration: none;
}

.btn.outline {
  background: transparent;
  border: 2px solid #fff;
  border-radius: var(--radius);
  background: #f9a825;
  color: #111 !important;
  transition: 0.3s;

}

/* COUNTER */
.impact-pulse {
  margin-top: 10px;
  text-align: center;
}
.impact-label{
  color: #ffffff;
  font-weight: bold;
  
}
.counter {
  font-size: 2.6rem;
  font-weight: 700;
}

/* =====================
   CINEMATIC ABOUT US
   ===================== */

.about-cinematic {
  padding: 90px 0;
  background: linear-gradient(180deg, #f7f9f6, #eef2ec);
}

/* ---------- INTRO ---------- */
.about-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 80px;
}

.about-intro h2 {
  font-size: 2.6rem;
  color: #1f3d22;
}

.about-intro p {
  font-size: 1.1rem;
  color: #4a5f4f;
  line-height: 1.8;
}

/* ---------- LAYOUT ---------- */
.about-block {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto 90px;
  padding: 0 20px;
}

.about-block.reverse {
  flex-direction: row-reverse;
}

/* ---------- SLIDER ---------- */
.about-slider {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  
}

/* pause on hover */
.about-slider:hover .slider-track {
  animation-play-state: paused;
}

/* fade + slide */
.slider-track {
  display: flex;
  width: 100%;
  transition: transform 0.8s ease-in-out, opacity 0.6s ease-in-out;
}

.slider-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  
}
/* opacity: 0.9; */

/* overlay */
.about-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.35)
  );
}

/* ---------- DOTS ---------- */
.slider-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  border: none;
  cursor: pointer;
}

.slider-dots button.active {
  background: #e4b236;
}

/* ------- arrows ------- */

/* ---------- SLIDER ARROWS ---------- */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 22px;
  background: rgba(0,0,0,0.45);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease;
}

.slider-arrow:hover {
  background: rgba(228,178,54,0.85); /* honey accent */
  color: #1f3d22;
}

.slider-arrow.prev {
  left: 15px;
}

.slider-arrow.next {
  right: 15px;
}

/* Night mode arrows */
.dark-mode .slider-arrow {
  background: rgba(255,255,255,0.15);
}

.dark-mode .slider-arrow:hover {
  background: #e4b236;
  color: #0f1a12;
}

/* ---------- TEXT ---------- */
.about-text {
  flex: 1;
}

.about-text h3 {
  font-size: 2rem;
  color: #1f3d22;
  margin-bottom: 16px;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4d5f53;
}

/* ---------- NIGHT MODE ---------- */
.dark-mode .about-cinematic {
  background: linear-gradient(180deg, #0f1a12, #132417);
}

.dark-mode .about-intro h2,
.dark-mode .about-text h3 {
  color: #f4f7f1;
}

.dark-mode .about-text p,
.dark-mode .about-intro p {
  color: #dce8d8;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .about-block,
  .about-block.reverse {
    flex-direction: column;
  }

  .slider-track img {
    height: 260px;
  }
}

/* --------------------------------------------------
   SECTIONS
-------------------------------------------------- */
.section {
  padding: 80px 0;
}

.section-light {
  background: var(--light);
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.muted {
  color: #777;
}


/* --------------------------------------------------
   TRAINING GRID
-------------------------------------------------- */
.training-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.training-grid article {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.training-grid h3 {
  margin-bottom: 10px;
}

/* --------------------------------------------------
   APPLY MODAL
-------------------------------------------------- */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 2000;
}

.modal-panel {
  background: #fff;
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
  animation: popIn 0.35s ease;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 22px;
  background: none;
  border: none;
  cursor: pointer;
}

.apply-form label {
  font-weight: 600;
}

.apply-form input,
.apply-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  margin-top: 6px;
  margin-bottom: 12px;
}

/* pop animation */
@keyframes popIn {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* --------------------------------------------------
   SCROLL REVEAL
-------------------------------------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------
   RESPONSIVE NAVIGATION
-------------------------------------------------- */
@media (max-width: 860px) {
  .nav {
    display: none;
  }
  .hamburger {
    display: block;
  }
}

/* DROPDOWN NAVIGATION */
.nav-item {
  position: relative;
  display: inline-block;
}

.nav-item a {
  padding: 8px 12px;
  display: block;
  cursor: pointer;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 36px;
  left: 0;
  background: #181b09ef;
  min-width: 150px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  z-index: 100;
}

.dropdown-menu a {
  padding: 10px 14px;
  display: block;
  color: rgb(221, 221, 221);
}

.nav-item:hover .dropdown-menu {
  display: block;
}

/* Mobile dropdown toggle */
@media (max-width: 860px) {
  .dropdown-menu {
    position: relative;
    top: 0;
    left: 0;
    box-shadow: none;
  }
  .nav-item:hover .dropdown-menu {
    display: block;
  }
}


/* MOBILE DROPDOWN MENU */
.mobile-dropdown {
  margin-bottom: 10px;
}

.mobile-dropdown-btn {
  width: 100%;
  text-align: left;
  padding: 12px;
  background: #fff;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.mobile-dropdown-content {
  display: none;
  padding-left: 15px;
  border-left: 2px solid var(--leaf);
}

.mobile-dropdown-content a {
  display: block;
  padding: 10px 0;
  font-size: 0.95rem;
}

.mobile-dropdown-btn.open {
  color: var(--leaf);
}

/* THEME SWITCH */
.theme-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 18px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  background-color: #ccc;
  border-radius: 24px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 0.3s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 13px;
  width: 13px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: 0.3s;
}

/* Checked state */
.switch input:checked + .slider {
  background-color: var(--leaf);
}

.switch input:checked + .slider:before {
  transform: translateX(15px);
}

/* Dark mode fonts/icons */
html.dark-mode .theme-toggle span {
  color: #eee;
}

/* PARTNERSHIP SECTION */
.partner-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
  align-items: center;
  justify-items: center;
}

.partner-logos img {
  max-height: 150px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: 0.3s;
}

.partner-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* CONTACT GRID ENHANCED */
.contact-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.contact-info h3 {
  margin-top: 20px;
  margin-bottom: 8px;
  color: var(--leaf);
}

/* ---------- MOBILE HEADER FIX ---------- */
@media (max-width: 768px) {

  /* Make the top header green */
  .header {
    background: #1f3d22; /* deep nature green */
    border-bottom: 2px solid #2d7a32;
  }

  /* Mobile hamburger button */
  #hamburger {
    color: #ffffff;
    background: transparent;
    border: 2px solid #6bbf59;
    padding: 6px 10px;
    border-radius: 6px;
  }

  /* Mobile menu background */
  #mobileMenu {
    background: #234e27; /* matching green shade */
    border-top: 2px solid #6bbf59;
  }

  /* Mobile menu links */
  #mobileMenu a {
    color: #ffffff;
    border: 2px solid transparent;
    border-radius: 6px;
    padding: 12px;
    transition: 0.25s;
  }

  #mobileMenu a:hover {
    border-color: #6bbf59; /* grass border */
    background: rgba(255, 255, 255, 0.05);
  }

  /* Submenu in mobile (dropdown) */
  #mobileMenu .dropdown-menu {
    background: #234e27;
    border-left: 3px solid #6bbf59;
    margin-left: 10px;
  }

  #mobileMenu .dropdown-menu a {
    padding-left: 20px;
  }
}

/* FOOTER with BEE */
.footer {
  position: relative;
  padding: 55px 0 20px;
  background: linear-gradient(135deg, #1f3d22 0%, #254b28 40%, #e4b236 100%);
  color: #fff;
  overflow: hidden;
}

/* subtle honeycomb texture */
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10px 10px, rgba(255,245,200,0.10) 15%, transparent 16%),
    radial-gradient(circle at 30px 30px, rgba(255,245,200,0.10) 15%, transparent 16%);
  background-size: 40px 40px;
  opacity: 0.15;
  pointer-events: none;
}

/* bee icon floating on right side */
.footer-bee {
  position: absolute;
  right: 30px;
  bottom: 85px;
  width: 55px;
  opacity: 0.9;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.25));
  animation: beeFloat 4s ease-in-out infinite;
}

@keyframes beeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* footer content */
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.footer-col h4 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #fef9d3; /* pale honey color */
}

.footer-col a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.2s;
}

.footer-col a:hover {
  color: #ffe38a;
}

.footer-note {
  max-width: 270px;
  line-height: 1.6;
}

/* bottom copyright */
.footer-bottom {
  margin-top: 25px;
  text-align: center;
  padding-top: 15px;
  font-size: 0.9rem;
  opacity: 0.9;
  border-top: 1px solid rgba(255,255,255,0.15);
}
  
/* Responsive */
@media (max-width: 750px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-bee {
    right: 20%;
    transform: translateX(50%);
    bottom: 85px;
    animation: none;
  }
}


/* =======================
   NIGHT MODE THEME
   ======================= */
.dark-mode {
  background: #0f1a12; /* deep organic green */
  color: #e9f2e4;      /* soft pale green */
}

.dark-mode h1,
.dark-mode h2,
.dark-mode h3,
.dark-mode h4,
.dark-mode h5,
.dark-mode h6 {
  color: #f4f7f1;
}

.dark-mode p,
.dark-mode li,
.dark-mode a {
  color: #dce8d8;
}
.dark-mode .header {
  background: #132417;
  border-bottom: 2px solid #2d7a32;
}

.dark-mode .nav a,
.dark-mode .nav-item > a {
  color: #f4f7f1;
}

.dark-mode .nav a:hover::after,
.dark-mode .nav-item > a:hover::after {
  background: linear-gradient(90deg, #4fa85e, #92d179);
}
.dark-mode #mobileMenu {
  background: #132417;
}

.dark-mode #mobileMenu a {
  color: #e4f0e2;
}

.dark-mode #mobileMenu a:hover {
  background: rgba(255,255,255,0.05);
  border-color: #6bbf59;
}
.dark-mode .section-light {
  background: #17281c;
}

.dark-mode .card {
  background: #1c3021;
  border: 1px solid #27422f;
  color: #e4f0e2;
}

.dark-mode .card p {
  color: #e4f0e2;
}

.dark-mode .btn {
  background: #2d7a32;
  color: #fff;
  border-color: #2d7a32;
}

.dark-mode .btn.outline {
  color: #aee2a9;
  border-color: #4fa85e;
}

.dark-mode .btn:hover {
  background: #3c9d45;
}

.dark-mode .footer {
  background: linear-gradient(135deg, #0c140d 0%, #152518 40%, #c49422 100%);
  color: #f6f9f4;
}

.dark-mode .footer-bee {
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.3));
}

.dark-mode .footer-note,
.dark-mode .footer-col a {
  color: #e3f4df;
}

.dark-mode .footer-col a:hover {
  color: #ffe38a;
}

/* =======================
   DARK MODE – TRAINING SECTION
   ======================= */

.dark-mode .training-grid article {
  background: #1c3021;          /* deep green card */
  border: 1px solid #27422f;    /* subtle structure */
  box-shadow: 0 8px 22px rgba(0,0,0,0.45);
}

.dark-mode .training-grid h3 {
  color: #f4f7f1;               /* clean heading */
}

.dark-mode .training-grid p {
  color: #dce8d8;               /* readable body text */
}

.dark-mode .training-grid .muted {
  color: #a7c4ae;               /* soft secondary text */
}

.dark-mode .training-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.6);
  border-color: #3c9d45;
  transition: 0.3s ease;
}

@media (max-width: 768px) {
  .impact-label {
    color: #e4b236; /* honey / bee accent */
  }
}

