/* =========================
   Variables & Reset
   ========================= */
:root {
  --green-600: #16a34a;
  --green-700: #15803d;
  --red-600: #dc2626;
  --red-700: #b91c1c;
  --blue-500: #3b82f6;
  --yellow-500: #f59e0b;
  --bg: #f8fafc;
  --muted: #6b7280;
  --card-bg: #f0fdf4;
  --white: #ffffff;
  --container: 1150px;
  --shadow-lg: 0 10px 25px rgba(2, 6, 23, 0.08);
  --rounded-xl: 12px;
  --rounded-lg: 10px;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto,"Helvetica Neue", Arial;
  color: #111827;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  max-width: 100%;
  padding: 0 20px;
}
/* =========================
   Header
   ========================= */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between; /* logo left, nav+button right */
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #000;
  gap: 12px;
}
.logo-img {
  width: 100px;
  height: 90px;
  object-fit: contain;
}
.logo-text {
  font-size: 18px;
  font-weight: 800;
  color: var(--green-700);
  margin: 0;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 30px; /* space between nav and button */
}
.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav a {
  text-decoration: none;
  color: #555;
  font-size: 17px;
  font-weight: 600;
  transition: color 0.15s ease;
}
.nav a:hover {
  color: var(--green-600);
}
.nav a.active {
  color: var(--green-700) !important;
  font-weight: 800;
  border-bottom: 3px solid var(--green-700);
  padding-bottom: 4px;
}
.btn-donate {
  --clr-font-main: hsla(0 0% 20% / 100);
  --btn-bg-1: rgb(232, 100, 100);
  --btn-bg-2: rgb(243, 18, 18);
  --btn-bg-color: hsla(360 100% 100% / 1);
  --radii: 0.5em;
  cursor: pointer;
  padding: 0.9em 1.4em;
  min-width: 120px;
  min-height: 44px;
  font-size: var(--size, 1rem);
  font-weight: 500;
  transition: 0.8s;
  background-size: 280% auto;
  font-weight: bold;
  background-image: linear-gradient(
    325deg,
    var(--btn-bg-2) 0%,
    var(--btn-bg-1) 55%,
    var(--btn-bg-2) 90%
  );
  border: none;
  border-radius: var(--radii);
  color: var(--btn-bg-color);
  box-shadow:
    0px 0px 20px rgba(227, 69, 69, 0.5),
    0px 5px 5px -1px rgba(233, 58, 58, 0.25),
    inset 4px 4px 8px rgba(219, 40, 40, 0.5),
    inset -4px -4px 8px rgba(216, 19, 19, 0.35);
}
.btn-donate a {
  text-decoration: none;
  color: var(--btn-bg-color);
}
.btn-donate:hover {
  background-position: right top;
  transform: translateY(-1px);
  transition: transform 0.15s ease;
}
.btn-donate:is(:focus, :focus-visible, :active) {
  outline: none;
  box-shadow:
    0 0 0 3px var(--btn-bg-color),
    0 0 0 6px var(--btn-bg-2);
}
@media (prefers-reduced-motion: reduce) {
  .btn-donate {
    transition: linear;
  }
}
.heart-icon {
  margin-right: 8px;
  display: inline-block;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    /* color: #ff4d6d; */
  }
  50% {
    transform: scale(1.3);
    /* color: #ff1a4d; */
  }
  100% {
    transform: scale(1);
    /* color: #ff4d6d; */
  }
}
/* =========================
   Hero(index.html)
   ========================= */
.hero {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  box-shadow: inset 0 -40px 80px rgba(0, 0, 0, 0.25);
  min-height: 600px;
  height: auto;
  padding: 40px 0;
}
.hero-overlay {
    width: 80%;
    background: rgba(0, 0, 0, 0.36);
    padding: 40px 10px;
    border-radius: 40px;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.hero-content {
  text-align: center;
  color: var(--white);
  padding: 18px;
}
.hero-title {
  font-size: 34px;
  line-height: 1.05;
  margin: 0 0 12px;
  font-weight: 800;
}
.hero-sub {
  font-size: 18px;
  font-weight: 300;
  margin: 0 0 18px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.92);
}
.hero-title,
.hero-sub {
  word-wrap: break-word;
}
.hero-ctas {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
}
.hero-btn {
  font-size: 17px;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}
