* {
    color: white;  
  }

  body {
    background-color: #9cad8e;
    font-family: 'Times New Roman', Times, serif; 
    position: relative; /* Make sure the body has relative positioning */
        content: ''; /* This is required to create a pseudo-element */
    position: absolute;
    /* top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../Images/hia_background.png');
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.55;
    z-index: -1; */
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-image: url('../Images/hia_background.png');
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: center;
    opacity: 0.55;
    pointer-events: none; /* prevent blocking interactions */
}
/* body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../Images/hia_background.png');
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.55; 
    z-index: -1;
} */
  
  .wrapper {
    text-align: center;
  }
  
  p {
    font-size: 1.4rem;
  }

  h2 {
    font-size: 8rem;
  }

  h3 {
  font-family: 'Caveat', serif;
}
  
  .custom-input:focus {
    box-shadow: 0 0 5px 2px #B4B69b !important;
    border-color: #B4B69b !important;
    outline: none !important;
  }
  
  .custom-input {
    transition: box-shadow 0.3s ease, border-color 0.3s ease !important;
  }
  
  .btn.btn-primary.w-100 {
    border-color: #B4B69b;
    background-color: #B4B69b;
  }
  
  .btn.btn-primary.w-100:hover,
  .btn.btn-primary.w-100:active {
    background-color: #acb07b !important;
    border-color: #B4B69b;
  }
  
  .team-img {
    width: 100%;
    height: 150px;
    background-color: #d0d3c0;
    border-radius: 10px;
  }

  #responseMessage {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 80%;
    z-index: 1050;
    text-align: center;
}

.center-object {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#solutions-container p {
  max-width: 400px;     /* Set the max width of paragraph blocks */
  margin-left: auto;    /* Center horizontally */
  margin-right: auto;
}

#team-container p {
  max-width: 400px;     /* Set the max width of paragraph blocks */
  margin-left: auto;    /* Center horizontally */
  margin-right: auto;
}

#toc_menu {
  position: fixed;
  top: 50%;
  right: 1px;
  transform: translateY(-50%);
  width: 180px;
  padding: 10px;
  z-index: 999;
  font-family: sans-serif;
}

.toc_menu_inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toc_menu_item {
  display: flex;
  flex-direction: column;
}

.toc_menu_description {
  text-decoration: none;
  color: #4f684f;
  font-size: 14px;
  transition: color 0.3s;
  text-align: end;
}

.toc_menu_description_title {
  order: 1; /* Text comes first */
}

.toc_menu_description::after {
  content: '•';
  order: 2; /* Bullet comes after text */
  margin-left: 8px;
}

.toc_menu_description:hover {
  color: #000000;
}

.toc_menu_description_title {
  font-weight: bold;
}

.toc_menu_description_title {
  visibility: hidden;
  margin-left: 5px;
  transition: visibility 0.3s, opacity 0.3s ease-in-out;
  opacity: 0;
}

.toc_menu_description:hover .toc_menu_description_title {
  visibility: visible;
  opacity: 1;
  color: #4f684f;
}

.toc_menu_description.active {
  color: #000000;
  font-weight: bold;
}

.op-class, .op-class * {
  background-color: white;
  color: #9cad8e !important;
}
  
/* Media query for screens smaller than 1024px */
@media screen and (max-width: 1024px) {

  body::before {
      background-size: 80%;  /* Increase background size for the overlay */
  }

  #responseMessage {
    max-width: 90%;
}

.fullscreen-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
}
