body {
  background: #ffffff;
  color: #1e293b;
}

/* HERO */
.about-hero {
  padding: 120px 20px;
  text-align: center;
  background: linear-gradient(180deg,#f8fafc,#ffffff);
}

.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.about-hero p {
  max-width: 700px;
  margin: auto;
  color: #64748b;
}

/* GRID */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin: 100px 0;
}

/* IMAGE */
.img-box {
  overflow: hidden;
  border-radius: 20px;
}

.img-box img {
  width: 100%;
  transition: 0.5s;
}

.img-box:hover img {
  transform: scale(1.05);
}

/* TEXT */
.about-text h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: #475569;
}

/* MISSION */
.about-mission {
  background: #f8fafc;
  padding: 80px 0;
}

/* STATS */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  text-align: center;
  gap: 20px;
}

.stat h2 {
  font-size: 2rem;
  color: #6366f1;
}

/* VALUES */
.about-values {
  padding: 100px 0;
  background: white;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}

.value-card {
  background: #f8fafc;
  padding: 30px;
  border-radius: 15px;
  transition: 0.3s;
}

.value-card:hover {
  transform: translateY(-10px);
}

/* CTA */
.about-cta {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(90deg,#6366f1,#7c83ff);
  color: white;
}

/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media(max-width:768px){
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-stats,
  .values-grid {
    grid-template-columns: 1fr;
  }
}