.elementor-2802 .elementor-element.elementor-element-2216d1e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-2802 .elementor-element.elementor-element-4c6e654{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-2802 .elementor-element.elementor-element-1455dbd{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-2802 .elementor-element.elementor-element-2387a1d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-db4dc57 *//* Header Section with Background */
.about-header {
  position: relative;
  height: 65vh;
  background: url('https://literacydevelopmentfoundation.org/wp-content/uploads/2015/04/blog-7.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.about-overlay {
  background: rgba(0, 0, 0, 0.55);
  padding: 60px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-header-content h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-header-content p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: auto;
  line-height: 1.6;
}

/* Section General */
.container-full {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

/* Who We Are */
.who-we-are {
  background: #b0e0e6; /* Powder blue */
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  margin-top: -40px; /* overlaps header slightly */
}

.who-content {
  text-align: center;
  padding: 50px 30px;
}

.who-we-are h2 {
  font-size: 2.5rem;
  color: #003366;
  margin-bottom: 20px;
}

.who-we-are p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #222;
  max-width: 900px;
  margin: auto;
}

/* What We Do */
.what-we-do {
  text-align: center;
  margin-top: 40px;
}

.what-we-do h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #003366;
}

.what-we-do .tagline {
  font-size: 1.6rem;
  font-weight: bold;
  color: #0a4d91;
  margin-bottom: 50px;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
  background: #eef6ff;
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.service-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 15px;
  color: #0a4d91;
}

/* Swing animation */
.swing {
  display: inline-block;
  animation: swing 2s ease-in-out infinite;
}
@keyframes swing {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(5deg); }
  50% { transform: rotate(0deg); }
  75% { transform: rotate(-5deg); }
  100% { transform: rotate(0deg); }
}

/* Responsive */
@media(max-width:768px){
  .about-header-content h1 { font-size: 2.5rem; }
  .about-header-content p { font-size: 1rem; }
  .who-we-are p { font-size: 1rem; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-76bb979 *//* Section with Africa map background */
.where-we-work {
  position: relative;
  padding: 80px 20px;
  color: #fff;
  text-align: center;
}

.overlay-map {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: url('https://upload.wikimedia.org/wikipedia/commons/8/86/Africa_blank_map.svg') center/contain no-repeat;
  opacity: 0.07;
  z-index: 0;
}

.where-we-work h2 {
  font-size: 2.8rem;
  color: #003366;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.where-we-work .subtitle {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

/* States Grid */
.states-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  position: relative;
  z-index: 1;
}

.state-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.state-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: 0.3s ease;
}

.state-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  transition: 0.3s ease;
}

.state-overlay h3 {
  font-size: 1.8rem;
  color: #fff;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.state-card:hover {
  transform: translateY(-8px);
}

.state-card:hover img {
  transform: scale(1.1);
}

.state-card:hover .state-overlay {
  background: rgba(0,0,0,0.65);
}

/* Modal */
.modal {
  display: none;
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
  justify-content: center; align-items: center;
}

.modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  max-width: 700px;
  width: 90%;
  text-align: left;
  position: relative;
}

.modal-content h2 {
  margin-top: 0;
  color: #003366;
}

.close {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 1.8rem;
  cursor: pointer;
  color: #333;
}/* End custom CSS */