.about-hero {
  position: relative;
  width: 100%;
  height: 75vh;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.breadcrumb {
  background: rgba(0, 0, 0, 0.4);
  padding: 10px 25px;
  border-radius: 4px;
  font-size: 16px;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 50px;
  font-weight: 650;
}

.about-info {
  padding: 100px 0;
  background: #ffffff;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0 30px;
}

.about-text {
  flex: 1;
}

.small-title {
  font-size: 16px;
  letter-spacing: 1.5px;
  color: #8a8a8a;
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}

.about-text h2 {
  font-size: 40px;
  font-weight: 700;
  color: #0b1c39;
  margin-bottom: 25px;
}

.about-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #6c757d;
  margin-bottom: 18px;
}

.about-image {
  flex: 1;
  position: relative;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}

@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
  }

  .about-text h2 {
    font-size: 32px;
  }
}

.stats-section {
  padding: 20px 20px;
  background: #fff;
  text-align: center;
}

.stats-box {
  max-width: 1136px;
  margin: auto;
  background-image: url("../images/about/bg-3-1.jpg");
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 70px 50px;
  color: #fff;
}

.stat-item {
  flex: 1;
}

.stat-item h3 {
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 10px;
}

.stat-item p {
  font-size: 18px;
  text-transform: capitalize;
}

.divider {
  width: 1px;
  height: 80px;
  background: rgba(255, 255, 255, 0.3);
}

.leadership-text {
  margin-top: 65px;
}

.leadership-text h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0b1c39;
  margin-bottom: 15px;
}

.leadership-text p {
  font-size: 18px;
  color: #6c757d;
}

@media (max-width: 768px) {
  .stats-box {
    flex-direction: column;
    gap: 40px;
  }

  .divider {
    display: none;
  }

  .leadership-text h2 {
    font-size: 32px;
  }
}

.feature-banner {
  width: 100%;
  min-height: 260px;
  background-image: url("../images/about/bg-3-1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  margin-top: 125px;
}

.feature-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0px 10px;
  color: #fff;
}

.feature-item {
  flex: 1;
  text-align: center;
}

.feature-item img {
  width: 50px;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
}

.feature-item h3 {
  font-size: 26px;
  font-weight: 700;
}

.divider {
  width: 1px;
  height: 80px;
  background: rgba(255, 255, 255, 0.35);
}

@media (max-width: 768px) {
  .feature-container {
    flex-direction: column;
    gap: 40px;
  }

  .divider {
    display: none;
  }
}
