body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #fff;
}

/* Section Styling */
.section {
  width: 100%;
  text-align: center;
  padding: 30px; /* Increased padding */
}

.section1 {
  width: 100%;
  height: auto;
  background: url('https://pbs.twimg.com/media/FKPI24QacAMEBx6.jpg:large') no-repeat center center fixed;
  background-size: cover;
  background-attachment: fixed;
}

.section2 {
  width: 100%;
  height: auto;
  margin-top: -100px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(31, 50, 44) 100px);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.section2.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.section-divider {
  border: 0;
  height: auto;
  background: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0, .5) 100%);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
  margin: 0;
}

/* Test */

.section2 {
  width: 100%;
  height: auto;
  margin-top: -100px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(31, 50, 44) 100px);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.section2.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.section-divider {
  border: 0;
  height: auto;
  background: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0, .5) 100%);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
  margin: 0;
}

/* Header Styling */
.cad_header {
  position: relative;
  display: inline-block;
  text-align: center;
  width: 100%;
}

.cad_headerImg img {
  display: block;
  margin: 0 auto;
  max-width: auto;
}

.cad_headerTitle h1 {
  font-size: 3.5em; /* Slightly larger font size */
  margin: 15px 0; /* Increased margin */
  text-shadow: 2px 2px #000;
  display: inline-block;
  padding: 10px 15px; /* Increased padding */
  flex-wrap: wrap;
}

.cad_headerContent {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 30px 0; /* Increased margin */
  flex-wrap: wrap;
}

/* Stats Styling */
.cad_Stats {
  display: flex;
  justify-content: space-around;
  width: 50%;
  max-width: 1000px; /* Increased max-width */
}

.cad_StatsItem {
  text-align: center;
  margin: 30px; /* Increased margin */
}

.cad_StatsItem i {
  font-size: 3em; /* Slightly larger icon size */
  margin-bottom: 10px; /* Increased margin */
  padding-bottom: 25px; /* Adds space below the icon */
}

/* Button Styling */
.cad_ButtonsExtra {
  margin-top: 30px; /* Increased margin */
}

.cad_Buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap; /* Ensure buttons wrap on smaller screens */
}

.cad_ButtonsItem {
  margin: 20px; /* Increased margin */
}

.cad_ButtonsItem a {
  display: block; /* Make entire area clickable */
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.cad_ButtonsItem a h1 {
  border: 2px solid #fff;
  padding: 12px 25px; /* Increased padding */
  border-radius: 10px;
  transition: background-color 0.3s, color 0.3s;
  font-size: 1.8em; /* Slightly larger font size */
}

.cad_ButtonsItem a:hover h1 {
  background-color: #fff;
  color: #000;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .cad_headerTitle h1 {
    font-size: 2.5em; /* Adjusted font size for tablets */
  }

  .cad_Stats {
    flex-direction: column; /* Stack stats vertically on smaller screens */
    align-items: center;
  }

  .cad_StatsItem {
    margin: 15px 0; /* Increased margin */
  }

  .cad_ButtonsItem a h1 {
    padding: 12px 20px; /* Increased padding */
    font-size: 1.5em; /* Slightly larger font size */
  }
}

@media (max-width: 480px) {
  .cad_headerTitle h1 {
    font-size: 2em; /* Further reduce font size for mobile */
  }

  .cad_StatsItem i {
    font-size: 2em; /* Slightly larger icon size */
  }

  .cad_ButtonsItem a h1 {
    padding: 10px 15px; /* Increased padding */
    font-size: 1.3em; /* Slightly larger font size */
  }
}

/* Our Goal section */
/* Hero Section */
.hero {
  width: 100%;
  padding: 60px 30px; /* Increased padding */
  background-color: #131e1a; /* Light background color */
  text-align: center;
}

.hero-container {
  max-width: 1000px; /* Container width */
  margin: 0 auto;
}

.hero-title {
  font-size: 3em; /* Font size for the title */
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffffff; /* Dark color for text */
}

.hero-text {
  font-size: 1.1em; /* Slightly larger text */
  color: #ffffff; /* Gray color for text */
  margin-bottom: 30px;
  line-height: 1.5; /* Improved readability */
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px; /* Space between buttons */
}

.btn {
  display: inline-block;
  padding: 15px 30px; /* Button padding */
  border-radius: 5px; /* Rounded corners */
  font-size: 1.1em; /* Slightly larger text */
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.btn-learn-more {
  background-color: #f39c12; /* Orange color */
  color: #fff; /* White text */
}

.btn-meet-team {
  background-color: #34495e; /* Dark blue color */
  color: #fff; /* White text */
}

.btn:hover {
  background-color: #333; /* Darken background on hover */
  color: #fff; /* Ensure text remains white on hover */
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2em;
  }

  .hero-text {
    font-size: 1em;
  }

  .btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.5em;
  }

  .hero-text {
    font-size: 0.9em;
  }

  .hero-buttons {
    flex-direction: column; /* Stack buttons vertically on small screens */
  }

  .btn {
    width: 100%;
    padding: 10px 0; /* Make buttons full-width */
    margin-bottom: 10px;
  }
}


/* Info About US! section */
.provide {
  padding: 75px 30px; /* Increased padding */
  text-align: center;
}

.provide_header h1 {
  font-size: 3em; /* Slightly larger font size */
  margin-bottom: 25px; /* Increased margin */
  color: #ffffff;
  text-shadow: 2px 2px #000000;
}

.provide_header .color-main {
  color: #ffffff;
}

.provide_content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.provide_contentInner {
  margin: 15px; /* Increased margin */
  padding: 25px; /* Increased padding */
  border: 1px solid #040a07;
  background-color: rgba(20, 35, 26, 0.8);
  border-radius: 18px; /* Slightly increased border-radius */
  width: 50%; /* Slightly increased width */
  max-width: 350px; /* Increased max-width */
  box-sizing: border-box;
  transition: background-color 0.3s;
}

