.carousel-inner {
    position: relative; /* Ensures positioning context for overlay */
}

.carousel-item .box-table {
    position: relative; /* Keeps the content positioned correctly */
    z-index: 2; /* Ensures content appears above overlay */
}

.carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Black color with 50% opacity */
    z-index: 1; /* Places overlay beneath the content */
}

.bg-cover {
    background-size: cover;
    background-position: center;
}

.content {
    position: relative; /* To ensure z-index positioning of text */
    z-index: 2; /* Ensures text appears above the overlay */
    color: white; /* Optional: Makes sure the text color is visible */
}
.join-us {
    position: relative; /* Ensures positioning context for overlay */
}

.join-us::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Black overlay with 50% opacity */
    z-index: 1; /* Places overlay beneath the content */
}

.join-us .container {
    position: relative; /* Keeps the content positioned correctly */
    z-index: 2; /* Ensures content appears above the overlay */
    color: white; /* Ensures text color is readable */
}

.bg-fixed {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}
.blog-items h4{
    font-size: 20px;
}

.widget-categories-box{
    position: sticky;
    top: 0;
    height: auto; /* adjust the height as needed */
    overflow-y: auto; /* add scrollbar if content exceeds height */
  }
.checkbox-container {
  display: flex;
  align-items: flex-start;
}
.checkbox-container label{
    color: #000;
}
.FirstCheck {
  margin-top: -0.5rem;
  margin-right: 0.5rem;
}

.SecondCheck {
  margin-top: -0.5rem;
  margin-right: 0.5rem;
}

#loading {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.5;
  background-color: #00000045;
  z-index: 99;
}

.thank-you-container {
  text-align: center;
  padding: 30px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  width: 40%;
  margin: 50px auto;
}

.thank-you-container h1 {
  color: #3498db;
  font-size: 40px;
  margin-bottom: 20px;
  line-height: 20px;
}

.thank-you-container a {
  text-decoration: none;
  color: #fff;
  background-color: #3498db;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease;
}

.thank-you-container p {
  color: #555;
  font-size: 18px;
}
@media (max-width: 600px) {
    .thank-you-container {
        width: 100%;
      }
  }
