* {
  margin: 0 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Sans Serif Collection", serif;
  line-height: 1.5;
   cursor: default;
}
.container a{
  cursor:pointer;
}
.image-container{
  width: 800px;
  overflow: hidden;
  position: relative;
  align-items: center;
  align-content: center;
  justify-content: center;
  /* Use display flex to center the wrapper itself if needed */
  max-height: 600px;
  /* Scaling Logic */
  /* Background Logic */
  background-color: rgba(0, 0, 0, 0.1); /* Your low-opacity color */
  border-radius: 12px;
}
.image-container img{

  scroll-snap-align: center;
  flex-shrink: 0;

  /* Sizing Logic */
  width: 100%;
  height: auto; /* Force image height to container height */
  max-height: 300px;

  /* Scaling Logic */
  object-fit: contain; /* Scale down to fit while keeping ratio */

  /* Background Logic */
  background-color: rgba(0, 0, 0, 0.1); /* Your low-opacity color */
  border-radius: 12px;
}
.ol-styled {
  text-align: left;
  color: black;
  font-size: 1.4rem;
  padding-left: min(6em,5%);
  padding-right: min(6em,5%);
  text-justify: auto;
  list-style-type: none;
}
.largeleftcenteredtext {
  text-align: center;
  color: black;
  font-size: 1.4rem;
  padding-left: min(6em,5%);
  padding-right: min(6em,5%);
  text-justify: auto;
  list-style-type: none;
}
.p-styled-right{
  text-indent: 0;
  margin-top: -20px;
  color: black;
  font-size: 1.4rem;
  padding-left: min(1em,2%);
  padding-right: min(1em,2%);
  text-align: left;
}

.ul-styled {
  text-align: left;
  color: black;
  font-size: 1.4rem;
  padding-left: min(6em,5%);
  padding-right: min(6em,5%);
  text-justify: auto;
}

.image_links{
  align-content: center;
  text-align: center;
  cursor:pointer;
}
hr.thin-line{
  height: 2px; /* Sets the thickness */
  background-color: #048c7f; /* Sets the color */
  border: none; /* Removes the default border */
  width: 50vw;
  margin: 2rem;
  border-radius: 2px;
}

hr.thick-line {
  display:block;
  height: 5px; /* Sets the thickness */
  background-color: #048c7f; /* Sets the color */
  border: none; /* Removes the default border */
  width: 80vw;
  margin: auto;
  border-radius: 5px;
}

.scroll-container {
  width: 800px;
  overflow: hidden;
  position: relative;
  /* Use display flex to center the wrapper itself if needed */
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  max-height: 800px;
}

.image-wrapper {
  display: flex;
  width: 100%;
  height: 100%; /* Ensure wrapper fills the 600px container */
  overflow-x: auto;
  /* Snap to the center of the container */
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  /* Hide scrollbar */
  scrollbar-width: none;
}

.image-wrapper2 {
  display: flex;
  width: 100%;
  height: 100%; /* Ensure wrapper fills the 600px container */
  overflow-x: auto;
  /* Snap to the center of the container */
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  /* Hide scrollbar */
  scrollbar-width: none;
}
.image-wrapper2 img {
  scroll-snap-align: center;
  flex-shrink: 0;

  /* Sizing Logic */
  width: 100%;
  height: 100%; /* Force image height to container height */
  max-height: 350px;

  /* Scaling Logic */
  object-fit: scale-down; /* Scale down to fit while keeping ratio */

  /* Background Logic */
  background-color: rgba(0, 0, 0, 0.1); /* Your low-opacity color */
  border-radius: 12px;
}

.image-wrapper::-webkit-scrollbar { display: none; }
.image-wrapper2::-webkit-scrollbar { display: none; }

