/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #556270; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #65A61C; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #556270;  /* The default color of the main navmenu links */
  --nav-hover-color: #65A61C; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #556270; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #65A61C; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f2f4f6;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #3b4654;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #444e5b;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-image: url("images/documentaries/background.svg")!important;
  font-family: var(--default-font);
  overflow-x: hidden;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 28px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
  text-transform: uppercase;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);

}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--surface-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -9px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

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

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

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 300;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
}

.hero .carousel {
  width: 100%;
  min-height: calc(100vh - 90px);
  padding: 0;
  margin: 0;
  background-color: var(--background-color);
  position: relative;
}

@media (max-width: 1200px) {
  .hero .carousel {
    min-height: calc(100vh - 66px);
  }
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero .carousel-item:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .carousel-container {
  position: absolute;
  inset: 90px 64px 64px 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 3;
}

.hero h2 {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
  animation: fadeInDown 1s both;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 30px;
  }
}

.hero p {
  animation: fadeInDown 1s both 0.2s;
}

@media (min-width: 1024px) {

  .hero h2,
  .hero p {
    max-width: 60%;
  }
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 4px;
  transition: 0.5s;
  margin: 10px;
  animation: fadeInUp 1s both 0.4s;
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
  transition: 0.3s;
  opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

@media (min-width: 1024px) {

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  font-size: 32px;
  line-height: 1;
}

.hero .carousel-indicators {
  list-style: none;
}

.hero .carousel-indicators li {
  cursor: pointer;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}


/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--surface-color), transparent 10%);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}
/* National Parks Map Section */
#national-parks-map {
    padding: 50px 0;
    text-align: center;
    background-color: #f4f4f4;
    width: 100%;
}

#national-parks-map h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #2E7D32; /* Green color */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* Map Container */
.map-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Map Styling */
#map {
    width: 90%;
    height: 75vh;
    border-radius: 15px;
    border: 5px solid #2E7D32; /* Green border */
    box-shadow: 0px 10px 20px rgba(0, 128, 0, 0.3);
    background: #E8F5E9; /* Light green background */
}

/* Tooltip Styling */
.leaflet-tooltip {
    background: rgba(46, 125, 50, 0.9) !important;
    color: white !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    padding: 8px !important;
    text-align: center;
}

/* Tooltip Image */
.tooltip-img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 5px;
}

/* Wildlife Section */


#wildlife-section h2 {
  color: #2E7D32;
  font-weight: bold;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

/* Wildlife Cards */
.wildlife-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
  margin-bottom: 20px;
  height: 450px;
}

.wildlife-card:hover {
  transform: translateY(-10px);
}

.wildlife-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.wildlife-info {
  padding: 20px;
}

.wildlife-info h3 {
  color: #2E7D32;
  font-weight: bold;
  margin-bottom: 10px;
}

.wildlife-info p {
  color: #555;
}

