  body {
      font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      background-color: white;
      color: #333;
    }

  header {
    display: flex;
    background-color: white;
    padding: 10px;
    text-align: center;
    justify-content: space-between;
  }
  header img {
    width: 55px;
    float: left;
    padding-top: 5px;
    background: none;
    padding-right: 12px;
  }
  .icon {
    margin-top: 10px;
    float: left;
    font-weight: 800;
    background: linear-gradient(to right, rgba(255, 0, 0, 0.717), rgba(0, 0, 255, 0.694));
    -webkit-background-clip: text;
    color: transparent;
  }

  nav {
      float: right;
      text-align: right;
      margin-top: 15px;
  }

  nav a {
    display: inline-block;
    margin: 0 10px;
    text-decoration: none;
    color: #44b0ef;
    font-weight: bold;
    font-size: 1.2em;
    transition: color 0.3s ease;
  }

  nav a:hover {
    color: #2980b9;
  }

  section {
    display: none;
    padding: 0px;
    text-align: center;
    
  }

  section.active {
    display: block;
  }

  .home {
    background-color: transparent;
  }
  .container-hero {
    background-image: url('https://images.unsplash.com/photo-1542810634-71277d95dcbb?q=80&w=1000&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8M3x8cG9vciUyMGNoaWxkcmVufGVufDB8fDB8fHww');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 80px 20px;
    color: white;
    position: relative;
  }
  .container-hero {
    /* max-width: 800px; */
    margin: 0 auto;
  }

  .container-hero h2 {
    color: white;
    font-size: 2.5em;
    margin-bottom: 20px;
  }

  .container-hero p {
    color: #ecf0f1;
    font-size: 1.2em;
    margin-bottom: 30px;
  }

  .cta-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    text-decoration: none;
    background-color: #e74c3c;
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }

  .cta-button:hover {
    background-color: #c0392b;
  }
  .donate {
    margin: 5px;
  }

  .cta-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    text-decoration: none;
    background-color: #e74c3c;
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-top: 20px;
  }

  .cta-button:hover {
    background-color: #c0392b;
  }

  .container {
    display: flex;
    flex-wrap: wrap;
    justify-content:space-around;
}
.card {
    width: 350px;
    height: 290px;
    border-radius: 12px;
    margin: 10px;
    padding: 10px;
    color: #fff;
    cursor:pointer;
}
.card-donate {
  padding: 10px;
  text-align: center;         
  background-color: white;
  border: 1px solid rgba(24, 24, 24, 0.703);
  border-radius: 12px;
  box-shadow: 0 0 5px rgb(25, 25, 25), 0 0 10px currentColor, 0 0 15px currentColor, 0 0 60px currentColor;
  transition: transform 0.3s;
}
.card-donate:hover {
  transform: scale(1.1);
  /* transform: skew(-10deg, -10deg); */
  /* transform: matrix(-1, 0,0, -1,0,0); */
  /* transform: translate(-10px, -10px); */
  box-shadow: 0 0 10px rgb(28, 28, 28), 0 0 20px currentColor, 0 0 30px currentColor, 0 0 120px currentColor;
}
.card-donate h3 {
  background: linear-gradient(to right, red, blue);
  -webkit-background-clip: text;
  color: transparent;
} 
a {
text-decoration: none;
}
.card img {
width: 100%;
height: 150px;
border-radius: 8px;
margin-bottom: 5px;
position: relative; /* Add position relative to make card-header absolute positioning relative to this */
}

.card h3 {
font-size: 1.5em;
margin-bottom: 7px;
}

.card p {
font-size: 1em;
line-height: 1.4;
color: black;
}

.font-color {
    font-weight: 700;
    background: linear-gradient(to right, rgba(255, 0, 0, 0.717), rgba(0, 0, 255, 0.694));
    -webkit-background-clip: text;
    color: transparent;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

  @media (max-width: 600px) {
    header {
      display: flex;
      flex-direction: column;
      align-items: center;
      background-color: white;
      padding: 10px;
      text-align: center;
    }
    nav {
      text-align: center;
      margin-top: 5px;
      font-size: 1em;
    }
    .container-hero h2 {
      font-size: 2em;
    }

    .container-hero p {
      font-size: 1em;
    }

    .cta-button {
      padding: 12px 24px;
      font-size: 16px; 
    }

    .cta-button {
      padding: 12px 24px;
      font-size: 16px;
    }

    .get-involved-options {
      justify-content: center;
      align-items: center;
      display:inline-block;
      margin-top: 20px;
  }
  .option {
      margin: 20px;
  }

    .testimonial {
      width: 100%; 
      margin-right: 0;
  }
  }

  
.get-involved-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 20px;
}

