/* RESET */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
}

/* GLOBAL FONT */
html, body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
}

p, a, li, span {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
}


#mobileMenu ul li a {
  color: #000000 !important;
  padding: 0;
}
/* VIDEO HERO */
.video-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  color: #fff;
}

/* VIDEO */
.bg-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
  z-index: 1;
}

/* TOP BAR */
.top-bar {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 8px 0;
  font-size: 14px;
  z-index: 10001;
}

.top-bar span {
  margin-right: 15px;
}

.social-icons a {
  margin-left: 12px;
  color: #fff;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #ec268f;
  transform: translateY(-2px);
}

/* HEADER */


/* NAV */
.main-nav ul {
  list-style: none;
}

.main-nav ul li {
  position: relative;
}

.main-nav ul li a {
  color: #000000;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 500;
}

.main-nav ul li a:hover {
  color: #ec268f;
}

/* DROPDOWN */
.dropdown-menu-custom {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 300px;
  padding: 6px 0;
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  z-index: 99999999;
  
}

.dropdown-menu-custom {
  position: absolute;
  top: calc(100% + 10px); /* small gap below nav */
  left: 0;
  z-index: 99999;
}





.dropdown:hover .dropdown-menu-custom {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu-custom li a {
  color: #333;
  padding: 12px 20px;
  display: block;
}

.dropdown-menu-custom li a:hover {
  background: #fff1f8;
  color: #ec268f;
}

/* LOGO */
.logo {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 2px;
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
}

.hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
}

.hero-content p {
  font-size: 18px;
  margin: 20px 0 30px;
}

/* BUTTONS */
.btn-primary {
  background: #ec268f;
  color: #fff;
  padding: 14px 34px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(236,38,143,0.4);
}

.btn-primary:hover {
  background: #d91f81;
  transform: translateY(-3px);
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  margin-left: 10px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #fff;
  color: #ec268f;
}

/* DONATE */
.donate-btn {
  background: #ec268f;
  padding: 10px 26px;
  border-radius: 40px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

/* ABOUT + IMPACT SECTION */
.about-impact {
  padding: 150px 100px;
  background: #ffffff;
}

.section-tag {
  display: inline-block;
  color: #ec268f;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.about-impact h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}

.lead-text {
  font-size: 18px;
  color: #555;
  margin-bottom: 15px;
}

/* IMPACT GRID */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.impact-card {
  background: #fff1f8;
  border-radius: 20px;
  padding: 35px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.impact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(236,38,143,0.2);
}

.impact-card h3 {
  font-size: 36px;
  font-weight: 700;
  color: #ec268f;
  margin-bottom: 5px;
}

.impact-card p {
  margin: 0;
  color: #555;
  font-weight: 500;
}

/* MOBILE */
@media (max-width: 768px) {
  .about-impact {
    padding: 70px 0;
  }

  .impact-grid {
    grid-template-columns: 1fr;
  }
}

/* SECTION */
.aarine-story {
  padding: 0px 0 50px 0;
  background: #ffffff;
}

/* TEXT */
.aarine-text h1 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.25;
  color: #1f2937;
  margin-bottom: 25px;
}

.aarine-text h4 {
  font-size: 20px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 25px;
}

.aarine-text p {
  font-size: 17px;
  line-height: 1.8;
  color: #6b7280;
  max-width: 520px;
  margin-bottom: 35px;
}

/* IMAGE */
.aarine-image {
  text-align: center;
}

.image-holder {
  position: relative;
  display: inline-block;
}

/* ABSTRACT SHAPE */
.aarine-shape {
  position: absolute;
  width: 360px;
  height: 360px;
  background: #facc15;
  border-radius: 60% 40% 70% 30%;
  top: 10px;
  right: -40px;
  z-index: 1;
}

/* IMAGE */
.image-holder img {
  position: relative;
  width: 330px;
  z-index: 2;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .aarine-story {
    padding: 20px 0;
    text-align: center;
  }

  .aarine-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .aarine-shape {
    width: 260px;
    height: 260px;
    right: 0;
  }

  .image-holder img {
    width: 260px;
  }
}
.container-1200 {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}


/* HELP SECTION */
.aarine-help {
  background: #f3f6fb;
  padding: 60px 0;
}

.aarine-help h2 {
  font-size: 42px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 20px;
}

.aarine-help h2 span {
  color: #ec268f;
}

.section-intro {
  max-width: 900px;
  margin: 0 auto 0px auto;
  font-size: 17px;
  line-height: 1.7;
  color: #6b7280;
}
.wheeL_image{
  text-align: center;
  width: 1000px;

}
/* CARD */
.help-card {
  max-width: 320px;
  margin: 0 auto;
}

.help-card h4 {
  margin-top: 25px;
  font-size: 20px;
  font-weight: 600;
  color: #1f2937;
}

.help-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #6b7280;
  margin-top: 10px;
}

/* ================================
   FULL SCREEN WHEEL IMAGE
================================ */

.wheel-wrapper {
  width: 100%;
  height: 100vh;              /* FULL SCREEN */
  display: flex;
  align-items: center;
  justify-content: center;           /* spacing from text */
}

.wheel-wrapper img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;        /* IMPORTANT */
}


/* IMAGE STACK EFFECT */
.image-stack {
  position: relative;
  display: inline-block;
}

.image-stack::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #c7d2fe;
  top: -10px;
  left: -10px;
  transform: rotate(-2deg);
}

.image-stack::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #e0e7ff;
  top: 8px;
  left: 8px;
  transform: rotate(2deg);
}

.image-stack img {
  position: relative;
  width: 280px;
  height: 180px;              /* 👈 uniform height */
  object-fit: cover;          /* 👈 crops nicely */
  border-radius: 4px;
  z-index: 1;
}
.image-stack img {
  width: 300px;
  height: 190px;
}


/* RESPONSIVE */
@media (max-width: 991px) {
  .aarine-help {
    padding: 20px 0;
  }

  .aarine-help h2 {
    font-size: 32px;
  }

  .section-intro {
    margin-bottom: 10px;
  }
}


/* FULL SCREEN IMPACT */
.aarine-impact {
  background: #facc15;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* LEFT */
.impact-left h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  color: #1f2937;
  margin-bottom: 30px;
}

.impact-sub {
  font-size: 16px;
  color: #374151;
  margin-bottom: 25px;
}

/* VIDEO */
.impact-video {
  position: relative;
  width: 360px;
}

.impact-video video {
  width: 100%;
  border-radius: 4px;
  position: relative;
  z-index: 2;
}

.impact-video::before {
  content: "";
  position: absolute;
  inset: -10px;
  background: #c7d2fe;
  transform: rotate(-2deg);
  z-index: 1;
}

/* RIGHT COUNTERS */
.impact-right {
  display: flex;
  flex-direction: column;
  gap: 70px;
  padding-left: 80px;
}

.impact-count h3 {
  font-size: 72px;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

.impact-count p {
  font-size: 16px;
  color: #374151;
  margin-top: 5px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .impact-right {
    padding-left: 0;
    margin-top: 60px;
    gap: 40px;
  }

  .impact-video {
    width: 100%;
  }
}


/* SECTION */
.aarine-nutrition {
  background: #f3f6fb;
  padding: 40px 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* LEFT */
.nutrition-text h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  color: #1f2937;
  margin-bottom: 60px;
}

/* STATS */
.nutrition-stats {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}

.stat-block {
  max-width: 260px;
}

.stat-block h3 {
  font-size: 64px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
}

.stat-block p {
  font-size: 15px;
  line-height: 1.7;
  color: #6b7280;
  margin-bottom: 12px;
}

.stat-link {
  font-size: 15px;
  font-weight: 600;
  color: #1f2937;
  text-decoration: none;
}

.stat-link::after {
  content: " →";
}

/* RIGHT IMAGE */
.nutrition-image {
  text-align: right;
}

.image-wrap {
  position: relative;
  display: inline-block;
}

/* ABSTRACT SHAPE */
.nutrition-shape {
  position: absolute;
  width: 420px;
  height: 420px;
  background: #b9c6e4;
  border-radius: 55% 45% 60% 40%;
  top: 40px;
  right: -60px;
  z-index: 1;
}

/* IMAGE */
.image-wrap img {
  position: relative;
  width: 360px;
  z-index: 2;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .aarine-nutrition {
    padding: 80px 0;
  }

  .nutrition-text h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
  }

  .nutrition-stats {
    justify-content: center;
    gap: 40px;
    text-align: center;
  }

  .nutrition-image {
    text-align: center;
    margin-top: 60px;
  }

  .nutrition-shape {
    width: 300px;
    height: 300px;
    right: 0;
  }

  .image-wrap img {
    width: 280px;
  }
}