.wildlife-info .btn {
  background-color: #2E7D32;
  color: white;
  font-weight: bold;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.wildlife-info .btn:hover {
  background-color: #1B5E20;
}
:root{
  /* Variables For Storing Colors */
	--primary-clr: #70b730;
	--primary-dark-clr: #509710;
	--bg-clr: #f6f6f6;
	--dark-heading-clr: #212121;
	--light-heading-clr: #fefefe;
	--light-text-clr: #a9a9a9;
}

.container .section-header{
	position: relative;
	width: 100%;
	margin-bottom: 40px;
	display: flex;
	justify-content: space-between;
}
.section-header h3{
	font-size: 18px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--accent-color);
}
.section-header h1{
	font-size: calc(20px + 1.5vw);
	color: var(--dark-heading-clr);
	font-weight: 600;
	margin-top: 10px;
	text-transform: uppercase;
}
.section-header .navigation-btns{
	align-self: flex-end;
	user-select: none;
}
.section-header .navigation-btns i{
	display: inline-block;
	padding: 10px 18px;
	background-color: var(--accent-color);
	color: var(--light-heading-clr);
	font-size: 16px;
	border-radius: 5px;
	cursor: pointer;
	transition: 0.3s;
	user-select: none;
}
.section-header .navigation-btns i:hover{
	background-color: var(--primary-dark-clr);
}
.section-header .navigation-btns i:nth-child(1){
	margin-right: 5px;
}
.container .slider{
	position: relative;
	width: 100%;
	height: 400px;
	/*background-color: lightgreen;*/
	overflow: hidden;
}
.slider .slider-item{
	width: 300px;
	max-height: 400px;
	border-radius: 15px;
	position: absolute;
	top: 0;
	left: 0;
	transition: left 0.5s cubic-bezier(0.645, 0.045, 0.354, 1);
	overflow: hidden;
}
.slider-item:nth-child(1){
	left: calc(-300px + -20px);
}
.slider-item:nth-child(2){
	left: 0;
}
.slider-item:nth-child(3){
	left: calc(300px + 20px);
}
.slider-item:nth-child(4){
	left: calc((300px + 20px) * 2);
}
.slider-item:nth-child(5){
	left: calc((300px + 20px) * 3);
}
.slider-item:nth-child(6){
	left: calc((300px + 20px) * 4);
}
.slider-item:nth-child(7){
	left: calc((300px + 20px) * 5);
}
.slider-item:nth-child(8){
	left: calc((300px + 20px) * 6);
}
.slider-item img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 15px;
}
.slider-item .overlay{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 30px 20px 30px;
	background: linear-gradient(to top, rgba(0,0,0,0.9) 0%,
		        rgba(0,0,0,0.6) 10%, rgba(0,0,0,0.01) 100%);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
}
.slider-item .overlay .explore-now-btn{
	padding: 12px 20px;
	background: lightgoldenrodyellow;
	color: var(--light-heading-clr);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 25px;
	border: none;
	outline: none;
	cursor: pointer;
	transition: background-color 0.3s;
}
.slider-item .overlay .explore-now-btn:hover{
	background-color: gold;
}
.slider-item .overlay .destination-desc{
	position: relative;
}
.slider-item .overlay .destination-desc h3{
	margin-bottom: 10px;
	font-size: 24px;
	color: var(--light-heading-clr);
	text-transform: capitalize;
	font-weight: 500;
	letter-spacing: 1px;
}
.slider-item .overlay .destination-desc p{
	color: var(--light-heading-clr);
	font-size: 15px;
}
.slider-item .overlay .destination-desc p i{
	margin-right: 10px;
	font-size: 18px;
	color: var(--accent-color);
}


/* Featured National Parks Section */
#featured-parks {
  text-align: center;
  padding: 50px 0;
}

/* Park Cards */
.park-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 8px 20px --accent-color;
  transition: transform 0.4s ease-in-out, box-shadow 0.3s ease-in-out;
  margin-bottom: 30px;
}

.park-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(5, 255, 130, 0.966);
}

.park-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Park Info */
.park-info {
  padding: 20px;
}

.park-info h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: --var(--accent-color);
  margin-bottom: 10px;
}

.park-info p {
  font-size: 1rem;
  color: #ddd;
  margin-bottom: 20px;
}

/* Buttons */
.park-info .btn {
  border: 2px solid --var(--accent-color);
  color: white;
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.park-info .btn:hover {
  background-color: --var(--accent-color);
  color: black;
}
.port {
	padding: 5%;
}
.gallery-item {
	position: relative;
	box-shadow: 0 5px 10px 1px rgba(0, 0, 0, 0.5);
}
/* overlay */

.gallery-item img {
	width: 100%;
}
.gallery-item .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 20px;
	z-index: 1;
	opacity: 0;
	transition: opacity 0.5s ease;
}
.gallery-item:hover .overlay {
	opacity: 1;
}
.gallery-item .overlay h3 {
	font-size: 24px;
	margin-bottom: 10px;
}
.gallery-item .overlay p {
	font-size: 16px;
	margin-bottom: 20px;
}
.gallery-item .overlay .btn {
	font-size: 16px;
}
.modal {
	background: rgba(0, 0, 0, 0.8);
}
@media (max-width: 991px) {
	.gallery-item {
		margin-bottom: 30px;
	}
}

/* Animals Section */
.animal {
  text-align: center;
}

/* Animal Box Styling */
.animal-box {
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.animal-box img {
  transition: transform 0.5s ease-in-out;
}

.animal-box:hover img {
  transform: scale(1.1);
}

/* Content Overlay */
.animal-box .content {
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.animal-box:hover .content {
  opacity: 1;
  transform: translateY(-10px);
}

/* Button Styling */
.animal-box .btn {
  background-color: #ffffff;
  color: black;
  border-radius: 20px;
  padding: 5px 15px;
  transition: all 0.3s ease-in-out;
}

.animal-box .btn:hover {
  background-color: #70b730;
  color: white;
}
/* Downloadable Guides Section */
#download-guides {
  text-align: center;
}

/* Guide Cards */
.guide-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add shadow */
  border: 1px solid rgba(0, 0, 0, 0.1); /* Add outline */
  height: 100%; /* Ensure all boxes are of the same height */
}

.guide-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 255, 127, 0.3);
}

/* Guide Icons */
.guide-icon {
  font-size: 3rem;
  color: #00FF7F;
  margin-bottom: 15px;
}

