/* ===============================
   ABOUT who we are
================================ */

.about-hero {
  position: relative;
  padding: 120px 0 90px;
  background: linear-gradient(
    135deg,
    #f8fafc 0%,
    #ffffff 40%,
    #f1f5f9 100%
  );
  overflow: hidden;
}
.about-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #2563eb;
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.25);
  border-radius: 30px;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  background: rgba(37,99,235,0.08);
  border-radius: 50%;
  filter: blur(60px);
}

.about-hero::after {
  content: "";
  position: absolute;
  bottom: -140px;
  left: -140px;
  width: 360px;
  height: 360px;
  background: rgba(14,165,233,0.08);
  border-radius: 50%;
  filter: blur(70px);
}

/* Content */
.about-hero-content {
  position: relative;
  max-width: 780px;
}

.about-hero-content h1 {
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 900;
  line-height: 1.15;
  color: #0f172a;
  margin-bottom: 20px;
}

.about-hero-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #475569;
}

/* Breadcrumb / Tag */
.about-hero-tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #2563eb;
  background: rgba(37,99,235,0.12);
  border: 1px solid rgba(37,99,235,0.3);
  border-radius: 30px;
}

/* Responsive */
@media (max-width: 768px) {
  .about-hero {
    padding: 100px 0 70px;
  }

  .about-hero-content p {
    font-size: 16px;
  }
}

/*============================================================================*/


/* ===============================
   Our Foundation
   ABOUT OVERVIEW SECTION 
================================ */

.about-overview {
  padding: 100px 0;
  background: #ffffff;
}

/* Section Header */
.section-header {
  max-width: 720px;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #2563eb;
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.25);
  border-radius: 30px;
}

.section-header h2 {
  font-size: clamp(32px, 4.5vw, 46px);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 17px;
  line-height: 1.7;
  color: #475569;
}

/* Grid */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.overview-card {
  position: relative;
  padding: 40px 32px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 20px 40px rgba(15,23,42,0.08);
  transition: all 0.35s ease;
}

/* Hover */
.overview-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(15,23,42,0.12);
}

/* Icon */
.overview-card .icon {
  font-size: 38px;
  margin-bottom: 18px;
}

/* Text */
.overview-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.overview-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
}

/* Responsive */
@media (max-width: 992px) {
  .overview-grid {
    grid-template-columns: 1fr;
  }
}

/*============================================================================*/

/* ===============================
   STATS / IMPACT SECTION
================================ */

.stats-section {
  padding: 110px 0;
  background: #ffffff;
}

.stats-section .section-header h2,
.stats-section .section-header p {
  
}

.stats-section .section-header p {
  opacity: 0.85;
}

/* Grid */
.stats-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Card */
.stat-card {
  padding: 46px 20px;
  text-align: center;
  border-radius: 22px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover */
.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.4);
}

/* Number */
.stat-card h3 {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 900;
  margin-bottom: 10px;
  color: #38bdf8;
}

/* Label */
.stat-card p {
  font-size: 16px;
  letter-spacing: 0.4px;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 1200px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}
/*=========================================================================*/

/* ===============================
   PROCESS SECTION
================================ */

.process-section {
  padding: 120px 0;
  background: #ffffff;
}

.process-section .section-header p {
  max-width: 720px;
  margin: 0 auto;
  color: #475569;
}

/* Grid */
.process-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Card */
.process-card {
  position: relative;
  padding: 50px 35px;
  border-radius: 22px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  transition: all 0.35s ease;
}

/* Hover */
.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
}

/* Step number */
.process-card .step {
  position: absolute;
  top: -22px;
  left: 30px;
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  color: #ffffff;
  font-weight: 800;
  font-size: 16px;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(56, 189, 248, 0.35);
}

/* Title */
.process-card h4 {
  margin-top: 30px;
  margin-bottom: 14px;
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
}

/* Text */
.process-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}

/* Responsive */
@media (max-width: 1200px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}
/* ==========================================================================*/