/* SECTION */
.aarine-stories {
  padding: 100px 0;
}

/* GRID */
.aarine-stories-grid {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 50px;
  align-items: center;
}

/* LEFT TEXT */
.aarine-stories-text h2 {
  font-size: 42px;
  line-height: 1.25;
  margin-bottom: 20px;
  color: #1f2937;
}

.aarine-stories-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #6b7280;
  max-width: 380px;
}

/* SLIDER AREA */
.aarine-stories-slider {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* VIEWPORT */
.aarine-slider-viewport {
  overflow: hidden;
  width: 100%;
}

/* TRACK */
.aarine-slider-track {
  display: flex;
  transition: transform 0.45s ease;
}

/* CARD */
.aarine-story-card {
  min-width: 50%;
  padding: 0 12px;
  text-align: center;
}

.aarine-story-card img {
  width: 100%;
  max-width: 320px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}

.aarine-story-card a {
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
  color: #111827;
  text-decoration: none;
}

/* ARROWS */
.aarine-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  font-size: 22px;
  cursor: pointer;
  flex-shrink: 0;
}

/* MOBILE */
@media (max-width: 768px) {
  .aarine-stories-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .aarine-stories-text {
    text-align: center;
  }

  .aarine-stories-text p {
    margin: auto;
  }

  .aarine-story-card {
    min-width: 100%;
  }
}


/* SECTION */
.aarine-voice {
  background: #f3f6fb;
  padding: 120px 0;
}

/* GRID */
.aarine-voice-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
}

/* COLLAGE */
.aarine-collage {
  position: relative;
  width: 100%;
  height: 360px;
}

.aarine-collage .img {
  position: absolute;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* INDIVIDUAL IMAGE POSITIONS */
.img-1 { top: 0; left: 60px; transform: rotate(-6deg); }
.img-2 { top: 40px; left: 200px; transform: rotate(4deg); }
.img-3 { top: 140px; left: 20px; transform: rotate(3deg); }
.img-4 { top: 160px; left: 180px; transform: rotate(-4deg); }
.img-5 { top: 80px; left: 320px; transform: rotate(6deg); }

/* RIGHT TEXT */
.aarine-voice-text {
  padding-left: 40px;
}

.voice-tag {
  display: block;
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 10px;
}

.aarine-voice-text h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 25px;
  color: #1f2937;
}

/* BUTTON */
.voice-btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 50px;
  background: #111827;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.voice-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* MOBILE */
@media (max-width: 768px) {
  .aarine-voice-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .aarine-collage {
    height: 420px;
  }

  .aarine-voice-text {
    text-align: center;
    padding-left: 0;
  }
}

/* TYPEWRITER */
.aarine-type {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.25;
  color: #1f2937;
}

.aarine-type .cursor {
  margin-left: 4px;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  50.01%, 100% { opacity: 0; }
}


.supporters {
  padding: 80px 0;
}

.supporters-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.supporters-title {
  margin-bottom: 40px;
  font-size: 26px;
}

.supporters-row {
  display: flex;
  align-items: center;
  gap: 15px;
}

.sup-viewport {
  overflow: hidden;
  width: 100%;
}

.sup-track {
  display: flex;
  transition: transform 0.4s ease;
}

.sup-item {
  min-width: 20%;
  padding: 0 20px;
}

.sup-item img {
  width: 100%;
  max-height: 90px;
  object-fit: contain;
}

.sup-prev,
.sup-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 22px;
}



/* SECTION */
.aarine-media {
  padding: 100px 0;
}

.media-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 50px;
}

/* SLIDER */
.media-slider {
  display: flex;
  align-items: center;
  gap: 20px;
}

.media-viewport {
  overflow: hidden;
  width: 100%;
}

.media-track {
  display: flex;
  transition: transform 0.4s ease;
}

.media-item {
  min-width: 25%;
  padding: 0 15px;
  cursor: pointer;
}

.media-item img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 12px;
}

/* ARROWS */
.media-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  font-size: 22px;
  cursor: pointer;
}

/* MODAL */
.media-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.media-modal.active {
  display: flex;
}

.media-modal img {
  max-height: 80vh;
  max-width: 90vw;
  object-fit: contain;
}

/* CLOSE */
.modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* FOOTER */
.modal-footer {
  position: absolute;
  bottom: 30px;
}

.modal-btn {
  background: #ec268f;
  color: #fff;
  padding: 14px 34px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
}

/* MOBILE */
@media (max-width: 768px) {
  .media-item {
    min-width: 70%;
  }
}


.aarine-testimonials {
  padding: 100px 0;
  background: #fafafa;
  text-align: center;
}

.testimonials-title {
  font-size: 28px;
  margin-bottom: 60px;
  color: #1f2937;
}

/* SLIDER */
.testimonial-slider {
  overflow: hidden;
  max-width: 950px;
  margin: auto;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease;
}

/* ITEM */
.testimonial-item {
  min-width: 100%;
  padding: 0 30px;
}

.testimonial-item p {
  font-size: 18px;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 20px;
}

.testimonial-item h4 {
  font-size: 15px;
  font-weight: 600;
  color: #6b7280;
}


.aarine-footer {
  background: #f4c2c2;
  color: #cbd5f5;
  padding: 80px 0 30px;
  font-size: 15px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
}

/* LOGO */
.footer-logo {
  max-width: 240px;
  margin-bottom: 20px;
}

/* ABOUT */
.footer-about p {
  line-height: 1.7;
  color: #0f172a;
}

/* HEADINGS */
.footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 18px;
}

/* LINKS */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #0f172a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ec268f;
}

/* CONTACT */
.footer-col p {
  line-height: 1.7;
  color: #0f172a;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(5, 5, 5, 0.1);
  margin-top: 50px;
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #00132d;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    margin-top: 30px;
  }
}

.social-icons-footer a {
  margin-left: 15px;
  color: #000000;
  transition: 0.3s;
  border: 2px solid #000000;
  padding: 10px;
  border-radius: 50px;
}

.social-icons-footer a:hover {
  color: #ec268f;
  transform: translateY(-2px);
}

/* FLOATING CONTAINER */
.aarine-float-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* WHATSAPP */
.whatsapp-float {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
}

/* SCROLL TOP */
.scroll-top {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #0f172a;
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

/* SHOW BUTTON */
.scroll-top.show {
  opacity: 1;
  pointer-events: auto;
}

/* MOBILE */
@media (max-width: 768px) {
  .aarine-float-actions {
    right: 15px;
    bottom: 15px;
  }
}


/* =========================
   HEADER BASE
========================= */


/* NAV LINKS – DEFAULT (VIDEO STATE) */
.video-hero .main-nav ul li a {
  color: #ffffff;
}

.video-hero .main-nav ul li a:hover {
  color: #ec268f;
}

/* =========================
   STICKY HEADER STATE
========================= */
.main-header.is-sticky {
  position: fixed;
  top: 0;
  background: #ffffff;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  padding: 10px 0;
}

/* LOGO SIZE ADJUST (OPTIONAL NICE TOUCH) */
.main-header.is-sticky .logo img {
  max-height: 75px;
}

/* NAV LINKS – STICKY STATE */
.main-header.is-sticky .main-nav ul li a {
  color: #111827;
}

.main-header.is-sticky .main-nav ul li a:hover {
  color: #ec268f;
}

/* DROPDOWN FIX IN STICKY */
.main-header.is-sticky .dropdown-menu-custom {
  top: calc(100% + 5px);
}

/* MOBILE SAFE */
@media (max-width: 991px) {
  .main-header.is-sticky {
    position: fixed;
  }
}

/* =========================
   DROPDOWN – GLOBAL (ALL PAGES)
========================= */

/* Dropdown container */
.dropdown-menu-custom {
  background: #ffffff;
  border-radius: 12px;
}

/* Dropdown links – default */
.dropdown-menu-custom li a {
  color: #111827; /* solid black */
  background: transparent;
  transition: all 0.3s ease;
}

/* Dropdown hover */
.dropdown-menu-custom li a:hover {
  background: #fff1f8;
  color: #ec268f;
}

/* =========================
   FORCE DROPDOWN TEXT COLOR
========================= */

/* When dropdown is open */
.dropdown-menu-custom li a {
  color: #111827 !important;
}

/* Hover state */
.dropdown-menu-custom li a:hover {
  color: #ec268f !important;
  background: #fff1f8;
}



/* ====================About Us=========================== */


/* VIDEO HERO */
.about_.video-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  height: auto;
  overflow: hidden;
  color: #fff;
}


