* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
}

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

/* Header Styles */
.header {
  background: #FBEDC3;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.logo-icon {
  background: url('./public/logo192.png') center/contain no-repeat;
  border-radius: 50%;
  position: relative;
  width: 40px;
  height: 40px;
}

.logo-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: black;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: black;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #c27e35;
}

.nav-link.active {
  color: #c27e35;
}

.donate-btn {
  background: #c27e35;
  color: #1e3226;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.donate-btn:hover {
  background: #1e3226;
  color: #c27e35;
}

.join-btn {
  background: #1e3226;
  color: #fbedc3;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-left: 1rem;
}

.join-btn:hover {
  background: #c27e35;
  color: #1e3226;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: black;
  margin: 3px 0;
  transition: 0.3s;
}

/* Home Page Hero Section */
.hero {
  position: relative;
  min-height: 60vh;
  padding-top: 80px;
  padding-bottom: 3rem;
  color: white;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #fbedc3, #ccb363, #c27e35, #76290b, #1e3226);
  z-index: -2;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.hero-background.bg1 {
  background-image: url('./public/bg2.jpeg');
}

/* Apply slideshow to all hero sections */
.projects-hero,
.campaigns-hero,
.volunteer-hero,
.team-hero {
  position: relative;
  overflow: hidden;
}

.projects-hero::before,
.campaigns-hero::before,
.volunteer-hero::before,
.team-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #fbedc3, #ccb363, #c27e35, #76290b, #1e3226);
  z-index: -2;
}

.certifications {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
}

.cert-icon {
  font-size: 1.2rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.cta-button {
  /*display: flex;
  align-items: center;
  gap: 0rem;*/
  background: #76290b;
  color: #fbedc3;
  border: none;
  padding: 1rem 2rem;
  border-radius: 15px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #fbedc3;
  color: #1e3226;
}

.cta-icon {
  font-size: 1.5rem;
}

.cta-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-main {
  font-weight: 600;
  font-size: 1.1rem;
}

.cta-sub {
  font-size: 0.9rem;
  opacity: 0.9;
}



/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #1e3226;
}

.section-header p {
  font-size: 1.2rem;
  color: #666;
  text-align: justify;
}

/* About Section */
.about {
  padding: 5rem 0;
  background: #fbedc3;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1e3226;
}

.about-text p {
  margin-bottom: 2rem;
  color: #666;
  line-height: 1.8;
  text-align: justify;
}

.stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-item h4 {
  font-size: 2rem;
  font-weight: 700;
  color: #c27e35;
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: #666;
  margin: 0;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
}

/* About PDF Section */
.about-pdf-section {
  margin-top: 2rem;
  text-align: center;
}

.pdf-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #1e3226;
  color: #fbedc3;
  padding: 1rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(30, 50, 38, 0.2);
}

.pdf-link-btn:hover {
  background: #c27e35;
  color: #1e3226;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 50, 38, 0.3);
}

.pdf-icon {
  font-size: 1.2rem;
}

/* Projects Section */
.projects {
  padding: 3rem 0;
}

.projects .section-header {
  margin-bottom: 2rem;
}

.projects .section-header h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 2rem auto;
}

.project-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 450px;
  width: 350px;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-card img {
  width: 100%;
  height: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.project-content {
  padding: 1.5 rem;
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.project-content h3 {
  font-size: 10rem;
  margin-bottom: 0.8rem;
  text-align: center;
  color: #1e3226;
}

.project-content p {
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.5;
  font-size: 0.9rem;
  flex: 1;
}

.learn-more-btn {
  background: #c27e35;
  color: #1e3226;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: auto;
}

/* Responsive design for project cards */
@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 1rem;
  }
  
  .project-card {
    height: auto;
    min-height: 350px;
  }
}

.learn-more-btn:hover {
  background: #1e3226;
  color: #c27e35;
}

/* Campaigns Section */
.campaigns {
  padding: 5rem 0;
  background: #f8fafc;
}

.campaigns-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.campaign-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.campaign-image {
  position: relative;
}

.campaign-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.campaign-status {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #c27e35;
  color: #1e3226;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.campaign-content {
  padding: 1.5rem;
}

.campaign-content h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #1e3226;
}

.campaign-content p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.campaign-progress {
  margin-bottom: 1.5rem;
}




.donate-campaign-btn {
  background: #c27e35;
  color: #1e3226;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.donate-campaign-btn:hover {
  background: #1e3226;
  color: #c27e35;
}