/* Buttons */
.guide-card .btn {
  margin: 5px;
  border-radius: 5px;
}

.guide-card .btn-primary {
  background-color: #00FF7F;
  border: none;
  color: black;
}

.guide-card .btn-primary:hover {
  background-color: #009f50;
  color: white;
}

.guide-card .btn-secondary {
  background-color: #444;
  border: none;
}

.guide-card .btn-secondary:hover {
  background-color: #222;
}

/* Resize images in the downloadable guides section */
.guide-card img {
  width: 100%;
  height: auto;
  max-height: 200px; /* Adjust the max-height as needed */
  object-fit: cover;
  margin-bottom: 15px;
}
/* Sticky Sidebar */
.sticky-sidebar {
  position: sticky;
  top: 80px;
  background: #2c6e49;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.sticky-sidebar ul {
  list-style: none;
  padding: 0;
}

.sticky-sidebar ul li {
  margin-bottom: 10px;
}

.sticky-sidebar ul li a {
  text-decoration: none;
  color: white;
  font-size: 16px;
  display: block;
  padding: 8px 15px;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.sticky-sidebar ul li a:hover {
  background: #00FF7F;
  color: black;
}

/* Section Styling */
section {
  padding: 50px 0;
}
/* Sticky Sidebar */
.sticky-sidebar {
  position: sticky;
  top: 80px;
  background: #2c6e49;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.sticky-sidebar ul {
  list-style: none;
  padding: 0;
}

.sticky-sidebar ul li {
  margin-bottom: 10px;
}

.sticky-sidebar ul li a {
  text-decoration: none;
  color: white;
  font-size: 16px;
  display: block;
  padding: 8px 15px;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.sticky-sidebar ul li a:hover {
  background: #00FF7F;
  color: black;
}

/* Section Styling */
section {
  padding: 50px 0;
}



.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.breadcrumbs {
  position: relative;
  z-index: 10;
  color: white;
  font-size: 1.2rem;
}

.breadcrumbs ul {
  display: flex;
  list-style: none;
  padding: 0;
}

.breadcrumbs li {
  margin: 0 5px;
}

.breadcrumbs a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumbs a:hover {
  text-decoration: underline;
  color: var(--accent-color);
}


.banner-section {
  position: relative;
  width: 100%;
  height: 400px;
  background: url('../assets/img/heroimg.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.navigation-path {
  position: relative;
  z-index: 10;
  color: white;
  font-size: 1.2rem;
}

.navigation-path ul {
  display: flex;
  list-style: none;
  padding: 0;
}

.navigation-path li {
  margin: 0 5px;
}

.navigation-path a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.navigation-path a:hover {
  text-decoration: underline;
  color: var(--accent-color);
}

.guide-section {
  background: url('https://source.unsplash.com/1600x900/?travel,adventure') center/cover no-repeat;
  padding: 60px 0;
  color: white;
  position: relative;
}

.guide-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.guide-section h2,
.guide-section p,
.guide-section .row {
  position: relative;
  z-index: 10;
}

.guide-box {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 20px;
}

.guide-box:hover {
  background: rgba(255, 255, 255, 0.3);
}

.sec-1 {
  position: relative;
  z-index: 1;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
h2 {
  color: white;
}
p {
  margin-top: 15px;
  color: white;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.sec-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.sec-1::after {
  content: "";
  display: block;
  width: 100%;
  height: 20px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5),
    rgba(255, 255, 255, 0)
  );
  position: absolute;
  bottom: -20px;
  left: 0;
  z-index: 2;
}

.sec-1 div {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.sec-1 h1 {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  text-align: center;
}

.continents-list {
  list-style: none;
  display: flex;
  justify-content: start;
  gap: 5px;
  margin-left: 5rem;
}
.gallery-list {
  list-style: none;
  display: flex;
  justify-content: start;
  gap: 5px;
  margin-left: 5rem;
}

.continents-list li {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Alegreya Sans", sans-serif;
  display: inline;
  cursor: pointer; /* Add a pointer cursor to indicate interactivity */
  position: relative;
  
}

.continents-list li::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #4caf50; /* Green color for underline */
  bottom: -5px;
  left: 0;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.continents-list li:hover::after,
.continents-list li:active::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.gallery-list li {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Alegreya Sans", sans-serif;
  display: inline;
  cursor: pointer; /* Add a pointer cursor to indicate interactivity */
  position: relative;
}

.gallery-list li::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #4caf50; /* Green color for underline */
  bottom: -5px;
  left: 0;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.gallery-list li:hover::after,
.gallery-list li:active::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.gallery-list li:nth-child(1){
  font-weight: normal;
  font-size: 1.25rem;
  padding-top: 3px;
}

.continents-list li:nth-child(1),
.continents-list li:nth-child(9) {
  font-weight: normal;
  font-size: 1.25rem;
  padding-top: 3px;
}



.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.continents-list li span {
  margin-top: 3px;
}

.country-section {
  display: none;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: -40px;
  padding-bottom: 20px;
}

#all {
  display: block; /* Display the "All" section by default */
}

.country-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns per row */
  gap: 20px;
}

.grid-item {
  position: relative;
  overflow: hidden;
  border-radius: 25px; /* Apply border radius to the grid item */
  height: 300px; /* Set a fixed height for all grid items */
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
  border-radius: 25px; /* Apply border radius to the image */
}

.grid-item p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 10px;
  color: white;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem; /* Increase font size */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Add text shadow for better visibility */
}

.grid-item p strong {
  font-size: 1.5rem; /* Increase font size for the park name */
  margin-bottom: 10px; /* Add margin below the park name */
}

.grid-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  /* Apply border radius to the overlay */
}

