/* ==================== BANNER SECTION ==================== */
.box-banner-about {
  position: relative;
  display: flex;
  padding: 80px 20px 150px;
  background-repeat: no-repeat;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-image: linear-gradient(
    323deg,
    #17335f 30%,
    rgb(12, 154, 209) 80%,
    var(--second-color) 100%
  ) !important;
  overflow: hidden;
  min-height: 500px;
}

/* Decorative Shapes */
.box-banner-about .banner-decorative-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.box-banner-about .banner-decorative-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  background: rgba(255, 255, 255, 0.3);
}

.box-banner-about .banner-decorative-shapes .shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
  background: rgba(255, 255, 255, 0.15);
}

.box-banner-about .banner-decorative-shapes .shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: 10%;
  background: rgba(255, 255, 255, 0.1);
}

.box-banner-about .banner-decorative-shapes .shape-3 {
  width: 150px;
  height: 150px;
  top: 30%;
  left: -30px;
  background: rgba(255, 255, 255, 0.12);
}

.box-banner-about .content-banner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* Badge */
.box-banner-about .banner-badge {
  display: inline-block;
  margin-bottom: 40px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  transition: all 0.3s ease;
}

.box-banner-about .banner-badge:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.box-banner-about .banner-badge .badge-text {
  font-size: 13px;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.box-banner-about .content-banner .title {
  display: block;
  margin-bottom: 20px;
  font-size: 48px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 700;
  margin-top: 0;
  letter-spacing: 2px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Title Divider */
.box-banner-about .title-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
  margin: 0 auto 30px;
  border-radius: 2px;
}

.box-banner-about .content-banner .summary {
  display: block;
  margin-bottom: 40px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Banner Features */
.box-banner-about .banner-features {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.box-banner-about .banner-features .feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  transition: all 0.3s ease;
}

.box-banner-about .banner-features .feature-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.box-banner-about .banner-features .feature-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  flex-shrink: 0;
}

.box-banner-about .banner-features .feature-text {
  font-size: 14px;
  color: #ffffff;
  font-weight: 500;
  white-space: nowrap;
}

/* ==================== STATS SECTION ==================== */
.stats-section {
  margin-top: -90px;
}

.stat-item {
  text-align: center;
  padding: 23px 0;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(6, 83, 159, 0.2);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
}

.stat-label {
  font-size: 16px;
  color: var(--second-color);
  font-weight: 500;
}

/* Stats Cards - Using theme colors */
.row > .col-12:nth-child(1) .stat-item {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.25) 0%, rgba(34, 211, 238, 0.35) 100%);
  border: 1px solid rgba(6, 182, 212, 0.3);
  backdrop-filter: blur(4px);
}

.row > .col-12:nth-child(1) .stat-item .stat-number {
  color: #12d1ff;
}

.row > .col-12:nth-child(1) .stat-item .stat-label {
  color: #0e7490;
}

.row > .col-12:nth-child(2) .stat-item {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.25) 0%, rgba(96, 165, 250, 0.35) 100%);
  border: 1px solid rgba(37, 99, 235, 0.3);
  backdrop-filter: blur(4px);
}

.row > .col-12:nth-child(2) .stat-item .stat-number {
  color: #93b2fb;
}

.row > .col-12:nth-child(2) .stat-item .stat-label {
  color: #1e40af;
}

.row > .col-12:nth-child(3) .stat-item {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.25) 0%, rgba(129, 140, 248, 0.35) 100%);
  border: 1px solid rgba(79, 70, 229, 0.3);
  backdrop-filter: blur(4px);
}

.row > .col-12:nth-child(3) .stat-item .stat-number {
  color: #978eff;
}

.row > .col-12:nth-child(3) .stat-item .stat-label {
  color: #312e81;
}

.row > .col-12:nth-child(4) .stat-item {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.25) 0%, rgba(125, 211, 252, 0.35) 100%);
  border: 1px solid rgba(14, 165, 233, 0.3);
  backdrop-filter: blur(4px);
}

.row > .col-12:nth-child(4) .stat-item .stat-number {
  color: #98d3f4;
}

.row > .col-12:nth-child(4) .stat-item .stat-label {
  color: #0c4a6e;
}

/* Responsive */
@media (max-width: 768px) {
  .box-banner-about {
    padding: 60px 15px 100px;
    min-height: auto;
  }

  .box-banner-about .content-banner .title {
    font-size: 32px;
    letter-spacing: 1px;
  }

  .box-banner-about .content-banner .summary {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .box-banner-about .banner-features {
    gap: 10px;
  }

  .box-banner-about .banner-features .feature-item {
    padding: 10px 15px;
    font-size: 12px;
  }

  .box-banner-about .banner-features .feature-text {
    font-size: 12px;
    white-space: normal;
  }

  .stat-number {
    font-size: 36px;
  }
}

@media (max-width: 640px) {
  .stat-number {
    font-size: 32px;
  }

  .box-banner-about .content-banner {
    padding: 0 10px;
  }
}