.hero-btn.primary {
  background: var(--red-600);
  color: var(--white);
}
.hero-btn.primary:hover {
  background: var(--red-700);
  transform: translateY(-3px);
}
.hero-btn.ghost {
  background: var(--white);
  color: var(--green-600);
  border: 2px solid transparent;
}
.hero-btn.ghost:hover {
  background: #f3f4f6;
  transform: translateY(-3px);
}
.slideshow {
  position: relative;
  overflow: hidden;
}
.slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* slides below overlay */
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.slide.active {
  opacity: 1;
}
.hero-overlay {
  position: relative;
  z-index: 2; /* overlay appears above images */
}
/* =========================
   Who are we section (index.html)
   ========================= */
.about-split {
  padding: 60px 0;
  background: #fff;
}
.split-wrapper {
  display: grid;
  grid-template-columns: 3fr 1fr;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.split-left .section-heading {
  text-align: center;
}
.split-left .section-sub {
  text-align: center;
  line-height: 1.7;
}
.split-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-img {
  width: 70%;
  border: none;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}
/* =========================
   Stats(index.html)
   ========================= */
.impact-stats {
  padding: 20px 0;
  padding-bottom: 70px;
  background: var(--white);
  text-align: center;
}
.impact-stats .section-heading {
  margin-bottom: 30px;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
}
.stat-card {
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.08);
  border-bottom: 6px solid transparent;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}
.stat-number {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 8px;
}
.stat-title {
  font-size: 18px;
  font-weight: 700;
  color: #374151;
  margin-bottom: 6px;
}
.stat-desc {
  color: var(--muted);
  font-size: 13px;
}
.stat-card.red {
  border-bottom-color: #ef4444;
  background: #ef444415;
  color: #ef4444;
}
.stat-card.blue {
  border-bottom-color: #3b82f6;
  background: #3b82f615;
  color: #3b82f6;
}
.stat-card.yellow {
  border-bottom-color: #f59e0b;
  background: #f59e0b15;
  color: #f59e0b;
}
.why-badge-section {
  padding: 70px 0;
  display: flex;
  justify-content: center;
  background: #fff;
}
/* =========================
   Why Choose Us Badges(index.html)
   ========================= */ 
.why-badge-card {
  max-width: 850px;
  background: #fff;
  padding: 45px;
  border-radius: 20px;
  text-align: center;
  border: 3px solid #e63946;
  box-shadow: 
    0 0 25px rgba(230, 57, 70, 0.25),
    0 0 60px rgba(230, 57, 70, 0.15);
}
.badge-icon {
  font-size: 55px;
  color: #e63946;
  margin-bottom: 15px;
}
.why-badge-card h2 {
  font-size: 30px;
  margin-bottom: 15px;
  color: #e63946;
}
.why-badge-card p {
  font-size: 17px;
  color: #000;
  font-weight: 600;
  line-height: 1.7;
}
/* =========================
   Gallery Overlay(index.html)
   ========================= */
.gallery-overlay {
  padding: 60px 0;
  padding-bottom: 70px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}
.gallery-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0); 
  backdrop-filter: brightness(0.6) blur(0.5px);
  z-index: 1;
}
.gallery-overlay .container {
  position: relative;
  z-index: 2; /* Content above background */
}
.gallery-overlay-grid {
  padding-left: 60px;
  padding-right: 60px;
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.overlay-item {
  position: relative;
  height: 300px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: 0.35s ease;
}
.overlay-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.4s ease;
  border-radius: 16px;
}
.overlay-item:hover img {
  transform: scale(1.08);
  opacity: 0.75;
}
.overlay-text {
  position: absolute;
  bottom: 0;
  width: 100%;
  color: #fff;
  text-align: center;
  font-weight: 600;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.35s ease;
  padding: 12px 0;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 18px;
}
.overlay-item:hover .overlay-text {
  opacity: 1;
  transform: translateY(0);
}
.overlay-item:hover {
  background: rgba(255, 255, 255, 0.20);
  border: 1px solid rgba(255, 255, 255, 0.45);
}
/* =========================
   Footer
   ========================= */
