/* ===== ENHANCED ABOUT STYLES ===== */
:root {
  --primary-blue: #046d2a;
  --secondary-blue: #05c685;
  --accent-yellow: #34af42;
  --light-yellow: #17f459;
  --light-gray: #f5f7fa;
  --white: #ffffff;
  --text-dark: #333333;
  --text-light: #353030;
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

/* Hero Enhanced */
.about-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--secondary-blue) 100%
  );
  color: var(--white);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 20% 80%,
      rgba(255, 215, 0, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(0, 86, 161, 0.1) 0%,
      transparent 50%
    );
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(2, 59, 34, 0.8) 0%,
    rgba(2, 52, 15, 0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 30px;
  font-weight: 600;
}

.about-hero h1 {
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-accent {
  background: linear-gradient(135deg, var(--accent-yellow), #ffed4a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.4rem;
  opacity: 0.9;
  margin-bottom: 50px;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
}

.hero-stat {
  text-align: center;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-yellow);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.5);
  animation: scrollBounce 2s infinite;
}

section {
  padding: 20px;
}

@keyframes scrollBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

/* Section Tag */
.section-tag {
  display: inline-block;
  background: var(--light-yellow);
  color: var(--primary-blue);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* Vision Section */
.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin: 20px;
}

.vision-content h2 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 30px;
  color: var(--primary-blue);
}

.vision-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-light);
  text-align: justify;
}

.vision-features {
  margin-top: 40px;
}

.vision-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.vision-feature i {
  font-size: 2rem;
  color: var(--accent-yellow);
  margin-top: 5px;
}