.grid-item:hover img {
  transform: scale(1.1);
  filter: blur(2px); /* Apply blur effect on hover */
  opacity: 0.7; /* Add opacity to the image on hover */
}

.grid-item:hover p,
.grid-item:hover::before {
  opacity: 1;
}

.sec-3 {
  margin: 0;
  padding: 0;
  width: 100%;
  color: black;
  align-items: center;
  background: linear-gradient(
    180deg,
    rgb(236, 213, 232) 0%,
    rgb(50, 112, 118) 100%
  );
}
.section-11 {
  
  background-size: cover;
  padding: 20px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
.signup-main{
  background-image: url('../images/documentaries/jungle\ glass.avif');
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;

}
.signup-container {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  max-width: 400px;
  width: 100%;
  text-align: center;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.signup-title {
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Adjust the values as needed */
}

.signup-input, .signup-select, .signup-button {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: none;
  border-radius: 8px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.2);
  color: black;
}

.signup-input:focus, .signup-select:focus {
  outline: 2px solid #4CAF50;
}

.signup-button {
  background-color: #4CAF50;
  color: black;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.signup-button:hover {
  background-color: #45a049;
}

.signup-checkbox-container {
  display: flex;
  align-items: center;
}

.signup-checkbox {
  margin-right: 10px;
}

.signup-link {
  color: #4CAF50;
  text-decoration: none;
}

.signup-link:hover {
  text-decoration: underline;
}

swiper-container {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

swiper-slide {
  background-position: center;
  background-size: cover;
  height: 300px;
  width: 300px;
}

swiper-slide img {
  display: block;
  width: 100%;
}

/* Resize images in the downloadable guides section */
/* Resize images in the downloadable guides section */
.guide-card img {
  width: 100%;
  height: auto;
  max-height: 300px;
   /* Adjust the max-height as needed */
  object-fit: cover;
  margin-bottom: 15px;
}

.nature-intro {
  position: relative;
  background: url('../assets/img/triwuet.jpg') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 100px 0;
}
.nature-intro::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  
}
.intro-box {
  position: relative;
  max-width: 1400px;
  margin: auto;
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(5px);
}
.highlight-text {
  font-weight: bold;
  color: var(--accent-color);
}
.container-np {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px;
}
.heading-primary {
  color: #28a745;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
}
.heading-secondary {
  color: #28a745;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 32px;
}
.paragraph {
  text-align: center;
  margin-top: 16px;
  color: darkslategray;
}
.grid-np {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}
@media (min-width: 768px) {
  .grid-np {
      grid-template-columns: repeat(3, 1fr);
  }
}
.card-np {
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.card-np:hover {
  box-shadow: 0 4px 6px rgba(0, 255, 0, 0.2);
  transform: translateY(-5px) scale(1.05);
}
.card-icon {
  font-size: 2rem;
}
.card-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-top: 16px;
}
.card-text {
  margin-top: 8px;
  color: darkslategray;
}
.unique-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}
.unique-title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
}
.unique-subtitle {
  text-align: center;
  color: #718096;
  margin-bottom: 3rem;
}
.unique-team-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.unique-team-card {
 background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  width: 16rem;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.unique-team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.unique-team-card img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  border-radius: 0.5rem 0.5rem 0 0;
  margin-bottom: 1rem;
  transition: transform 0.3s ease-in-out;
}
.unique-team-card:hover img {
  transform: scale(1.1);
}
.unique-team-card h2 {
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.5rem;
}
.unique-team-card p {
  text-align: center;
  color: #718096;
}
.unique-team-card h2{
  color: black;
}
.contact-hub {
  background: url('../assets/img/map.PNG') no-repeat center center/cover;
  color: white;
  padding: 80px 0;
  position: relative;
}
.contact-hub::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.contact-box {
  position: relative;
  max-width: 900px;
  margin: auto;
  text-align: center;
  padding: 30px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  backdrop-filter: blur(5px);
}
.info-card {
  padding: 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  transition: 0.3s;
}
.info-card:hover {
  background: rgba(255, 255, 255, 0.4);
}
.info-icon {
  font-size: 28px;
  color: var(--accent-color);
}
.touch-btn {
  display: inline-block;
  background: var(--accent-color);
  color: white;
  padding: 12px 20px;
  margin-top: 20px;
  border-radius: 6px;
  font-weight: bold;
  transition: 0.3s;
  text-decoration: none;
}
.touch-btn:hover {
  background: var(--background-color);
}
.custom-banner {
  position: relative;
  width: 100%;
  height: 350px; /* Adjust height as needed */
  background: url('../assets/img/npbanner.webp') center/cover no-repeat; /* Replace with your image */
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay */
}

