.ngo-slider {
  width: 100%;
  margin-top: 70px;
  overflow: hidden;
  position: relative;
  background: #f5f5f5;
}
/* WRAPPER */
.slider-wrapper {
  position: relative;
  width: 100%;
  height: 540px;
}
/* SLIDES */
.ngo-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: 1s ease;
}
.ngo-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 10;
}
/* IMAGE */
.slide-image {
  position: relative;
  width: 100%;
  height: 100%;
}
.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* OVERLAY */
.image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}
/* =========================
CONTENT OVER IMAGE
========================= */
.slide-content {
  position: absolute;
  top: 50%;
  right: 6%;
  transform: translateY(-50%);
  width: 100%;
  max-width: 460px;
  z-index: 100;
}
/* CLEAN CONTENT */
.content-inner {
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
}
/* MINI TAG */
.mini-tag {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 40px;
  background: rgba(0, 183, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  backdrop-filter: blur(5px);
}
/* TITLE */
.content-inner h1 {
  margin-top: 18px;
  color: #fff;
  font-size: 54px;
  line-height: 1.04;
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}
/* PARAGRAPH */
.content-inner p {
  margin-top: 18px;
  color: #f3f3f3;
  font-size: 17px;
  line-height: 1.8;
  max-width: 420px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
}
/* BUTTON */
.slider-btn {
  display: inline-block;
  margin-top: 28px;
  padding: 15px 34px;
  border-radius: 10px;
  background: #ffa000;
  color: #111;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s ease;
}
.slider-btn:hover {
  background: #00b7ff;
  color: #fff;
  transform: translateY(-3px);
}
/* =========================
BOTTOM STRIP
========================= */
.bottom-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 76px;
  background:
    radial-gradient(
      circle at top left,
      rgba(0, 183, 255, 0.22),
      transparent 35%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(255, 160, 0, 0.18),
      transparent 30%
    ),
    #78755d;
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 35px;
  z-index: 999;
}
/* REPORT */
.report-content {
  display: flex;
  align-items: center;
  gap: 10px;
}
.report-content h3 {
  color: #fff;
  font-size: 22px;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.5px;
}
.report-content p {
  color: #ddd;
  font-size: 15px;
}
/* =========================
DOTS
========================= */
.slider-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dot {
  width: 38px;
  height: 5px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: 0.3s;
}
.dot.active {
  background: #ffa000;
}
/* READ BUTTON */
.read-btn {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
}
.read-btn:hover {
  color: #00b7ff;
}
/* =========================
LARGE TABLET
========================= */
@media (max-width: 1200px) {
  .content-inner h1 {
    font-size: 44px;
  }
}
/* =========================
TABLET
========================= */
@media (max-width: 992px) {
  .slider-wrapper {
    height: 650px;
  }
  .slide-content {
    left: 50%;
    top: auto;
    bottom: 105px;
    right: auto;
    transform: translateX(-50%);
    width: 92%;
    max-width: 92%;
    text-align: center;
  }
  .content-inner h1 {
    font-size: 34px;
    line-height: 1.15;
  }
  .content-inner p {
    max-width: 100%;
    font-size: 15px;
  }
  .bottom-strip {
    height: auto;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }
  .report-content {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }
}
/* =========================
MOBILE
========================= */
@media (max-width: 768px) {
  .ngo-slider {
    margin-top: 74px;
  }
  .slider-wrapper {
    height: 560px;
  }
  .slide-content {
    width: 94%;
    bottom: 100px;
  }
  .mini-tag {
    font-size: 12px;
  }
  .content-inner h1 {
    font-size: 26px;
    line-height: 1.18;
  }
  .content-inner p {
    font-size: 14px;
    line-height: 1.6;
  }
  .slider-btn {
    padding: 13px 28px;
    font-size: 14px;
  }
  .bottom-strip {
    padding: 18px 14px;
  }
  .report-content h3 {
    font-size: 18px;
  }
  .report-content p {
    font-size: 14px;
  }
  .read-btn {
    font-size: 14px;
  }
}
/* =========================
SMALL MOBILE
========================= */
@media (max-width: 480px) {
  .slider-wrapper {
    height: 520px;
  }
  .slide-content {
    bottom: 95px;
  }
  .content-inner h1 {
    font-size: 22px;
  }
}
