:root {
  --body-bg-color: #f8fafc;
  --body-text-color: #222222;
  --heading-color: #222222;
  --hero-gradient1: #88c25b;
  --hero-gradient2: #6cad3f;
  --footer-bg-color: #0d0d0d;
  --link-color: #6cad3f;
  --header-bg-color: #222222;
  --font-family: system-ui;
  --nav-link-color: #ffffff;
  --footer-text-color: #ffffff;
  --header-text-color: #ffffffff;
}

html {
  overflow-x: hidden;
}

body {
  background-color: var(--body-bg-color);
  color: var(--body-text-color) !important;
  font-family: var(--font-family);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;

}


h1 {
  font-size: clamp(2rem, 4vw, 2.5rem) !important;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2rem) !important;
}

h3 {
  font-size: clamp(1.4rem, 3vw, 1.7rem) !important;
}

p {
  margin-bottom: 0.5rem !important;
}

section {
  padding: 40px 0;
  scroll-margin-top: 70px;
}

section h2 {
  position: relative;
  display: table;
  margin: 0 auto 1.5rem;
  padding: 0.7rem 2rem;
  font-family: var(--font-family);
  color: var(--heading-color);
  text-align: center;
  line-height: 1.2;
  background:
    radial-gradient(circle at top left, rgba(136, 194, 91, 0.2), transparent 55%),
    radial-gradient(circle at bottom right, rgba(108, 173, 63, 0.18), transparent 55%),
    rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(108, 173, 63, 0.22);
  border-radius: 999px;
  box-shadow:
    0 10px 24px rgba(34, 34, 34, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(4px);
  overflow: visible;
}

section h2::before,
section h2::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  transform: translateY(-50%) rotate(45deg);
  z-index: -1;
}

section h2::before {
  left: -0.9rem;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.9), transparent 38%),
    linear-gradient(135deg, var(--hero-gradient1), var(--hero-gradient2));
  box-shadow:
    0 0 0 6px rgba(136, 194, 91, 0.12),
    0 8px 18px rgba(108, 173, 63, 0.2);
  clip-path: path("M12 2C8 2 3 5 3 11c0 7 6 11 9 11 4 0 10-4 10-11C22 5 16 2 12 2Z");
}

section h2::after {
  right: -0.9rem;
  background:
    conic-gradient(from 90deg,
      var(--hero-gradient1) 0deg,
      var(--hero-gradient2) 120deg,
      rgba(136, 194, 91, 0.45) 240deg,
      var(--hero-gradient1) 360deg);
  box-shadow:
    0 0 0 6px rgba(108, 173, 63, 0.1),
    0 8px 18px rgba(108, 173, 63, 0.18);
}

