

* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }

    body {
      background: #fff;
      color: #333;
    }

  header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 40px;
      background: #fff;
      border-bottom: 1px solid #ddd;
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
    }

    .logo {
      display: flex;
      align-items: center;
    }

    .logo img {
      height: 50px;
      margin-right: 10px;
    }

    .nav-links {
      display: flex;
      gap: 25px;
      list-style: none;
      transition: all 0.3s ease-in-out;
    }

    .nav-links a {
      text-decoration: none;
      color: #000;
      font-weight: 500;
    }

    .donate-btn {
      background: #0dbb74;
      color: #fff;
      padding: 8px 16px;
      border-radius: 4px;
      text-decoration: none;
      font-weight: bold;
    }

    /* Hamburger Menu */
    .hamburger {
      display: block;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
    }

    .hamburger span {
      width: 25px;
      height: 3px;
      background: #000;
      border-radius: 2px;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .nav-links {
        position: absolute;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background: #fff;
        width: 430px;
        padding: 20px;
        border-left: 1px solid #ddd;
        text-align: left;
        display: none;
      }

      .nav-links.show {
        display: flex;
        right: 0;
      }

      .hamburger {
        display: flex;
      }
    }
    /* Hero Section */
    .hero {
      position: relative;
      height: 100vh;
      overflow: hidden;
      margin-top: 0px;
    }

    .slides {
      display: flex;
      width: 100%;
      height: 100%;
      transition: transform 0.7s ease-in-out;
    }

    .slide {
      flex: 1 0 100%;
      height: 100%;
      position: relative;
    }

    .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
    }

    .hero-content {
      position: absolute;
      top: 50%;
      left: 2%;
      transform: translateY(-50%);
      color: white;
      max-width: 600px;
    }

    .hero-content h5 {
      font-size: 16px;
      color:  #0dbb74;
      letter-spacing: 2px;
      margin-bottom: 10px;
    }

    .hero-content h1 {
      font-size: 42px;
      font-weight: bold;
      margin-bottom: 15px;
    }

    .hero-content p {
      margin-bottom: 20px;
      font-size: 16px;
      line-height: 1.6;
    }

    .hero-content .btn {
      background: #0dbb74;
      color: #fff;
      padding: 10px 20px;
      border-radius: 4px;
      text-decoration: none;
      font-weight: bold;
    }

    /* Slider Dots */
    .dots {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
    }

    .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: white;
      opacity: 0.5;
      cursor: pointer;
    }

    .dot.active {
      opacity: 1;
      background:  #0dbb74;
    }


    
    .donation-section {
      max-width: 1200px;
      margin: 60px auto;
      padding: 20px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 30px;
    }

    .card {
      border: 1px solid #eee;
      padding: 30px;
      border-radius: 8px;
      background: #fff;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .icon {
      font-size: 32px;
      color: #0dbb74;
      margin-bottom: 15px;
    }

    .card h3 {
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 15px;
      color: #000;
    }

    .card p {
      font-size: 15px;
      color: #555;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .card a {
      text-decoration: none;
      font-weight: bold;
      color: #000;
      position: relative;
      display: inline-block;
    }

    .card a::after {
      content: "";
      display: block;
      width: 40px;
      height: 2px;
      background:  #0dbb74;
      margin-top: 5px;
      transition: width 0.3s ease;
    }

    .card a:hover::after {
      width: 100%;
    }


     .container {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      justify-content: center;
     
    }

    /* Common styling */
    .card1, .card2, .card3 {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      overflow: hidden;
      width: 300px;
      text-align: center;
      transition: transform 0.3s ease;
      opacity: 0; /* hidden initially */
      transform: translateY(50px);
    }

    .card1 img, .card2 img, .card3 img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .card1 p, .card2 p, .card3 p {
      padding: 15px;
      font-size: 16px;
      color: #333;
    }

    /* Hover effects different for each */
    .card1:hover {
      transform: scale(1.05) rotate(-1deg);
    }
    .card2:hover {
      transform: scale(1.05) rotate(1deg);
    }
    .card3:hover {
      transform: scale(1.05);
    }



      .rem {
      background: #f6fdf9;
      padding: 40px;    
      display: flex;
      justify-content: center;
    }
      .programmes {
        margin-top: 50PX  ;
        width: 900PX;
    }

    .programmes h2 {
      font-size: 22px;
      font-weight: bold;
      margin-bottom: 20px;
      color:  #0dbb74;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    .card {
      background: #fff;
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(1, 1, 1, 0.10);
      transition: all 0.3s ease;
      border: 1px solid #e0e0e0;
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .card.active {
      background: #0dbb74;
      color: #fff;
    }

    .card h3 {
      font-size: 18px;
      margin-bottom: 10px;
    }

    .card p {
      font-size: 14px;
      line-height: 1.5;
      color: #555;
    }

    .card.active p {
      color: #e0f7f4;
    }



      .rt {
      font-family: Arial, sans-serif;
      background: #f4f4f4;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      gap: 20px;
    }

    .carde {
      background: white;
      width: 320px;
      border-radius: 60px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      overflow: hidden;
      padding-bottom: 20px;
      text-align: center;
    }

    .carde img {
      width: 100vh;
    height: 90vh;
      object-fit: cover;
    }

    .tag {
      position: absolute;
      margin: 10px;
      background: #0dbb74;
      color: white;
      font-weight: bold;
      padding: 5px 12px;
      border-radius: 20px;
    }

    .content {
      padding: 15px;
    }

    .title {
      font-size: 16px;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .amount {
      font-size: 18px;
      font-weight: bold;
      margin: 10px 0;
    }

    .progress-container {
      width: 90%;
      background: #eee;
      border-radius: 10px;
      height: 10px;
      margin: 0 auto;
      overflow: hidden;
    }

    .progress-bar {
      height: 10px;
      width: 60%;
      background: #0dbb74;
      transition: width 1s ease-in-out;
    }

    .btn {
      margin-top: 15px;
      padding: 10px 20px;
      border: none;
      background: #0dbb74;
      color: white;
      font-size: 16px;
      border-radius: 8px;
      cursor: pointer;
      transition: 0.3s;
    }

    .btn:hover {
      background: #0aa563;
    }

   
  .trm {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background: #f8f8f8;
    }

       .news-section {
      text-align: center;
      padding: 50px 20px;
    }

    .news-section h2 {
      font-size: 32px;
      margin-bottom: 40px;
      font-weight: bold;
    }

    .news-section h2 span {
      color:  #0dbb74;
    }

    .news-container {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .news-card {
      position: relative;
      width: 300px;
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      overflow: hidden;
      transition: transform 0.3s ease;
    }

    .news-card:hover {
      transform: translateY(-8px);
    }

    .news-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
    }

    .news-content {
      background: #fff;
      padding: 15px;
      text-align: left;
    }

    .news-content p {
      font-size: 14px;
      color: #333;
      margin: 0 0 10px;
    }

    .news-content span {
      font-size: 13px;
      color: gray;
    }

    /* Red Pin */
    .pin {
      position: absolute;
      top: -15px;
      left: 20px;
      width: 30px;
      height: 30px;
      background: url('https://cdn-icons-png.flaticon.com/512/726/726623.png') no-repeat center/cover;
    }

    @media (max-width: 768px) {
      .news-container {
        flex-direction: column;
        align-items: center;
      }
    }

    
        .card-container {
      position: relative;
      width: 320px;
      background: #fff;
      box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
      border-radius: 8px;
      overflow: hidden;
    }

    .card-container img {
      width:200px;
      height: 200px;
     
    }

    .card-content {
      padding: 15px;
    }

    .card-content p {
      font-size: 15px;
      color: #333;
      margin-bottom: 10px;
    }

    .card-content span {
      font-size: 14px;
      color: gray;
    }

    /* Orange dots decoration */
    .dots-pattern {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
      margin: 15px 0;
    }

    .dot {
      width: 10px;
      height: 10px;
      background: #0dbb74;
      border-radius: 50%;
    }

    .dot.big {
      width: 20px;
      height: 20px;
    }

    .dot.medium {
      width: 14px;
      height: 14px;
    }


     footer {
      background: #f9f9f9;
      padding: 50px 10%;
      display: flex;
      justify-content: space-between;
      gap: 40px;
      flex-wrap: wrap;
    }

    /* Left section */
    .footer-left {
      flex: 1;
      min-width: 220px;
    }

    .footer-left img {
      width: 180px;
      margin-bottom: 15px;
    }

    .footer-left p {
      font-size: 14px;
      line-height: 1.6em;
      color: #444;
      margin-bottom: 15px;
    }

    .social-icons {
      display: flex;
      gap: 10px;
    }

    .social-icons a {
      width: 30px;
      height: 30px;
      background: #eee;
      display: flex;
      justify-content: center;
      align-items: center;
      color: #555;
      text-decoration: none;
      border-radius: 3px;
    }

    .social-icons a:hover {
      background:  #0dbb74;
      color: #fff;
    }

    /* Quick links */
    .footer-links {
      flex: 1;
      min-width: 160px;
    }

    .footer-links h3 {
      font-size: 16px;
      margin-bottom: 10px;
      position: relative;
    }

    .footer-links h3::after {
      content: "";
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 25px;
      height: 2px;
      background: #0dbb74;
    }

    .footer-links ul {
      list-style: none;
      padding: 0;
    }

    .footer-links ul li {
      margin: 8px 0;
    }

    .footer-links ul li a {
      text-decoration: none;
      color: #444;
      font-size: 14px;
    }

    .footer-links ul li a:hover {
      color: #0dbb74;
    }

    /* Newsletter */
    .newsletter {
      flex: 1;
      min-width: 250px;
    }

    .newsletter h3 {
      font-size: 16px;
      margin-bottom: 10px;
      position: relative;
    }

    .newsletter h3::after {
      content: "";
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 25px;
      height: 2px;
      background:  #0dbb74;
    }

    .newsletter p {
      font-size: 14px;
      color: #444;
      margin-bottom: 15px;
    }

    .newsletter input {
      width: 100%;
      padding: 10px;
      margin-bottom: 12px;
      border: 1px solid #ccc;
      border-radius: 3px;
      font-size: 14px;
    }

    .newsletter button {
      width: 100%;
      padding: 12px;
      background:  #0dbb74;
      border: none;
      color: #fff;
      font-size: 15px;
      cursor: pointer;
      border-radius: 3px;
    }

    .newsletter button:hover {
      background:  #0dbb74;
    }

    /* Responsive */
    @media (max-width: 768px) {
      footer {
        flex-direction: column;
      }
    }


    @media (max-width: 992px) {
  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .donation-section {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
}

/* Mobile (<= 768px) */
@media (max-width: 768px) {
  .hero {
    height: 80vh;
  }

  .hero-content {
    max-width: 90%;
    left: 5%;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 26px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-content .btn {
    padding: 8px 16px;
    font-size: 14px;
  }

  .donation-section {
    grid-template-columns: 1fr;
    margin: 40px auto;
    padding: 15px;
  }
}

/* Small Mobile (<= 480px) */
@media (max-width: 480px) {
  .hero {
    height: 70vh;
  }

  .hero-content h1 {
    font-size: 22px;
  }

  .hero-content h5 {
    font-size: 14px;
  }

  .hero-content p {
    font-size: 13px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }
}


.rt {
  font-family: Arial, sans-serif;
  background: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  gap: 20px;
  flex-wrap: wrap; /* ✅ responsive ke liye */
}

.carde {
  background: white;
  width: 320px;
  border-radius: 60px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  padding-bottom: 20px;
  text-align: center;
}

.carde img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.tag {
  position: absolute;
  margin: 10px;
  background: #0dbb74;
  color: white;
  font-weight: bold;
  padding: 5px 12px;
  border-radius: 20px;
}

.content {
  padding: 15px;
}

.title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.amount {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0;
}

.progress-container {
  width: 90%;
  background: #eee;
  border-radius: 10px;
  height: 10px;
  margin: 0 auto;
  overflow: hidden;
}

.progress-bar {
  height: 10px;
  width: 60%;
  background: #0dbb74;
  transition: width 1s ease-in-out;
}

.btn {
  margin-top: 15px;
  padding: 10px 20px;
  border: none;
  background: #0dbb74;
  color: white;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background: #0aa563;
}

/* ✅ Responsive Design */

/* Tablet */
@media (max-width: 768px) {
  .rt {
    flex-direction: column; /* cards ek ke niche ek */
    height: auto;
    padding: 20px 0;
  }

  .carde {
    width: 80%;
    border-radius: 30px;
  }

  .carde img {
    height: 160px;
  }

  .title {
    font-size: 14px;
  }

  .amount {
    font-size: 16px;
  }

  .btn {
    font-size: 14px;
    padding: 8px 16px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .carde {
    width: 95%;
    border-radius: 20px;
  }

  .carde img {
    height: 140px;
  }

  .title {
    font-size: 13px;
  }

  .amount {
    font-size: 15px;
  }

  .btn {
    font-size: 13px;
    padding: 6px 12px;
  }
}
