/* =========================================================
   STC 2026
   HOME — ABOUT & STATISTICS
   Merged from: style(1)(1).css + style_rapih(1).css
   ========================================================= */

#about {
  position: relative;
  overflow: hidden;
  background: linear-gradient(#f4f9ff, #e8f2ff);
  padding: 120px 0;
}

#about .section-head h2 {
  color: #1d4ed8;
}

.about-container {
  width: min(1050px, 88%);
  margin: auto;
  position: relative;
  z-index: 2;
}

.about-box {
  position: relative;
  background: rgba(255, 255, 255, 0.85);
  border: 2px solid rgba(111, 175, 231, 0.4);
  border-radius: 20px;
  padding: 65px 60px;
  box-shadow: 0 30px 60px rgba(31, 62, 108, 0.12);
  backdrop-filter: blur(8px);
  transform: translateY(0);
  transition:
    transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.5s;
  overflow: hidden;
}

.about-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(124, 185, 232, 0.12),
    transparent 40%
  );
  pointer-events: none;
}

.about-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 80px rgba(31, 62, 108, 0.18);
}

.about-box h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  color: #1d4ed8;
  letter-spacing: 2px;
  margin-bottom: 35px;
  position: relative;
}

.about-box h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  margin: 14px auto 0;
  border-radius: 4px;
  background: linear-gradient(90deg, #2563eb, #7cb9e8);
}

.about-box p {
  font-size: 16px;
  line-height: 1.95;
  color: #3a4a63;
  text-align: justify;
  margin-bottom: 20px;
  position: relative;
}

.about-box p:last-child {
  margin-bottom: 0;
}

.about-box strong {
  font-weight: 700;
  color: #123c6e;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(111, 175, 231, 0.3);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(31, 62, 108, 0.08);
  transition:
    transform 0.4s,
    box-shadow 0.4s;
}

.stat-box:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 25px 50px rgba(37, 99, 235, 0.18);
}

.stat-box .num {
  font-size: 44px;
  font-weight: 800;
  color: #1d4ed8;
  line-height: 1;
}

.stat-box .num span {
  font-size: 26px;
}

.stat-box .label {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #4a5a76;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-box::after {
  content: "";

  position: absolute;

  bottom: -2px;
  right: 40px;

  width: 55px;
  height: 20px;

  background: #6fafe7;

  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}
