:root {
  --body-bg-color: #f3f8f2;
  --body-bg-gradient1: #f7fbf5;
  --body-bg-gradient2: #dcebd8;

  --body-text-color: #1f2d22;
  --heading-color: #174d2a;

  --footer-bg-color: #10351f;
  --footer-bg-gradient1: #0d2f1b;
  --footer-bg-gradient2: #1f5c35;

  --link-color: #b8e6c5;

  --box-color: #f8fcf7;
  --box-text-color: #1b2920;

  --header-bg-color: #e7f3e4;
  --header-text-color: #f2fcf5;

  --font-family: Times, serif;

  --nav-link-color: #ffffff;
  --footer-text-color: #f5fff7;
}

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: 15px 0;
  scroll-margin-top: 70px;
}

h2, h3 {
  color: var(--heading-color) !important;
}

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

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



.content-area section {
  margin: 15px 0;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}


.main-section-style-contrast {
  padding: 1.5rem;
  border-radius: 8px;
  background: var(--box-color);
}

.main-section-style-contrast,
.main-section-style-contrast :is(h2, h3, h4, h5, h6, p, li, span, strong, em, td, th, a) {
  color: var(--box-text-color, #ffffff) !important;
}

.main-section-style-contrast a {
  text-decoration: underline !important;
}

.main-section-style-contrast a:hover {
  color: var(--box-text-color, #ffffff) !important;
  opacity: 0.8;
}



.main-section-style-centered-line {
  text-align: center;
}

.main-section-style-centered-line h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--link-color);
  margin: 0.5rem auto 0;
}


.main-section-style-h3-grid .main-section-h3-grid {
  margin-top: 1rem;
}

.main-section-style-h3-grid .box {
  height: 100%;
  padding: 1.25rem;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--box-text-color, #ffffff) 18%, transparent);
  background: var(--box-color);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.main-section-style-h3-grid .box,
.main-section-style-h3-grid .box :is(h2, h3, h4, h5, h6, p, li, span, strong, em, td, th, a) {
  color: var(--box-text-color, #ffffff) !important;
}

.main-section-style-h3-grid .box a {
  text-decoration: underline !important;
}

.main-section-style-h3-grid .box a:hover {
  color: var(--box-text-color, #ffffff) !important;
  opacity: 0.8;
}



.main-section-style-image-bg {
  position: relative;
  overflow: hidden;
  padding: 3.125rem 1.5rem;
  border-radius: 17px;
  background-image: url('/images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
}

.main-section-style-image-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: color-mix(in srgb, #00000091, transparent 30%);
}

.main-section-style-image-bg > :not(.section-style-toolbar) {
  position: relative;
  z-index: 2;
}

.main-section-style-image-bg :is(h2, h3, a) {
  color: #ffffff !important;
}





  
.sidebar-search-box {
  width: 279px;
  margin-bottom: 15px;
}

.sidebar-search-box h3 {
  margin: 0 0 20px;
  font-weight: 700;
  color: var(--body-text-color) !important;
}

.sidebar-search-box form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-search-box input[type="search"],
.sidebar-search-box input[type="email"] {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  background: #ffffff;
  color: #222222 !important;
  font-size: 0.95rem;
  font-family: var(--font-family);
  outline: none;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.sidebar-search-box input[type="search"]:focus,
.sidebar-search-box input[type="email"]:focus {
  border-color: var(--link-color);
  box-shadow: 0 0 0 4px rgba(176, 54, 54, 0.12);
}

.sidebar-search-box input[type="search"]::placeholder,
.sidebar-search-box input[type="email"]::placeholder {
  color: rgba(0, 0, 0, 0.45);
}

.sidebar-search-box button {
  border: none;
  border-radius: 12px;
  padding: 14px 16px;
  background: var(--box-color);
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    opacity 0.25s ease,
    box-shadow 0.25s ease;
  box-shadow: 0 6px 18px rgba(59, 104, 91, 0.25);
}

.sidebar-newsletter-box p {
  margin: 0 0 14px;
  font-size: 0.85rem;
  color: var(--body-text-color);
  opacity: 0.75;
}

      .sidebar-links {
  width: 279px;
  margin-bottom: 15px;
}
.sidebar-links h3 {
  margin: 0 0 20px;
  font-weight: 700;
}

.sidebar-page-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-page-list li {
  list-style: none;
}

.sidebar-page-list a {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--body-text-color);
  background: transparent;
  font-size: 0.98rem;
  font-weight: 500;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.2s ease,
    box-shadow 0.25s ease;
}

.sidebar-page-list a:hover {
  background: rgba(176, 54, 54, 0.08);
  color: var(--link-color);
  transform: translateX(4px);
}

.sidebar-page-list a.active {
  background: var(--box-color);
  color: white;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(59, 104, 91, 0.25);
}
      .twitter-tweet {
  width: 279px !important;
}

.x {
  display: flex;
  justify-content: center;
}


.error_page {
  min-height: 70vh;
}


  .footer-news {
  background: var(--footer-bg-color);
  border-top: 3px solid var(--link-color);
  padding: 2.5rem 1rem;
  border-radius: 12px 12px 0 0;
  position: relative;
  overflow: hidden;
  color: var(--footer-text-color);

}

.footer-news a {
  color: var(--link-color);
  text-decoration: none;
  position: relative;
}

.footer-news a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--link-color);
  transition: width 0.3s ease;
}

.footer-news a:hover::after {
  width: 100%;
}

.footer-newsletter h3 {
  color: var(--footer-text-color) !important;
  margin-bottom: 1rem;
  font-weight: 600;
}

.newsletter-form input {
  padding: 0.6rem 1rem;
  border: 1px solid var(--link-color);
  border-radius: 5px;
  font-size: 1rem;
}

.newsletter-form button {
  padding: 0.6rem 1.5rem;
  border: none;
  background: var(--link-color);
  color: #fff;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(102, 143, 106, 0.2);
}
.footer-social .social-icon {
  font-size: 1.5rem;
  margin: 0 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--link-color);
  width: 40px;
  height: 40px;
  line-height: 40px;
  border: 2px solid var(--link-color);
  border-radius: 50%;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.footer-social .social-icon:hover {
  transform: scale(1.2) rotate(-10deg);
  background: var(--link-color);
  color: #fff;
}

.footer-news::after {
  right: 10px;
  top: auto;
  bottom: 10px;
  left: auto;
}

@media (max-width: 767px) {
  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }
}
  



 .navbar {
  background-color: transparent !important;
  transition: background-color 0.4s ease, box-shadow 0.3s ease;
  position: absolute; 
  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.webp');
  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;
}
@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;
  }
}

         .main-styeled {
  position: relative;
  isolation: isolate;
  max-width: 1280px;
  margin: 80px auto;
  padding: 70px 55px;
  overflow: hidden;

  background:
    radial-gradient(circle at 0% 0%, rgba(62, 163, 91, 0.15), transparent 35%),
    radial-gradient(circle at 100% 100%, rgba(25, 92, 48, 0.12), transparent 38%),
    linear-gradient(145deg, #f8fcf7 0%, #edf6eb 100%);

  border: 1px solid rgba(35, 104, 56, 0.14);
  border-radius: 32px;

  box-shadow:
    0 30px 80px rgba(15, 60, 30, 0.12),
    0 8px 25px rgba(15, 60, 30, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);

  animation: sectionReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.main-styeled::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 360px;
  height: 360px;
  top: -180px;
  right: -100px;

  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(72, 170, 93, 0.2) 0%,
    rgba(72, 170, 93, 0.05) 50%,
    transparent 72%
  );

  filter: blur(5px);
  animation: floatingGlow 8s ease-in-out infinite alternate;
}

