.elementor-2803 .elementor-element.elementor-element-164393fb{--display:flex;}.elementor-2803 .elementor-element.elementor-element-f1c0cb3{--display:flex;}.elementor-2803 .elementor-element.elementor-element-f113e04{--display:flex;}/* Start custom CSS for html, class: .elementor-element-f8360e4 */body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #333;
  overflow-x: hidden;
}

/* === HERO === */
.programs-hero {
  position: relative;
  height: 70vh;
  background: linear-gradient(rgba(10,20,50,0.65), rgba(10,20,50,0.75)), url('https://literacydevelopmentfoundation.org/wp-content/uploads/2023/06/about-2.jpeg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.hero-overlay h1 {
  font-size: 4rem;
  margin-bottom: 15px;
  font-weight: 700;
}
.hero-overlay p {
  font-size: 1.rem;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}
.top-wave svg {
  position: absolute;
  bottom: -1px;
  width: 100%;
}

/* === INTRO SECTION === */
.programs-intro {
  background: #fff;
  padding: 80px 5%;
  border-top: 6px solid #d4af37; /* Gold accent */
}
.intro-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
.intro-text { flex: 1 1 45%; }
.intro-text h2 {
  font-size: 2rem;
  color: #1a3c7c;
  margin-bottom: 15px;
}
.intro-text p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 25px;
}
.btn-primary {
  display: inline-block;
  background: #1a3c7c;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s;
}
.btn-primary:hover { background: #d4af37; color: #1a3c7c; }

.intro-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* === SECTION BACKGROUND === */
.programs-overview {
  background: linear-gradient(180deg, #fffaf0 0%, #f7f9fc 100%);
  padding: 100px 7%;
  text-align: center;
  position: relative;
}

.wave-top, .wave-bottom {
  line-height: 0;
  overflow: hidden;
}
.wave-top svg, .wave-bottom svg {
  display: block;
  width: 100%;
  height: auto;
}

/* === HEADER === */
.programs-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #0b2b5a;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  text-transform: uppercase;
  position: relative;
}

.programs-header h2::after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  margin: 10px auto;
  background: linear-gradient(90deg, #d4af37, #ffcf5c);
  border-radius: 4px;
}

.programs-header p {
  font-size: 2rem;
  color: #555;
  max-width: 620px;
  margin: 0 auto 70px;
  line-height: 1.7;
}

/* === GRID === */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 40px;
  justify-content: center;
  align-items: stretch;
}

/* === PROGRAM CARD === */
.program-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1.5px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.program-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, #d4af37, #ffcf5c);
  transition: width 0.4s ease;
}

.program-card:hover::before {
  width: 100%;
}

.program-img img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.program-card:hover img {
  transform: scale(1.08);
}

.program-content {
  padding: 25px 22px 35px;
  flex-grow: 1;
}

.program-content h3 {
  font-size: 1.rem;
  font-weight: 700;
  color: #133b7c;
  margin-bottom: 10px;
}

.program-content p {
  color: #555;
  font-size: 1.8rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* === BUTTON === */
.learn-btn {
  display: inline-block;
  background: linear-gradient(90deg, #d4af37, #ffcf5c);
  color: #0b2b5a;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.learn-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(90deg, #ffcf5c, #d4af37);
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

/* === Hover Elevation === */
.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .programs-overview {
    padding: 70px 5%;
  }
  .programs-header h2 {
    font-size: 2rem;
  }
  .program-content {
    padding: 20px 15px;
  }
}


/* === IMPACT SECTION === */
.impact-section {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f3f6fb 100%);
  padding: 100px 20px;
  text-align: center;
  overflow: hidden;
}

.impact-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #004aad;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.impact-header p {
  margin-top: 10px;
  color: #444;
  font-size: 1.rem;
}

/* Network Layout */
.impact-network {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 70px;
  flex-wrap: wrap;
}

/* Connection Line */
.impact-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.connection-line {
  fill: none;
  stroke: url(#blueGoldGradient);
  stroke-width: 3;
  stroke-dasharray: 10;
  animation: flowLine 6s linear infinite;
  filter: drop-shadow(0 0 6px rgba(0, 74, 173, 0.5));
}

@keyframes flowLine {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -80; }
}

