:root {
  --body-bg-color: #f8fafc;
  --body-text-color: #ffffff;
  --heading-color: #ffffff;

  --footer-bg-color: #0d0d0d3b;
  --link-color: #f0fff1;
  --box-color: #0d644a;
  --header-bg-color: #ffffff;
  --font-family: 'Trebuchet MS', Helvetica, sans-serif;
  --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;
      
  background-image:
  linear-gradient(rgba(0, 0, 0, 0.219), rgba(0, 0, 0, 0.089)),
    url("/images/nuture-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

  
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: underline;
}

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

  
  
.error_page {
  min-height: 70vh;
}


  
.footer {
  background-color: var(--footer-bg-color);
  color: var(--footer-text-color);
  padding: 1.9rem 19px;
  text-align: center;
}

/* Top area */
.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* Links */
.footer-links {
  display: flex;
  gap: 15px;
}

.footer a {
  color: var(--link-color);
  text-decoration: none;
  font-size: 0.95rem;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.footer a:hover {
  opacity: 1;
}

.footer-divider {
  border: none;
  height: 1px;
  margin: 1.5rem auto;
  width: 60%;
  background: linear-gradient(
    90deg,
    transparent,
    var(--link-color),
    transparent
  );
  opacity: 0.5;
}

.footer-bottom {
  font-size: 0.85rem;
  opacity: 0.75;
  line-height: 1.6;
}

  
.footer img {
        filter: brightness(0) invert(1);
      }

 .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/animals-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, rgba(0, 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;
  }
}

            

.contact-container {
  margin: 40px auto;
  border-radius: 8px;
  color: black !important;
}
@media screen and (max-width: 768px) {
  .contact-container {
    width: 100%;
    padding: 15px;
  }
}
.contact-container .form {
  width: 440px;
  height: 510px;
  background: #E6E6E6;
  border-radius: 8px;
  box-shadow: 0 0 40px -10px #000;
  padding: 20px 30px;
  max-width: calc(100vw - 40px);
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  position: relative;
}
.contact-container h2 {
  margin: 10px 0;
  padding-bottom: 10px;
  color: var(--hero-gradient1) !important;
  border-bottom: 3px solid var(--hero-gradient2);
}
.contact-container input {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  background: none;
  outline: none;
  resize: none;
  border: 0;
  font-family: "Montserrat", sans-serif;
  transition: all 0.3s;
  border-bottom: 2px solid var(--hero-gradient1);
}
.contact-container input:focus {
  border-bottom: 2px solid var(--hero-gradient1);
}
.contact-container p:before {
  content: attr(type);
  display: block;
  margin: 28px 0 0;
  font-size: 14px;
  color: var(--hero-gradient1);
}
.contact-container button {
  float: right;
  padding: 8px 12px;
  margin: 8px 0 0;
  font-family: "Montserrat", sans-serif;
  border: 2px solid var(--hero-gradient1);
  background: 0;
  color: var(--hero-gradient1);
  cursor: pointer;
  transition: all 0.3s;
}
.contact-container button:hover {
  background: var(--hero-gradient2);
  color: #fff;
}
.contact-container .mail-container {
  content: "";
  position: absolute;
  bottom: -15px;
  right: -20px;
  background: var(--hero-gradient1);
  color: #030303;
  width: 320px;
  padding: 16px 4px 16px 0;
  border-radius: 6px;
  font-size: 13px;
  box-shadow: 10px 10px 40px -14px #000;
}
.contact-container .mail-container p:before {
  content: none;
}
.contact-container span {
  margin: 0 5px 0 15px;
}

.season-wildlife-section {
  position: relative;
  overflow: hidden;
  padding: 95px 0;
  color: #ffffff;
}



.season-wildlife-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0%, rgba(225, 244, 170, 0.08) 45%, transparent 65%),
    radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.62) 78%);
  animation: forestLightMove 12s ease-in-out infinite alternate;
  z-index: 1;
  pointer-events: none;
}

.season-wildlife-section .container {
  z-index: 3;
}

.season-glass-panel {
  position: relative;
  padding: 48px;
  border: 1px solid rgba(214, 238, 151, 0.18);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(10, 36, 18, 0.58), rgba(3, 14, 8, 0.72)),
    rgba(255, 255, 255, 0.045);
  box-shadow:
    0 28px 85px rgba(0, 0, 0, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(177, 213, 104, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.season-glass-panel::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(211, 230, 150, 0.13);
  border-radius: 26px;
  pointer-events: none;
}

.season-glass-panel::after {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(190, 218, 95, 0.22), transparent 68%);
  filter: blur(5px);
  animation: glowPulse 5s ease-in-out infinite;
  pointer-events: none;
}

