body{
  background-color: rgba(230,230,250,1);
}

.custom-pagination .page-link {
  border-radius: 50% !important;  /* circle */
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  border: 1px solid #ddd;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
}

.custom-pagination .page-link:hover {
  background-color: #007bff;
  color: #fff;
  border-color: #007bff;
}

.custom-pagination .page-item.active .page-link {
  background-color: #007bff;
  border-color: #007bff;
  color: #fff;
}


#breadcrumb-main-page,
#breadcrumb-page,
.d-flex.align-items-center span1 {
  font-size: clamp(16px, 2vw, 22px); /* Responsive between 16px–22px */
  color: white;                      /* Ensure white text */
  font-weight: 600;
   white-space: nowrap;
}
.btn-job-details{
  background-color: rgba(65,75,210,1);
  transition: background-color 0.3s ease;
}
.btn-job-details:hover{
  color: #fff;
background: linear-gradient(90deg,rgba(65, 75, 210, 1) 0%, rgba(9, 9, 121, 1) 45%, rgba(0, 212, 255, 1) 100%);
}

  @media (max-width: 991px) {
  .full-container {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
  #footer{
    margin-top: 0 !important;
  }
}

@media (max-width: 576px) {
  #breadcrumb-main-page,
  #breadcrumb-page,
  .d-flex.align-items-center span1 {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  #breadcrumb-main-page,
  #breadcrumb-page,
  .d-flex.align-items-center span {
    font-size: 12px;
  }
}




.go-back-btn {
  display: inline-block;
  color: rgba(65,75,210,1);
  text-decoration: none;
  padding: 5px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  transition: background-color 0.3s, transform 0.2s;
  margin-left: 5px;
  margin-bottom: 10px;
   border: 1px solid rgba(65,75,210,1);;
}

/*Pagination*/
.custom-pagination .page-item .page-link {
    background-color: #434bda;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    padding: 0;
    margin: 0 5px;
  }

  .custom-pagination .page-item.active .page-link {
    background-color: #333dc2;
    font-weight: bold;
  }

  .custom-pagination .page-item .page-link:hover {
    background-color: #333dc2;
  }
  /**/
/* Full-screen overlay */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff; /* page background while loading */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Loader container */
.square-loader {
  display: flex;
  gap: 10px;
}

.square-loader div {
  width: 30px;
  height: 60px;
  background-color: #0d6efd; /* blue squares */
  animation: squareAnim 1.2s infinite ease-in-out;
}

/* Staggered animation for each square */
.square-loader div:nth-child(1) { animation-delay: 0s; }
.square-loader div:nth-child(2) { animation-delay: 0.2s; }
.square-loader div:nth-child(3) { animation-delay: 0.4s; }
square-loader div:nth-child(4) { animation-delay: 0.6s; }

/* Keyframes: scale up and down */
@keyframes squareAnim {
  0%, 100% { transform: scale(0); opacity: 0.3; }
  50% { transform: scale(1); opacity: 1; }
}