/* Stat Nodes */
.stat-node {
  position: relative;
  background: #fff;
  border: 3px solid #004aad;
  border-radius: 50%;
  width: 170px;
  height: 170px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: popNode 2s ease var(--delay) both;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-node:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 12px 30px rgba(244, 180, 0, 0.4);
  border-color: #f4b400;
}

.icon-circle {
  font-size: 2rem;
  margin-bottom: 8px;
  animation: pulse 3s infinite ease-in-out;
  color: #004aad;
}

.stat-node h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #004aad;
}

.stat-node p {
  font-size: 2rem;
  color: #555;
}

/* Animations */
@keyframes popNode {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.1); opacity: 1; }
}

/* Floating Data Particles */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.particle-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, #f4b400, #004aad);
  border-radius: 50%;
  opacity: 0.7;
  box-shadow: 0 0 10px #f4b400;
  animation: floatParticle 6s infinite linear;
}

@keyframes floatParticle {
  0% { transform: translateY(0) scale(1); opacity: 1; }
  50% { transform: translateY(-40px) scale(1.2); opacity: 0.7; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
  .impact-network {
    flex-direction: column;
  }

  .impact-lines,
  .particles {
    display: none;
  }

  .stat-node {
    margin: 20px 0;
  }
}

/* === STAT BOX === */
.stat-box {
  background: #ffffff;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  padding: 40px 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07),
              inset 0 0 20px rgba(255, 255, 255, 0.3);
  transition: all 0.35s ease;
  transform-style: preserve-3d;
  perspective: 600px;
}

.stat-box h3 {
  font-size: 2rem;
  color: #1b4b8c;
  font-weight: 800;
  margin-bottom: 8px;
}

.stat-box p {
  font-size: 1rem;
  color: #555;
  letter-spacing: 0.5px;
}

/* === Hover 3D + Bounce Effect === */
.stat-box:hover {
  transform: translateY(-10px) rotateX(8deg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15),
              0 0 25px rgba(255, 255, 255, 0.3);
  animation: bounceGlow 0.8s ease;
  cursor: pointer;
}

/* === Subtle glowing bounce animation === */
@keyframes bounceGlow {
  0% { transform: scale(1) translateY(0); }
  30% { transform: scale(1.07) translateY(-6px); }
  60% { transform: scale(0.97) translateY(2px); }
  100% { transform: scale(1) translateY(0); }
}

/* === Responsive Adjustments === */
@media (max-width: 768px) {
  .impact-section {
    padding: 70px 5%;
  }
  .stat-box {
    padding: 30px 20px;
  }
  .impact-header h2 {
    font-size: 2rem;
  }
}

/* === CTA SECTION === */
.cta-section {
  position: relative;
  background: url("https://images.unsplash.com/photo-1542810634-71277d95dcbb?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
  overflow: hidden;
}

/* Overlay */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
}

/* Text Content */
.cta-content {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  z-index: 2;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffdc7c;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #f4f4f4;
  margin-bottom: 30px;
}

.btn-gold {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, #f8d56e, #c99829);
  color: #222;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s ease;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #ffe185, #d4a437);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 221, 87, 0.3);
}

/* Floating Boxes (Afrocentric animated detail) */
.cta-box {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(255, 223, 120, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  animation: floatBox 10s ease-in-out infinite;
  z-index: 1;
}

.floating-box {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}
.floating-box.delay-1 {
  top: 70%;
  left: 25%;
  animation-delay: 3s;
}
.floating-box.delay-2 {
  top: 50%;
  left: 80%;
  animation-delay: 6s;
}

/* Floating Animation */
@keyframes floatBox {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-20px) rotate(8deg);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 1.8rem;
  }
  .cta-content p {
    font-size: 1rem;
  }
  .btn-gold {
    padding: 12px 24px;
  }
}


/* === RESPONSIVE === */
@media (max-width: 768px) {
  .intro-container { flex-direction: column; }
  .intro-text, .intro-image { flex: 1 1 100%; }
  .hero-overlay h1 { font-size: 2.2rem; }
  .impact-stats { flex-direction: column; align-items: center; }
}/* End custom CSS */