.about {
  /* Qovluq yolu iki pillə geriyə çıxarılaraq düzəldildi */
  background: linear-gradient(rgba(95, 120, 180, 0.85), rgba(15, 23, 42, 0.9)), url("../../images/back.png") no-repeat center center / cover;
  background-attachment: -webkit-scroll;
  background-attachment: fixed;
}

.about-text {
  max-width: 800px;
  margin: 0 auto 60px auto;
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.stat-box {
  background: rgba(17, 28, 51, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 40px;
  border-radius: 12px;
  transition: 0.3s;
}

.stat-box:hover { 
  transform: translateY(-10px); 
  border-color: #F80505; /* Parlaq qırmızı çərçivə */
  box-shadow: 0 10px 25px rgba(248, 5, 5, 0.25); /* Parlaq qırmızı işıqlanma */
}

.stat-box h3 { font-size: 40px; color: var(--text-main); margin-bottom: 10px; }
.stat-box p { color: var(--text-muted); }

@media (max-width: 1024px) { .stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .stats { grid-template-columns: 1fr; } }