.pof-footer {
  background: #001e32;
  color: #dcdcdc;
  font-family: "Poppins", sans-serif;
  padding-top: 50px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 90%;
  margin: auto;
  gap: 40px;
}
.footer-col {
  flex: 1;
  min-width: 180px;
}
.footer-col h4 {
  color: #fff;
  border-bottom: 1px solid #aaa;
  padding-bottom: 8px;
  margin-bottom: 12px;
}
.footer-col ul {
  list-style: none;
  padding-left: 0;
}
.footer-col ul li {
  padding: 6px 0;
  font-size: 14px;
}
.footer-col ul li a {
  color: #dcdcdc;
  text-decoration: none;
  transition: 0.3s;
}
.footer-col ul li a:hover {
  color: #d62f2f;
}
.footer-divider {
  margin: 40px auto;
  width: 90%;
  border: none;
  border-top: 1px solid #666;
}
.footer-middle {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-address {
  max-width: 400px;
  font-size: 14px;
}
.footer-socials {
  display: flex;
  gap: 15px;
  align-items: center;
}
.footer-socials a {
  width: 40px;
  height: 40px;
  background: #000;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
  transition: 0.3s;
}
.footer-socials a:hover {
  background: #d62f2f;
  color: #000;
}
.footer-newsletter {
  width: 90%;
  margin: 40px auto;
}
.footer-newsletter form {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-newsletter input {
  flex: 1;
  padding: 12px;
  background: transparent;
  border: none;
  border-bottom: 1px solid #bbb;
  color: #fff;
  font-size: 14px;
  outline: none;
}
.footer-newsletter button {
  padding: 12px 25px;
  background: #d62f2f;
  border: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.3s;
}
.footer-newsletter button:hover {
  background: #b81010;
  color: #fff;
}
.footer-bottom {
  background: #001e32;
  padding: 15px;
  text-align: center;
  color: #ccc;
  font-size: 14px;
  margin-top: 20px;
}
.icon {
  width: 22px;
  height: 22px;
  vertical-align: middle;
}


/* =========================
   (mission&vision.html)
   ========================= */

   /* ======================hero(mission&vision.html)*/
.mission-banner-glass {
  height: 60vh;
  background: url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.mission-banner-glass::before,
.mission-banner-glass::after {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(255, 255, 255, 0.12);
  filter: blur(120px);
  border-radius: 50%;
  animation: glowFloat 8s infinite ease-in-out alternate;
}
.mission-banner-glass::before {
  top: -50px;
  left: -80px;
}
.mission-banner-glass::after {
  bottom: -80px;
  right: -70px;
  animation-delay: 3s;
  background: rgba(0, 0, 0, 0.35);
}
.glass-box {
  position: relative;
  padding: 40px 70px;
  text-align: center;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  animation: fadeUp 1.2s ease forwards;
  opacity: 0;
  transform: translateY(20px);
  z-index: 2;
}
.glass-box h1 {
  font-size: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.glass-box .divider {
  display: block;
  width: 90px;
  height: 4px;
  background: #3b82f6;
  margin: 18px auto;
  border-radius: 2px;
}
.glass-box p {
  font-size: 19px;
  opacity: 0.9;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes glowFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-40px); }
}
/*mission section(mission&vision.html)*/
.mission {
  padding: 60px 0;
  background: #f3f4f6;
  margin-bottom: 32px;
}
.section-heading {
  text-align: center;
  color: var(--green-700);
  font-weight: 800;
  font-size: 30px;
  margin-bottom: 14px;
}
.section-sub {
  text-align: center;
  color: #000000;
  max-width: 900px;
  margin: 0 auto 36px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.6;
}
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mission-card {
  background: #fff;
  padding: 26px;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(2, 6, 23, 0.08);
  border-top: 6px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mission-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(2, 6, 23, 0.12);
}
.mission-card .icon {
  height: 34px;
  margin-bottom: 14px;
}
.mission-card h3 {
  margin-bottom: 10px;
  font-size: 19px;
  font-weight: 700;
  color: #111827;
}
.mission-card p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
}
.mission-card.red {
  border-top-color: #ef4444;
}
.mission-card.red .icon {
  color: #ef4444;
}
.mission-card.blue {
  border-top-color: #3b82f6;
}
.mission-card.blue .icon {
  color: #3b82f6;
}
.mission-card.yellow {
  border-top-color: #f59e0b;
}
.mission-card.yellow .icon {
  color: #f59e0b;
}

/*mv-section (mission&vision.html)*/
.mv-hero {
  position: relative;
  height: 55vh;
  background: url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mv-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: brightness(0.7);
}
.mv-hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  animation: fadeUp 1.2s ease;
}
.mv-hero-content h1 {
  font-size: 56px;
  margin-bottom: 10px;
}
.mv-hero-content p {
  font-size: 20px;
  opacity: 0.9;
}
.mv-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #1e293b, #212b44);
}
.mv-container {
  width: 90%;
  max-width: 1250px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.mv-card {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  animation: fadeUp 1s ease forwards;
  opacity: 0;
}
.mv-card:nth-child(even) {
  flex-direction: row-reverse;
}
.mv-img {
  width: 48%;
  height: 280px;
  object-fit: cover;
  border-radius: 14px;
}
.mv-text {
  width: 52%;
}
.mv-text h2 {
  font-size: 34px;
  color: #60a5fa;
  margin-bottom: 12px;
  font-weight: 700;
}
.mv-text p {
  font-size: 18px;
  color: #e5e7eb;
  line-height: 1.75;
}
.mv-card:hover {
  transform: translateY(-6px);
  transition: 0.3s ease;
}

/* =========================
   hero (work.html)
   ========================= */
.work-animated {
  height: 55vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, #facc15, #dc2626);
  color: #ffffff;
  overflow: hidden;
}
.work-animated::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 0;
}
.work-animated h1,
.work-animated p {
  position: relative;
  z-index: 1;
}
.work-animated h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 8px;
  animation: fadeUp 1.2s ease forwards;
}
.work-animated p {
  font-size: 18px;
  font-weight: 500;
  opacity: 0.95;
  animation: fadeUp 1.2s ease forwards;
  animation-delay: 0.4s;
}
.floating-icons {
  position: absolute;
  bottom: 24px;
  display: flex;
  gap: 28px;
  z-index: 1;
}
.floating-icons i {
  width: 42px;
  height: 42px;
  color: #ffffff;
  animation: float 3.5s infinite ease-in-out;
  opacity: 0.85;
}
.floating-icons i:nth-child(2) {
  animation-delay: 0.4s;
}
.floating-icons i:nth-child(3) {
  animation-delay: 0.8s;
}
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(22px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

/*thematic img section(work.html)*/
.thematic-img-section {
  padding: 70px 0;
  background: #fff5f5;
  text-align: center;
}
.section-heading {
  font-size: 36px;
  margin-bottom: 42px;
  color: #b81f1f;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.thematic-img-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 36px;
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
}
.thematic-img-box {
  position: relative;
  height: 320px;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  background: #fff;
  border: 2px solid #ffcccc;
  box-shadow: 0 8px 20px rgba(214, 40, 40, 0.12);
  animation: fadeUp 0.9s ease forwards;
}
.thematic-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}
.thematic-img-box:hover img {
  transform: scale(1.12);
  filter: brightness(0.9);
}
.thematic-img-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 32px rgba(214, 40, 40, 0.35);
}
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 50%,
    rgba(185, 28, 28, 0.55)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: #ffffff;
}
.overlay i {
  width: 32px;
  height: 32px;
  margin-bottom: 6px;
  color: #ffffff;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.5));
}
.overlay p {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   hero(activities.html)
   ========================= */
.activities-hero {
  position: relative;
  height: 60vh;
  background:
    linear-gradient(120deg, rgba(179, 0, 0, 0.55), rgba(0, 0, 0, 0.6)),
    url("imgs/campimg.png") center / cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.activities-hero::after {
  content: "";
  position: absolute;
  bottom: -28%;
  left: -10%;
  width: 120%;
  height: 55%;
  background: rgba(255, 255, 255, 0.06);
  transform: rotate(-6deg);
  animation: floatSoft 10s ease-in-out infinite;
  z-index: 1;
}
.hero-overlay-act {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.8)
  );
  z-index: 0;
}
.hero-content-act {
  position: relative;
  text-align: center;
  color: #ffffff;
  max-width: 900px;
  padding: 0 24px;
  z-index: 2;
}
.hero-content-act h1 {
  font-size: clamp(3rem, 5.5vw, 4.6rem);
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.8px;
}
.hero-content-act p {
  font-size: clamp(1.1rem, 1.9vw, 1.35rem);
  line-height: 1.75;
  color: #f3f3f3;
  max-width: 780px;
  margin: auto;
}
@keyframes floatSoft {
  0%, 100% {
    transform: translateY(0) rotate(-6deg);
  }
  50% {
    transform: translateY(-18px) rotate(-6deg);
  }
}
/* =========================
   Activities Section(activities.html)
   ========================= */