.option {
  width: 350px;
  height: 200px;
  text-align: center;
  cursor: pointer;
  padding: 10px;
  border: 1px solid black;
  border-radius: 24px;
  transition: background-color 0.3s ease;
  transition: 0.6s;
}

.option:hover {
  scale: 1.1;
  filter: drop-shadow(8px 8px 7px gray);
} 

.option .h3 {
  display: none;
  background: linear-gradient(to right, red, blue);
  -webkit-background-clip: text;
  color: transparent;
  font-size: 30px;
  font-weight: 800;
  position: absolute;
  top: 48%;
  left: 48%;
  transform: translate(-50%, -50%);
  transition: 0.9s;

}

.option:hover .h3 {
  display: block;
}
.option img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  margin-bottom: 10px;
}
.option img:hover {
  filter: blur(2px);
}


.testimonial-slider {
  width: 100%;
  overflow: hidden;
}

.testimonial {
  padding: 20px;
  border-radius: 10px;
  background: linear-gradient(45deg, rgba(255, 166, 0, 0.418), white, rgba(0, 128, 0, 0.322));
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  color: black;
  font-weight: 500;
  text-align: center;
  width: 80%;
  margin: 0 auto; 
  box-sizing: border-box;
}
.testimonial img{
  width: 100px;
  border-radius: 50%;
}
/* id bg for the testimonial  for the story bg change*/
#bg {
  background: linear-gradient(45deg, rgba(255, 166, 0, 0.418), white, rgba(0, 128, 0, 0.322));
  transition: 0.6s;
}
#bg:hover {
  scale: 1.1;
  box-shadow: 2px 2px 3px gray;
}
.swiper-pagination {
  position: relative; 
  display: flex;
  justify-content: center;
  margin-top: 15px;
}


.whatsapp-section {
  background-color: transparent; /* WhatsApp theme color */
  color:black;
  text-align: center;
  padding: 40px 0;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background-color: transparent;
  margin: 15px;
}

.whatsapp-form {
  background: linear-gradient(to right, #25d3653f, rgba(242, 236, 236, 0.189));
  border-radius: 12px;
}
.contact-info {
  width: 45%;
  background: linear-gradient(to right, rgba(242, 236, 236, 0.189),#25d3653f);
  border-radius: 12px;
}

.contact-info h2 {
  font-size: 32px;
}

.contact-info p {
  font-size: 18px;
  margin: 10px 0;
}

.whatsapp-form {
  width: 45%;
  padding: 10px;
}

.whatsapp-form h3 {
  margin-bottom: 20px;
  font-size: 24px;
}
.social-icons {
  margin-top: 20px;
}

.social-icon {
  display: inline-block;
  margin: 0 10px;
 }
.social-icon img {
  width: 40px;
  transition: 0.6s;
}
.social-icon img:hover {
  scale: 1.2;
}
.whatsapp-form form {
  display: flex;
  flex-direction: column;
}

.whatsapp-form img {
  width: 50px;
  float:left;
  /* padding-left: 110px; */
  padding-top: 18px;
}
.whatsapp-form label {
  margin-top: 10px;
  font-size: 16px;
}

.whatsapp-form input,
.whatsapp-form textarea {
  padding: 15px;
  margin-top: 5px;
  margin-bottom: 15px;
  border: 2px solid #128C7E;
  border-radius: 12px;
  background-color: white;
}

.whatsapp-form button {
  background-color: #25D366; 
  color: #fff;
  padding: 15px 20px;
  border: none;
  cursor: pointer;
  border-radius: 12px;
  font-size: 16px;
}

.whatsapp-form button:hover {
  background-color: #075e54;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .contact-container {
      flex-direction: column;
      align-items: center;
  }

  .contact-info,
  .whatsapp-form {
      width: 90%;
      text-align: center;
      margin-bottom: 30px;
  }
}



.about-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.card-about {
  width: 40%;
  margin: 20px;
  margin-top: 65px;
  background-color: #f0f0f0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.502);
  border-radius: 12px;
  animation: slide-in 1.5s both, round-image 2s both;
  text-align: center;
  transition: 1s;
  /* box-shadow: 2px 2px 3px gray; */
}
.card-about:hover {
    scale: 1.1;
    text-shadow: 2px 3px 4px rgba(0, 0, 255, 0.39);
    border: 1px solid rgba(0, 0, 255, 0.39);
}

.card-about img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-top: -75px;
  box-shadow: 3px 3px 5px gray;

}

.card-content {
  padding: 20px;
}

@media (max-width: 768px) {
  .card-about {
    width: 86%;
  }

 .card-about img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-top: -55px;
}
}

@keyframes slide-in {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes round-image {
  from {
    border-radius: 50% 50% 0 0;
  }
  to {
    border-radius: 8px 8px 5px 5px;
  }
}



