/* Slider Code Start */
body {
  font-family: 'Poppins', sans-serif;
}

/* SLIDE */
.slide {
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.slide.active {
  opacity: 1;
  z-index: 2;
}

/* IMAGE ANIMATION */
.img {
  transform: scale(1);
  transition: transform 7s ease;
}

.slide.active:nth-child(1) .img { transform: scale(1.15); }
.slide.active:nth-child(2) .img { transform: scale(1.05); }
.slide.active:nth-child(3) .img { transform: scale(0.95); }

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px;
}

/* CONTENT */
.content-left {
  color: white;
  max-width: 550px;
  opacity: 0;
  transform: translateX(-60px);
}

/* TEXT */
.content-left h1 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}

.content-left p {
  font-size: 14px;
  margin-bottom: 15px;
  opacity: 0.9;
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 10px 25px;
  background: linear-gradient(to right, #ff7a18, #ff3d00);
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}
.btn:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 25px rgba(255, 61, 0, 0.5);
}

/* TEXT ANIMATION */
.slide.active .content-left {
  opacity: 1;
  transform: translateX(0);
  transition: all 1s ease 0.5s;
}

/* 💻 DESKTOP */
@media(min-width:768px){

  .overlay {
    padding-left: 80px;
  }

  .content-left h1 {
    font-size: 52px;
    line-height: 1.2;
  }

  .content-left p {
    font-size: 18px;
  }

  .btn {
    font-size: 16px;
    padding: 12px 30px;
  }

}

/* 📱 MOBILE (LEFT ALIGN FORCE) */
@media(max-width:768px){

  .overlay {
    justify-content: flex-start;
    text-align: left;
  }

  .content-left {
    transform: translateY(40px);
  }

  .slide.active .content-left {
    transform: translateY(0);
  }

}

/* Slider Code Completed */

/* About us Start*/
      .about-clean {
        width: 100%;
        background: #f3f4f6;
        padding: 60px 20px;
        font-family: 'Poppins', sans-serif;
      }

      .about-container {
        max-width: 1200px;
        margin: auto;
        display: grid;
        gap: 40px;
        grid-template-columns: 1fr;
        align-items: center;
      }

      .about-img img {
        width: 100%;
        border-radius: 20px;
        object-fit: cover;
        opacity: 0;
        transform: translateX(-60px);
      }

      .about-text {
        opacity: 0;
        transform: translateX(60px);
      }

      .about-text h2 {
        font-size: 28px;
        font-weight: 600;
        color: #1e293b;
        margin-bottom: 15px;
      }

      .about-text p {
        font-size: 15px;
        color: #4b5563;
        line-height: 1.7;
        margin-bottom: 12px;
      }

      .highlight {
        margin-top: 15px;
        color: #e63946;
        font-weight: 600;
      }

      /* DROPDOWN */
      .about-accordion {
        margin-top: 20px;
      }

      .about-accordion-header {
        width: 100%;
        padding: 12px;
        background: white;
        border-radius: 8px;
        border: none;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        font-weight: 600;
      }

      .about-accordion-body {
        max-height: 0;
        overflow: hidden;
        transition: 0.4s ease;
        background: white;
        margin-top: 8px;
        border-radius: 8px;
        padding: 0 12px;
      }

      .about-accordion-body p {
        padding: 12px 0;
      }

      .about-accordion.active .about-accordion-body {
        max-height: 200px;
      }

      .icon {
        transition: 0.3s;
      }

      .about-accordion.active .icon {
        transform: rotate(45deg);
      }

      /* DESKTOP */
      @media(min-width:768px) {
        .about-container {
          grid-template-columns: 1fr 1fr;
          gap: 60px;
        }

        .about-text h2 {
          font-size: 42px;
        }

        .about-text p {
          font-size: 17px;
        }
      }
 /* About us Start Completed */
    
/* Mission Vision Start  */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      .ngo-section {
        background: linear-gradient(135deg, #ffffff, #fff8f0, #ffe8cc);
        padding: 90px 20px;
        font-family: 'Poppins', sans-serif;
        text-align: center;
      }

      /* CENTER WIDTH CONTROL */
      .ngo-wrapper {
        width: 80%;
        margin: auto;
      }

      /* HEADER */
      .ngo-title-small {
        letter-spacing: 4px;
        font-size: 13px;
        color: #c28b00;
        margin-bottom: 10px;
        font-weight: 600;
      }

      .ngo-title {
        font-size: 42px;
        font-weight: 700;
        color: #7a1f1f;
        margin-bottom: 15px;
      }

      .ngo-sub {
        font-size: 16px;
        color: #555;
        margin-bottom: 60px;
      }

      /* ACCORDION */
      .accordion-container {
        max-width: 100%;
        margin: auto;
        display: flex;
        flex-direction: column;
        gap: 25px;
      }

      /* CARD */
      .accordion-item {
        border-radius: 18px;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
        transition: 0.4s ease;
        border: 1px solid rgba(255, 165, 0, 0.2);
      }

      .accordion-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 45px rgba(255, 122, 24, 0.2);
      }

      /* HEADER */
      .accordion-header {
        width: 100%;
        padding: 22px 25px;
        font-size: 20px;
        font-weight: 600;
        border: none;
        background: transparent;
        color: #7a1f1f;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .accordion-header span {
        transition: 0.3s;
        font-size: 22px;
        color: #ff7a18;
      }

      /* BODY */
      .accordion-body {
        height: 0;
        overflow: hidden;
        transition: height 0.4s ease;
        padding: 0 25px;
        text-align: left;
      }

      .accordion-body p {
        padding: 15px 0 25px;
        font-size: 15px;
        line-height: 1.8;
        color: #444;
      }

      /* ACTIVE */
      .accordion-item.active span {
        transform: rotate(180deg);
        color: #c28b00;
      }

      /* MOBILE */
      @media(max-width:768px) {
        .ngo-wrapper {
          width: 95%;
        }

        .ngo-title {
          font-size: 28px;
        }

        .accordion-header {
          font-size: 16px;
          padding: 18px;
        }

        .accordion-body p {
          font-size: 14px;
        }
      }
/* Mission Vision Completed  */

