/* ===============================
   ABOUT SECTION
=================================*/
#about-section {
  padding: 80px 20px;
  box-shadow: 0px 2px 15px rgba(0,0,0,0.06);
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
  justify-content: space-between;
}

/* Image */
.about-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-image {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.557);
  transition: transform 0.3s ease;
}

.about-image:hover {
  transform: translateY(-8px);
}

/* Content */
.about-content {
  flex: 1;
}

.about-title {
  font-size: 2.5rem;
  color: #303153;
  margin-bottom: 25px;
}

.about-text {
  font-size: 1rem;
  color: #303153;
  margin-bottom: 20px;
  line-height: 1.7;
  text-align: justify;
}

/* Stats Cards */
.about-stats {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.about-stat-card {
  background: white;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  min-width: 120px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.about-stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.about-stat-card h3 {
  color: #303153;
  margin-bottom: 5px;
}

.about-stat-card span {
  font-size: 0.9rem;
  color: #666;
}

/* ===============================
   RESPONSIVE
=================================*/
@media (max-width: 991px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-title {
    font-size: 2rem;
  }

  .about-stats {
    justify-content: center;
  }
}