.vision-feature h4 {
  color: var(--primary-blue);
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.vision-feature p {
  color: var(--text-light);
  margin: 0;
}

/* Floating Cards */
.floating-cards {
  position: relative;
  height: 400px;
}

.floating-card {
  position: absolute;
  background: var(--white);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.floating-card i {
  font-size: 3rem;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.floating-card h4 {
  color: var(--primary-blue);
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.floating-card p {
  color: var(--text-light);
  margin: 0;
}

.card-1 {
  top: 0;
  left: 0;
  animation: float 3s ease-in-out infinite;
}

.card-2 {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  animation: float 3s ease-in-out infinite 1s;
}

.card-3 {
  bottom: 0;
  left: 20%;
  animation: float 3s ease-in-out infinite 2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Enhanced Timeline */
.timeline-enhanced {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.timeline-item {
  flex: 1 1 200px;
  width: auto;
  align-items: center;
  margin-bottom: 40px;
  aspect-ratio: 1;
}

.timeline-item:nth-child(odd) {
  /* flex-direction: row-reverse; */
}
.team-header img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
}

.timeline-marker {
  flex: 0 0 auto;
  position: relative;
  z-index: 2;
}

.marker-dot {
  width: 20px;
  height: 20px;
  background: var(--accent-yellow);
  border: 4px solid var(--primary-blue);
  border-radius: 50%;
}

.marker-year {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-blue);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.timeline-content {
  flex: 1;
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 0 40px;
  position: relative;
  border: 1px solid var(--border-color);
}

.timeline-icon {
  width: 60px;
  height: 60px;
  background: var(--light-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.timeline-icon i {
  font-size: 1.5rem;
  color: var(--primary-blue);
}

.timeline-content h3 {
  color: var(--primary-blue);
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.timeline-content p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 15px;
}

.timeline-badge {
  display: inline-block;
  background: var(--accent-yellow);
  color: var(--primary-blue);
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* Geography Section */
.geography-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.africa-map {
  position: relative;
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--light-gray), var(--white));
  border-radius: 20px;
  border: 2px solid var(--border-color);
  overflow: hidden;
}

.country {
  position: absolute;
  border: 2px dashed var(--primary-blue);
  border-radius: 10px;
  padding: 20px;
}

.country.rdc {
  top: 30%;
  left: 40%;
  width: 40%;
  height: 40%;
}

.country.burundi {
  top: 60%;
  left: 50%;
  width: 15%;
  height: 15%;
}

.city {
  position: absolute;
  color: var(--accent-yellow);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.city:hover {
  transform: scale(1.2);
  color: var(--primary-blue);
}

.city::after {
  content: attr(data-city);
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-blue);
  color: var(--white);
  padding: 5px 10px;
  border-radius: 10px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.city:hover::after {
  opacity: 1;
}

/* Positioning cities */
.city.kinshasa {
  top: 20%;
  left: 30%;
}
.city.lubumbashi {
  top: 70%;
  left: 50%;
}
.city.mbujimayi {
  top: 50%;
  left: 40%;
}
.city.bukavu {
  top: 40%;
  left: 55%;
}
.city.goma {
  top: 30%;
  left: 60%;
}
.city.bujumbura {
  top: 50%;
  left: 50%;
}

.cities-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.city-category h3 {
  color: var(--primary-blue);
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.city-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.city-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.city-item:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.city-item i {
  color: var(--accent-yellow);
  font-size: 1.2rem;
}

.city-item span {
  color: var(--text-dark);
  font-weight: 600;
}

/* Enhanced Values */
.values-enhanced.bg-dark {
  background: linear-gradient(135deg, #03452e 0%, #171c17 100%);
}

.values-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.value-card-enhanced {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.value-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.1) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.value-card-enhanced:hover .value-glow {
  opacity: 1;
}

.value-card-enhanced:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 215, 0, 0.3);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  border: 2px solid var(--accent-yellow);
}

.value-icon i {
  font-size: 2rem;
  color: var(--accent-yellow);
}

.value-card-enhanced h3 {
  color: var(--white);
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.value-card-enhanced p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.value-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-light);
}

/* Enhanced Stats */
.stats-enhanced {
  position: relative;
  background: var(--white);
  overflow: hidden;
}

.stats-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.stats-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(0, 86, 161, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(255, 215, 0, 0.03) 0%,
      transparent 50%
    );
}

.stats-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 2;
}

.stat-enhanced {
  text-align: center;
}

.stat-circle {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto 25px;
}

.circle-progress {
  width: 100%;
  height: 100%;
  border: 8px solid var(--light-gray);
  border-top: 8px solid var(--accent-yellow);
  border-radius: 50%;
  animation: rotate 2s linear infinite;
}

.stat-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-blue);
}

.stat-enhanced h3 {
  color: var(--primary-blue);
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.stat-enhanced p {
  color: var(--text-light);
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Enhanced CTA */
.about-cta-enhanced {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--secondary-blue) 100%
  );
  color: var(--white);
  overflow: hidden;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.cta-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 30% 70%,
      rgba(255, 215, 0, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 30%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    );
}

.cta-content-enhanced {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content-enhanced h2 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.cta-content-enhanced p {
  font-size: 1.3rem;
  opacity: 0.9;
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-buttons-enhanced {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-primary {
  background: var(--accent-yellow);
  color: var(--primary-blue);
  padding: 18px 35px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
  border: 2px solid var(--accent-yellow);
  font-size: 1.1rem;
}

.btn-cta-primary:hover {
  background: transparent;
  color: var(--accent-yellow);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.btn-cta-secondary {
  background: transparent;
  color: var(--white);
  padding: 18px 35px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
  border: 2px solid var(--white);
  font-size: 1.1rem;
}

.btn-cta-secondary:hover {
  background: var(--white);
  color: var(--primary-blue);
  transform: translateY(-3px);
}

/* Section Header Center */
.section-header-center {
  text-align: center;
  margin-bottom: 60px;
}

.section-header-center h2 {
  color: var(--primary-blue);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.section-header-center p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 60%;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2.5rem;
  }

  .hero-stats {
    gap: 30px;
  }

  .vision-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .vision-content h2 {
    font-size: 2rem;
  }

  .floating-cards {
    height: 300px;
  }

  .timeline-item {
    flex-direction: column !important;
    text-align: center;
  }

  .timeline-content {
    margin: 20px 0;
  }

  .geography-grid {
    grid-template-columns: 1fr;
  }

  .africa-map {
    height: 300px;
  }

  .cta-content-enhanced h2 {
    font-size: 2.5rem;
  }

  .cta-buttons-enhanced {
    flex-direction: column;
    align-items: center;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    width: 250px;
    justify-content: center;
  }
}

.text-white {
  color: #f1f1f1 !important;
}
.text-white > p {
  color: #ccc !important;
}
.vision-visual > img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 2px 3px 6px 3px rgba(0, 0, 0, 0.4);
}

#teamSection .process-steps {
  justify-content: center;
}
#teamSection .process-step {
  margin-bottom: 30px;
}
#teamSection img {
  width: 180px;
  border-radius: 100%;
  height: 180px;
  position: relative;
  margin-bottom: 83px;
  box-shadow: 3px 5px 7px 3px rgba(2, 59, 34, 0.4);
}
.handlee,
h1,
h3,
h2 {
  font-family: "Handlee", cursive;
  font-weight: 400;
  font-style: normal;
}
