/* Base Banner Styles */
.banner-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.banner-section .banner-overlay {
  background: linear-gradient(rgba(26, 77, 190, 0.85), rgba(26, 77, 190, 0.85)),
    url('../images/about-img-1.png') no-repeat center center / cover;
  padding: 200px 0 120px;
}

.banner-section .banner-content {
  color: #ffffff;
}

.banner-section .banner-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.banner-section .breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
}

.banner-section .breadcrumb-item,
.banner-section .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.banner-section .breadcrumb-item a:hover {
  color: #ffffff;
}

.banner-section .breadcrumb-item + .breadcrumb-item::before {
  content: '/';
  color: rgba(255, 255, 255, 0.5);
  padding: 0 8px;
}

.about-section {
  position: relative;
  background: #ffffff;
}

.about-section .about-overlay {
  background: url(../images/circle.png) no-repeat top left;
}

.about-text .about-subtitle {
  color: #1A4DBE;
  font-weight: 600;
  margin-bottom: 15px;
}

.about-text .about-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
  color: #0A1023;
}

.about-text p {
  color: #2C3655;
  font-size: 1rem;
}

.about-metric {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 12px 24px rgba(47, 65, 129, 0.1);
  padding: 25px;
  text-align: center;
}

.about-metric h4 {
  font-size: 1.75rem;
  color: #1A4DBE;
  margin-bottom: 8px;
}

.about-metric h4 span {
  font-size: 1rem;
  color: #5AC4FF;
}

.about-metric p {
  margin: 0;
  font-size: 0.9rem;
  color: #2C3655;
}

.about-images {
  position: relative;
  display: inline-block;
}

.about-img {
  border: 5px solid #ffffff;
  border-radius: 12px;
  position: absolute;
  box-shadow: 0 8px 16px rgba(47, 65, 129, 0.1);
}

.about-img.img-1 {
  left: 60px;
  bottom: 0;
  width: 45%;
}

.about-img.img-2 {
  left: 0;
  top: 0;
  z-index: 2;
  width: 40%;
}

.about-img.img-3 {
  right: -60px;
  top: -100px;
  width: 35%;
}

@media (max-width: 768px) {
  .banner-section .banner-overlay {
    padding: 150px 0 80px;
  }

  .banner-section .banner-title {
    font-size: 2.2rem;
  }

    .about-images {
    position: static;
  }
  .about-img {
    position: static;
    width: 90%;
    margin-bottom: 20px;
  }
}