.breadcrumb-trail {
  position: relative;
  z-index: 2;
  text-align: center;
}

.breadcrumb-trail ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.breadcrumb-trail li {
  display: inline;
  color: white;
  font-size: 18px;
}

.breadcrumb-trail a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.breadcrumb-trail a:hover {
  color: var(--accent-color);
}

.active-page a {
  color: var(--accent-color);
  pointer-events: none;
  font-weight: bold;
}
.footer {
    color: var(--default-color);
    font-size: 14px;
    position: relative;
}
.banner-wrapper {
  position: relative;
  background: url('../assets/img/nationalparks_smallbanner_sized.jpg') no-repeat center center/cover;
  height: 400px; /* Adjust as needed */
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for readability */
}

.trail-navigation {
  position: relative;
  z-index: 2;
  text-align: center;
}

.trail-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.trail-navigation ul li {
  display: inline;
  color: white;
  font-size: 18px;
}

.trail-navigation ul li a {
  color: white; /* Gold color for links */
  text-decoration: none;
}

.trail-navigation ul li a:hover {
  text-decoration: underline;
}

.current-location a {
  color: var(--accent-color); /* Orange color for active page */
  font-weight: bold;
}
.form-label {
  margin-bottom: .5rem;
  color: black;
}


/* Breadcrumb Section */
.breadcrumb-area {
  position: relative;
  background: url('../assets/img/contact.jpg') no-repeat center center/cover;
  color: white;
  padding: 180px 0;
  text-align: center;
  height: 400px;
}

.breadcrumb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.breadcrumb h1 {
  position: relative;
  z-index: 2;
  font-size: 2.5rem;
  font-weight: bold;
}

.breadcrumb-item a {
  color: var(--accent-color);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: white;
}

/* Contact Section */
.custom-contact-area {
  position: relative;
  color: white;
  padding: 80px 0;
}

.overlay-style {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-color);
}
.shitter-container {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.shitter{
  background-position: center;
  background-size: cover;
  width: 75%;
  height: 100%;
}

.shitter img {
  display: block;
  width: 100%;
  height: 400px;
}

.wiper-container {
  width: 400px;
  height: 400px;
}

.wiper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  width: 100%; /* Ensure the wiper takes the full width of its container */
  height: 100%; /* Ensure the wiper takes the full height of its container */
}

.wiper img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure the image covers the entire area without distortion */
  border-radius: 18px; /* Apply border radius to the image */
}

swiper-slide:nth-child(1n) {
  background-color: rgb(206, 17, 17);
}

swiper-slide:nth-child(2n) {
  background-color: rgb(0, 140, 255);
}

swiper-slide:nth-child(3n) {
  background-color: rgb(10, 184, 111);
}

swiper-slide:nth-child(4n) {
  background-color: rgb(211, 122, 7);
}

swiper-slide:nth-child(5n) {
  background-color: rgb(118, 163, 12);
}
#park-image, #park-wildlife {
  background-image: url("../images/documentaries/navigation.svg")!important;
  border-radius: 10px; /* Add border radius for better aesthetics */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add border shadow */
  padding: 20px; /* Add padding for better spacing */
  margin-bottom: 20px; /* Add margin at the bottom for spacing */
}

.newsletter-section {
  background-color: var(--accent-color) !important;
  margin-top: 50px;
  color: white;
  padding: 50px;
  position: relative;
  text-align: left;
}
.newsletter-section img {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  max-width: 40%;
}

.newsletter-box {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
}