.activity-split {
  display: flex;
  gap: 50px;
  padding: 90px 10%;
  align-items: center;
}
.activity-split.reverse {
  flex-direction: row-reverse;
  background: #f3f4f6;
}
.activity-text {
  flex: 1;
}
.activity-text h2 {
  font-size: 32px;
  color: #b30000;
  margin-bottom: 16px;
  font-weight: 700;
}
.activity-text p {
  font-size: 17px;
  margin-bottom: 16px;
  line-height: 1.75;
  color: #1f2937;
}
.activity-text ul {
  padding-left: 18px;
}
.activity-text ul li {
  margin-bottom: 8px;
  font-size: 15px;
  color: #374151;
}
.activity-images {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.activity-images img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.activity-images img:hover {
  transform: scale(1.04);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Impact  activities(activities.html)*/
.impact-section {
  background: #111111;
  color: #ffffff;
  padding: 90px 20px;
  text-align: center;
}
.impact-section h2 {
  font-size: 38px;
  margin-bottom: 50px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.impact-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 36px;
}
.impact-box {
  background: linear-gradient(135deg, #b30000, #8f0000);
  padding: 36px 30px;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.impact-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}
.impact-box h3 {
  font-size: 44px;
  margin-bottom: 12px;
  font-weight: 800;
}
.impact-box p {
  font-size: 16px;
  letter-spacing: 0.3px;
  opacity: 0.95;
}

/* Timeline Section activities */
.timeline-section {
  background: #111111;
  color: #ffffff;
  padding: 110px 8%;
  position: relative;
}
.timeline-title {
  text-align: center;
  font-size: 38px;
  margin-bottom: 90px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.timeline-section::before {
  content: "";
  position: absolute;
  top: 200px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: calc(100% - 260px);
  background: linear-gradient(to bottom, #b30000, #7f0000);
}
.timeline-container {
  display: flex;
  flex-direction: column;
  gap: 100px;
  position: relative;
}
.timeline-row {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
}
.timeline-row.left {
  flex-direction: row;
}
.timeline-row.right {
  flex-direction: row-reverse;
}
.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: #ffffff;
  border: 5px solid #b30000;
  border-radius: 50%;
  z-index: 3;
}
.timeline-content {
  flex: 1;
  background: #1c1c1c;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.45);
}
.timeline-year {
  font-size: 20px;
  font-weight: 700;
  color: #b30000;
  display: block;
  margin-bottom: 8px;
}
.timeline-content h3 {
  font-size: 26px;
  margin-bottom: 14px;
}
.timeline-content p {
  font-size: 17px;
  line-height: 1.7;
  color: #e4e4e4;
}
.timeline-image {
  flex: 1;
}
.timeline-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.45);
}
.reveal {
  opacity: 0;
  transform: translateY(45px);
  transition: all 0.9s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
  members.html
   ========================= */
/*hero Done
/*members section (members.html)*/
/* members.html*/
.members-section {
  padding: 80px 0;
  background-color: #f9fafc;
}
.container-members {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}
.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 60px;
}
.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 40px;
  justify-items: center;
}
.develop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  justify-items: center;
}
.member-card,
.develop-card {
  background: #ffffff;
  padding: 30px 26px;
  border-radius: 16px;
  width: 100%;
  max-width: 320px;
  text-align: center;
  position: relative;
  border-top: 7px solid #1e4dd8;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.member-hover-image,
.develop-hover-image {
  position: absolute;
  top: -190px;
  left: 50%;
  transform: translateX(-50%) scale(0.95);
  width: 160px;
  height: 210px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 6px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 20;
}
.member-hover-image img,
.develop-hover-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.member-card:hover .member-hover-image,
.develop-card:hover .develop-hover-image {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}
.member-card h3,
.develop-card h3 {
  font-size: 20px;
  margin-bottom: 6px;
}
.role {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #555;
  margin-bottom: 10px;
}
.member-card p,
.develop-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}
.member-card:hover,
.develop-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.14);
}
.red-border { border-top-color: #ef4444; }
.blue-border { border-top-color: #3b82f6; }
.yellow-border { border-top-color: #f59e0b; }
.green-border { border-top-color: #1dae7d; }
.members-note {
  max-width: 900px;
  margin: 50px auto 80px;
  text-align: center;
  font-size: 16px;
  color: #444;
  font-style: italic;
}

/* =========================
   about page(about.html)
   ========================= */
/* HERO (about.html) */
.hero-gradient-fade {
  min-height: 70vh;
  background:
    linear-gradient(
      120deg,
      rgba(139, 0, 0, 0.72),
      rgba(0, 0, 0, 0.6)
    ),
    url("imgs/about.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-gradient-fade::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.05),
    rgba(0, 0, 0, 0.55)
  );
  z-index: 1;
}
.hero-gradient-fade .hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  max-width: 900px;
  padding: 0 24px;
  animation: fadeUp 1.4s ease forwards;
}
.hero-gradient-fade h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: 0.6px;
  line-height: 1.2;
}
.hero-gradient-fade p {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.75;
  opacity: 0.95;
  max-width: 720px;
  margin: auto;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* INTRO SECTIONS(about.html) */
.about-section {
  padding: 70px 10%;
  max-width: 1200px;
  margin: auto;
}
.about-section h2 {
  margin-bottom: 22px;
  color: #8b0000;
  text-align: center;
  font-size: 32px;
}
.about-section p {
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 16px;
  color: #333;
}
.light-bg {
  background: #f9f9f9;
  text-align: center;
}

/* ================= STATS (about.html)================= */
.stats-section-about {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 60px 10%;
  background: linear-gradient(135deg, #8b0000, #b30000);
  color: #fff;
  text-align: center;
}
.stat-box-about {
  flex: 1;
}
.stat-box-about h3 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.stat-box-about p {
  font-size: 16px;
  opacity: 0.9;
}

/* ================= VISION / MISSION (about.html)================= */
.vm-section-about {
  display: flex;
  gap: 40px;
  padding: 70px 10%;
}
.vm-card-about {
  flex: 1;
  background: #ffffff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  text-align: center;
}
.vm-card-about i {
  font-size: 2.6rem;
  color: #8b0000;
  margin-bottom: 18px;
}
.vm-card-about h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.vm-card-about p {
  font-size: 16.5px;
  line-height: 1.7;
}

/* ================= ACTIVITIES(about.html) ================= */
.activities-section-about {
  padding: 70px 10%;
  background: #f5f5f5;
}
.activities-section-about h2 {
  text-align: center;
  margin-bottom: 45px;
}
.activity-grid-about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}
.activity-card-about {
  background: #ffffff;
  padding: 26px;
  border-radius: 10px;
  border-left: 6px solid #8b0000;
}
.activity-card-about h4 {
  font-size: 18px;
  margin-bottom: 10px;
}
.activity-card-about ul li {
  font-size: 15.5px;
  line-height: 1.6;
}

/* ================= THEMES(about.html) ================= */
.themes-section-about {
  padding: 70px 10%;
  text-align: center;
}
.themes-section-about h2 {
  margin-bottom: 30px;
}
.theme-tags-about span {
  display: inline-block;
  margin: 8px;
  padding: 10px 18px;
  background: #8b0000;
  color: #ffffff;
  border-radius: 22px;
  font-size: 0.9rem;
}

/* ================= CTA (about.html)================= */
.about-cta {
  background: linear-gradient(135deg, #8b0000, #b30000);
  color: #ffffff;
  padding: 70px 10%;
  text-align: center;
}
.about-cta h2 {
  font-size: 32px;
  margin-bottom: 14px;
}
.about-cta p {
  font-size: 17px;
  margin-bottom: 22px;
}
.cta-btn {
  display: inline-block;
  background: #ffffff;
  color: #8b0000;
  padding: 14px 34px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
}

/* Contact us (contact.html)*/
#pof-contact-section {
  background: linear-gradient(180deg, #fff8e1, #fffdf7);
  padding: 70px 20px;
}

#pof-contact-container {
  max-width: 1200px;
  margin: auto;
}

#pof-contact-header {
  text-align: center;
  margin-bottom: 40px;
}

#pof-contact-title {
  color: #c62828;
  margin-bottom: 10px;
  font-size: 2.6rem;
  font-weight: 700;
}

#pof-contact-subtitle {
  color: #5a1a1a;
  max-width: 700px;
  margin: auto;
  font-size: 1.05rem;
  line-height: 1.6;
}