.section-intro {
  max-width: 940px;
  margin: 0 auto 42px;
  position: relative;
  z-index: 2;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 15px;
  padding: 8px 18px;
  border: 1px solid rgba(197, 222, 122, 0.28);
  border-radius: 999px;
  color: #d7e99d;
  background: rgba(9, 32, 15, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.section-intro h2 {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.12;
  text-shadow: 0 5px 24px rgba(0, 0, 0, 0.75);
}

.section-intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.85;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.72);
}

.season-boxes {
  position: relative;
  z-index: 2;
}

.box-one {
  position: relative;
  height: 100%;
  padding: 42px 34px 32px;
  border: 1px solid rgba(205, 232, 139, 0.18);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.025)),
    rgba(8, 28, 13, 0.64);
  box-shadow:
    0 24px 55px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}

.box-one::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(198, 225, 108, 0.18), transparent 32%),
    linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transform: translateX(-120%);
  transition: transform 0.75s ease;
  pointer-events: none;
}

.box-one::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -46px;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  border: 1px solid rgba(195, 223, 116, 0.12);
  background: rgba(167, 203, 87, 0.045);
  pointer-events: none;
}

.box-one:hover {
  transform: translateY(-8px);
  border-color: rgba(215, 233, 157, 0.44);
  box-shadow:
    0 32px 72px rgba(0, 0, 0, 0.48),
    0 0 35px rgba(160, 195, 83, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.box-one:hover::before {
  transform: translateX(120%);
}

.box-icon {
  position: relative;
  width: 66px;
  height: 66px;
  margin-bottom: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  color: #e3f0aa;
  background:
    linear-gradient(145deg, rgba(187, 211, 94, 0.27), rgba(52, 94, 39, 0.42));
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  animation: iconFloat 4.6s ease-in-out infinite;
}

.box-icon::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 26px;
  border: 1px solid rgba(218, 238, 153, 0.16);
  animation: iconRing 3.8s ease-in-out infinite;
}

.box-icon i {
  font-size: 2rem;
  line-height: 1;
  text-shadow: 0 4px 18px rgba(223, 241, 157, 0.32);
}

.box-one h3 {
  position: relative;
  margin-bottom: 16px;
  color: #ffffff;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.25;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.72);
}

.box-one h3::after {
  content: "";
  display: block;
  width: 72px;
  height: 2px;
  margin-top: 15px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d7e99d, rgba(215, 233, 157, 0));
}

.box-one p {
  position: relative;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  line-height: 1.82;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.68);
}

.season-bg-orb {
  position: absolute;
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
  filter: blur(1px);
  opacity: 0.42;
}

.season-bg-orb-one {
  top: 12%;
  left: 6%;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(213, 234, 132, 0.25), transparent 70%);
  animation: orbDriftOne 10s ease-in-out infinite alternate;
}

.season-bg-orb-two {
  right: 9%;
  bottom: 16%;
  width: 170px;
  height: 170px;
  background: radial-gradient(circle, rgba(76, 139, 62, 0.24), transparent 72%);
  animation: orbDriftTwo 12s ease-in-out infinite alternate;
}

.season-bg-orb-three {
  left: 42%;
  bottom: 6%;
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, rgba(255, 246, 175, 0.16), transparent 70%);
  animation: glowPulse 7s ease-in-out infinite;
}

@keyframes forestLightMove {
  0% {
    opacity: 0.55;
    transform: translateX(-2%) translateY(0);
  }

  100% {
    opacity: 0.9;
    transform: translateX(2%) translateY(-1%);
  }
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.28;
    transform: scale(1);
  }

  50% {
    opacity: 0.62;
    transform: scale(1.08);
  }
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@keyframes iconRing {
  0%, 100% {
    opacity: 0.28;
    transform: scale(1);
  }

  50% {
    opacity: 0.62;
    transform: scale(1.08);
  }
}

@keyframes orbDriftOne {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(28px, 38px);
  }
}

@keyframes orbDriftTwo {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-36px, -24px);
  }
}

@media (max-width: 991px) {
  .season-wildlife-section {
    padding: 70px 0;
  }

  .season-glass-panel {
    padding: 34px 24px;
    border-radius: 26px;
  }

  .box-one {
    padding: 36px 10px 10px;
  }
}

@media (max-width: 575px) {
  .season-wildlife-section {
    padding: 54px 0;
  }

  .season-glass-panel {
    padding: 28px 18px;
  }

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

  .box-icon {
    width: 58px;
    height: 58px;
    border-radius: 19px;
  }

  .box-icon i {
    font-size: 1.7rem;
  }
}