.contact_main{
    background-image: url(../assets/cover_pictures/main_cover.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* height: 100vh; */
}
.join_main{
    background-image: url(../assets/cover_pictures/team_cover.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; 
}
.bg-dark_new_2{
    background-color: rgb(0, 0, 0, 0.5);
}

/* Loader Overlay */
.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 9999;
display: none;
}

/* Spinner Animation */
.spinner {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #007BFF; /* Bootstrap blue */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
.accordion-button.active {
  background-color: #0d6efd;
  color: white;
  padding: 5px;
  border-radius: 5px;
}