#pof-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.pof-contact-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 8px;
  border-top: 4px solid #f9a825;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  margin-top: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pof-contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

#pof-contact-links-card{
  text-align: center;
}

.pof-contact-card-title {
  color: #0b4f6c;
  margin-bottom: 15px;
  margin-top: 0px;
  font-size: 1.4rem;
  font-weight: 600;
}

.pof-contact-info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  align-items: flex-start;
}

.pof-contact-info-item i {
  color: #f9a825;
  font-size: 18px;
  margin-top: 5px;
  min-width: 22px;
}
.pof-contact-info-text {
  flex-direction: column;
  line-height: 1.5;
}

.pof-contact-info-text span {
  display: block;
}

.pof-contact-link {
  color: #c62828;
  font-weight: 500;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}

.pof-contact-link:hover {
  color: #f9a825;
  text-decoration: underline;
}

.pof-contact-input, 
.pof-contact-textarea {
    width: 100%;
    padding: 16px;
    margin-bottom: 20px;
    border-radius: 13px;
    border: 1px solid #e0e0e0;
    font-size: 0.95rem;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}
.pof-contact-input:focus,
.pof-contact-textarea:focus {
  border-color: #f9a825;
  outline: none;
  box-shadow: 0 0 0 3px rgba(249, 168, 37, 0.2);
}