/* NAV LINKS – DEFAULT (VIDEO STATE) */
.about_.video-hero .main-nav ul li a {
  color: #ffffff;
}

.about_.video-hero .main-nav ul li a:hover {
  color: #ec268f;
}

/* ================================
   INNER PAGE BANNER IMAGE
================================ */

body.inner-page .video-hero {
  height: 360px;
}

/* Hide video only on inner pages */
body.inner-page .video-hero video {
  display: none;
}

/* Banner image */
.bg-image {
  position: absolute;
  inset: 0;
  background: url("../images/") center / cover no-repeat;
  z-index: 0;
}

/* Keep overlay */
body.inner-page .video-overlay {
  background: rgba(0,0,0,0.55);
}

/* Ensure content above image */
.video-hero .container {
  position: relative;
  z-index: 2;
}






.main-header_about_main-header.is-sticky .logo img {
  max-height: 50px;
}

.main-header {
  position: absolute;
  top: 40px;
  width: 100%;
  z-index: 3;
}

/* ==============================
   ABOUT PAGE NAV OVERRIDES
============================== */

.main-header.is-sticky {
  position: fixed;
  top: 0;
  background: #ffffff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* Nav text color */
.about_main-header .main-nav ul li a {
  color: #111827;
}

/* Hover */
.about_main-header .main-nav ul li a:hover {
  color: #ec268f;
}

/* Donate button fix */
.about_main-header .btn-outline {
  border-color: #ec268f;
  color: #ec268f;
}

.about_main-header .btn-outline:hover {
  background: #ec268f;
  color: #ffffff;
}


.index_feed_hope li{
  padding: 5px 0px ;
}



.about-hero-banner {
  height: 550px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("../images/2nd-anniversary_640x360.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  color: #fff;
  text-align: center;
}




.bgm_sgd.goals {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
/* ======================================================================================= */


/* ==============================
   CASE STUDIES
============================== */

.case-studies {
  background: linear-gradient(135deg, #fff1f8, #f3f6fb);
  padding: 30px 0;
}

.case-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
}

.case-subtitle {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px;
  color: #6b7280;
  font-size: 16px;
}

/* SLIDER */
.case-slider {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* VIEWPORT */
.case-viewport {
  overflow: hidden;
  width: 100%;
}

/* TRACK */
.case-track {
  display: flex;
  transition: transform 0.6s ease;
}

/* ITEM */
.case-item {
  min-width: 33.333%;
  padding: 0 15px;
  text-align: center;
}

.case-item iframe {
  width: 100%;
  height: 220px;
  border-radius: 16px;
  border: none;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.case-item h4 {
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
}

/* ARROWS */
.case-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.case-arrow:hover {
  background: #ec268f;
  color: #ffffff;
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .case-item {
    min-width: 50%;
  }
}

@media (max-width: 576px) {
  .case-item {
    min-width: 100%;
  }

  .case-title {
    font-size: 32px;
  }
}



/* $$$$$$$$$$$$$$$$$$$$$$$$$New Dummy$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ 
$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */
/* VIDEO HERO */
/* =================================
   INNER PAGE HERO BANNER
================================= */




/* Alternative: Solid Color Background */
/* Uncomment below and comment out bg-image if you want solid color */
/*
.inner-hero-banner .bg-image {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ec268f 0%, #facc15 100%);
  z-index: 0;
}
*/

/* Overlay */
.inner-hero-banner .video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}



/* Nav links - white by default */
.inner-hero-banner .main-nav ul li a {
  color: #ffffff;
}



.inner-hero-banner .main-nav ul li a:hover {
  color: #ec268f;
}

/* Hero Content */
.inner-hero-banner .hero-content {
  position: relative;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
}

.inner-hero-banner .hero-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}

.inner-hero-banner .hero-content p {
  font-size: 18px;
  margin: 20px 0 0;
}

/* =================================
   FIXED HEADER ON SCROLL
================================= */

/* Inner page header becomes fixed on scroll */
.inner-page .main-header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  padding: 10px 0;
  z-index: 1000 !important;
}

/* Logo adjustment when sticky */
.inner-page .main-header.is-sticky .logo img {
  max-height: 70px;
  transition: all 0.3s ease;
}

/* Nav links turn dark when sticky */
.inner-page .main-header.is-sticky .main-nav ul li a {
  color: #111827;
}

.inner-page .main-header.is-sticky .main-nav ul li a:hover {
  color: #ec268f;
}

/* Donate button adjustment - WHITE initially */
.inner-page .main-header .btn-outline {
  border-color: #ffffff;
  color: #ffffff;
  background: transparent;
}

.inner-page .main-header .btn-outline:hover {
  background: #ffffff;
  color: #ec268f;
}

/* Donate button - PINK when sticky */
.inner-page .main-header.is-sticky .btn-outline {
  border-color: #ec268f;
  color: #ec268f;
  background: transparent;
}

.inner-page .main-header.is-sticky .btn-outline:hover {
  background: #ec268f;
  color: #ffffff;
}

/* =================================
   OUR STORY SECTION
================================= */

.our-story-section {
  padding: 100px 0;
  background: #ffffff;
}

.our-story-section .section-tag {
  display: inline-block;
  color: #ec268f;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.our-story-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}

.our-story-section p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

/* =================================
   MISSION & VISION SECTION
================================= */

.mission-vision-section {
  padding: 80px 0;
  background: #f3f6fb;
}

.mission-vision-section h2 {
  font-size: 42px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 50px;
}

.mission-card,
.vision-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  height: 300px;
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-5px);
}

.icon-box {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ec268f, #facc15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon-box i {
  font-size: 32px;
  color: #ffffff;
}

.mission-card h3,
.vision-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 15px;
}

.mission-card p,
.vision-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #6b7280;
  margin: 0;
}

/* =================================
   OUR VALUES SECTION
================================= */

.our-values-section {
  padding: 100px 0;
  background: #ffffff;
}

.our-values-section h2 {
  font-size: 42px;
  font-weight: 700;
  color: #1f2937;
}

.our-values-section > .container > p {
  color: #6b7280;
  font-size: 17px;
  margin-bottom: 50px;
}

.value-card {
  background: #fff1f8;
  padding: 40px 25px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(236,38,143,0.15);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: #ec268f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-icon i {
  font-size: 26px;
  color: #ffffff;
}

.value-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 15px;
  color: #6b7280;
  margin: 0;
}

/* =================================
   OUR APPROACH SECTION
================================= */

.our-approach-section {
  padding: 80px 0;
  background: #f3f6fb;
}

.our-approach-section h2 {
  font-size: 42px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 20px;
}

.our-approach-section p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
}

.approach-list {
  list-style: none;
  padding: 0;
}

.approach-list li {
  font-size: 16px;
  color: #374151;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.approach-list li i {
  color: #ec268f;
  font-size: 20px;
  margin-right: 12px;
}

/* =================================
   OUR TEAM SECTION
================================= */

.our-team-section {
  padding: 100px 0;
  background: #ffffff;
}

.our-team-section h2 {
  font-size: 42px;
  font-weight: 700;
  color: #1f2937;
}

.our-team-section > .container > p {
  color: #6b7280;
  font-size: 17px;
  margin-bottom: 50px;
}

.team-card {
  text-align: center;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 5px solid #fff1f8;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 5px;
}

.team-role {
  font-size: 15px;
  color: #ec268f;
  font-weight: 500;
}

/* =================================
   CALL TO ACTION SECTION
================================= */

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ec268f 0%, #facc15 100%);
  color: #ffffff;
}

.cta-section h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #ffffff;
}

.cta-section .btn-primary {
  background: #ffffff;
  color: #ec268f;
}

.cta-section .btn-primary:hover {
  background: #0f172a;
  color: #ffffff;
}

.cta-section .btn-outline {
  border-color: #ffffff;
  color: #ffffff;
}