.image-wrapper img {
  scroll-snap-align: center;
  flex-shrink: 0;

  /* Sizing Logic */
  width: 100%;
  height: auto; /* Force image height to container height */
  max-height: 600px;

  /* Scaling Logic */
  object-fit: scale-down; /* Scale down to fit while keeping ratio */

  /* Background Logic */
  background-color: rgba(0, 0, 0, 0.1); /* Your low-opacity color */

  margin-right: 20px;
  border-radius: 12px;
}

.image-wrapper img:last-child {
  margin-right: 0;
}
.image-wrapper2 img:last-child {
  margin-right: 0;
}

.video-container {
  display: flex;             /* Enables Flexbox */
  justify-content: center;   /* Centers horizontally */
  align-items: center;       /* Centers vertically (if container has height) */
  padding: 20px;             /* Adds space around the video */
}
.centered-title{
  text-align:center;
  font-size: clamp(1.5rem, calc(6vw + 1rem), 4rem);
  color: #048c7f;
  padding: 2px;
  margin-top: 20px;
}

iframe {
  width: 560px;              /* Set your desired width */
  height: 315px;             /* Set your desired height */
  border: 4px solid #fff;    /* A clean white border */
  border-radius: 15px;       /* Smooth, rounded corners */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); /* Adds depth with a soft shadow */
  cursor:pointer;
}


/* Define the scrolling animation */
@keyframes autoscroll {
  0% {
    /* Start position: 0% horizontal translation */
    transform: translateX(0);
  }
  100% {
    /* End position: Translate the width of the original image set to create a seamless loop */
    /* You may need to adjust this percentage based on image count/width */
    transform: translateX(-50%);
  }
}
.body {
  background-color: #679c9c;
  background-image: linear-gradient(117deg,rgba(103, 156, 156, 1) 0%, rgba(212, 212, 212, 1) 100%);
  display: flex;
  flex-direction:column;
  min-height:100vh;
  justify-content: center;
  align-items: center;
  align-content:center;
}
.footer-styled {
  background-color: #048c7f;
  color: white;
  margin-top: auto;          /* 5. Push the footer to the bottom, filling the remaining space with margin */
  /* Optional: add some styling to make the footer visible */
  padding-left: min(6em,8%);
  padding-right: min(6em,8%);;
  text-align: center;
  width:100vw;
  font-family: Roboto, sans-serif;
  font-size: clamp(1rem, calc(3vw + 1rem), 2rem);
}
.pagination {
  display: flex;
  color: #048c7f;
  justify-content: center;
  list-style: none; /* remove list bullets */
  padding: 0;
  text-indent: 0;
}
.pagination a {
  text-decoration: none;
  color: #333;
  padding: 8px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.pagination a:hover {
  background-color: #048c7f;
  color: white;
  border-color: #048c7f;
  cursor:pointer;
}
.container {
  display: grid; /* Enables grid layout */
  width: 90%;
  max-width: 1100px;
  margin: auto; /* Center the container on the page */
  grid-template-columns: 1fr 1fr; /* Creates two columns, each taking 1 fractional unit (equal width) */
  padding: clamp(1rem, calc(1vw + 2rem), 2%);
  background-color: #ffffff; /* Clean white background */
  border-radius: 12px; /* Soft, rounded corners */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); /* Soft, subtle shadow for depth */
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* Smooth transitions */
  /* Typography */
  color: #333;
  line-height: 1.6;
  justify-content: center;
  align-items:center;
}

.left-div, .right-div {
  box-sizing: border-box;
}

.left-div {
  display: flex;
  justify-content: center; /* Horizontal centering */
  align-items: center;     /* Vertical centering */
  height: auto;            /* Ensure div has height to center within */
  width: clamp(280px, 50vw, 500px);
  padding: clamp(10px, calc(1vw + 2rem), 5%);
}
.left-div img{
            aspect-ratio: inherit;
            height:auto;
            object-fit: scale-down;
            margin: 0 auto;
            max-width: 100%;
}
.right-div {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  justify-content: center;
  align-items: center;
  text-align: left;
  padding: clamp(10px, calc(1vw + 2rem), 5%);
}

