
:root {
  --pale-yellow-light: #fff0c3;
  --pale-yellow-mid: #feecb8;
  --pale-yellow-dark: #ffe187;
  --accent-color: #37694c;
  --text-color: #333;
  --dark-accent: #1e51ca;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: linear-gradient(135deg, var(--pale-yellow-light) 0%, var(--pale-yellow-mid) 50%, var(--pale-yellow-dark) 100%);
  color: var(--text-color);
  overflow-x: hidden;
}

.hidden {
  opacity: 0;
  filter: blur(5px);
  transform: translateX(50%);
  transition: all 1s;
}

.show {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}



.cta-button {
  background: linear-gradient(45deg, var(--accent-color), #0c53b5);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 158, 44, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 158, 44, 0.4);
}

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
  line-height: 1.6;
}

.hero-img {
  position: absolute;
  right: 0;
  width: 45%;
  top: 50%;
  transform: translateY(-50%);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-55%) translateX(10px); }
  100% { transform: translateY(-50%) translateX(0); }
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
}

.shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: shapeFloat linear infinite;
}

@keyframes shapeFloat {
  0% { transform: translateY(0) rotate(0deg); opacity: 1; }
  100% { transform: translateY(-1000px) rotate(360deg); opacity: 0; }
}

.section {
  padding: 100px 0;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 2.5rem;
  display: inline-block;
  position: relative;
  padding-bottom: 15px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  width: 80%;
  height: 4px;
  background: var(--accent-color);
  bottom: 0;
  left: 10%;
  border-radius: 2px;
}

.vision-mission {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
  justify-content: space-between;
}

.vision, .mission {
  flex: 1;
  min-width: 300px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.vision:hover, .mission:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.vision h3, .mission h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--dark-accent);
  position: relative;
  padding-left: 40px;
}

.vision h3::before, .mission h3::before {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  left: 0;
  top: 0;
  background: var(--accent-color);
  border-radius: 50%;
}

.vision p, .mission p {
  line-height: 1.6;
  margin-bottom: 20px;
}

.mission ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.mission li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  list-style-type: none;
}

.mission li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-size: 1.5em;
}

.programs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.program-card {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--accent-color);
  z-index: 1;
}

.program-number {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(255, 158, 44, 0.3);
}

.program-content {
  padding: 30px;
}

.program-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dark-accent);
}

.program-card p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.program-initiatives {
  margin-top: 20px;
}

.program-initiatives h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--accent-color);
}

.program-initiatives ul {
  padding-left: 20px;
}

.program-initiatives li {
  margin-bottom: 8px;
}

.volunteer-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.step {
  display: flex;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.step-number {
  flex: 0 0 120px;
  background: var(--accent-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: bold;
}

.step-content {
  padding: 30px;
  flex: 1;
}

.step h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dark-accent);
}

.step-content ul {
  padding-left: 20px;
}

.step-content li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  list-style-type: none;
}

.step-content li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-size: 1.5em;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.benefit-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--dark-accent);
  position: relative;
  padding-left: 40px;
}

.benefit-card h3::before {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  left: 0;
  top: 0;
  background: var(--accent-color);
  border-radius: 50%;
}

.benefit-card ul {
  padding-left: 20px;
}

.benefit-card li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  list-style-type: none;
}

.benefit-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-size: 1.5em;
}

.testimonials {
  margin-top: 60px;
}

.testimonial-container {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
}

.testimonial-card {
  flex: 0 0 350px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 4rem;
  color: rgba(255, 158, 44, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-content {
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial-author {
  text-align: right;
  font-weight: 600;
}

.testimonial-role {
  color: var(--accent-color);
  font-size: 0.9rem;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 158, 44, 0.3);
  cursor: pointer;
  transition: background 0.3s;
}

.testimonial-dot.active {
  background: var(--accent-color);
}

.faq {
  margin-top: 60px;
}

.faq-item {
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
  padding: 20px;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 200px;
}

.cta-section {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(255, 242, 204, 0.7) 0%, rgba(255, 230, 153, 0.7) 100%);
  margin-top: 100px;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-section p {
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-secondary {
  background: transparent;
  color: var(--dark-accent);
  border: 2px solid var(--accent-color);
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  text-decoration: none;
}

.cta-secondary:hover {
  background: var(--accent-color);
  color: white;
}




@media (max-width: 992px) {
  .hero-img {
    display: none;
  }
  
  .hero-content {
    text-align: center;
    margin: 0 auto;
  }
  
  .hero p {
    margin: 0 auto 30px;
  }
  
  .step {
    flex-direction: column;
  }
  
  .step-number {
    flex: 0 0 60px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu {
    display: block;
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  .vision-mission {
    flex-direction: column;
  }
}