.cta-section .btn-outline:hover {
  background: #ffffff;
  color: #ec268f;
}

/* =================================
   RESPONSIVE
================================= */

@media (max-width: 991px) {
  .our-story-section,
  .our-values-section,
  .our-team-section {
    padding: 70px 0;
  }

  .mission-vision-section,
  .our-approach-section,
  .cta-section {
    padding: 60px 0;
  }

  .inner-hero-banner {
    height: 70vh ;
    min-height: 350px;
  }
  
  .inner-hero-banner .main-header {
    top: 50px;
  }
}

@media (max-width: 768px) {
  .our-story-section h2,
  .mission-vision-section h2,
  .our-values-section h2,
  .our-approach-section h2,
  .our-team-section h2,
  .cta-section h2 {
    font-size: 32px;
  }

  .inner-hero-banner .hero-content h1 {
    font-size: 28px;
  }
}

/* $$$$$$$$$$$$$$$$$$$$$$$$$New Dummy$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ 
$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ */


/* ABOUT PAGE CORE */
.about-hero {
  background: #f3f6fb;
  padding: 120px 0 80px;
  text-align: center;
}

.about-hero h1 {
  font-size: 44px;
  font-weight: 700;
}

.about-hero p {
  max-width: 720px;
  margin: 15px auto 0;
  color: #6b7280;
}

.about-section {
  padding: 90px 0;
}
.about-section.light-bg {
  background: linear-gradient(180deg, #fafafa, #f3f6fb);
}

.about-section.light-bg h2 {
  color: #ec268f;
}

.about-section.light-bg p {
  font-size: 17px;
}


.light-bg { background: #fafafa; }
.soft-bg { background: #fff1f8; }

.container-1200.narrow {
  max-width: 900px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.content-block h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

.what-we-do-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.wwd-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
}

/* OUR VALUES – BEAUTIFIED */
.values-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.values-list p {
  background: linear-gradient(145deg, #ffffff, #fff5fb);
  padding: 26px 28px;
  border-radius: 16px;
  border-left: 6px solid #ec268f;
  box-shadow: 0 14px 35px rgba(0,0,0,0.08);
  font-size: 16px;
  line-height: 1.7;
  color: #374151;
  transition: all 0.3s ease;
}

.values-list p strong {
  color: #ec268f;
}

.values-list p:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(236,38,143,0.18);
}



.impact-circle {
  background: linear-gradient(145deg, #ffffff, #fff5fb);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.impact-circle h3 {
  color: #ec268f;
}

.founder-text h2 {
  color: #ec268f;
}

.founder-text h4 {
  font-weight: 600;
  color: #374151;
  margin-bottom: 15px;
}

.founder-image img {
  box-shadow: 0 25px 60px rgba(0,0,0,0.18);
}
/* WHAT WE DO – UNIFORM STYLE */
.wwd-item {
  background: #ffffff;
  padding: 36px 32px;
  border-radius: 18px;
  border: 1px solid rgba(236,38,143,0.18);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  text-align: left;
}

.wwd-item h4 {
  color: #ec268f;
  font-weight: 600;
  margin-bottom: 12px;
}

.wwd-item p {
  color: #374151;
  line-height: 1.7;
}

/* HOVER – subtle, premium */
.wwd-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(236,38,143,0.18);
}


.impact-circles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.impact-circle {
  background: #ffffff;
  border-radius: 50%;
  width: 220px;
  height: 220px;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}

.founder-image img {
  width: 100%;
  border-radius: 20px;
}

.center { text-align: center; }
.muted { color: #6b7280; }

/* RESPONSIVE */
@media (max-width: 991px) {
  .two-col,
  .what-we-do-grid,
  .impact-circles,
  .founder-grid {
    grid-template-columns: 1fr;
  }

  .impact-circle {
    width: 180px;
    height: 180px;
  }
}


/* ===============================
   PROGRAM PAGES – COMMON
=============================== */

.program-hero {
  padding: 120px 0 120px;
  text-align: center;
}

.rte-hero {
  background: linear-gradient(180deg, #fff1f8, #f3f6fb);
}

.program-hero h1 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 20px;
}

.program-hero p {
  max-width: 780px;
  margin: auto;
  font-size: 18px;
  color: #374151;
}

.program-section {
  padding: 90px 0;
}

.program-section .lead-text {
  font-size: 18px;
  margin-bottom: 20px;
  color: #1f2937;
}

.program-section p {
  font-size: 16px;
  line-height: 1.8;
  color: #6b7280;
}

.light-bg {
  background: #fafafa;
}

/* SUCCESS STORY */
.quote {
  font-size: 18px;
  font-style: italic;
  color: #1f2937;
  margin-bottom: 15px;
}

.quote-author {
  font-weight: 600;
  color: #ec268f;
}

/* HIGHLIGHT */
.highlight-text {
  font-size: 20px;
  margin: 25px 0;
}

/* CTA */
.program-cta {
  background: #facc15;
  padding: 100px 0;
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 50px 0;
}

.cta-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.cta-card h4 {
  color: #ec268f;
  margin-bottom: 10px;
}

.cta-btn {
  margin-top: 30px;
}

/* REUSE */
.center {
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 991px) {

  .cta-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .program-hero h1 {
    font-size: 34px;
  }

  .mission-card,
.vision-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  height: auto !important;
}
}


/* ===============================
   CSR PAGE
================================ */

/* HERO */
.csr-hero {
  background: linear-gradient(135deg, #fff1f8, #f8fafc);
  padding: 120px 0 90px;
  text-align: center;
}

.csr-hero h1 {
  font-size: 44px;
  font-weight: 700;
  color: #1f2937;
  max-width: 900px;
  margin: 0 auto 20px;
}

.csr-hero p {
  font-size: 18px;
  color: #6b7280;
  max-width: 760px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.csr-hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* WHY WOMEN */
.csr-why {
  padding: 100px 0;
}

.csr-two-col {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.csr-why h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1f2937;
}

.csr-why p {
  font-size: 16px;
  line-height: 1.8;
  color: #6b7280;
  margin-bottom: 15px;
}

/* CSR ALIGNMENT */
.csr-alignment {
  background: #fafafa;
  padding: 70px 0;
}

.csr-alignment h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #1f2937;
}

.csr-list {
  list-style: none;
  padding: 0;
}

.csr-list li {
  padding: 15px 20px;
  background: #ffffff;
  border-left: 5px solid #ec268f;
  margin-bottom: 15px;
  font-size: 16px;
  color: #374151;
}

/* MODEL */
.csr-model {
  padding: 100px 0;
}

.csr-model h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.model-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.model-card:hover {
  transform: translateY(-6px);
}

.model-card span {
  font-size: 28px;
  font-weight: 700;
  color: #ec268f;
}

.model-card h4 {
  font-size: 18px;
  margin: 15px 0 10px;
  color: #1f2937;
}

.model-card p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
}

/* IMPACT */
.csr-impact {
  background: #facc15;
  padding: 80px 0;
}



.impact-grid h3 {
  font-size: 42px;
  font-weight: 700;
  color: #1f2937;
}

.impact-grid p {
  font-size: 15px;
  color: #374151;
}

/* OPTIONS */
.csr-options {
  padding: 100px 0;
}

.csr-options h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  text-align: center;
}

.csr-cards {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.csr-cards li {
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.csr-cards h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #1f2937;
}

.csr-cards p {
  font-size: 15px;
  color: #6b7280;
}

/* WHY US */
.csr-why-us {
  background: #fff1f8;
  padding: 90px 0;
}

.csr-why-us h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
}

.csr-trust {
  max-width: 700px;
  margin: auto;
  list-style: none;
  padding: 0;
}

.csr-trust li {
  font-size: 16px;
  padding: 12px 0;
  color: #374151;
  border-bottom: 1px solid #f3c4dc;
}

/* ===============================
   MODAL
================================ */

.csr-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.csr-modal.active {
  display: flex;
}

.csr-modal-box {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  width: 100%;
  max-width: 420px;
  position: relative;
  animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.csr-modal-box h3 {
  font-size: 24px;
  margin-bottom: 25px;
  color: #1f2937;
}

.csr-modal-box input {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 14px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-size: 15px;
}

.csr-modal-box button {
  width: 100%;
}

.whatsapp-inline {
  display: block;
  margin-top: 14px;
  text-align: center;
  color: #25D366;
  font-weight: 600;
  text-decoration: none;
}

.close-modal {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 991px) {
  .csr-two-col,
  .model-grid,
  .impact-grid,
  .csr-cards {
    grid-template-columns: 1fr;
  }

  .csr-hero h1 {
    font-size: 34px;
  }
}


.program-hero_rte-hero_programs{
  margin-top: 480px;
}

body.inner-page .video-overlay {
  background: rgba(0, 0, 0, 0.25);
}

/* ===============================
   PROJECT – SKILL DEVELOPMENT
================================ */

.project-skill {
  background: #ffffff;
}

/* HEADER */
.project-header {
  background: linear-gradient(135deg, #f3f6fb, #fff1f8);
  padding: 110px 0 80px;
  text-align: center;
}

.project-header h1 {
  font-size: 44px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 20px;
}

.project-header p {
  font-size: 18px;
  color: #6b7280;
  max-width: 820px;
  margin: auto;
  line-height: 1.7;
}

/* GRID */
.project-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  padding: 100px 0;
  align-items: start;
}

/* TEXT */
.project-text h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #1f2937;
}

.project-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #6b7280;
  margin-bottom: 18px;
}

.project-highlight {
  margin-top: 25px;
  padding: 18px 22px;
  background: #fff1f8;
  border-left: 5px solid #ec268f;
  font-size: 16px;
  color: #374151;
}

.project-highlight span {
  color: #ec268f;
  font-weight: 600;
}

/* SUCCESS STORY */
.project-story {
  position: relative;
}

.project-story img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 15px 45px rgba(0,0,0,0.15);
}

