/* =====================================================
   ABOUT SECTION : WRAPPER
===================================================== */
.about-section {
  padding: 80px 0;
  background: #ffffff;
}

/* =====================================================
   CONTAINER (20% / 80%)
===================================================== */
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;

  display: flex;
  gap: 40px;
}

/* =====================================================
   LEFT COLUMN (20%)
===================================================== */
.about-left {
  flex: 0 0 20%;
}

/* Icon + title block */
.about-left-inner {
  display: flex;
  align-items: center;   /* ✅ icon stays at top */
  gap: 10px;
}

.about-icon {
  color: #F37422;
  font-size: 16px;
  line-height: 1;
  margin-top: 3px;          /* fine-tuned top alignment */
}

.about-subtitle {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  margin-top:10px;
}

/* =====================================================
   RIGHT COLUMN (80%)
===================================================== */
.about-right {
  flex: 0 0 80%;
}

/* =====================================================
   TEXT CONTENT
===================================================== */
.about-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}

.about-description {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 40px;
}

/* =====================================================
   IMAGE + STATS (EQUAL HEIGHT)
===================================================== */
.about-media {
  display: flex;
  gap: 40px;
  align-items: stretch;     /* ✅ image = stats height */
}

/* IMAGE */
.about-image {
  display: flex;            /* allows height stretch */
}

.about-image .about_video1 {
  width: 100%;
  max-width: 420px;
  height: 100%;             /* ✅ matches stats height */
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* STATS */
.about-stats {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;  /* ✅ vertical centering */
}

.stats-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.stats-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.stats-list li {
  display: flex;
  gap: 10px;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid #e5e5e5;
  font-size: 16px;
}

.stats-list strong {
  font-size: 28px;
  font-weight: 700;
  color:#000000 ; /* 🔴 counter color #EA2B2B */
}

.stats-note {
  font-size: 14px;
  line-height: 1.5;
  color: #666;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 991px) {

  .about-container {
    flex-direction: column;
  }

  .about-left,
  .about-right {
    flex: 100%;
  }

  .about-media {
    flex-direction: column;
    align-items: center;
  }

  .about-image img {
    max-width: 100%;
    height: auto;           /* ✅ natural on mobile */
  }

  .about-stats {
    justify-content: flex-start;
  }
}