section h3 {
  font-family: var(--font-family);
  color: var(--heading-color);
  margin-top: 1rem;
  background: linear-gradient(90deg, var(--hero-gradient1), var(--hero-gradient2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

section img {
  border-radius: 20px;
}

.content-area a {
  color: var(--link-color) !important;
  text-decoration: underline wavy !important;
}

.content-area a:hover {
  color: var(--link-color) !important;
  opacity: 0.8;
}



.error_page {
  min-height: 70vh;
}


.footer {
  background: var(--footer-bg-color);
  color: var(--footer-text-color);
  padding-top: clamp(1rem, 3vw, 2rem);
  padding-bottom: clamp(1.75rem, 2.5vw, 2.5rem);
  position: relative;
  overflow: hidden;
}

.footer a {
  color: var(--link-color);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: .01em;

  transition: opacity .2s ease, text-decoration-color .2s ease;
}

.footer a:hover,
.footer a:focus-visible {
  opacity: .9;
}

.footer .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: var(--footer-text-color);
  background: var(--link-color);
  font-size: 1.25rem;
  line-height: 1;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
}

.footer .social-icon:hover,
.footer .social-icon:focus-visible {
  transform: translateY(-3px);
  background: var(--link-color / 30%);
}

.footer .footer-divider {
  border: 0;
  height: 1px;
  background: linear-gradient(to right,
      transparent,
      var(--footer-text-color) 40%,
      transparent);
  margin: 1.25rem 0;
}

.footer .small {
  font-style: italic;
  font-size: .95rem;
}

@media (max-width: 575.98px) {
  .footer .social-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .footer .small {
    font-size: .9rem;
  }
}



.navbar {
  background-color: transparent !important;
  transition: background-color 0.4s ease, box-shadow 0.3s ease;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;

}

.navbar.scrolled {
  background-color: var(--header-bg-color) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-section {
  padding: 155px 0 60px;
  position: relative;
  overflow: hidden;
  color: var(--header-text-color);
}

.hero-section.with-bg {
  background-image: url('/images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-section.with-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgb(0, 0, 0));
  opacity: 0.5;
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}


@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 30px;
  }

}

.navbar-light .navbar-nav .nav-link {
  color: var(--nav-link-color, #141414) !important;
}

.navbar-light .navbar-nav .nav-link.active {
  color: var(--link-color) !important;
  font-weight: bold;
}

/* Mobile nav */
@media (max-width: 1199.98px) {
  .navbar-collapse {
    position: fixed;
    top: 61px;
    left: 15px;
    right: 15px;
    background-color: color-mix(in srgb, var(--header-bg-color) 65%, transparent);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 15px;
    margin: 0;
  }

  .navbar-nav {
    width: 100%;
  }

  .navbar-nav .nav-item {
    margin: 7px 0;
  }

  .navbar-nav .nav-item:hover {
    transform: translateY(-1px);
  }

  .navbar-nav .nav-link {
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding: 0;
  }

  .navbar-toggler {
    z-index: 10000;
    position: relative;
    border: var(--bs-border-width) solid var(--nav-link-color, #141414) !important;
  }
}


.custom-dropdown {
  border: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  min-width: 220px;
  background: color-mix(in srgb,
      var(--header-bg-color) 65%,
      transparent) !important;
  backdrop-filter: blur(12px);
}

.custom-dropdown .dropdown-item {
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  color: var(--nav-link-color, #141414) !important;
  font-weight: 500;
  border-radius: 0;
  text-wrap: wrap;
}

.dropdown-menu {
  display: none;
}

.custom-dropdown .dropdown-item:hover {
  color: #fff;
  background: color-mix(in srgb,
      var(--header-bg-color) 95%,
      transparent) !important;
}

.nav-item.dropdown>.nav-link {
  display: flex;
  align-items: center;
}

.nav-item.dropdown>.nav-link .arrow {
  position: relative;
  margin-left: auto;
  border: solid var(--nav-link-color, #141414);
  border-width: 0 2px 2px 0;
  padding: 3px;
  transform: rotate(45deg);
  transition: transform 0.25s;
}

.dropdown.open .dropdown-menu {
  display: block;
}

@media (min-width: 1200px) {
  .nav-item.dropdown {
    position: relative;
  }

  .nav-item.dropdown>.nav-link .arrow {
    margin-left: 7px;
  }

  .custom-dropdown.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0;
    z-index: 1000;
  }

  .nav-item.dropdown:hover>.nav-link .arrow {
    transform: rotate(-135deg);
  }

  .nav-item.dropdown:hover>.dropdown-menu {
    display: block !important;
  }
}

@media (max-width: 1199px) {
  .nav-item.dropdown>.nav-link .arrow {
    padding: 4px;
  }
}


.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--link-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--footer-bg-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--link-color), transparent 20%);
  color: var(--footer-bg-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

.box {
  position: relative;
  padding: 1rem;
  background: linear-gradient(145deg, #ffffff, #f3f6f8);
  border-radius: 16px;
  border: 1px solid rgba(108, 173, 63, 0.18);
  box-shadow:
    0 12px 30px rgba(34, 34, 34, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  overflow: hidden;
  height: 100%;
}

/* subtle recycled "layers" effect */
.box::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(136, 194, 91, 0.15), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(108, 173, 63, 0.12), transparent 55%);
  z-index: 0;
}

/* accent eco corner */
.box::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--hero-gradient1), var(--hero-gradient2));
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  opacity: 0.9;
}

/* ensure content sits above pseudo elements */
.box>* {
  position: relative;
  z-index: 1;
}

.box h3 {
  text-align: center;

}