.story-box {
  background: #ffffff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.1);
  position: absolute;
  bottom: -40px;
  left: -40px;
  max-width: 320px;
}

.story-box h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.story-box p {
  font-size: 14px;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 10px;
}

.story-box span {
  font-size: 13px;
  color: #6b7280;
}

/* CTA */
.project-cta {
  background: #facc15;
  padding: 80px 0;
  text-align: center;
}

.project-cta h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1f2937;
}

.project-cta h3 span {
  color: #ec268f;
}

.project-cta p {
  font-size: 16px;
  color: #374151;
  margin-bottom: 30px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .project-grid {
    grid-template-columns: 1fr;
    padding: 70px 0;
  }

  .story-box {
    position: static;
    margin-top: 25px;
  }

  .project-header h1 {
    font-size: 34px;
  }

  .project-text h2 {
    font-size: 28px;
  }
}


/* ===============================
   RIGHT TO EDUCATION
================================ */

.rte-section {
  background: #ffffff;
  padding: 100px 0;
}

.rte-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: start;
}

/* CONTENT */
.rte-content h2 {
  font-size: 38px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
}

.rte-content h4 {
  font-size: 20px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 25px;
}

.rte-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #6b7280;
  margin-bottom: 18px;
}

/* NEED COUNTER */
.rte-need {
  margin: 30px 0;
  padding: 20px;
  background: #fff1f8;
  border-left: 5px solid #ec268f;
}

.rte-need h3 {
  font-size: 40px;
  font-weight: 700;
  color: #ec268f;
  margin-bottom: 5px;
}

.rte-need p {
  font-size: 15px;
  color: #374151;
  margin: 0;
}

/* TESTIMONIAL */
.rte-testimonial {
  position: relative;
}

.rte-testimonial img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.testimonial-box {
  background: #ffffff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.1);
  margin-top: -60px;
  margin-left: -40px;
  position: relative;
}

.testimonial-box h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1f2937;
}

.testimonial-box p {
  font-size: 14px;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 10px;
}

.testimonial-box span {
  font-size: 13px;
  color: #6b7280;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .rte-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .testimonial-box {
    margin: 20px 0 0 0;
  }

  .rte-content h2 {
    font-size: 32px;
  }
}
.rte-grid {
  align-items: start; /* 👈 THIS FIXES 80% OF THE ISSUE */
}



.project-brief {
  padding: 100px 0;
  background: #ffffff;
  align-items: center;
  align-content: center;
  justify-content: center;
}

.project-brief-grid {
  display: grid;
  gap: 70px;
  align-items: center;
}

.project-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #ec268f;
  margin-bottom: 10px;
}

.project-brief-text h2 {
  font-size: 38px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 20px;
}

.project-brief-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #6b7280;
  margin-bottom: 15px;
}

.project-brief-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 18px;
}

@media (max-width: 991px) {
  .project-brief-grid {
    grid-template-columns: 1fr;
  }
}

.project-success {
  padding: 90px 0;
  background: #f9fafb;
}

.success-card {
  display: grid;
  grid-template-columns: 0.5fr 0.5fr;
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.success-image img {
  width: 70%;
  height: 100%;
  object-fit: cover;
}

.success-text {
  padding: 50px;
}

.success-text h4 {
  font-size: 18px;
  font-weight: 700;
  color: #ec268f;
  margin-bottom: 15px;
}

.success-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 15px;
}

.success-text span {
  font-size: 14px;
  color: #6b7280;
}

@media (max-width: 768px) {
  .success-card {
    grid-template-columns: 1fr;
  }
}


.project-donate {
  padding: 80px 0;
  background: linear-gradient(135deg, #fff1f8, #ffffff);
}

.donate-box {
  align-items: center;
  gap: 40px;
  background: #ffffff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(236,38,143,0.15);
}

.donate-box h3 {
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
}

.donate-box p {
  font-size: 16px;
  color: #6b7280;
}

@media (max-width: 768px) {
  .donate-box {
    flex-direction: column;
    text-align: center;
  }
}


/* CSR CTA */
.csr-cta {
  padding: 90px 0;
  background: linear-gradient(135deg, #fff1f8, #ffffff);
}

.csr-cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  background: #ffffff;
  padding: 50px;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(236,38,143,0.18);
}

.csr-cta-text h2 {
  font-size: 30px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
}

.csr-cta-text p {
  font-size: 16px;
  color: #6b7280;
}

.csr-cta-actions {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

/* WhatsApp Button */
.btn-whatsapp {
  background: #25d366;
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
}

/* MODAL */
.csr-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.csr-modal.active {
  display: flex;
}

.csr-modal-box {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  width: 100%;
  max-width: 420px;
  position: relative;
}

.csr-modal-box h3 {
  margin-bottom: 25px;
  font-size: 22px;
  font-weight: 700;
}

.csr-modal-box input {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-size: 15px;
}

.full-width {
  width: 100%;
}

/* CLOSE */
.csr-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .csr-cta-box {
    flex-direction: column;
    text-align: center;
  }
}


/* JOIN US PAGE */

.join-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #fff1f8, #ffffff);
  text-align: center;
}

.join-hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1f2937;
}

.join-hero p {
  max-width: 820px;
  margin: auto;
  font-size: 17px;
  line-height: 1.7;
  color: #6b7280;
}

.join-sections {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.join-card {
  max-width: 1200px;
  margin: auto;
  padding: 60px;
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.join-card.light {
  background: #f9fafb;
}

.join-card h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1f2937;
}

.join-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 30px 0 15px;
  color: #ec268f;
}

.join-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #374151;
}

.join-list {
  list-style: none;
  padding: 0;
}

.join-list li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 12px;
  font-size: 15px;
  color: #374151;
}

.join-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ec268f;
  font-weight: 700;
}

.join-actions {
  margin-top: 35px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* WhatsApp Button */
.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 768px) {
  .join-card {
    padding: 40px 25px;
  }

  .join-hero h1 {
    font-size: 32px;
  }
}

.inner-hero-banner_about {
  position: relative;
  width: 100%;
  height: 0vh;
  min-height: 430px;
  overflow: hidden;
  color: #fff;
}
.inner-hero-banner_about{
  position: relative;
  inset: 0;
  background: url("../images/about_banner.png") center/cover no-repeat;
  z-index: 0;
  height: 30vh !important;
}

.inner-hero-banner_joinsus {
  position: relative;
  width: 100%;
  height: 0vh;
  min-height: 430px;
  overflow: hidden;
  color: #fff;
}
.inner-hero-banner_joinsus{
  position: relative;
  inset: 0;
  background: url("../images/education_banner.jpg") center/cover no-repeat;
  z-index: 0;
  height: 30vh !important;
}

.inner-hero-banner_csr{
  position: relative;
  width: 100%;
  height: 0vh;
  min-height: 430px;
  overflow: hidden;
  color: #fff;
}
.inner-hero-banner_csr{
  position: relative;
  inset: 0;
  background: url("../images/csr_banner.png") center/cover no-repeat;
  z-index: 0;
  height: 30vh !important;
}