/* Sewak Testimonials Section */
.sewak-testimonials {
  padding: 5rem 0;
  background: #f8f9fa;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid rgba(194, 126, 53, 0.1);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: #c27e35;
}

.testimonial-card.hidden {
  display: none;
}

.testimonial-card.show {
  display: block;
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.testimonial-image {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #c27e35;
  box-shadow: 0 4px 15px rgba(194, 126, 53, 0.3);
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-quote {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
  padding: 0 1rem;
}

.testimonial-quote::before {
  content: '"';
  font-size: 3rem;
  color: #c27e35;
  position: absolute;
  top: -10px;
  left: -5px;
  font-family: serif;
}

.testimonial-author h4 {
  color: #1e3226;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.testimonial-author p {
  color: #c27e35;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.read-more-btn {
  background: #c27e35;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(194, 126, 53, 0.3);
}

.read-more-btn:hover {
  background: #a66a2b;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(194, 126, 53, 0.4);
}

.read-more-btn.show-less {
  background: #1e3226;
}

.read-more-btn.show-less:hover {
  background: #0f1a13;
}

/* Responsive styles for testimonials */
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .testimonial-card {
    padding: 2rem;
  }
  
  .testimonial-quote {
    font-size: 1rem;
    padding: 0 0.5rem;
  }
  
  .testimonial-quote::before {
    font-size: 2.5rem;
    top: -8px;
    left: -3px;
  }
}
  @media (max-width: 768px) {
    .testimonial-card {
      padding: 1.5rem;
      margin: 0 0.5rem;
    }
    
    .testimonial-image {
      width: 100px;
      height: 100px;
    }
    
    .testimonial-quote {
      font-size: 1rem;
    }
    
    .slider-controls {
      gap: 0.5rem;
    }
    
    .slider-btn {
      width: 35px;
      height: 35px;
      font-size: 1rem;
    }
  }

/* Volunteer Section */
.volunteer {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1e3226, #76290b, #c27e35);
  color: white;
}

.volunteer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.volunteer-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.volunteer-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.volunteer-benefits {
  margin-bottom: 2rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.benefit-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.benefit-item h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.benefit-item p {
  margin: 0;
  opacity: 0.9;
}

.volunteer-btn {
  background: #c27e35;
  color: #1e3226;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.volunteer-btn:hover {
  background: #fbedc3;
  color: #1e3226;
}

.volunteer-image img {
  width: 100%;
  border-radius: 15px;
}

/* Team Section */
.team {
  padding: 5rem 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-member {
  text-align: center;
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.team-member h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #1e3226;
}

.role {
  color: #c27e35;
  font-weight: 600;
  margin-bottom: 1rem;
}

.bio {
  color: #666;
  line-height: 1.6;
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background: #f8fafc;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #1e3226;
}

.contact-item p {
  color: #666;
  margin: 0;
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #c27e35;
}

.submit-btn {
  background: #c27e35;
  color: #1e3226;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  background: #1e3226;
  color: #c27e35;
}

/* Footer */
.footer {
  background: #1e3226;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 3rem;
  margin-bottom: 2rem;
  align-items: start;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-section h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #fbedc3;
  font-weight: 600;
}

.footer-section p {
  margin-bottom: 0.8rem;
  opacity: 0.9;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: white;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.3s ease;
  line-height: 1.6;
}

.footer-section ul li a:hover {
  opacity: 1;
  color: #c27e35;
}

/* Footer Responsive Design */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .social-links {
    grid-template-columns: repeat(3, 1fr);
    max-width: 250px;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .social-links {
    grid-template-columns: repeat(4, 1fr);
    max-width: 100%;
    justify-content: center;
  }
  
  .footer-section p {
    justify-content: center;
  }
}

.social-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: center;
  max-width: 300px;
}


.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: rgba(194, 126, 53, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid rgba(194, 126, 53, 0.2);
}

.social-link:hover {
  background: #c27e35;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(194, 126, 53, 0.3);
}

.social-link img {
  display: block;
  transition: transform 0.3s ease;
}

.social-link:hover img {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(254, 199, 0, 0.1);
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(2, 70, 46, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 2rem;
    transition: left 0.3s ease;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .hero {
    padding-top: 100px;
    min-height: 70vh;
  }

  .certifications {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .cert-badge {
    text-align: center;
    justify-content: center;
  }

  .hero-content {
    max-width: 100%;
    padding: 0 1rem;
  }

  .about-content,
  .volunteer-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .image-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .image-card img {
    height: 200px;
  }

  .stats {
    justify-content: center;
  }

  .projects-grid,
  .campaigns-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-section {
    align-items: center;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .certifications {
    margin-bottom: 2rem;
  }

  .cert-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }

  .image-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .image-card img {
    height: 250px;
  }

  .stats {
    flex-direction: column;
    gap: 1rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .campaigns-grid {
    grid-template-columns: 1fr;
  }

  .campaign-card {
    margin: 0 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .social-links {
    gap: 0.5rem;
  }

  .social-link {
    padding: 0.4rem;
  }

  .social-link img {
    width: 20px;
    height: 20px;
  }
}

/* Projects Page Styles */
.projects-hero {
  position: relative;
  min-height: 60vh;
  padding-top: 80px;
  padding-bottom: 3rem;
  /*padding: 120px 0 80px;*/
  color: white;
  text-align: center;
  overflow: hidden;
}

.projects-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #c27e35, #1e3226);
  z-index: -2;
}

.projects-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.projects-hero-content p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #c27e35;
}

.hero-stat p {
  font-size: 1rem;
  margin: 0;
  opacity: 0.9;
}

.project-categories {
  padding: 3rem 0;
  background: #f8fafc;
}

.category-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: white;
  border: 2px solid #e5e7eb;
  color: #666;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: #c27e35;
  border-color: #c27e35;
  color: #1e3226;
}

.featured-projects {
  padding: 5rem 0;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 3rem;
}

.featured-project {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.featured-project:hover {
  transform: translateY(-5px);
}

.project-image {
  position: relative;
}

.project-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.project-status {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #c27e35;
  color: #1e3226;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.project-info {
  padding: 2rem;
}

.project-category {
  display: inline-block;
  background: #e0f2fe;
  color: #0369a1;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.project-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1e3226;
}

.project-info p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.project-metrics {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.metric {
  text-align: center;
}

.metric-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #c27e35;
}

.metric-label {
  font-size: 0.9rem;
  color: #666;
}

.project-btn {
  background: #c27e35;
  color: #1e3226;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.project-btn:hover {
  background: #1e3226;
  color: #c27e35;
}

.all-projects {
  padding: 5rem 0;
  background: #f8fafc;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.project-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.project-content {
  padding: 0.8rem;
}

.project-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: #1e3226;
}

.project-content p {
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.5;
  font-size: 0.9rem;
}

.project-details {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: #666;
}

.project-location,
.project-duration {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.projects-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1e3226, #c27e35);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-primary {
  background: #c27e35;
  color: #1e3226;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-primary:hover {
  background: white;
  color: #1e3226;
}

.cta-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-secondary:hover {
  background: white;
  color: #1e3226;
}

/* Responsive Design for Projects */
@media (max-width: 768px) {
  .projects-hero-content h1 {
    font-size: 2rem;
  }

  .hero-stats {
    gap: 2rem;
  }

  .hero-stat h3 {
    font-size: 2rem;
  }

  .category-filters {
    gap: 0.5rem;
  }

  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .featured-grid {
    grid-template-columns: 1fr;
  }

  .project-metrics {
    gap: 1rem;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .project-details {
    flex-direction: column;
    gap: 0.5rem;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    max-width: 300px;
  }
}

/* Hide campaign cards by default if they have the 'hidden' class */
.campaign-card.hidden {
  display: none;
}

.read-more-btn {
  background: #c27e35;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(194, 126, 53, 0.3);
}

.read-more-btn:hover {
  background: #a66a2b;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(194, 126, 53, 0.4);
}

.read-more-btn.show-less {
  background: #1e3226;
}

.read-more-btn.show-less:hover {
  background: #0f1a13;
}

/* Menu Baba styling for lists */
.menu_baba {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.menu_baba li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin-bottom: 0.5rem;
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
}

.menu_baba li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.5rem;
  color: #c27e35;
  font-weight: bold;
  font-size: 1.1rem;
}

.menu_baba li:hover {
  color: #1e3226;
  transform: translateX(5px);
  transition: all 0.3s ease;
}

.menu_baba li:hover::before {
  color: #1e3226;
  transform: scale(1.2);
  transition: all 0.3s ease;
}
