
/** page-title **/

/* Main Section */
.page-title {
  position: relative;
  padding: 120px 0; /* adds vertical space */
  text-align: start;
  overflow: hidden;
  color: #fff; /* default text color for dark backgrounds */
}

/* Background Layer (new class names optional) */
.page-title .page-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -1;
  transition: transform 0.5s ease; /* smooth parallax effect */
}

.page-title .parallax-effect {
  /*background-attachment: fixed; /* enables parallax */*/
}

/* Overlay for readability */
.page-title .page-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* dark overlay */
}

/* Content Box */
.page-title .content-box {
  position: relative;
  display: inline-block;
  padding: 20px 40px;
  z-index: 1;
}


/* Breadcrumbs */
.page-title .bread-crumb {
  list-style: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #ddd;
  padding: 0;
  margin: 0;
}




/* Responsive adjustments */
@media (max-width: 768px) {
  .page-title {
    padding: 80px 0;
  }

  .page-title h1 {
    font-size: 32px;
  }

  .page-title .bread-crumb li {
    font-size: 14px;
  }
}

.page-title h1{
  position: relative;
  display: block;
  font-size: 56px;
  line-height: 60px;
  margin-bottom: 12px;
    color: var(--text-color-white);
}

.page-title .bread-crumb{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: start;
}

.page-title .bread-crumb li{
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
    color: var(--text-color-white);
  margin: 0px 2px;
}

.page-title .bread-crumb li a{
  display: inline-block;
     color: var(--text-color-white);
}

.page-title .bread-crumb li a:hover{

}


/** rtl-css **/




/** responsive-css **/

@media only screen and (max-width: 1200px){

}

@media only screen and (max-width: 991px){

}

@media only screen and (max-width: 767px){
  .page-title{
    padding-top: 70px;
  }

  .page-title h1{
    font-size: 40px;
    line-height: 50px;
  }
}

@media only screen and (max-width: 599px){
  
}

@media only screen and (max-width: 499px){

}











