.inner-hero-banner_gallery{
  position: relative;
  inset: 0;
  background: url("../images/gallery_banner.png") center/cover no-repeat;
  z-index: 0;
  height: 0vh !important;
}
.inner-hero-banner_gallery {
  position: relative;
  width: 100%;
  height: 0vh;
  min-height: 430px;
  overflow: hidden;
  color: #fff;
}
.inner-hero-banner_education{
  position: relative;
  inset: 0;
  background: url("../images/righttoeducationbanner.png") center/cover no-repeat;
  z-index: 0;
  height: 0vh !important;
}

.inner-hero-banner_education{
  position: relative;
  width: 100%;
  height: 0vh;
  min-height: 430px;
  overflow: hidden;
  color: #fff;
}

.inner-hero-banner_atmanirbar{
  position: relative;
  inset: 0;
  background: url("../images/atmanirbar_banner.png") center/cover no-repeat;
  z-index: 0;
  height: 0vh !important;
}

.inner-hero-banner_atmanirbar{
  position: relative;
  width: 100%;
  height: 0vh;
  min-height: 430px;
  overflow: hidden;
  color: #fff;
}

.inner-hero-banner_Saksharata{
  position: relative;
  inset: 0;
  background: url("../images/digital_banner.png") center/cover no-repeat;
  z-index: 0;
  height: 0vh !important;
}

.inner-hero-banner_Saksharata{
  position: relative;
  width: 100%;
  height: 0vh;
  min-height: 430px;
  overflow: hidden;
  color: #fff;
}

.inner-hero-banner_ganga{
  position: relative;
  inset: 0;
  background: url("../images/projectganga_banner.png") center/cover no-repeat;
  z-index: 0;
  height: 0vh !important;
}

.inner-hero-banner_ganga{
  position: relative;
  width: 100%;
  height: 0vh;
  min-height: 430px;
  overflow: hidden;
  color: #fff;
}

.inner-hero-banner_shakthi{
  position: relative;
  inset: 0;
  background: url("../images/projectshakthi_banner.png") center/cover no-repeat;
  z-index: 0;
  height: 0vh !important;
}

.inner-hero-banner_shakthi{
  position: relative;
  width: 100%;
  height: 0vh;
  min-height: 430px;
  overflow: hidden;
  color: #fff;
}

.inner-hero-banner_arogya{
  position: relative;
  inset: 0;
  background: url("../images/projectarogya_banner.png") center/cover no-repeat;
  z-index: 0;
  height: 0vh !important;
}

.inner-hero-banner_arogya{
  position: relative;
  width: 100%;
  height: 0vh;
  min-height: 430px;
  overflow: hidden;
  color: #fff;
}

.inner-hero-banner_kaushalya{
  position: relative;
  inset: 0;
  background: url("../images/kaushalya_banner.png") center/cover no-repeat;
  z-index: 0;
  height: 0vh !important;
}

.inner-hero-banner_kaushalya{
  position: relative;
  width: 100%;
  height: 0vh;
  min-height: 430px;
  overflow: hidden;
  color: #fff;
}


.inner-hero-banner_media{
  position: relative;
  inset: 0;
  background: url("../images/news_mediabanner.png") center/cover no-repeat;
  z-index: 0;
  height: 0vh !important;
}
.inner-hero-banner_media{
  position: relative;
  width: 100%;
  height: 0vh;
  min-height: 430px;
  overflow: hidden;
  color: #fff;
}

.inner-hero-banner_contact{
  position: relative;
  inset: 0;
  background: url("../images/contactbanner.png") center/cover no-repeat;
  z-index: 0;
  height: 0vh !important;
}
.inner-hero-banner_contact{
  position: relative;
  width: 100%;
  height: 0vh;
  min-height: 430px;
  overflow: hidden;
  color: #fff;
}

.inner-hero-banner_Donate{
  position: relative;
  inset: 0;
  background: url("../images/donate_bg.png") center/cover no-repeat;
  z-index: 0;
  height: 0vh !important;
}
.inner-hero-banner_Donate{
  position: relative;
  width: 100%;
  height: 0vh;
  min-height: 430px;
  overflow: hidden;
  color: #fff;
}
/* CONTACT PAGE */

.contact-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #fff1f8, #ffffff);
  text-align: center;
}

.contact-hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1f2937;
}

.contact-hero p {
  max-width: 700px;
  margin: auto;
  font-size: 17px;
  color: #6b7280;
}

/* CONTENT */
.contact-content {
  padding: 90px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 70px;
}

/* INFO BLOCKS */
.contact-block {
  margin-bottom: 35px;
}

.contact-block h3 {
  font-size: 18px;
  font-weight: 700;
  color: #ec268f;
  margin-bottom: 8px;
}

.contact-block p {
  font-size: 15px;
  line-height: 1.7;
  color: #374151;
}

/* ACTION CARD */
.contact-actions {
  display: flex;
  align-items: flex-start;
}

.contact-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  width: 100%;
}

.contact-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1f2937;
}

.contact-card p {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 25px;
}

/* WHATSAPP BUTTON */
.btn-whatsapp.large {
  display: inline-block;
  background: #25d366;
  color: #ffffff;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 25px;
}

/* EMAIL */
.contact-email a {
  color: #1f2937;
  text-decoration: none;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-card {
    text-align: center;
  }
}


/* GOOGLE MAP */
.contact-map {
  margin-top: 30px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.contact-map iframe {
  width: 100%;
  height: 320px;
  border: none;
}


.donation-onetime {
  padding: 100px 0;
  background: #f9fafb;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #1f2937;
}

.section-subtitle {
  text-align: center;
  max-width: 600px;
  margin: 12px auto 60px;
  color: #6b7280;
}

.donation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.donation-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.donation-card.highlight {
  border: 2px solid #ec268f;
}

.donation-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.donation-intro {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 20px;
}

.donation-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.donation-list li {
  font-size: 15px;
  padding: 8px 0;
  color: #374151;
}


/* TRUST, TRANSPARENCY & ACCOUNTABILITY */
.donate-trust {
  padding: 90px 0;
  background: #ffffff;
}

.donate-trust h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 20px;
  max-width: 720px;
}

.donate-trust p {
  font-size: 17px;
  line-height: 1.7;
  color: #4b5563;
  max-width: 780px;
  margin-bottom: 30px;
}

.donate-trust ul {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 700px;
}

.donate-trust ul li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  font-size: 16px;
  color: #374151;
  line-height: 1.6;
}

/* CHECK ICON STYLE */
.donate-trust ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 16px;
  color: #ec268f;
  font-weight: 700;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .donate-trust {
    padding: 70px 0;
  }

  .donate-trust h2 {
    font-size: 28px;
  }

  .donate-trust p {
    font-size: 16px;
  }
}


/* PAGE */
.media-page {
  padding: 100px 0;
}

.media-title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}

.media-subtitle {
  text-align: center;
  color: #6b7280;
  margin-bottom: 50px;
}

/* GRID */
.media-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.media-thumb {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  cursor: pointer;
}

/* RESPONSIVE GRID */
@media (max-width: 992px) {
  .media-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .media-grid {
    grid-template-columns: 1fr;
  }
}

/* FULLSCREEN MODAL */
.media-fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.media-fullscreen.active {
  display: flex;
}

/* IMAGE */
.media-fullscreen img {
  width: 100vw;
  height: 100vh;
  object-fit: contain;
}

/* CONTROLS */
.media-close {
  position: fixed;
  top: 20px;
  right: 25px;
  font-size: 40px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 100000;
}

.media-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  z-index: 100000;
}

.media-arrow.prev { left: 20px; }
.media-arrow.next { right: 20px; }


/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.gallery-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* FULLSCREEN */
.gallery-fullscreen {
  position: fixed;
  inset: 0;
  background: #000;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.gallery-fullscreen.active {
  display: flex;
}

.gallery-fullscreen img {
  width: 100vw;
  height: 100vh;
  object-fit: contain;
}

/* CONTROLS */
.gallery-close {
  position: fixed;
  top: 20px;
  right: 25px;
  font-size: 42px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}

.gallery-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

.gallery-arrow.prev { left: 20px; }
.gallery-arrow.next { right: 20px; }




  

  .aarine-policy{
padding:120px 0;
background:#f8fafc;
}

