* {
      box-sizing: border-box;
      padding: 0;
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
    }

   

    .section {
      max-width: 1200px;
      margin: auto;
      background: linear-gradient(to right, #d8e5ff,#ffffff);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
    }

    .contact-header {
      text-align: center;
      margin-bottom: 30px;
    }

    .contact-header small {
      color: #000000;
      font-weight: bold;
      font-size: 20px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      align-items: start;
    }

    form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 15px;
    }

    form textarea {
      grid-column: span 2;
    }

    input, select, textarea {
      width: 100%;
      padding: 12px;
      border: 1px solid #ccc;
      border-radius: 8px;
    }

    label {
      font-weight: 500;
    }

    .form-button {
      grid-column: span 2;
    }

    .form-button button {
      padding: 12px 25px;
      background-color: #13265e;
      color: #ffffff;
      border: none;
      border-radius: 8px;
      font-weight: bold;
      cursor: pointer;
    }

    .form-img {
      text-align: center;
    }

    .form-img img {
        height: 300px;
      width: 400px;
      border-radius: 10px;
    }

    .nav-bar {
      margin: 30px auto;
      background-color: #13265e;
      color: white;
      display: flex;
      justify-content: center;
      gap: 40px;
      padding: 15px 10px;
      font-weight: 600;
      flex-wrap: wrap;
    }

    .testimonial-section {
      margin-top: 40px;
    }

    .testimonial-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;
    }

 
    .testimonial-left .stars {
      font-size: 24px;
      margin-bottom: 10px;
    }

    .testimonial-right {
      flex: 1;
      margin-left: 30px;
      min-width: 250px;
    }

    .testimonial-card {
      background: #f1f1f1;
      padding: 20px;
      border-radius: 10px;
      margin-top: 20px;
      position: relative;
    }

    .testimonial-card .stars {
      color: #2ecc71;
    }

    .testimonial-card .author {
      margin-top: 10px;
      font-weight: 500;
    }

    .testimonial-card .title {
      font-size: 14px;
      color: #666;
    }

    .all-testimonials {
      background: #2ecc71;
      color: white;
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 14px;
      margin-top: 10px;
      display: inline-block;
    }

    .plus-icon {
      background: #2ecc71;
      color: white;
      position: absolute;
      bottom: 20px;
      right: 20px;
      border-radius: 50%;
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

   @media (max-width: 1024px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  form {
    grid-template-columns: 1fr;
  }

  .form-img img {
    width: 100%;
    height: auto;
    max-width: 100%;
  }

  .testimonial-header {
    flex-direction: column;
    gap: 20px;
  }

  .testimonial-right {
    margin-left: 0;
  }

  .nav-bar {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  

  .section {
    padding: 20px;
  }

  input, select, textarea {
    font-size: 14px;
    padding: 10px;
  }

  .form-button button {
    width: 100%;
  }

  .testimonial-card {
    padding: 15px;
  }

  .plus-icon {
    width: 24px;
    height: 24px;
    font-size: 14px;
    bottom: 15px;
    right: 15px;
  }

   .nav-bar {
    height: 40px;
    display: flex;
    overflow-x: scroll;
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 20px;
    padding: 12px;
    scrollbar-width: none; /* Firefox */
  }

  .nav-bar::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
  }

  .nav-bar > div {
    flex: 0 0 auto;
    padding: 6px 12px;
  }
}


.ngo_contact_pt_2 {
  padding: 40px 20px;
  background: linear-gradient(to right, #d8e5ff,#ffffff);
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 89, 255, 0.1);
}

.ngo_contact_pt_2 h2 {
  font-size: 28px;
  color: #000000;
  margin-bottom: 10px;
}

.ngo_contact_pt_2 p {
  color: #000000;
  font-size: 16px;
  margin-bottom: 25px;
}

.ngo_contact_pt_2 .map-container {
  max-width: 100%;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 100, 0, 0.2);
}

.blink-icon {
  animation: blinkAnim 1s infinite;
}
.up_map_data{
  width: 100%;
  text-align: center;
  color: #000000;
  font-size: 16px;
  font-weight: 500;
}
@keyframes blinkAnim {
  0% { opacity: 1; }
  50% { opacity: 0.2; }
  100% { opacity: 1; }
}

/* Responsive design */
@media (max-width: 600px) {
  .ngo_contact_pt_2 h2 {
    font-size: 22px;
  }
  .ngo_contact_pt_2 p {
    font-size: 14px;
  }
}