.site_logo {

    padding: 20px 0px;

    display: block;

    width: 100%;

    margin: 0 auto;

    text-align: left;

}



.header-button {

    /* width: 20%; */

    width: 100%;

    text-align: right;

}



.sticky .header-right-item.d-none.d-lg-inline-flex {

    width: 20%;

}



.sticky .header-button {

    width: 100%;

}



.process-step {

    display: none;

}



.about-bottom-area .list-style-1 {

    max-width: 300px;

}



section.tj-service-section.section-gap.section-gap-x {

    border-bottom: 1px solid var(--tj-color-border-1);

}



.tj-cta-section {

    margin-bottom: 40px;

}



.tj-copyright-area .copyright-wrap::after, .tj-copyright-area .copyright-wrap::before

{

    display: none;

}



.tj-footer-section , .tj-copyright-area {

    background-color:var(--tj-color-theme-dark);

    

}



.copyright-content-area

{

    text-align: center;

    float: left;

    width: 100%;

    display: block;

}



.working-img img {

    -o-object-fit: contain;

    object-fit: contain;

}

.popup-message {
  position: fixed;
  top: -50px; 
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(45deg, #d70010, #281e69);
  color: #fff;
  padding: 15px 25px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 9999;
}

.popup-show {
  top: 30px;  
  opacity: 1;
}
@media (max-width: 767px){
.popup-message {
    width: 100%;
    }
}



/**
CSS BY DEV
*/

#toast-container {
  position: fixed;
  z-index: 99999;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  padding: 15px 25px;
  border-radius: 6px;
  font-size: 16px;
}

.toast {
    background: #333;
    color: #fff;
    padding: 12px 18px;
    margin-top: 10px;
    border-radius: 5px;
    font-size: 14px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.4s ease;
     color: #fff;
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

/* .toast.success { */
    /* background: #28a745; */
     /* background: linear-gradient(45deg, #28a745, #281e69); */
/* } */

.toast.error {
    background: linear-gradient(45deg, #d70010, #281e69);
    border: none;
    box-shadow: none;
}

/* loader css */
.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  backdrop-filter: blur(3px); 
  background: rgba(0, 0, 0, 0.3); 
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.loader {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(45deg, #d70010, #281e69);
  animation: spin 1.5s linear infinite;
  position: relative;
  box-shadow: 0px 0px 10px white;
  mask: radial-gradient(circle 30px, transparent 30px, black 31px);
  -webkit-mask: radial-gradient(circle 30px, transparent 30px, black 31px);
}

.loader::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}