.pagination li a {
  display: block; /* let links fill the list item */
  padding: 8px 12px;
  text-decoration: none;
  border: 2px solid black;
  color: black;
  margin: 0 4px;
  border-radius: 5px; /* add rounded borders */
}

.a-styled{
  text-decoration: none;
  text-indent: 0;
  display: inline-block;
  width: 100%;
  max-width: 95%;
  background-color: #CC5500;
  font-size: 1.2rem;
  height: auto;
  color: white; /* Text color */
  border-radius: 12px; /* Rounds the corners of the button */
  font-weight: bold; /* Makes the text bold */
  padding: 2px 6px 2px 6px;
  border-top: 1px solid #CCCCCC;
  border-right: 1px solid #333333;
  border-bottom: 1px solid #333333;
  border-left: 1px solid #CCCCCC;
  margin-top: 10px;
  align-items: center;
  text-align: center;
  justify-content: center;
  margin-bottom: 10px;
}
.a-styled:hover{
  color: #000000;
  opacity: 0.8;
  transition: all 0.3s ease;
  cursor:pointer;
}
.h1-styled {
  font-size: clamp(1.4rem, calc(1vw + 2rem), 3.2rem);
  text-align: center;
  margin-bottom: 10px;
  text-indent: 0;
}
.h2-styled {
  font-size: clamp(1.4rem, calc(1vw + 2rem), 3.5rem);
  color: #048c7f;
  text-align: left;
  justify-content: left;
  align-content:start;
  padding-left: min(3em,5%);
  padding-right: min(3em,5%);
  font-family:  Roboto, sans-serif;
  text-indent: 0;
 }
.h2-styled2 {
  font-size: clamp(1.4rem, calc(1vw + 2rem), 3.5rem);
  color: #048c7f;
  text-align: left;
  justify-content: left;
  align-content:start;
  padding-left: min(3em,5%);
  padding-right: min(3em,5%);
  font-family:  Roboto, sans-serif;
  text-indent: 0;
}
.h3-styled {
  color: #048c7f;
  font-size: clamp(1.4rem, calc(1vw + .75rem), 1.8rem);
  text-align: left;
  padding-left: min(5em,6%);
  padding-right: min(5em,6%);
  text-indent: 0;
}
.p-styled {
 color: black;
  font-size: clamp(1rem, calc(1vw + 1rem), 1.2rem);
}
.textbody {
  display: flex;
  flex-direction: column;
  width: 90%;
  max-width: 1100px;
  margin: auto; /* Center the container on the page */
  text-align: left;
  align-items: center;
  justify-content: center;
  align-content:center;
  font-family:  Roboto, sans-serif;
  /* Modern Aesthetics */
  background-color: #ffffff; /* Clean white background */
  border-radius: 12px; /* Soft, rounded corners */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); /* Soft, subtle shadow for depth */
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* Smooth transitions */
  padding-left: min(8em,2%);
  padding-top: min(1em, 2%);
  padding-bottom: min(1em, 2%);
  padding-right: min(8em,2%);
  /* Typography */
  color: #333;
  line-height: 1.6;
}
.textbodyleftaligned{
  display: flex;
  flex-direction: column;
  width: 90%;
  max-width: 1100px;
  text-align: start;
  align-items: start;
  justify-content: left;
  align-content: start;
  font-family:  Roboto, sans-serif;
  /* Modern Aesthetics */
  line-height: 1.6;
}
.navbar {
  margin: 0;
  background: #000000;
  display: flex;
  justify-content: space-around;
  width: 100vw;
  align-items: center;
  font-size: 1.2rem;
  top: 0;
  z-index: 999;
}

.navbar_container {
  display: flex;
  justify-content: space-between;
  z-index: 1;
  max-width: 1300px;
  height:auto;
  margin: 0 auto;
  padding: 0 50px;
}

