*{
  overflow-x: hidden;
 
}
.action-intro {
  padding: 3rem 5%;
  text-align: center;
}

.action-intro h2 {
  color: black;
  margin-bottom: 1rem;
}

.action-intro p {
  max-width: 800px;
  margin: 0 auto;
  color: black;
  font-size: 1.1rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.contact-section {
  padding: 3rem 5%;
  background-color: rgb(1, 94, 1);
  border-radius: 10px;
  margin-bottom: 3rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 2rem;
}

.contact-form-container {
  background-color: rgba(196, 196, 188, 0.562);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px black;
}

.contact-form-container h2 {
  color:rgb(2, 161, 2);
  margin-bottom: 0.5rem;
}

.contact-form-container p {
  margin-bottom: 1.5rem;
  color: black;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 500;
  color: black;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid rgb(0, 99, 0);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgb(0, 110, 0);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  font-size: 1rem;
  user-select: none;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #f5f5f5;
  border: 1px solid rgb(1, 107, 1);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.checkbox-container:hover input ~ .checkmark {
  background-color: #e0e0e0;
}

.checkbox-container input:checked ~ .checkmark {
  background-color: #116400;
  border-color: #137000;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  background-color: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.582);
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.info-card h3 {
  color: #137000;
  margin-bottom: 1rem;
}

.info-card p {
  margin-bottom: 0.5rem;
}

.info-card a {
  color: #137000;
  transition: color 0.3s ease;
}

.info-card a:hover {
  color: #116400;
  text-decoration: underline;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-link {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #f5f5f5;
  border-radius: 12px;
  color: black;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color:#137000;
  color: white;
  transform: translateY(-2px);
}

.action-ways {
  padding: 3rem 5%;
  margin-bottom: 3rem;
}

.action-ways h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.action-ways  .container  p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
  color:black;
}

.action-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.action-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.589);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.action-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.action-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.action-card h3 {
  color: #137000;
  margin-bottom: 1rem;
  text-align: center;
}

.action-list {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.action-list li {
  margin-bottom: 0.5rem;
}

.action-link {
  display: inline-block;
  background-color: #116400;
  color: white;
  width: 200px;
  height: 45px;
  text-align: center;
  font-weight: 700;
  border-radius: 12px;
  border: 1px solid white;
  transition: color 0.3s ease;
  text-decoration:none;
}

.action-link:hover {
  color: #ffffff;
}

.join-movement {
  padding: 3rem 5%;
  background-color: #f9f9f9;
  border-radius: 12px;
  margin-bottom: 3rem;
}

.join-movement h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.join-movement > .container > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
  color: black;
}

.join-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.join-option {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px black;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.join-option:hover {
  transform: translateY(-5px);
}

.join-option h3 {
  color: #137000;
  margin-bottom: 1rem;
}

.join-option p {
  margin-bottom: 1.5rem;
  color: black;
}

.upcoming-events {
  padding: 3rem 5%;
  margin-bottom: 3rem;
}

.upcoming-events h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.upcoming-events > .container > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
  color: black;
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.event-item {
  display: flex;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.521);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.event-item:hover {
  transform: translateY(-5px);
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #137000;
  color: white;
  padding: 1.5rem;
  min-width: 100px;
}

.event-date .month {
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
}

.event-date .day {
  font-size: 2rem;
  font-weight: 700;
}

.event-details {
  padding: 1.5rem;
  flex: 1;
}

.event-details h3 {
  color: black;
  margin-bottom: 0.5rem;
}

.event-time {
  color: black;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.event-description {
  margin-bottom: 1rem;
}

.event-link {
  display: inline-block;
  color: #137000;
  font-weight: 500;
  transition: color 0.3s ease;
}

.event-link:hover {
  color: #116400;
  text-decoration: underline;
}

.testimonials {
  padding: 3rem 5%;
  background-color: #f9f9f9;
  border-radius: 12px;
  margin-bottom: 3rem;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonials-slider input[type="radio"] {
  display: none;
}

.testimonials-container {
  display: flex;
  width: 300%;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  width: 33.33%;
  padding: 0 1rem;
}

.testimonial-content {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.603);
  position: relative;
}

.testimonial-content::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 5rem;
  color: #f0f0f0;
  line-height: 1;
  z-index: 0;
}

.testimonial-content p {
  position: relative;
  z-index: 1;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  margin-bottom: 0.25rem;
  color: #137000;
}

.author-info p {
  font-size: 0.9rem;
  color: black;
  margin-bottom: 0;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.slider-controls label {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #e0e0e0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.slider-controls label:hover {
  background-color: #474747;
}

#testimonial1:checked ~ .testimonials-container {
  transform: translateX(0);
}

#testimonial2:checked ~ .testimonials-container {
  transform: translateX(-33.33%);
}

#testimonial3:checked ~ .testimonials-container {
  transform: translateX(-66.66%);
}

#testimonial1:checked ~ .slider-controls label:nth-child(1),
#testimonial2:checked ~ .slider-controls label:nth-child(2),
#testimonial3:checked ~ .slider-controls label:nth-child(3) {
  background-color: #137000;
}

.contain {
  max-width: 1000px;
  margin: auto;
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
}

.pledge-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.pledges, .certificate {
  flex: 1 1 300px;
  min-width: 280px;
  text-align: left;
}

.pledges label {
  display: block;
  margin-bottom: 15px;
  font-size: 1rem;
  padding: 10px;
  border-left: 5px solid rgb(0, 94, 0);
  background-color: #f1fff1;
  border-radius: 4px;
}

.certificate {
  padding: 20px;
  border: 2px solid rgb(3, 117, 3);
  border-radius: 8px;
  background-color: #f0fff0;
}

#nameInput {
  border: none;
  border-bottom: 1px solid #000000;
  font-size: 1rem;
  width: 60%;
  max-width: 300px;
}

button {
  padding: 10px 20px;
  font-size: 1rem;
  margin-top: 10px;
  background-color: #0a7900;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #137400;
}

.feedback-section {
  margin-top: 40px;
  text-align: left;
}

#feedbackInput {
  width: 100%;
  height: 100px;
  padding: 10px;
  font-size: 1rem;
  margin-top: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}
.coin {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.feedback-display {
  margin-top: 20px;
  background-color: #eef9ee;
  padding: 15px;
  border-left: 5px solid #0a7a00;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .pledge-container {
    flex-direction: column;
  }

  .certificate,
  .pledges {
    width: 100%;
  }

  #nameInput {
    width: 100%;
  }

  button {
    width: 100%;
  }
}


@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .join-options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .action-cards {
    grid-template-columns: 1fr;
  }

  .event-item {
    flex-direction: column;
  }

  .event-date {
    flex-direction: row;
    padding: 1rem;
    width: 100%;
    min-width: auto;
    gap: 0.5rem;
  }

  .event-date .month,
  .event-date .day {
    font-size: 1.2rem;
  }

  .testimonial-slide {
    padding: 0;
  }
}

@media (max-width: 480px) {
  .social-links {
    flex-direction: column;
  }

  .social-link {
    width: 100%;
    text-align: center;
  }

  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-content {
    padding: 1.5rem;
  }
}
