 /* ===== MISSION SECTION ===== */
.mission-section {
  background: #0c3c86;
  color: #fff;
  padding: 80px 5% 60px;
  position: relative;
  overflow: hidden;
}

.mission-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: -50px;
  width: 60%;
  height: 100%;
  background: rgba(255, 255, 255, 0.08);
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.content-wrapper {
  position: relative;
  z-index: 1;
}

.subtitle {
  color: #f3ba2f;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 50px;
  line-height: 1.3;
}

.top-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

/* ===== VIDEO BOX ===== */
.video-box {
  position: relative;
  width: 340px;
  height: 220px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}
.video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-overlay {
  transition: opacity 0.4s ease;
  cursor: pointer;
}

.video-box:hover {
  transform: scale(1.05);
}

.video-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(12, 60, 134, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}

.play-btn {
  background: #fff;
  color: #0c3c86;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}






/* ===== INFO CARDS ===== */
.info-cards {
  display: flex;
  gap: 20px;
}

.card {
  background: #fff;
  color: #333;
  border-radius: 10px;
  padding: 25px 20px;
  width: 250px;
  position: relative;
  transition: all 0.4s ease;
  border-bottom: 5px solid #ec8d33;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.card .icon {
  background: #aef3ea;
  color: #fff;
  font-size: 22px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  text-align: center;
}

.card p {
  font-size: 0.9rem;
  color: #666;
}
.impact{
  background: #ec8d33;
  padding:1rem 1rem;
  width:100%;
  margin-top: 5rem;
  font-size: 30px;
  font-weight: 900;
  text-align: center;

} 
 
/* ===== STATS SECTION ===== */
.stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  
  background: #0a3271;
  border-radius: 10px;
  padding: 30px 20px;
  animation: fadeInUp 1.2s ease;
}

.stat {
  text-align: center;
  margin: 10px;
  transition: transform 0.3s ease;
}

.stat:hover {
  transform: scale(1.1);
}

.stat h3 {
  color: #f3ba2f;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.stat p {
  color: #fff;
  font-size: 0.95rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .info-cards {
    flex-direction: column;
    align-items: center;
  }
  .video-box {
    width: 100%;
    max-width: 350px;
  }
  .card {
    width: 90%;
  }
}

 :root {
        --orange: #f2a027;
        --blue: #06224a;
        --yellow: #f5c044;
        --white: #ffffff;
    }

   
    /* MAIN SECTION */
    .impact-section {
        background: var(--blue);
        color: var(--white);
        padding: 60px 20px;
        text-align: center;
    }

    /* ORANGE TITLE BAR */
    .impact-title {
        background: var(--orange);
        padding: 18px 10px;
        font-size: 28px;
        font-weight: bold;
        color: var(--white);
        width: 100%;
        max-width: 1100px;
        margin: -40px auto 40px;
        border-radius: 4px;
    }

    /* STAT GRID */
    .impact-grid {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 20px;
        max-width: 1200px;
        margin: auto;
    }

    /* EACH ITEM */
    .impact-box {
        flex: 1;
        min-width: 150px;
        text-align: center;
    }

    /* SMALL YELLOW LINE */
    .impact-box .line {
        width: 40px;
        height: 5px;
        background: var(--yellow);
        margin: 0 auto 10px;
        border-radius: 5px;
    }

    /* LABEL */
    .impact-box p {
        margin-top: 8px;
        font-size: 15px;
        opacity: 0.9;
    }

    /* FEATURED RIGHT BLOCK */
    .impact-big {
        flex: 1;
        min-width: 180px;
        text-align: right;
        padding-right: 20px;
    }

    .impact-big .count {
        font-size: 32px;
        font-weight: bold;
        color: var(--yellow);
    }

    .impact-big .small {
        font-size: 14px;
        margin-top: 5px;
        opacity: 0.9;
    }

    /* MOBILE RESPONSIVE */
    @media (max-width: 768px) {
        .impact-grid {
            text-align: center;
        }
        .impact-big {
            text-align: center;
            padding-right: 0;
        }
    }

    @media (max-width: 480px) {
        .impact-title {
            font-size: 22px;
        }
        .impact-big .count {
            font-size: 26px;
        }
    }