.hero-section {
  background: url("../img/welcome_page_bg_small.jpg") no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  height: 100vh; /* This makes the section take up 100% of the viewport height */
  display: flex;
  align-items: center; /* Vertically centers the content */
  justify-content: center; /* Horizontally centers the content */
  position: relative; /* Needed for potential overlays/text positioning */
}

/* Optional: Add an overlay for better text readability */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* Dark overlay */
  z-index: 1;
}

/* Ensure your content is above the overlay */
.hero-section .container {
  z-index: 2;
}

.hero-section2 {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  height: 100vh; /* This makes the section take up 100% of the viewport height */
  display: flex;
  align-items: center; /* Vertically centers the content */
  justify-content: center; /* Horizontally centers the content */
  position: relative; /* Needed for potential overlays/text positioning */
}
/* Ensure your content is above the overlay */
.hero-section2 .container {
  z-index: 2;
}

#page-loader {
  position: fixed; /* Fixes the overlay to the viewport */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff; /* A white or semi-transparent background */
  z-index: 9999; /* Ensures it's on top of all other content */
  display: flex; /* Uses flexbox for centering */
  justify-content: center; /* Centers horizontally */
  align-items: center; /* Centers vertically */
  /* Optional: Add a smooth transition for hiding */
  opacity: 1;
  transition: opacity 0.5s ease-out;
}
#page-loader.fade-out {
  opacity: 0;
}
#page-loader.hidden {
  display: none;
}
.watermarked-container {
  position: relative; /* Container acts as the positioning context */
  display: inline-block; /* Ensures container wraps image tightly */
}

.watermark-text-1 {
  position: absolute;
  top: 95%; /* Center vertically */
  left: 50%; /* Center horizontally */
  transform: translate(-50%, -50%); /* Fine-tune centering */
  color: rgba(255, 255, 255, 0.7); /* Transparent white text */
  font-size: 2vw;
  /* font-size: 30px; */
  font-weight: bold;
  pointer-events: none; /* Allows clicks to "pass through" the watermark to the image */
  /* Add more styling (font, shadow, rotate, etc.) as needed */
}

.watermark-text-2 {
  position: absolute;
  top: 95%; /* Center vertically */
  left: 50%; /* Center horizontally */
  transform: translate(-50%, -50%); /* Fine-tune centering */
  color: rgba(255, 255, 255, 0.7); /* Transparent white text */
  font-size: 30px;
  font-weight: bold;
  pointer-events: none; /* Allows clicks to "pass through" the watermark to the image */
  /* Add more styling (font, shadow, rotate, etc.) as needed */
}