.main-styeled::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 280px;
  height: 280px;
  left: -130px;
  bottom: -150px;

  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(20, 93, 45, 0.16),
    transparent 70%
  );

  animation: floatingGlow 10s ease-in-out infinite alternate-reverse;
}

.main-styeled > h2 {
  position: relative;
  width: fit-content;
  margin: 0 auto 20px;

  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -1.5px;
  text-align: center;

  color: #174d2a;

  background: linear-gradient(
    110deg,
    #113b21 0%,
    #237542 45%,
    #3a9758 70%,
    #174d2a 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  animation:
    titleReveal 0.9s 0.15s cubic-bezier(0.16, 1, 0.3, 1) both,
    titleGradient 7s linear infinite;
}

.main-styeled > h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;

  width: 75px;
  height: 4px;

  border-radius: 20px;
  background: linear-gradient(90deg, #174d2a, #63ad71);

  transform: translateX(-50%);
  box-shadow: 0 5px 16px rgba(48, 139, 71, 0.28);

  animation: underlineGrow 1s 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.main-styeled > p {
  max-width: 830px;
  margin: 35px auto 45px;

  font-size: 1.08rem;
  line-height: 1.8;
  text-align: center;

  color: #53665a;

  animation: textReveal 0.8s 0.3s ease both;
}

.main-styeled .row {
  align-items: stretch;
}

.main-styeled .col-xl-6 {
  display: flex;
}

.box-one {
  position: relative;
  width: 100%;
  min-height: 100%;
  padding: 32px 30px;
  overflow: hidden;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.92),
      rgba(244, 250, 242, 0.88)
    );

  border: 1px solid rgba(47, 120, 65, 0.13);
  border-radius: 22px;

  box-shadow:
    0 16px 40px rgba(21, 68, 36, 0.07),
    0 3px 10px rgba(21, 68, 36, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  transform: translateY(0);
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s ease,
    box-shadow 0.45s ease,
    background 0.35s ease;

  animation: cardReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.main-styeled .col-xl-6:nth-child(1) .box-one {
  animation-delay: 0.15s;
}

.main-styeled .col-xl-6:nth-child(2) .box-one {
  animation-delay: 0.25s;
}

.main-styeled .col-xl-6:nth-child(3) .box-one {
  animation-delay: 0.35s;
}

.main-styeled .col-xl-6:nth-child(4) .box-one {
  animation-delay: 0.45s;
}

.main-styeled .col-xl-6:nth-child(5) .box-one {
  animation-delay: 0.55s;
}

.box-one::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;

  width: 55px;
  height: 3px;

  border-radius: 0 0 10px 10px;
  background: linear-gradient(90deg, #1d6236, #65b878);

  transition: width 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.box-one::after {
  content: "";
  position: absolute;
  top: -100%;
  left: -60%;

  width: 45%;
  height: 300%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.55),
    transparent
  );

  transform: rotate(25deg);
  transition: left 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.box-one:hover {
  transform: translateY(-8px);

  border-color: rgba(46, 132, 69, 0.3);

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.98),
      rgba(238, 248, 235, 0.96)
    );

  box-shadow:
    0 28px 55px rgba(20, 75, 38, 0.14),
    0 8px 18px rgba(20, 75, 38, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.box-one:hover::before {
  width: calc(100% - 56px);
}

.box-one:hover::after {
  left: 135%;
}

.box-one h3 {
  position: relative;
  z-index: 1;

  margin: 0 0 16px;

  font-size: 1.42rem;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.3px;

  color: #174d2a;

  transition:
    color 0.3s ease,
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.box-one:hover h3 {
  color: #20723d;
  transform: translateX(4px);
}

.box-one p {
  position: relative;
  z-index: 1;

  margin: 0;

  font-size: 1rem;
  line-height: 1.75;

  color: #56655b;
}

.box-one h3::before {
  content: "";
  display: inline-block;

  width: 9px;
  height: 9px;
  margin-right: 11px;

  border-radius: 50%;
  background: linear-gradient(135deg, #327d49, #76bd82);

  box-shadow:
    0 0 0 5px rgba(61, 145, 82, 0.09),
    0 4px 12px rgba(34, 107, 53, 0.2);

  vertical-align: 2px;

  animation: dotPulse 3s ease-in-out infinite;
}


/* =========================
   KEYFRAMES
   ========================= */

@keyframes sectionReveal {
  0% {
    opacity: 0;
    transform: translateY(35px) scale(0.985);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes titleReveal {
  0% {
    opacity: 0;
    transform: translateY(22px);
    filter: blur(5px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes textReveal {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardReveal {
  0% {
    opacity: 0;
    transform: translateY(35px) scale(0.97);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes underlineGrow {
  0% {
    width: 0;
    opacity: 0;
  }

  100% {
    width: 75px;
    opacity: 1;
  }
}

@keyframes floatingGlow {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  100% {
    transform: translate3d(-25px, 30px, 0) scale(1.15);
  }
}

@keyframes titleGradient {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

@keyframes dotPulse {
  0%,
  100% {
    box-shadow:
      0 0 0 5px rgba(61, 145, 82, 0.08),
      0 4px 12px rgba(34, 107, 53, 0.18);
  }

  50% {
    box-shadow:
      0 0 0 8px rgba(61, 145, 82, 0.03),
      0 5px 16px rgba(34, 107, 53, 0.28);
  }
}


/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 991px) {
  .main-styeled {
    margin: 50px 20px;
    padding: 55px 30px;
    border-radius: 26px;
  }

  .main-styeled > p {
    margin-bottom: 35px;
  }

  .box-one {
    padding: 28px 25px;
  }
}

@media (max-width: 575px) {
  .main-styeled {
    margin: 30px 12px;
    padding: 42px 18px;
    border-radius: 22px;
  }

  .main-styeled > h2 {
    font-size: 2rem;
  }

  .main-styeled > p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .box-one {
    padding: 25px 20px;
    border-radius: 18px;
  }

  .box-one h3 {
    font-size: 1.23rem;
  }

  .box-one p {
    font-size: 0.96rem;
  }
}


/* =========================
   ACCESSIBILITY
   ========================= */

@media (prefers-reduced-motion: reduce) {
  .main-styeled,
  .main-styeled::before,
  .main-styeled::after,
  .main-styeled > h2,
  .main-styeled > p,
  .box-one,
  .box-one h3::before {
    animation: none !important;
  }

  .box-one,
  .box-one::before,
  .box-one::after,
  .box-one h3 {
    transition: none !important;
  }
}   




