  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body, html {
      overflow-x: hidden;
      font-family: Arial, sans-serif;
    }
  
 
.logo img {
  height:  80px; 
  width: 190px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color:#003d33;
  color: white;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar ul li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  padding: 8px 12px;
  transition: 0.3s;
}

.navbar ul li a:hover {
  background-color:yellow;
  border-radius: 5px;
}

.give-btn {
  background-color: #ffcc00;
  color: #003366 !important;
  border-radius: 5px;
  padding: 8px 16px;
  font-weight: bold;
}

.menu-icon {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
}

@media (max-width: 767px) {


  body, html {
  overflow-x: hidden;
  }
  .menu-icon {
    display: block;
  }

  .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #003d33;
    flex-direction: column;
    display: none;
  }

  .navbar.active {
    display: flex;
  }

  .navbar ul {
    flex-direction: column;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .navbar ul li {
    width: 100%;
  }

  .navbar ul li a {
    width: 100%;
    display: block;
    padding: 12px 20px;
  }
}





    .hero {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      background-color: #003d33;
      color: #fff;
      padding: 2rem;
     
    }
    .hero img {
      max-width: 500px;
      height: 450px;
      flex:1;
      margin-top:50px;

    }
    .hero-text {
      flex: 1;
      
    }
    .hero-text h1 {
      color: #ffd600;
      margin-left: 80px;
      font-size: 30px;
      
    }
    .hero-text h3 {
      margin-left: 80px;
      font-size: 30px;
    }
    .hero-text p{
      margin-left: 80px;
      font-size: 18px;
      margin-top: 10px;
    }
    .start-btn {
      margin-left: 80px;
      margin-top: 10px;
      border: 2px solid yellow;
      font-size: 30px;
      border-radius: 50px;
      background-color: yellow   ;
    }
    .start-btn:hover{
      background-color: #004d40;
    }
    .donate-box {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      margin: 1rem auto;
      flex-wrap: wrap;
    }
    .donate-box input,
    .donate-box button {
      padding: 0.5rem;
      border: 1px solid #ccc;
      border-radius: 5px;
    }
    .donate-box button {
      background-color: #ffd600;
      border: none;
      cursor: pointer;
    }
    .fundraisers {
      padding: 2rem;
      text-align: center;
    }
    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1rem;
      margin-top: 1rem;
    }
    .card {
      background-color: #fff;
      padding: 1rem;
      border-radius: 10px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      animation: slideUp 0.5s ease forwards;
    }
    .card img {
      width: 100%;
      border-radius: 10px;
    }
    .progress-bar {
      height: 8px;
      background-color: #ffd600;
      border-radius: 4px;
      margin: 8px 0;
      width: 80%; /* example progress */
    }
    .card button {
      background-color: #004d40;
      color: #fff;
      padding: 0.5rem 1rem;
      margin-top: 1rem;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }
    .card button a {
      color: white;
      text-decoration: none;
    }
    .contributors {
      display: flex;
      justify-content: space-between;
      margin-top: 0.5rem;
      font-size: 0.85rem;
    }
    .contributors span {
      display: flex;
      align-items: center;
    }
    .contributors span::before {
      content: '\2764';
      color: red;
      margin-right: 5px;
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    @keyframes slideUp {
      from { transform: translateY(20px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }
  


     .monthly-donation, .how-to-raise, .bottom-stats {
      padding: 2rem;
      text-align: center;
    }
    .monthly-donation {
      background-color: #fff;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
     
    }
    .monthly-donation-text {
      flex: 1;
      padding: 1rem;
    }
    .monthly-donation img {
      flex: 1;
      max-width: 600px;
      border-radius: 8px;
    }
    .benefits {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin: 1rem 0;
      flex-wrap: wrap;
      font-size: 20px;
    }
    .benefits div {
      background: #f0f0f0;
      padding: 0.5rem 1rem;
      border-radius: 5px;
    }
    .how-to-raise h2 {
      margin-bottom: 1rem;
    }
    .steps {
      display: flex;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
      height: 200px;
    }
    .step {
      background: #fff;
      padding: 1rem;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      width: 250px;
    }
    .action-buttons {
      margin-top: 1.5rem;
    }
    .action-buttons button {
      margin: 0 0.5rem;
      padding: 0.5rem 1rem;
      border-radius: 5px;
      border: none;
      cursor: pointer;
    }
    .bottom-stats {
      background: #003d33;
      color: white;
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      height: 90px;
    }
    .stat {
      
      text-align: center;
    
    
    
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    @keyframes slideUp {
      from { transform: translateY(20px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }



    .container {
      max-width: 900px;
      margin: auto;
      background-color: white;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      position: relative;
      margin-top: 70px;

    }

    h2 {
      text-align: center;
    }
.slider {
  position: relative;
  max-width: 800px;
  margin: auto;
  height: auto;
  padding: 20px;
  box-sizing: border-box;
  
}

.slide {
  display: none;
  flex-direction: row;
  align-items: center;
  position: relative;
  width: 100%;
  gap: 20px;
}

.slide.active {
  display: flex;
}

.slide img {
  width: 200px;
  height: 200px;
  border-radius: 10px;
  object-fit: cover;
}

.slide-content {
  max-width: 600px;
}

.slide-content h3 {
  font-style: italic;
  margin: 0 0 10px;
}

.slide-content p {
  margin: 5px 0;
}

.slider-controls {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.slider-controls button {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 20px;
  transition: 0.3s;
}

.slider-controls button:hover {
  background: #eee;
}

/* ✅ Responsive layout for mobile */
@media (max-width: 768px) {
  .slide {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .slide img {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin: 0 0 15px 0;
  }

  .slide-content {
    max-width: 100%;
  }
}


  
h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.benefits {
  text-align: center;
  padding: 60px 20px;
}

.subtitle {
  text-align: center;
}

.carns {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;

 

}
.ter{
    background-color:aliceblue;
    
}
.carn {
    
  border-radius: 8px;
  padding: 20px;
  width: 200px;
  border:2px solid rgb(231, 224, 224);
  text-align: left;
}

.carn h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.cta {
  background: #013d34;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
}

.cta h3 {
  margin-bottom: 20px;
}

.btn-yellow {
  background: #ffce00;
  color: #000;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}



.social-icons {
  margin-top: 10px;
}

.social-icons a {
  color: #fff;
  font-size: 1.2rem;
  margin-right: 10px;
  display: inline-block;
}

.links {
  display: flex;
  gap: 40px;
}

.links ul {
  list-style: none;
  padding: 0;
}

.links ul li {
  margin-bottom: 8px;
}

.links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.links ul li a:hover {
  color: #fff;
}

.map iframe {
  border-radius: 8px;
  width: 100%;
}




.footer {
  background-color:#012b23;;
  color: #fff;
  padding: 40px 20px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  gap: 130px;
  max-width: 1150px;

}

.footer-column {
  flex: 1 1 250px;
}

.footer-column h2, .footer-column h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  margin-right: 30px;
}

.footer-column p {
  font-size: 0.95rem;
  margin: 5px 0;
}

.logo {
  width: 60px;
  height: auto;
  margin-bottom: 10px;
  margin-left: 10px;
}

.social-icons {
  margin-top: 10px;
}

.social-icons a {
  color: #fff;
  font-size: 1.2rem;
  margin-right: 10px;
  display: inline-block;
}

.links {
  display: flex;
  gap: 40px;
}

.links ul {
  list-style: none;
  padding: 0;
}

.links ul li {
  margin-bottom: 8px;
}

.links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.links ul li a:hover {
  color: #fff;
}

.map iframe {
  border-radius: 8px;
  width: 100%;
}

.footer-bottom {
  border-top: 1px solid #333;
  text-align: center;
  margin-top: 30px;
  padding-top: 15px;
  font-size: 0.9rem;
  color: #aaa;
}


/* Base Styles (already defined above) */

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-text h1, .hero-text h3, .hero-text p, .start-btn {
    margin-left: 40px;
  }

}

@media (max-width: 900px) {
  .monthly-donation, .bottom-stats {
    flex-direction: column;
    align-items: center;
  }

  .monthly-donation img {
    max-width: 100%;
  }

  .container {
    margin-top: 100px;
  }
}

@media (max-width: 768px) {
 

  .hero, .monthly-donation {
    flex-direction: column;
    text-align: center;
  }

  .hero img {
    max-width: 100%;
    height: auto;
  }

  .hero-text h1, .hero-text h3, .hero-text p, .start-btn {
    margin-left: 0;
    padding: 0 1rem;
  }


  .cards {
      
      grid-template-columns: 1fr;
  }

  .steps {
    flex-direction: column;
    height: auto;
    align-items: center;
  }

  .bottom-stats {
    flex-direction: column;
    height: auto;
    gap: 1rem;
    padding: 1rem 0;
  }

  .footer-top {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
 

  .start-btn {
    font-size: 20px;
    padding: 8px 16px;
  }

  .donate-box input, .donate-box button {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .benefits {
    font-size: 16px;
    flex-direction: column;
    align-items: center;
  }

  .carn {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .btn-yellow, .start-btn {
    font-size: 16px;
    padding: 8px 12px;
  }

  .footer-subscribe input, .footer-subscribe button {
    font-size: 14px;
  }

  .footer-links li {
    font-size: 14px;
  }

  .hero-text h1, .hero-text h3 {
    font-size: 20px;
  }

  .hero-text p {
    font-size: 14px;
  }

  .footer {
    padding: 20px 10px;
  }

  .cta h3 {
    font-size: 18px;
  }

  .btn-yellow {
    padding: 6px 12px;
  }
}




 .rn {
      background-color: #f0f4f8;
      display: flex;
      justify-content: space-around;
      align-items: center;
    }

    .testimonial-card {
      background-color: white;
      border-radius: 16px;
      padding: 30px;
      max-width: 350px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

    .testimonial-card:hover {
      transform: translateY(-5px);
    }

    .testimonial-content {
      font-size: 1rem;
      color: #555;
      line-height: 1.6;
      margin-bottom: 20px;
      position: relative;
      padding-left: 20px;
    }

    .testimonial-content::before {
      content: "“";
      font-size: 40px;
      position: absolute;
      left: 0;
      top: -10px;
      color: #4a90e2;
    }

    .author-info {
      
    }

    .author-img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
      margin-right: 15px;
      border: 3px solid #4a90e2;
    }

    .author-name{
      font-weight: 700;
      font-size: 1.1rem;
      color: #333;
    }

    .author-role {
      font-size: 0.9rem;
      color: #777;
    }

  
    .tets{
      text-align: center;
      margin-bottom: 30px;
      font-size: 40px;
      text-transform: capitalize;
    }
    @media (max-width: 768px) {
  .rn {
    flex-direction: column;
    padding: 10px;
  }

  .testimonial-card {
    width: 100%;
    max-width: 100%;
  }

  .tets {
    font-size: 28px;
  }

  .testimonial-content {
    font-size: 0.95rem;
  }

  .author-name {
    font-size: 1rem;
  }

  .author-role {
    font-size: 0.85rem;
  }
}