/* HEADER */
.policy-header{
text-align:center;
margin-bottom:60px;
}

.policy-header h1{
font-size:42px;
font-weight:700;
color:#111827;
}

.policy-header p{
color:#6b7280;
margin-top:10px;
}

/* CARD */
.policy-card{
background:#ffffff;
padding:45px;
border-radius:16px;
margin-bottom:30px;
box-shadow:0 12px 30px rgba(0,0,0,0.06);
transition:0.3s;
}

.policy-card:hover{
transform:translateY(-4px);
}

/* TITLES */
.policy-card h3{
color:#ec268f;
margin-bottom:15px;
font-weight:700;
}

.policy-card h4{
margin-top:20px;
font-weight:600;
color:#111827;
}

.policy-card p{
line-height:1.8;
color:#374151;
}

.policy-card ul{
padding-left:20px;
line-height:1.8;
}

/* INTRO HIGHLIGHT */
.highlight{
background:#fff1f8;
border-left:5px solid #ec268f;
}

/* CONTACT BOX */
.contact-box{
background:#facc15;
color:#111827;
}

/* MOBILE */
@media(max-width:768px){

.policy-header h1{
font-size:28px;
}

.policy-card{
padding:25px;
}

}








/* FILTER BUTTONS */

.gallery-filter {
  text-align: center;
  margin-bottom: 35px;
}

.filter-btn {
  border: none;
  background: #f3f3f3;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 500;
}

.filter-btn:hover {
  background: #000;
  color: #fff;
}

.filter-btn.active {
  background: #000;
  color: #fff;
}
.projectphotos{
  padding: 60px 0px;
}
/* =========================== Sucess Story ====================== */

/* =========================
   CENTERED SUCCESS STORY
========================= */

.beneficiary-detail {
  padding: 150px 0 120px;
  background: #f9fafb;
  text-align: center;
}

/* MAIN TITLE */
.success-main-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 60px;
  color: #111827;
}

/* IMAGE */
.beneficiary-image {
  max-width: 700px;
  margin: 0 auto 40px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.beneficiary-image img {
  width: auto;
  height: 420px;
  object-fit: cover;
}

/* NAME + LOCATION */
.beneficiary-basic-info h2 {
  font-size: 30px;
  margin-bottom: 5px;
}

.beneficiary-basic-info p {
  color: #ec268f;
  font-weight: 600;
  margin-bottom: 40px;
}

/* STORY CARD */
.beneficiary-story {
  max-width: 1150px;
  margin: auto;
  background: #ffffff;
  padding: 60px;
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  text-align: center; /* EVERYTHING CENTERED */
}

.beneficiary-story p {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 25px;
  color: #374151;
}

/* DONOR IMPACT */
.donor-impact {
  margin-top: 30px;
  padding: 25px;
  background: linear-gradient(135deg, #ec268f, #facc15);
  color: #ffffff;
  border-radius: 15px;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 991px) {

  .success-main-title {
    font-size: 34px;
  }

  .beneficiary-image img {
    height: 240px;
  }

  .beneficiary-story {
    padding: 40px 25px;
  }
}

.beneficiary-video {
  width: 60%;
  max-width: 1100px;
  margin: 0 auto 60px;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.2);
  position: relative;
  z-index: 1;
}

.beneficiary-video::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.beneficiary-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}



@media (max-width:767px){

  /* Top Bar */
  .top-bar .container{
  flex-direction: column;
  align-items: center;
  text-align: center;
  }
  
  .top-bar span{
  display:none;
  font-size:13px;
  margin-bottom:3px;
  }
  
  .social-icons{
  display: none;
  }
  
  .social-icons a{
  margin:0 6px;
  }
  
  /* Header */
  .main-header .container{
  padding:10px 15px;
  }
  
  .logo img{
  height:50px;
  }
  
  /* Hide Desktop Menu */
  .main-nav{
  display:none;
  }
  
  /* Donate Button */
  .btn-primary{
  padding:8px 16px;
  font-size:14px;
  }
  
  /* Hero Section */
  .hero-content{
  padding-top:0px;
  padding-bottom:70px;
  }
  
  .hero-content h1{
  font-size:26px;
  line-height:34px;
  }
  
  .hero-content p{
  font-size:15px;
  }
  
  }




  @media (min-width:768px) and (max-width:991px){

    /* Top Bar */
    .top-bar span{
    font-size:14px;
    }
    
    .social-icons a{
    margin-left:10px;
    }
    
    /* Logo */
    .logo img{
    height:60px;
    }
    
    /* Hide Desktop Menu */
    .main-nav{
    display:none;
    }
    
    /* Hero */
    .hero-content{
    padding-top:140px;
    }
    
    .hero-content h1{
    font-size:36px;
    }
    
    .hero-content p{
    font-size:16px;
    }
    #mobileMenu ul li a {
      color: #000000 !important;
      padding: 8px 5px;
  }
    
    }

   /* MOBILE MENU */

.mobile-menu{
  display:none;
  position:absolute;
  top:80px;
  left:0;
  width:100%;
  background:#fff;
  padding:20px;
  box-shadow:0 10px 20px rgba(0,0,0,0.15);
  z-index:9999;
  }
  
  .mobile-menu.active{
  display:block;
  }
  
  .mobile-menu ul{
  list-style:none;
  padding:0;
  margin:0;
  }
  
  .mobile-menu ul li{
  border-bottom:1px solid #eee;
  }
  
  .mobile-menu ul li a{
  display:block;
  padding:12px 0;
  color:#333;
  text-decoration:none;
  }
  
  /* MOBILE DROPDOWN */
  
  .mobile-menu .dropdown-menu-custom{
  display:none;
  padding-left:15px;
  }
  
  .mobile-menu .dropdown.open .dropdown-menu-custom{
  display:block;
  }

  /* ================= MOBILE MENU ================= */

/* ================= MOBILE MENU ================= */

/* MOBILE MENU */

.mobile-menu{
  display:none;
  position:absolute;
  top:75px;
  left:0;
  width:100%;
  background:#ffffff;
  z-index:9999;
  border-top:1px solid #eee;
  }
  
  .mobile-menu.active{
  display:block;
  }
  
  /* MAIN LIST */
  
  .mobile-menu ul{
  list-style:none;
  margin:0;
  padding:0;
  }
  
  /* MENU ITEMS */
  
  .mobile-menu ul li{
  border-bottom:1px solid #eee;
  }
  
  /* LINKS */
  
  .mobile-menu ul li a{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 20px;
  font-size:16px;
  font-weight:500;
  color:#222;
  text-decoration:none;
  }
  
  /* DROPDOWN */
  
  .mobile-menu .dropdown-menu-custom{
  display:none;
  background:#f7f7f7;
  padding-left:20px;
  }
  
  /* DROPDOWN ITEMS */
  
  .mobile-menu .dropdown-menu-custom li a{
  padding:12px 20px;
  font-size:15px;
  color:#555;
  }
  
  /* OPEN STATE */
  
  .mobile-menu .dropdown.open .dropdown-menu-custom{
  display:block;
  }
  
  /* ARROW ROTATION */
  
  .mobile-menu .dropdown.open i{
  transform:rotate(180deg);
  }
  
  /* ANIMATION */
  
  @keyframes slideDown{
  from{
  opacity:0;
  transform:translateY(-10px);
  }
  to{
  opacity:1;
  transform:translateY(0);
  }
  }

/* NAVBAR STYLE */

/* NAVBAR */