.provide_contentInner:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

.provide_contentInner h2 {
  font-size: 1.8em; /* Slightly larger font size */
  margin-top: 15px; /* Increased margin */
}

.provide_contentInner h3 {
  font-size: 1.1em; /* Slightly larger font size */
  margin-top: 15px; /* Increased margin */
}

.provide_contentInner i {
  font-size: 3.5em; /* Slightly larger icon size */
  margin-bottom: 15px; /* Increased margin */
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
  .provide_header h1 {
    font-size: 2.5em; /* Slightly larger font size for tablets */
  }

  .provide_contentInner {
    width: 95%; /* Increased width for better coverage */
  }

  .provide_contentInner h2 {
    font-size: 1.5em; /* Slightly larger font size */
  }

  .provide_contentInner h3 {
    font-size: 1em; /* Slightly larger font size */
  }

  .provide_contentInner i {
    font-size: 3em; /* Slightly larger icon size */
  }
}

@media (max-width: 480px) {
  .provide_header h1 {
    font-size: 2em; /* Slightly larger font size for mobile */
  }

  .provide_contentInner {
    width: 100%;
    margin: 15px 0; /* Increased margin */
  }

  .provide_contentInner h2 {
    font-size: 1.3em; /* Slightly larger font size */
  }

  .provide_contentInner h3 {
    font-size: 0.9em; /* Slightly larger font size */
  }

  .provide_contentInner i {
    font-size: 2.5em; /* Slightly larger icon size */
  }
}







/* Banner section */
.banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: url('https://d1ldvf68ux039x.cloudfront.net/thumbs/photos/1504/1891916/1000w_q95.jpg') no-repeat center center;
  background-size: cover;
  position: relative;
  padding: 40px;
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  border-radius: 10px;
  z-index: 0;
}

.banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 80%;
}

.banner-content h2 {
  font-size: 2em;
  margin-bottom: 10px;
  color: #d4af37;
  text-shadow: 2px 2px #000;
}

.banner-content p {
  font-size: 1.2em;
  margin-bottom: 20px;
  line-height: 1.5;
}

.banner-content .cta-button {
  background-color: #d4af37;
  color: #000;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s, transform 0.3s;
  font-weight: bold;
}

.banner-content .cta-button:hover {
  background-color: #fff;
  color: #000;
  transform: scale(1.05);
}

.banner-image img {
  max-width: 50%;
  height: auto;
  margin-top: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
  background-color: #282e38;
  padding: 20px 0;
  text-align: center;
  color: #fff;
}

.footer h3 {
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icon {
  color: #fff;
  font-size: 1.5em;
  transition: color 0.3s;
}

.social-icon:hover {
  color: #d4af37;
}

/* Fade down dropdown effect */
.wsmenu > .wsmenu-list > li > ul.sub-menu {
  opacity: 0;
  visibility: hidden;
  transform-origin: 0% 0%;
  transition: transform 0.3s, opacity 0.3s;
  transform-style: preserve-3d;
  transform: rotateX(-75deg);
}

.wsmenu > .wsmenu-list > li:hover > ul.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: rotateX(0deg);
}

.wsmenu > .wsmenu-list > li > ul.sub-menu > li > ul.sub-menu {
  opacity: 0;
  visibility: hidden;
  transform-style: preserve-3d;
  transform: rotateX(-75deg);
}

.wsmenu > .wsmenu-list > li > ul.sub-menu > li:hover > ul.sub-menu {
  opacity: 1;
  visibility: visible;
  transform-origin: 0% 0%;
  transition: transform 0.4s, opacity 0.4s;
  transform: rotateX(0deg);
}

.wsmenu > .wsmenu-list > li > ul.sub-menu > li > ul.sub-menu > li > ul.sub-menu {
  opacity: 0;
  visibility: hidden;
  transform-origin: 0% 0%;
  transition: transform 0.4s, opacity 0.4s;
  transform-style: preserve-3d;
  transform: rotateX(-75deg);
}

.wsmenu > .wsmenu-list > li > ul.sub-menu > li > ul.sub-menu > li:hover > ul.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: rotateX(0deg);
}

.wsmenu > .wsmenu-list > li > .wsmegamenu {
  opacity: 0;
  visibility: hidden;
  transform-origin: 0% 0%;
  transition: transform 0.3s, opacity 0.3s;
  transform-style: preserve-3d;
  transform: rotateX(-75deg);
}

.wsmenu > .wsmenu-list > li:hover > .wsmegamenu {
  opacity: 1;
  visibility: visible;
  transform: rotateX(0deg);
}

.header {
  background-color: rgba(0, 0, 0, 0);
  box-shadow: none;
  z-index: 999;
}

.section1 {
  margin-top: -100px;
}

.cad_header {
  margin-top: 75px;
}

.BecomeARanger-Container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 50px 20px;
}

.BecomeARanger-Content-A, .BecomeARanger-Content-B {
    display: flex;
    align-items: center;
    gap: 20px;
}

.BecomeARanger-Content-A {
    flex-direction: row;
}

.BecomeARanger-Content-B {
    flex-direction: row-reverse;
}

.BecomeARanger-Text-Container-A, .BecomeARanger-Text-B {
    max-width: 50%;
}

.homePic {
    width: 50%;
    border-radius: 10px;
}

.Home-List-Container {
    list-style-type: none;
    padding: 0;
}

.Home-List {
    margin: 10px 0;
}

.CustomButton {
    background-color: #d4af37;
    color: #000;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    font-weight: bold;
    cursor: pointer;
}

.CustomButton:hover {
    background-color: #fff;
    color: #000;
}