#pof-contact-submit-btn {
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  font-size: 1rem;
  letter-spacing: 0.5px;
  background: #c62828;
  color: #ffffff;
  font-weight: 600;
}

#pof-contact-submit-btn:hover {
  background: #f9a825;
  color: #000;
}

#pof-contact-donation-box {
  margin-top: 25px;
  padding: 20px;
  background: #fff3cd;
  border-left: 5px solid #c62828;
  text-align: center;
}
.pof-contact-donation-title {
  color: #c62828;
  font-weight: 600;
}

#pof-contact-success-msg {
  display: none;
  margin-top: 15px;
  color: green;
  font-weight: 600;
}

.field {
  margin-bottom: 14px;
  position: relative;
}

.error {
  display: block;
  color: #d10000;
  font-size: 0.85rem;
  margin-top: 4px;
}

input.error-border,
textarea.error-border {
  border: 1px solid #d10000;
}

/* =========================
   Donate Section (donate.html)
   ========================= */
.donate {
  position: relative;
  padding: 90px 20px;
  color: #ffffff;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.donate::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.55)
  );
  backdrop-filter: blur(1px);
  z-index: 1;
}

.donate-inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.donate-card {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  padding: 40px 36px;
  border-radius: 20px;
  max-width: 780px;
  width: 100%;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.donate-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.donate-sub {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.95;
  margin-bottom: 26px;
}

.donate-box {
  padding: 20px 15px;
  border-radius: 14px;
}

.qr {
  width: 100%;
  max-width: 360px;
  height: auto;
  margin: 12px auto 18px;
  border-radius: 12px;
  background: #fff;
  padding: 10px;
}

.label {
  margin-top: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.upi {
  margin-top: 8px;
  font-size: 0.95rem;
}

.copy-btn {
  margin-top: 16px;
  padding: 10px 20px;
  font-size: 0.95rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.copy-btn:hover {
  transform: translateY(-2px);
}