#navbar_logo {
  background-color: white;
  background-image: linear-gradient(to top, #CC5500 0%, #cccccc 100%);
  background-size: 100%;
  text-align:center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  font-size: 1.6rem;
  text-indent:0;
  padding-right: 80px;
}

.fa-gem {
  margin-right: 0.5rem;
}

.navbar_menu {
  display:flex;
  align-items:center;
  list-style: none;
  text-align: center;
}
.navbar_item{
  height: 80px;
}
.navbar_links {
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0 .5rem;
  height: 100%;
  transition: all 0.3s ease;
}
.navbar_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
  width: 100%;
}
.navbar_links:hover{
  color: #c03221;
  transition: all 0.3s ease;
  cursor:pointer;
}
@media screen and (max-width: 960px) {
  .ol-styled{
    text-indent: 0;
  }
  .ul-styled{
    text-indent: 0;
  }
  .a-styled{
    height: auto;
    max-width: 90vw;
  }
  .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100vw;
    justify-content: center;
    justify-items: center;
    height:auto;
  }
  hr.thin-line{
    justify-content: left;
  }

  .right-div {
    text-align: center;
  }
  .centered-title{
    font-size:1.4rem;
    padding: 5px;
    margin-top: 10px;
    line-height: 2.5;
  }
  iframe {
    max-width: 100%;           /* Prevents the video from overflowing the screen */
    aspect-ratio: 16 / 9;      /* Keeps the video shape perfect on all devices */
    height: auto;              /* Allows height to scale with width */
  }
  .navbar_container {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: space-between;
    justify-items: center;
    align-items: center;
    width: 100%;
    position: relative; /* Add this so the menu attaches to the bottom of this div */
    padding: 0;
    margin: 0 auto;
  }
  .scroll-container {
    width: 80vw;       /* Make it take up more screen width on mobile */
    height: 250px;     /* Reduce height so images aren't huge on small screens */
  }
  .image-container{
    width:80vw;
    height: 250px;
  }
  .image-wrapper img {
    height: 100%;      /* Respects the new 250px container height */
    max-width: 85vw;   /* Prevents a single wide image from being wider than the phone */
  }
  .image_wrapper2 img {
    max-width: 85vw;       /* Make it take up more screen width on mobile */
    height: 100%;
  }
    .image_links img{
      display: block;   /* Images are inline by default; block allows auto-margins */
      margin: 0 auto;   /* Centers the image in its container */
      max-width: 90%;
      width: auto;
    }
    .left-div img{
      display: block;   /* Images are inline by default; block allows auto-margins */
      margin: 0 auto;   /* Centers the image in its container */
      justify-content: center;
    }

    .navbar_menu {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: -1000px;
      opacity: 0; /* Change from 1 to 0 */
      transition: all 0.5s ease;
      width: 100%;
      z-index: -1;
    }

    .navbar_menu.active {
      display: flex;
      background: #131313;
      top: 100%;
      opacity: 1;
      transition: all 0.5s ease;
      z-index: 99;
      font-size: 1.6rem;
      height: auto; /* Grows to fit all your links */
      padding-bottom: 2rem; /* Adds space at the bottom so it looks balanced */
      overflow-y: visible; /* Ensures nothing is clipped */
    }

    .navbar_toggle .bar {
      width: 25px;
      height: 3px;
      margin: 5px auto;
      transition: all 0.3s ease-in-out;
      background: #fff;
      display: block;
      cursor: pointer;
    }

    #navbar_logo {
      font-size: 1.3rem;
      padding: 0 0 0 0;
      text-align: center;
    }

    #mobile-menu.is-active .bar:nth-child(2) {
      opacity: 0;
    }

    #mobile-menu.is-active .bar:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }

    #mobile-menu.is-active .bar:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }

    .navbar_item {
      width: 100%;

    }

    .navbar_links {
      text-align: center;
      padding: 1rem;
      width: 100%;

    }
  }
