/* About Banner */
.about-banner {
  height: 400px;
  position: relative;
  background-image: url('../images/inner-banner/about-banner.jpg');
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
}

.about-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  /* Dark overlay */
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  height: 100%;
}

.breadcrumbs {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  font-size: 0.9rem;
}

.breadcrumbs a {
  color: #0d6efd;
  text-decoration: none;
  margin-right: 5px;
}

.breadcrumbs span {
  color: #fff;
}

/* About Section */
.about-section {
  color: #fff;
}

.about-section .mini-title {
  display: inline-block;
  font-size: 0.9rem;
  letter-spacing: 1.2px;
  color: #0d6efd;
}

.about-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: #ccc;
}

.about-img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* Signature */
.signature img {
  display: block;
  margin-top: 20px;
  max-width: 150px;
}

/* Responsive */
@media (max-width: 992px) {
  .about-section .section-title {
    font-size: 1.6rem;
  }

  .about-banner {
    height: 200px;
  }

}