*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins', sans-serif;
background:#f8f9fa;;
}

/* SECTION */
.about-section {
  padding: 60px 0;
}

/* CARD */
.about-card {
  background: #fff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* TEXT */
.about-title {
  font-weight: 700;
  margin-bottom: 15px;
}

.about-text {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.7;
}

/* IMAGE */
.about-img {
  width: 100%;
  border-radius: 15px;
}

/* STATS */
.stats-wrapper {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.stat-box {
  background: #f0faf3;
  padding: 15px 20px;
  border-radius: 10px;
  text-align: center;
}

.stat-box h3 {
  color: #28a745;
  font-weight: bold;
}

/* INFO CARDS */
.info-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-card i {
  font-size: 22px;
  color: #28a745;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
/* HOVER EFFECT */
.info-card:hover {
  background: #e6f4ea;
  border: 1px solid #28a745;

  box-shadow: 
    0 10px 20px rgba(40,167,69,0.18),
    0 15px 35px rgba(33,136,56,0.15);
  transform: translateY(-8px);
}

/* ICON BACKGROUND */
/* .info-card:hover i {
  color: white;
} */

/* OPTIONAL: agar icon wrap div ho */
.info-card:hover .icon-box {
  background: #28a745;
}