.navbar{
  padding:15px 0;
  width:100%;
  z-index:1000;
  margin-top: 1px;
  }
  
  /* NAV LINKS */
  
  .navbar-nav .nav-link{
  font-size:17px;
  font-weight:500;
  padding:10px 18px;
  color:#000;
  }
  
  /* MOBILE TEXT BLACK */
  
  @media(max-width:991px){
  
  .navbar{
  background:#fff;
  }
  
  .navbar-nav .nav-link{
  color:#000;
  padding:14px 10px;
  border-bottom:1px solid #eee;
  }
  
  }
  
  /* DROPDOWN */
  
  .dropdown-menu{
  border:none;
  border-radius:14px;
  padding:12px 0;
  margin-top:12px;
  
  min-width:260px;
  
  background:#fff;
  
  box-shadow:0 18px 40px rgba(0,0,0,0.18);
  }
  
  /* DROPDOWN ITEMS */
  
  .dropdown-item{
  padding:12px 22px;
  font-size:16px;
  font-weight:500;
  color:#222;
  
  transition:all 0.25s ease;
  }
  
  /* HOVER */
  
  .dropdown-item:hover{
  background:#fff1f8;
  color:#ec268f;
  padding-left:26px;
  }
  
  /* DONATE BUTTON */
  
  .donate-btn{
  background:#ec268f;
  color:#fff;
  padding:8px 24px;
  border-radius:30px;
  font-weight:600;
  }
  
  .donate-btn:hover{
  background:#d91f81;
  color:#fff;
  }
  
  /* MOBILE MENU SPACING */
  
  @media(max-width:991px){
  
  .dropdown-menu{
  box-shadow:none;
  border-radius:0;
  padding-left:15px;
  }
  
  .dropdown-item{
  padding:12px 10px;
  }
  
  
  }

  navbar-brand

  /* STICKY NAVBAR */

.main-header{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  transition:all 0.3s ease;
  z-index:1000;
  }
  
  /* WHEN SCROLLED */
  
  .main-header.sticky{
  position:fixed;
  top:0;
  background:#ffffff;
  }
  
  /* CHANGE TEXT COLOR WHEN STICKY */
  
  .main-header.sticky .nav-link{
  color:#000 !important;
  }
  
  .main-header.sticky .navbar-brand img{
  filter:none;
  }

  .navbar{
    transition:all 0.3s ease;
    }


    /* TOP BAR */

.top-bar{
  position: relative;
  padding:15px 0 0px 0px !important;
  font-size:14px;
  color: #000 !important;
  }
  
  .top-bar span{
  margin-right:15px;
  }
  
  .top-social a{
  margin-left:10px;
  color:#333;
  }
  
  
  /* NAVBAR */
  
  .main-header{
  position:sticky;
  top:0;
  z-index:999;
  }
  
  
  /* NAV LINKS */
  
  .navbar-nav .nav-link{
  font-weight:500;
  font-size:16px;
  padding:10px 18px;
  color:#222;
  }
  
  
  
  /* DROPDOWN */
  
  .dropdown-menu{
  border-radius:12px;
  border:none;
  padding:10px 0;
  box-shadow:0 15px 35px rgba(0,0,0,0.15);
  }
  
  .dropdown-item{
  padding:10px 22px;
  font-size:15px;
  }
  
  
  
  
  /* DONATE BUTTON */
  
  .donate-btn{
  background:#ec268f;
  color:#fff;
  padding:8px 24px;
  border-radius:30px;
  font-weight:600;
  }
  
  
  
  
  /* MOBILE */
  
  @media(max-width:991px){
  
  .navbar-nav{
  text-align:left;
  }
  
  .navbar-nav .nav-link{
  padding:14px 10px;
  color:#000;
  }
  
  }

  /* HEADER DEFAULT */

.main-header{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  z-index:100;
  transition:all 0.3s ease;
  }
  
  /* STICKY HEADER */
  
  .main-header.sticky{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  
  z-index:9999;
  }
  
  /* CHANGE TEXT COLOR WHEN STICKY */
  
  .main-header.sticky .nav-link{
  color:#000 !important;
  }
  
  /* OPTIONAL SMOOTH EFFECT */
  
  .navbar{
  transition:all 0.3s ease;
  }

    

  .top-bar{
    padding:6px 0;
    font-size:14px;
    transition:all 0.3s ease;
    }
    
    /* HEADER */
    
    .main-header{
    position:absolute;
    top:30px;
    left:0;
    width:100%;
    z-index:100;
    transition:all 0.35s ease;
    }
    
    /* NAVBAR */
    
    .navbar{
    padding:14px 0;
    }
    
    /* NAV LINKS */
    
    .navbar-nav .nav-link{
    font-size:17px;
    font-weight:500;
    color:#222;
    padding:10px 20px;
    margin:0 10px;
    }
    
    /* NAV HOVER */
    
    .navbar-nav .nav-link:hover{
    color:#ec268f;
    }
    
    /* DONATE BUTTON */
    
    .donate-btn{
    border:2px solid #ec268f;
    color:#ec268f;
    padding:8px 22px;
    border-radius:30px;
    font-weight:600;
    transition:0.3s;
    }
    
    .donate-btn:hover{
    background:#ec268f;
    color:#fff;
    }
    
    /* STICKY HEADER */
    
    .main-header.sticky{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    }
    
    /* CHANGE TEXT COLOR WHEN STICKY */
    
    .main-header.sticky .nav-link{
    color:#222;
    }
    
    /* DROPDOWN */
    
    .dropdown-menu{
    border:none;
    border-radius:12px;
    padding:10px 0;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
    }
    
    .dropdown-item{
    padding:10px 20px;
    font-size:15px;
    }
    
    .dropdown-item:hover{
    background:#fff1f8;
    color:#ec268f;
    }
    
    .focus_text{
      font-size: 20px !important;
      margin-bottom: 20px;
     }



    @media (max-width:991px){

      /* ===== REMOVE TOP BAR ===== */
      .top-bar{
      display:none !important;
      }
      
      /* ===== HEADER FIX ===== */
      .main-header{
      position:fixed !important;
      top:0 !important;
      left:0;
      width:100%;
      background:#ffffff !important;
      z-index:9999 !important;
      padding:8px 0 !important;
      box-shadow:0 4px 15px rgba(0,0,0,0.08);
      }
      
      /* ===== NAVBAR CLEAN ===== */
      .navbar{
      padding:6px 0 !important;
      }
      
      .navbar-brand img{
      height:45px !important;
      }
      
      /* ===== REMOVE VIDEO FULL SCREEN ===== */
      .video-hero{
      height:auto !important;
      min-height:420px !important;
      overflow:hidden;
      }
      
      /* ===== VIDEO FIX ===== */
      .bg-video{
      width:100%;
      height:100%;
      object-fit:cover !important;
      }
      
      /* ===== REMOVE CENTER SHIFT ===== */
      .hero-content{
      position:relative !important;
      top:unset !important;
      transform:none !important;
      
      padding-top:180px !important; /* space for header */
      padding-bottom:40px !important;
      text-align:center;
      }
      
      /* ===== TEXT SIZE FIX ===== */
      .hero-content h1{
      font-size:26px !important;
      line-height:34px;
      }
      
      .hero-content p{
      font-size:15px;
      }
      
      /* ===== REMOVE EXTRA GAP ===== */
      body{
      padding-top:0 !important;
      margin-top:0 !important;
      }
      
      /* ===== DONATE BUTTON FIX ===== */
      .navbar-collapse .btn-primary.btn-outline{
      display:block !important;
      width:90% !important;
      margin:15px auto !important;
      padding:14px 0 !important;
      text-align:center !important;
      border-radius:30px !important;
      
      background:#ec268f !important;
      color:#fff !important;
      border:none !important;
      }
      
      /* ===== MOBILE MENU ===== */
      .mobile-menu{
      top:65px !important;
      }

      .aarine-text h1 {
        font-size: 24px;
        font-weight: 600;
        line-height: 1.25;
        color: #1f2937;
        margin-bottom: 25px;
    }
    .about-impact {
      padding: 0px 0 !important;
  }

  .aarine-help h2 {
    font-size: 24px;
}
.wheel-wrapper {
  width: 100%;
  height: auto !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.focus_text{
 font-size: 14px !important;
 margin-bottom: 20px;
}
.aarine-testimonials {
  padding: 30px 0 !important;
  background: #fafafa;
  text-align: center;
}
.aarine-image {
  text-align: center;
  margin-top: 30px;
}
.index_feed_hope li {
  padding: 5px 0px;
  text-align: start !important;
}
.sup-item {
  min-width: 100% !important;
  padding: 0 20px;
}
.about-impact h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
  margin-top: 30px;
}
.aarine-footer {
  background: #f4c2c2;
  color: #cbd5f5;
  padding: 30px 0 30px;
  font-size: 15px;
}

.project-brief {
  padding: 50px 0;
  background: #ffffff;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.project-brief-text h2 {
  font-size: 22px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 20px;
}
.project-brief-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #000000;
  margin-bottom: 15px;
}

.beneficiary-detail {
  padding: 15px 0 10px;
  background: #f9fafb;
  text-align: center;
}
.donate-box h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
}
      
}
      
      