  body {
            text-align: center;
       
            margin: 0;
            padding: 0;


  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(120deg, #89f7fe, #66a6ff);
  /* display: flex; */
  justify-content: center;
  align-items: center;
  height: 100vh;
      text-align: center;
      color: #333

    }
        nav {
            background-color: gainsboro;
        }

        .m {
            list-style: none;
            margin: 0;
            padding: 0;
            overflow: hidden;
        }

        .m li {
            float: left;
        }

        .m li a {
            display: block;
            color: black;
            font-size: 20px;
            text-align: center;
            padding: 10px 20px;
            text-decoration: none;
            transition: 0.3s ease;
        }

        .m li a:hover {
            background-color: blue;
            color: white;
        }

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

        main {
            padding: 20px;
            font-size: 18px;
            line-height: 1.6;
            margin: 0%;
        }

        h1 {
            margin-top: 40px;
            font-size: 32px;
        }

        .gallery {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            justify-content: center;
            padding: 20px;
        }

        .card {
            background: #fff;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            border-radius: 8px;
            width: 220px;
            text-align: center;
            padding: 16px;
        }

        .card img {
            width: 100%;
            border-radius: 6px;
        }

        .card div {
            margin-top: 12px;
        }
  

    h1 {
      margin-top: 40px;
      font-size: 36px;
      color: #333;
    }

    .programmes {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 24px;
      padding: 40px 20px;
    }

    .programme-card {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      padding: 20px;
      width: 300px;
      text-align: left;
      transition: transform 0.3s ease;
    }

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

    .programme-title {
      font-size: 24px;
      font-weight: bold;
      color: #2c3e50;
      margin-bottom: 10px;
    }

    .programme-subtitle {
      font-size: 18px;
      font-weight: 600;
      color: #2980b9;
      margin-bottom: 10px;
    }

    .programme-description {
      font-size: 16px;
      color: #555;
      line-height: 1.5;
    }
  

    .section-title {
      margin-top: 40px;
      font-size: 32px;
      color: #2c3e50;
      font-weight: bold;
    }

    .section-subtitle {
      font-size: 20px;
      color: #555;
      margin-bottom: 30px;
    }

    .goals-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 24px;
      padding: 40px 20px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .goal-card {
      background-color: #ffffff;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }

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

    .goal-title {
      font-size: 18px;
      color: #2980b9;
      font-weight: 600;
    }


    .impact-section {
      padding: 50px 20px;
      background-color: #eaf6ff;
    }

    .impact-section h1 {
      font-size: 36px;
      color: #2c3e50;
      margin-bottom: 40px;
    }

    .impact-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 30px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .impact-card {
      background-color: #ffffff;
      border-radius: 12px;
      padding: 30px 20px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }

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

    .impact-label {
      font-size: 18px;
      font-weight: bold;
      color: #0077b6;
      margin-bottom: 10px;
    }

    .impact-number {
      font-size: 40px;
      font-weight: bold;
      color: #ff6f00;
    }

    .impact-plus {
      font-size: 24px;
      color: #ff6f00;
      vertical-align: super;
    }

    .impact-text {
      font-size: 16px;
      color: #555;
      margin-top: 10px;
      line-height: 1.4;
    }

    .programmes-heading {
      margin-top: 8%;
      font-size: 30px;
      font-weight: bold;
      color: #2c3e50;
    }

    .smile{
      background-image: url('images.jpg');
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
      margin-top:5%;
    }

    .see{
      margin-top: 5%;
      text-shadow: 2px 2px 1px grey
    }

    .category{
      margin-top: 5%;
      margin-bottom: 5%;
    }
     .center-img{
            display: block;
            margin-left: auto;
            margin-right: auto;
            width: 50%;
        }

.signup-container {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 400px;
}

.signup-form h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #333;
}

.signup-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: #333;
}

.signup-form input {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 6px;
  transition: border-color 0.3s;
}

.signup-form input:focus {
  border-color: #66a6ff;
  outline: none;
}

.signup-form button {
  width: 100%;
  padding: 12px;
  background-color: #66a6ff;
  border: none;
  border-radius: 6px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.signup-form button:hover {
  background-color: #558de8;
}

.signup-form p {
  text-align: center;
  margin-top: 15px;
}

.signup-form a {
  color: #66a6ff;
}


.donation {
  max-width: 500px;
  margin: 2em auto;
  text-align: center;
  background: #fff;
  padding: 2em;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.donation form {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.donation input,
.donation select,
.donation button {
  padding: 0.7em;
  font-size: 1em;
}

.donation button {
  background-color: #ff6b35;
  color: white;
  border: none;
  cursor: pointer;
}

.donation button:hover {
  background-color: #e85c2e;
}
  