/* ============================================================
   NGO consolidated stylesheet
   Base: style.css (index) — unprefixed
   Page sections prefixed to avoid overrides
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Anuphan:wght@100..700&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Playwrite+NZ+Basic:wght@100..400&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=SN+Pro:ital,wght@0,200..900;1,200..900&display=swap');

/* ===== BASE / INDEX (style.css) ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0f7b6c;
  --primary-dark: #0a5c50;
  --accent: #f2994a;
  --light: #f7faf9;
  --black: #000000;
  --icon-bg:#dffaff; 
  --card-bg: #f3f1ff;
  --blue-hover: #0c1ff0cd;
}

html,
body {
  overflow-x: hidden;
  overflow-y: auto !important;
  touch-action: auto !important;
  background-color: #f8f9fd;
  font-family: "SN Pro", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
li,
button,
input,
textarea {
   font-family: "SN Pro", sans-serif;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.logo p {
  font-size: 12px;
  font-weight: 700;
  color: #b0b2d1;
  line-height: 1.2;
  /* padding-top: 15px; */
  margin-bottom: 0;
}

.logo p.text-warning {
  color: #ffc107;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.2;
}

:root {

  --bg: #06080d;

  --glass:
    rgba(255, 255, 255, .08);

  --glass-border:
    rgba(255, 255, 255, .14);

  --text: #ffffff;

  --muted: #9aa4b2;
}

/* ==========================================
   TRANSPARENT-TO-SOLID NAVBAR & GLASS MOBILE MENU
========================================== */

:root {
    --Blue: darkblue;
    --hover-orange: #ea6605;
    --text-dark: #111827;
    --text-gray: #4b5563;
    --bg-peach: #fff6ee;
}

.cursor-dot {
    width: 15px;
    height: 15px;
    background: #00008B;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 999999;

    transform: translate(-50%, -50%);
    transition: opacity 0.15s ease;
}

/* Hide custom cursor on mobile and touch devices */
@media (max-width: 768px), (pointer: coarse) {
    .cursor-dot {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }
}

.cursor-dot.hide {
    opacity: 0;
}

/* --- 1. DEFAULT HEADER STATE (Transparent on Top) --- */
.site-header {
    position: fixed;
    top: 10px; /* Upar se thoda kam gap (10px) */
    left: 15px; /* Left side se sirf 15px gap */
    
    /* 100% screen width mein se total 30px (15px left + 15px right) minus kar diya */
    width: calc(100% - 30px); 
    
    z-index: 1000;
    background-color: #ffffff;
    
    border-radius: 8px; /* Corners ko thoda round rakha hai */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Halki shadow look ke liye */
    
    transition: all 0.4s ease-in-out;
}

/* Top Bar Styling */
.top-bar {
    background-color: rgb(255, 255, 255);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 5%;
    font-size: 0.85rem;
    color: var(--black);
    transition: all 0.4s ease-in-out;
}

.top-bar i { color: var(--Blue); margin-right: 6px; }
.top-bar-right { display: flex; align-items: center; }
.contact-info { display: flex; align-items: center; }
.divider { width: 1px; height: 14px; background-color: #cbd5e1; margin: 0 15px; }
.social-icons { display: flex; gap: 15px; }
.social-icons a { color: var(--text-dark); text-decoration: none; transition: color 0.3s; }
.social-icons a:hover { color: var(--Blue); }

/* Main Navbar */
.main-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 5%;
    transition: all 0.4s ease-in-out;
}

.hero-section, 
.about-hero-v2 > .container, 
.fm-page > .container,
.ns-hero-section, 
.donation-hero-section,
.ns-gallery-section > .container, 
.mission-hero-section > .container, 
.ns-news-hero-section > .container, 
.ns-vol-hero-section > .container, 
.donation-hero-bg > .container, 
.newsletter-details-hero,
.ns-hero-bg-overlay > .container-fluid {
    min-height: 670px;
    padding: 126px 0 40px 0 !important;
}

@media (max-width: 525px) {
    .hero-section, 
    .about-hero-v2 > .container, 
    .ns-hero-section, 
    .donation-hero-section,
    .fm-page > .container,
    .ns-gallery-section > .container, 
    .mission-hero-section > .container, 
    .ns-news-hero-section > .container, 
    .ns-vol-hero-section > .container, 
    .donation-hero-bg > .container, 
    .newsletter-details-hero,
    .ns-hero-section > .container-fluid {
        padding: 126px 0 40px 0 !important;
    }
}

.brand-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-title { font-size: 1rem; font-weight: 800; color: var(--text-dark); margin: 0; }
.brand-subtitle { font-size: 0.85rem; font-weight: 600; color: var(--Blue); margin: 0; }

.nav-menu { display: flex; align-items: center; gap: 25px; list-style: none; margin: 0; padding: 0; }
.nav-link { text-decoration: none; font-size: 0.95rem; font-weight: 600; color: var(--text-dark); position: relative; padding-bottom: 6px; transition: color 0.3s; }
.nav-link:hover, .nav-link.active { color: var(--Blue); }

/* Orange Underline for Active Link */
.nav-link.active::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px;
    background-color: var(--Blue); border-radius: 2px;
}

.nav-actions { display: flex; align-items: center; gap: 12px; }

.btn-outline-orange {
    display: inline-flex; align-items: center; background: transparent; color: var(--Blue);
    border: 1.5px solid var(--Blue); padding: 10px 22px; border-radius: 8px; font-weight: 600; text-decoration: none; transition: 0.3s;
}

.btn-solid-orange {
    display: inline-flex; align-items: center; background: var(--Blue); color: #fff !important;
    padding: 10px 22px; border-radius: 8px; font-weight: 600; text-decoration: none; border: 1.5px solid var(--Blue); transition: 0.3s;
}
.btn-solid-orange:hover { background: var(--blue-hover); border-color: var(--hover-orange); }


@media (max-width: 1125px){
  .brand-title{
    font-size: 0.9rem;
  }
  .brand-subtitle{
    font-size: 0.7rem;
  }
  .nav-link{
    font-size: 0.75rem;
  }

  .btn-outline-orange, .btn-solid-orange{
    font-size: 0.9rem;
  }
}
@media (max-width:525px){
  .brand-title{
    font-size: 0.8rem;
  }
}
/* --- 2. SCROLLED STATE (White Background + Shadow) --- */
/* .site-header.scrolled {
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    color: black;
} */
/* 
.site-header.scrolled .top-bar {
    margin-top: -40px; 
    opacity: 0;
    pointer-events: none;
}

.site-header.scrolled .nav-link{
  color: black;
}
.site-header.scrolled .brand-title{
  color: var(--Blue);
}

.site-header.scrolled .main-navbar {
    padding-top: 12px;
    padding-bottom: 12px;
} */

/* --- 3. PREMIUM MOBILE GLASSMORPHISM MENU --- */
.mobile-toggle-btn {
    display: none;
    width: 30px;
    height: 22px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1002;
}

.mobile-toggle-btn span {
    width: 100%;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

/* Toggle Hamburger to Animated X */
.mobile-toggle-btn.open span:nth-child(1) { transform: rotate(45deg) translate(6px, 7px); background-color: var(--Blue); }
.mobile-toggle-btn.open span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.mobile-toggle-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -7px); background-color: var(--Blue); }

/* Full Screen Glass Overlay */
.mobile-glass-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.51);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s ease-in-out;
}

.mobile-glass-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 80%;
    max-width: 320px;
    text-align: center;
}

.mobile-link {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-link.active, .mobile-link:hover {
    color: var(--Blue);
    transform: scale(1.05);
}

.mobile-menu-actions {
    width: 100%;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.w-100 { width: 100%; }
.mb-2 { margin-bottom: 8px; }

@media (max-width: 1306px){
  .nav-menu {
    gap: 11px;
  }
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .nav-menu, .nav-actions, .top-bar { display: none; }
    .mobile-toggle-btn { display: flex; }
}
/* Base Hero Section Layout */
.hero-wrapper {
  /* background-color: #f8f8fa45;    */
  padding-bottom: 60px; 
}

.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.77vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}

/* Gradient Overlay - Darker on the left to make text pop */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(3, 15, 45, 0.95) 0%, rgba(3, 15, 45, 0.7) 45%, rgba(3, 15, 45, 0.1) 100%);
  z-index: 1;
}

/* Typography & Badges */
.hero-badge {
  background-color: rgba(26, 86, 219, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.6;
  opacity: 0.85;
}

.text-blue-highlight {
      color: #c2c2ff;
}

/* Hero rotating phrase (last two words) */
.hero-rotate {
  display: inline-block;
  vertical-align: bottom;
  min-width: 11ch;
}

.hero-rotate-viewport {
  display: inline-grid;
  overflow: hidden;
  height: 1.15em;
  vertical-align: bottom;
  position: relative;
}

.hero-rotate-word {
  grid-area: 1 / 1;
  display: block;
  white-space: nowrap;
  line-height: 1.15;
  transform: translateY(110%) rotate(-8deg);
  opacity: 0;
  filter: blur(2px);
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s ease,
    filter 0.4s ease;
  will-change: transform, opacity;
}

.hero-rotate-word.is-active {
  transform: translateY(0) rotate(0deg);
  opacity: 1;
  filter: blur(0);
}

.hero-rotate-word.is-exit {
  transform: translateY(-110%) rotate(8deg);
  opacity: 0;
  filter: blur(2px);
}

/* ==============================
   HERO RIGHT SIDE INFO CARDS
============================== */

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-main-row {
  min-height: calc(100vh - 126px);
}
/* 
.info-cards-wrapper {
  width: 100%;
  margin-top: 0;
}

.hero-info-card {
  height: 100%;
  min-height: 205px;

  padding: 24px 22px;

  background: rgba(255, 255, 255, 0.94);

  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 18px;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.hero-info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.22);
}

.hero-info-card .info-icon {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 16px;

  border-radius: 14px;

  background: rgba(0, 0, 139, 0.09);
  color: var(--Blue);
}

.hero-info-card .info-icon i {
  font-size: 24px;
}

.hero-info-card h5 {
  color: #111827;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 9px;
}

.hero-info-card p {
  margin: 0;

  color: #6b7280;
  font-size: 13px;
  line-height: 1.6;
}


@media (max-width: 991.98px) {

  .hero-section {
    height: auto;
    min-height: 100vh;
    padding-bottom: 60px;
  }

  .hero-main-row {
    min-height: auto;
    padding-top: 40px;
  }

  .info-cards-wrapper {
    margin-top: 35px;
  }

  .hero-info-card {
    min-height: 180px;
  }

}



@media (max-width: 575.98px) {

  .info-cards-wrapper .col-6 {
    width: 100%;
  }

  .hero-info-card {
    min-height: auto;
  }

}
@media (max-width: 767.98px) {

    .info-cards-wrapper {
        width: 100%;
        margin-top: 30px;
        overflow: hidden;
    }

    .info-cards-mobile-carousel {
        width: 100%;
        margin: 0 !important;
    }

    .info-cards-mobile-carousel .owl-stage-outer {
        overflow: hidden;
        width: 100%;
    }

    .info-cards-mobile-carousel .owl-stage {
        display: flex;
    }

    .info-cards-mobile-carousel .owl-item {
        height: auto;
    }

    .info-cards-mobile-carousel .col-6 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        padding: 0 !important;
    }

    .info-cards-mobile-carousel .hero-info-card {
        width: 100%;
        height: 100%;
        min-height: 190px;
        margin: 0;
    }

    .info-cards-mobile-carousel .owl-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 7px;
        margin-top: 14px;
    }

    .info-cards-mobile-carousel .owl-dot span {
        display: block;
        width: 7px;
        height: 7px;
        margin: 0 !important;
        border-radius: 50%;
        background: rgba(255, 255, 255, .45);
        transition: all .3s ease;
    }

    .info-cards-mobile-carousel .owl-dot.active span {
        width: 20px;
        border-radius: 20px;
        background: #fff;
    }
}

@media (prefers-reduced-motion: reduce) {
  .hero-rotate-word {
    transition: none;
    transform: none;
    filter: none;
  }
} */

/* Custom Buttons */
.btn-primary-blue {
  background-color: var(--Blue);
  border-color: var(--Blue);
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary-blue:hover {
  background-color: #1e40af;
  border-color: #1e40af;
  color: white;
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.6);
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background-color: white;
  color: black;
}

/* Scroll Indicator (Mouse Style) */
.scroll-indicator {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  cursor: pointer;
}

.mouse-icon {
  width: 22px;
  height: 34px;
  border: 2px solid white;
  border-radius: 12px;
  position: relative;
  opacity: 0.8;
}

.mouse-icon::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 6px;
  background: white;
  border-radius: 2px;
  animation: scrollMouse 1.5s ease-in-out infinite;
}

@keyframes scrollMouse {
  0% { top: 6px; opacity: 1; }
  100% { top: 16px; opacity: 0; }
}



/* @media (max-width: 1125px){
    .hero-title{
    font-size: clamp(2.2rem, 5vw, 4rem);
  }
} */

/* Add borders between columns ONLY on large screens */
@media (min-width: 992px) {
  .border-end-lg {
    border-right: 1px solid #e9ecef !important;
  }
}




:root {
  --text-dark: #2d3748;
  --text-gray: #4a5568;
  /* --Blue: #534aff; */
  --theme-green-light: #f2fbf4;
  --theme-blue-light: #f0f7ff;
  --theme-orange-light: #fffcf4;
  --theme-purple-light: #fbf5ff;
}

.about-us-section{
      /* background: radial-gradient(circle at 85% 50%, rgba(255, 145, 36, 0.18) 0%, rgba(255, 237, 218, 0.4) 45%, rgba(255, 255, 255, 1) 75%); */

}
/* Main Container */
.about-main-card {
  border-radius: 32px;
  z-index: 1;
}

/* Subtitle & Headings */
.about-subtitle {
  color: var(--Blue);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.subtitle-line {
  width: 40px;
  height: 3px;
  background-color: #003068;
  border-radius: 2px;
}

.about-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  position: relative;
}

.text-theme-green {
  color: var(--Blue);
}

.about-desc {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- Organic Blob Image Styles --- */
.blob-image-wrapper {
  position: relative;
  padding: 20px;
  display: flex;
  justify-content: flex-end;
}


.blob-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-top-left-radius: 20%;
  /* border-bottom-right-radius: 20%; */
  /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1); */
}


.feature-card {
  border-radius: 24px;
  padding: 40px 25px;
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 15px;
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-line {
  width: 30px;
  height: 2px;
  margin: 0 auto 15px;
  border-radius: 2px;
}

.feature-text {
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

/* Individual Theme Colors for Cards */
.theme-green {
  background-color: var(--theme-green-light);
}

.theme-green .feature-icon {
  color: #388e3c;
}

.theme-green .feature-title {
  color: #388e3c;
}

.theme-green .feature-line {
  background-color: #388e3c;
}

.theme-blue {
  background-color: var(--theme-blue-light);
}

.theme-blue .feature-icon {
  color: #1976d2;
}

.theme-blue .feature-title {
  color: #1976d2;
}

.theme-blue .feature-line {
  background-color: #1976d2;
}

.theme-orange {
  background-color: var(--theme-orange-light);
}

.theme-orange .feature-icon {
  color: #f57c00;
}

.theme-orange .feature-title {
  color: #f57c00;
}

.theme-orange .feature-line {
  background-color: #f57c00;
}

.theme-purple {
  background-color: var(--theme-purple-light);
}

.theme-purple .feature-icon {
  color: #7b1fa2;
}

.theme-purple .feature-title {
  color: #7b1fa2;
}

.theme-purple .feature-line {
  background-color: #7b1fa2;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
  .blob-img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    /* Simplified for mobile */
  }

  .blob-bg-shape {
    width: 100%;
  }

  .feature-card {
    padding: 30px 20px;
  }
}






:root {

  --text-dark: #0d2b3e;
  --theme-01: #a01045b9;
  --theme-02: #e38f12;
  --theme-03: #4a2171af;
  --theme-04: #0f6c60d7;
  --theme-05: #0d96f2e8;
  --theme-06: #418236a8;

}

.commitment-header {
  text-align: center;
  margin-bottom: 50px;
}

.commitment-subtitle {
  color: var(--black);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 10px;
}

.commitment-subtitle::before,
.commitment-subtitle::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background-color: var(--black);
}

.commitment-title {
  color: var(--text-dark);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 20px;
}

.title-underline {
  width: 60px;
  height: 3px;
  background-color: var(--black);
  margin: 0 auto;
  border-radius: 2px;
}

/* --- Grid & Cards --- */
.commitment-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  min-height: 380px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.commitment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Gradient Overlay to reveal image on the right */
.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.theme-01 .card-overlay {
  background: linear-gradient(137deg, var(--theme-01) 0%, var(--theme-01) 20%, transparent 100%);
}

.theme-02 .card-overlay {
  background: linear-gradient(137deg, var(--theme-02) 0%, var(--theme-02) 20%, transparent 100%);
}

.theme-03 .card-overlay {
  background: linear-gradient(137deg, var(--theme-03) 0%, var(--theme-03) 20%, transparent 100%);
}

.theme-04 .card-overlay {
  background: linear-gradient(137deg, var(--theme-04) 0%, var(--theme-04) 20%, transparent 100%);
}

.theme-05 .card-overlay {
  background: linear-gradient(137deg, var(--theme-05) 0%, var(--theme-05) 20%, transparent 100%);
}

.theme-06 .card-overlay {
  background: linear-gradient(137deg, var(--theme-06) 0%, var(--theme-06) 20%, transparent 100%);
}

.row.align-items-stretch>div[class*="col-"] {
  padding-top: 0 !important;
  align-self: stretch !important;
}

.commitment-card {
  transform: none !important;
  /* GSAP ya purani CSS ka stray transform rokiyega (except on hover) */
}

.card-content {
  position: relative;
  z-index: 2;
  padding: 30px;
  width: 100%;
  /* Constrain text to the left side */
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Card Header (Number & Icon) */
.card-top {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.card-number {
  background: rgba(255, 255, 255, 0.2);
  padding: 5px 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
}

.card-icon {
  font-size: 1.8rem;
}

.card-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.2;
  color: white;
}

.card-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: auto;
  color: white;
}

/* Card Pill/Badge at the bottom */
.card-badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  align-self: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}

/* --- Footer Stats Bar --- */
.stats-bar-container {
  background: #ffffff;
  border-radius: 16px;
  padding: 25px 40px;
  margin-top: 30px;
  margin-bottom: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  color: #333;
}

.mission-text-container {
  display: flex;
  align-items: center;
  gap: 15px;
  border-right: 1px solid #eee;
  padding-right: 20px;
}

.mission-icon {
  background: #fcf1f3;
  color: #e54b68;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.mission-text h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0;
  color: var(--text-dark);
}

.mission-text p {
  font-size: 0.8rem;
  margin: 0;
  color: #666;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
}

.stat-icon.bg-pink {
  background: #e54b68;
}

.stat-icon.bg-yellow {
  background: #f4a300;
}

.stat-icon.bg-teal {
  background: #0f6c5f;
}

.stat-icon.bg-purple {
  background: #5c3a82;
}

.stat-info h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  color: var(--text-dark);
}

.stat-info p {
  font-size: 0.75rem;
  margin: 0;
  color: #666;
  text-transform: uppercase;
  font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .card-content {
    width: 80%;
  }

  .mission-text-container {
    border-right: none;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
    justify-content: center;
    text-align: center;
  }

  .mission-text-container {
    flex-direction: column;
  }

  .stats-row {
    justify-content: center;
    gap: 20px;
  }
}

@media (max-width: 768px) {

  .theme-01 .card-overlay,
  .theme-02 .card-overlay,
  .theme-03 .card-overlay,
  .theme-04 .card-overlay,
  .theme-05 .card-overlay,
  .theme-06 .card-overlay {
    background: linear-gradient(90deg, var(--theme-01) 0%, rgba(173, 83, 116, 0.274) 100%);
  }

  .theme-02 .card-overlay {
    background: linear-gradient(90deg, var(--theme-02) 0%, rgba(227, 143, 18, 0.493) 100%);
  }

  .theme-03 .card-overlay {
    background: linear-gradient(90deg, var(--theme-03) 0%, rgba(74, 33, 113, 0.85) 100%);
  }

  .theme-04 .card-overlay {
    background: linear-gradient(90deg, var(--theme-04) 0%, rgba(15, 108, 95, 0.85) 100%);
  }

  .theme-05 .card-overlay {
    background: linear-gradient(90deg, var(--theme-05) 0%, rgba(30, 82, 154, 0.85) 100%);
  }

  .theme-06 .card-overlay {
    background: linear-gradient(90deg, var(--theme-06) 0%, rgba(66, 130, 54, 0.85) 100%);
  }

  .card-content {
    width: 100%;
  }
}


.impact-glance-section {
  overflow: hidden;
  min-height: 100vh;
  padding: 28px 0 36px;
  /* background: #fff9f4 url("/impact-bg.jpeg") center/cover no-repeat; */
}

.impact-glance-container {
  max-width: 1220px;
  position: relative;
}

.impact-glance-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: var(--Blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.7px;
  text-transform: uppercase;
}
/* 
.impact-glance-kicker span {
  width: 17px;
  height: 17px;
  display: block;
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  transform: skewY(-28deg);
} */
 
.impact-glance-title {
  margin: 6px 0 18px;
  font-size: 38px;
  font-weight: 800;
  text-align: center;
  letter-spacing: -1.25px;
  line-height: 1.15;
}

.impact-glance-title i {
  display: inline-block;
  margin-left: 5px;
  color: var(--Blue);
  font-size: 27px;
  font-style: normal;
  transform: rotate(-15deg);
  vertical-align: top;
}

.impact-glance-gallery-wrap {
  position: relative;
  padding: 0 6px;
}

.impact-glance-carousel {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 5px 18px #14234024;
}

.impact-glance-slide {
  height: 515px;
}

.impact-glance-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.impact-glance-carousel .owl-dots {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.impact-glance-carousel .owl-dot span {
  width: 8px !important;
  height: 8px !important;
  margin: 4px !important;
  background: #f5b0c8 !important;
}

.impact-glance-carousel .owl-dot.active span {
  background: var(--Blue) !important;
}

.impact-glance-badge {
  width: 130px;
  height: 130px;
  position: absolute;
  z-index: 3;
  bottom: -10px;
  right: -17px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 6px solid #ffffff;
  border-radius: 50%;
  background: var(--Blue);
  /* box-shadow: 0 7px 12px var(--Blue); */
  color: #fff;
  text-align: center;
}

.impact-glance-badge-icon {
  margin-bottom: 6px;
  font-size: 22px;
}

.impact-glance-badge strong {
  font-size: 11px;
  line-height: 1.35;
}

.impact-glance-message {
  position: relative;
  z-index: 4;
  max-width: 800px;
  margin: -1px auto 34px;
  padding: 26px 32px 22px;
  border-radius: 0 0 15px 15px;
  background: #ffffffff;
  text-align: center;
}


/* .impact-glance-quote {
  position: absolute;
  top: -21px;
  left: calc(50% - 20px);
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--Blue);
  box-shadow: 0 4px 8px var(--Blue);
  color: #fff;
  font-size: 40px;
  line-height: 1.2;
} */

.impact-glance-message h2 {
  margin: 0 0 7px;
  font-size: 20px;
  font-weight: 500;
}

.impact-glance-message p {
  margin: 0;
  color: #5e5e63;
  font-size: 12px;
  font-style: italic;
  line-height: 1.65;
}

.impact-glance-stat {
  position: relative;
  min-height: 106px;
  padding: 36px 10px 12px;
  border-radius: 8px;
  background: #fff;
  text-align: center;
}

.impact-glance-stat b {
  position: absolute;
  left: calc(50% - 21px);
  top: -17px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
}

.impact-glance-stat b i {
  width: auto;
  height: auto;
  margin: 0;
  background: transparent !important;
}

.impact-glance-stat strong {
  display: block;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: .2px;
}

.impact-glance-stat em {
  font-style: normal;
}

.impact-glance-stat small {
  display: block;
  margin-top: 2px;
  color: #47474d;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.impact-glance-stat i {
  display: block;
  width: 18px;
  height: 3px;
  margin: 8px auto 0;
}

.impact-pink strong {
  color: var(--Blue);
}

.impact-pink b,
.impact-pink i {
  background: var(--Blue);
}

.impact-orange strong {
  color: var(--Blue);
}

.impact-orange b,
.impact-orange i {
  background: var(--Blue);
}

.impact-yellow strong {
  color: var(--Blue);
}

.impact-yellow b,
.impact-yellow i {
  background: var(--Blue);
}

@media (max-width:767.98px) {
  .impact-glance-section {
    padding: 25px 0 28px;
    background-position: center;
  }

  .impact-glance-container {
    padding-inline: 16px;
  }

  .impact-glance-kicker {
    font-size: 9px;
    letter-spacing: 1.9px;
    gap: 10px;
  }

  .impact-glance-title {
    margin-bottom: 16px;
    font-size: 28px;
  }

  .impact-glance-title i {
    font-size: 20px;
  }

  .impact-glance-gallery-wrap {
    padding: 0;
  }

  .impact-glance-slide {
    height: 270px;
  }

  .impact-glance-badge {
    width: 90px;
    height: 90px;
    bottom: 8px;
    right: -8px;
    border-width: 4px;
  }

  .impact-glance-badge-icon {
    margin-bottom: 1px;
    font-size: 15px;
  }

  .impact-glance-badge strong {
    font-size: 8px;
  }

  .impact-glance-message {
    margin: 0 6px 28px;
    padding: 24px 15px 16px;
  }

  .impact-glance-message h2 {
    font-size: 17px;
  }

  .impact-glance-message p {
    font-size: 10px;
  }

  .impact-glance-stat {
    min-height: 96px;
    padding-top: 33px;
  }

  .impact-glance-stat strong {
    font-size: 19px;
  }

  .impact-glance-stat small {
    font-size: 7px;
  }
}



html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}



/* =========================================
   HORIZONTAL LIQUID TIMELINE CSS
========================================= */
.timeline-window {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.timeline-window::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(255 255 255 / 60%);
  z-index: -1;
}

.timeline-header-fixed {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
  width: 100%;
  padding-top: 40px;
}

.timeline-header-fixed h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--Blue);
  margin: 0;
}

.timeline-header-fixed p {
  color: var(--Blue);
}

.timeline-header-fixed .highlight {
  font-style: italic;
}

.timeline-board {
  display: flex;
  align-items: center;
  height: 100vh;
  padding-left: 25px;

  /* 🔥 FIX: Ise 30vw kar dein. Isse 6th card screen par aayega, 
       line right edge ko touch karegi, aur fir page naturally neeche scroll hoga! */
  padding-right: 12vw;
  margin-top: 90px;
  gap: 50px;
  width: max-content;
  position: relative;

}

.river-container {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  /* Ye puri wave ko aapke board ke sath fix rakhega */
  height: 127px;
  transform: translateY(-50%);
  z-index: 0;

  /* 🔥 MAGIC FIX: Ye bachi hui line ko theek right edge par kaat dega (chop kar dega) */
  overflow: hidden;
  pointer-events: none;
}

/* 3. RIVER SVG (Locked length) */
.wavy-river-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 8000px;
  /* SVG ki fix lambaai, overflow ise auto-crop kar dega */
  height: 100%;
}

.river-track {
  fill: none;
  stroke: rgba(56, 0, 241, 0.2);
  stroke-width: 4px;
}

.river-fill {
  fill: none;
  stroke: #5d85ff;
  stroke-width: 6px;
  stroke-linecap: round;
}

/* --- TIMELINE ITEMS --- */
.timeline-item {
  width: 350px;
  /* Exact width */
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 15px;
}

/* PEHLA CARD UPAR (Odd: 1st, 3rd, 5th) */
.timeline-item:nth-of-type(odd) {
  transform: translateY(-100px);
  /* Card Upar bhejega */
  flex-direction: column-reverse;
  /* Marker neeche, Card upar */
}

/* DUSRA CARD NEECHE (Even: 2nd, 4th, 6th) */
.timeline-item:nth-of-type(even) {
  transform: translateY(100px);
  /* Card Neeche bhejega */
  flex-direction: column;
  /* Marker upar, Card neeche */
}

.timeline-marker {
  width: 50px;
  height: 50px;
  background: var(--Blue);
  border: 4px solid #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  z-index: 3;
  flex-shrink: 0;
}

.timeline-content {
  width: 100%;
  padding: 25px;
  background: var(--card-bg);
  border-radius: 20px;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); */
  text-align: center;
}

.timeline-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #c11252;
  margin-top: 0;
  margin-bottom: 10px;
}

.timeline-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

.timeline-img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    object-position: 50% 29%;
}


.empower-grid-section {
  padding: 60px 0;
  background-image: url(./empower.webp);
  background-size: cover;
  background-position: center;
}

/* Section Heading */
.empower-heading-box {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 15px;
}

.empower-heading-box h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #000;
  line-height: 1.3;
}

.empower-heading-box .highlight {
  color: #c11252;
  font-style: italic;
}

/* CSS Grid Container */
.action-grid {
  display: grid;
  /* Desktop par 5 equal columns */
  grid-template-columns: repeat(5, 1fr);
  width: 100%;
  gap: 0;
  /* Boxes ke beech mein koi gap nahi hoga */
}

/* Individual Box Styling */
.action-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 320px;
  /* Minimum height taki text cut na ho */
  padding: 30px;
  color: #fff;
}

/* Text Styling inside boxes */
.action-box h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.2;
}

.action-box p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* Image Boxes */
.img-box {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0;
  /* Image wale box mein text padding nahi chahiye */
}

/* Exact Background Colors based on your image */
.bg-magenta {
  background-color: #c11252;
}

.bg-yellow {
  background-color: #f4a300;
}

.bg-orange {
  background-color: #e05929;
}

/* =========================================
           RESPONSIVE BREAKPOINTS
           ========================================= */

/* Tablet & Small Laptops (Max width 1200px) */
@media (max-width: 1200px) {
  .action-grid {
    /* Tablet par 3 columns honge */
    grid-template-columns: repeat(3, 1fr);
  }

  .action-box {
    min-height: 280px;
  }
}

/* Large Mobile & Small Tablets (Max width 768px) */
@media (max-width: 768px) {
  .action-grid {
    /* 2 columns */
    grid-template-columns: repeat(2, 1fr);
  }

  .action-box {
    padding: 20px;
  }
}

/* Mobile Screens (Max width 576px) */
/* Mobile Screens (Max width 576px) */
@media (max-width: 576px) {
  .action-grid {
    /* Mobile par ek ke neeche ek (1 column) */
    grid-template-columns: 1fr;
  }
  
.timeline-header-fixed{
  padding-top: 70px;
}
  .action-box {
    min-height: 250px;
  }

  /* Yahan se Order ka jaadu shuru hota hai (Image pehle, Text baad mein) */

  /* Pair 1: Zero Poverty */
  .action-box:nth-child(1) {
    order: 2;
  }

  /* Text jayega neeche */
  .action-box:nth-child(2) {
    order: 1;
  }

  /* Image aayegi upar */

  /* Pair 2: Skill Development */
  .action-box:nth-child(3) {
    order: 4;
  }

  .action-box:nth-child(4) {
    order: 3;
  }

  /* Pair 3: Quality Education */
  .action-box:nth-child(5) {
    order: 6;
  }

  .action-box:nth-child(6) {
    order: 5;
  }

  /* Pair 4: Good Health & Sanitation */
  .action-box:nth-child(7) {
    order: 8;
  }

  .action-box:nth-child(8) {
    order: 7;
  }

  /* Pair 5: Raising Awareness */
  .action-box:nth-child(9) {
    order: 10;
  }

  .action-box:nth-child(10) {
    order: 9;
  }
}

.volunteer-wrapper {
  background-color: #9b0b3e;
  /* Deep Maroon color */
  border-radius: 20px;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); */
}

/* Typography */
.warrior-subtitle {
  letter-spacing: 1px;
}

/* Yellow Strikethrough Effect */
.strikethrough-text {
  position: relative;
  display: inline-block;
}

.strikethrough-text::after {
  content: '';
  position: absolute;
  left: -5%;
  top: 55%;
  width: 110%;
  height: 4px;
  background-color: #ffc107;
  /* Warning Yellow */
  transform: translateY(-50%);
  border-radius: 2px;
}

/* Custom Button */
.volunteer-btn {
  background-color: #ffb800;
  color: #fff !important;
  border: none;
  letter-spacing: 0.5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.volunteer-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 184, 0, 0.4);
  background-color: #ffaa00;
}

/* Main Image Styling */
.main-photo {
  border: 4px solid #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

/* Floating Badges */
.float-badge {
  z-index: 2;
}

.badge-top-right {
  top: 10%;
  right: 0;
  width: 110px;
  transform: translate(30%, -30%);
}

.badge-bottom-left {
  bottom: 10%;
  left: 0;
  width: 100px;
  transform: translate(-30%, 30%);
}

/* Mobile Responsiveness for Badges */
@media (max-width: 991px) {
  .badge-top-right {
    width: 90px;
    transform: translate(15%, -15%);
  }

  .badge-bottom-left {
    width: 80px;
    transform: translate(-15%, 15%);
  }
}

.even-item .right-side {
  background-color: #E6F7F1 !important;
}

.odd-item .left-side {
  background-color: #FFF4D6;
}

:root {
  --white: #ffffff;
  --maroon: #8c1d3f;
  --maroon-dark: #6f1631;
  --gold: #e8a63a;
  --text-dark: #241f1c;
  --text-muted: #7a7570;
}


.volunteer-wrap {
  max-width: 1240px;
  width: 100%;
  /* background: radial-gradient(circle at 85% 50%, rgba(255, 145, 36, 0.18) 0%, rgba(255, 237, 218, 0.4) 45%, rgba(255, 255, 255, 1) 75%);; */
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  border: 10px solid var(--Blue);
  /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12); */
  margin: 20px auto;
}

.maroon-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 100%;
  background: var(--Blue);
  clip-path: polygon(35% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}

.leaf-pattern {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 160px;
  height: 160px;
  opacity: 0.15;
  z-index: 1;
}

.content-row {
  position: relative;
  z-index: 2;
  padding: 56px 56px 0 56px;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.badge-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--icon-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-icon-circle svg {
  width: 26px;
  height: 26px;
}

.badge-text {
  display: flex;
  flex-direction: column;
}

.badge-text span.label {
  color: var(--Blue);
  font-weight: 700;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
}

.badge-underline {
  width: 36px;
  height: 3px;
  background: var(--Blue);
  margin-top: 4px;
  border-radius: 2px;
}

.headline {
  font-size: 3.1rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.05;
  margin-bottom: 0;
}

.headline .script {
  color: var(--Blue);
  font-weight: 700;
  font-size: 1.35em;
  position: relative;
  display: inline-block;
  /* margin-left: 77px; */
  rotate: -3deg;
}

.headline .spark {
  color: var(--Blue);
  font-size: 0.4em;
  vertical-align: top;
}

.underline-swoop {
    width: 260px;
    max-width: 44%;
    height: 14px;
    margin-top: -16px;
    margin-bottom: 20px;
    margin-left: 165px;
    rotate: -5deg;
}

.lead-text {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 30px;
}

.btn-warrior {
  background: var(--Blue);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 16px 30px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: all .25s ease;
  /* box-shadow: 0 10px 24px rgba(140, 29, 63, 0.35); */
}

.btn-warrior:hover {
  background: var(--blue-hover);
  color: #fff;
}

.btn-warrior .icon-round {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-warrior svg {
  width: 14px;
  height: 14px;
}

.image-wrap {
  position: relative;
  z-index: 2;
  border-radius: 24px;
  overflow: hidden;
  border: 8px solid #fff;
  margin-top: 40px;
}

.image-wrap img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  object-position: left;
}


.features-strip {
  position: relative;
  z-index: 2;
  background: #fff;
  margin: 40px 40px 0 40px;
  border-radius: 20px;
  padding: 28px 20px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 6px 14px;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--Blue);
}

.feature-title {
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.feature-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

.divider-v {
  width: 1px;
  background: #eee;
}

.bottom-spacer {
  height: 40px;
}

@media (max-width:991px) {
  .maroon-shape {
    display: none;
  }

  .headline {
    font-size: 2.3rem;
  }

  .content-row {
    padding: 40px 28px 0 28px;
  }

  .features-strip {
    margin: 32px 20px 0 20px;
  }

  .divider-v {
    display: none;
  }

  .feature-item {
    padding: 12px 14px;
    flex-direction: column;
  }
}

@media (max-width:575px) {
  .headline {
    font-size: 1.9rem;
  }

  .image-wrap img {
    height: 240px;
  }

  .headline .script {
    margin-left: 1px;
  }

  .underline-swoop {
    margin-left: 16px;
    width: 
    150px;
  }

  .volunteer-wrap {
    border-radius: 0;
  }
}


/* ===== PROJECT PAGE (project.html) — prefix: project- ===== */
:root {
  --project-navy: #031526;
  --project-blue: #087bb5;
  --project-sky: #87c4eb;
  --project-gold: #f6bd4e;
  --project-paper: #f8f7f2;
  --project-mist: #e9f2f5;
  --project-ink: #102d3d;
  --project-mute: #5d7380;
  --project-line: #d5e3ea;
  --project-head: "Playfair Display", Georgia, serif;
  --project-body: "DM Sans", system-ui, sans-serif;
  --project-header-h: 72px;
}

.page-project *,
.page-project *::before,
.page-project *::after {
  box-sizing: border-box;
}

.page-project {
  scroll-behavior: smooth;
}

.page-project {
  margin: 0;
  background: var(--project-paper);
  color: var(--project-ink);
  font: 16px/1.7 var(--project-body);
}

.page-project img {
  display: block;
  max-width: 100%;
}

.page-project a {
  color: inherit;
}

.project-wrap {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}

.project-kicker {
  margin: 0 0 14px;
  color: var(--project-blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-project h1,
.page-project h2,
.page-project h3,
.page-project p {
  margin-top: 0;
}

.page-project h1,
.page-project h2 {
  letter-spacing: -0.03em;
  line-height: 1.08;
}

h1 em,
h2 em {
  font-style: italic;
  font-weight: 600;
  color: var(--project-sky);
}

.project-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.project-button:hover {
  transform: translateY(-2px);
}

.project-button:focus-visible,
.project-text-link:focus-visible,
.project-plain-link:focus-visible,
.project-site-nav a:focus-visible,
.project-nav-toggle:focus-visible {
  outline: 2px solid var(--project-gold);
  outline-offset: 3px;
}

.project-gold {
  background: var(--project-gold);
  color: #102a3a;
}

.project-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.project-text-link {
  color: var(--project-blue);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.project-text-link span {
  margin-left: 8px;
}
/* ==========================================
   PROJECT NAARI SHAKTI - HERO STYLES
========================================== */

.ns-hero-section {
    position: relative;
    overflow: hidden;
}

/* Subtle Gradient Backdrop */
.ns-hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: radial-gradient(circle at 80% 50%, rgba(255, 153, 51, 0.15) 0%, rgba(255, 246, 238, 0.4) 45%, transparent 80%); */
    z-index: 1;
    pointer-events: none;
}


/* Left Content Column Styling */
.ns-content-col {
    z-index: 3;
}

.ns-kicker-wrap {
    margin-bottom: 8px;
}

.ns-kicker {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--Blue);
    text-transform: uppercase;
    display: inline-block;
}


.ns-project-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin-top: 14px;
    margin-bottom: 12px;
}

.ns-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.12;
    color: #0f172a;
    margin-bottom: 22px;
    letter-spacing: -0.8px;
}

.ns-title-highlight {
    color: var(--Blue);
}

.ns-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
    max-width: 480px;
    margin-bottom: 34px;
}

/* CTA Buttons */
.ns-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.ns-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ns-btn-primary {
    background: linear-gradient(135deg, #911ff9 0%, #3a01e7 100%);
    color: #ffffff !important;
    box-shadow: 0 10px 25px rgba(243, 123, 18, 0.3);
}

.ns-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(243, 123, 18, 0.4);
    color: #ffffff !important;
}

.ns-btn-outline {
    background-color: #ffffff;
    color: var(--Blue) !important;
        border: 1px solid rgba(0, 0, 0, 0.2);
}

.ns-btn-outline:hover {
    transform: translateY(-2px);
        border: 1px solid rgba(0, 0, 0, 0.2);
}

/* Right Column: Flush-Right Semi-Oval Image System */
.ns-image-col {
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 2;
}

.ns-flush-oval-wrapper {
    width: 100%;
    max-width: 780px;
    display: flex;
    justify-content: flex-end;
}

.ns-flush-oval-border {
    width: 100%;
    aspect-ratio: 1.2 / 1;
    border-radius: 50% 0 0 50% / 50% 0 0 50%;
    padding: 14px 0 14px 14px; 
}

.ns-flush-oval-mask {
    width: 100%;
    height: 100%;
    /* border-radius: 50% 0 0 50% / 50% 0 0 50%; */
    overflow: hidden;
    position: relative;
    background-color: #f3f4f6;
}

.ns-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 35%;
    display: block;
    transform: scale(1.02);
    transition: transform 0.8s ease;
}



/* Floating Stats Pill Card */
.ns-stats-pill-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 30px 40px;
    margin-top: -30px;
    /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.07); */
    border: 1px solid rgba(243, 123, 18, 0.1);
}

.ns-stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.ns-stats-pill-card .col-6,
.ns-stats-pill-card .col-md-3 {
    display: flex;
    justify-content: center;
}
.ns-stat-icon {
    width: 54px;
    height: 54px;
    background: #c9fdff;
    color: var(--Blue);
    border-radius: 50%;
    margin:auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.ns-stat-num {
    display: block;
    font-size: 1.45rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

.ns-stat-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
========================================== */

@media (max-width: 1399px) {
    .ns-title {
        font-size: 3.2rem;
    }
}

@media (max-width: 1199px) {
    .ns-title {
        font-size: 2.8rem;
    }
    .ns-content-col {
        padding-left: 5%;
    }
}

@media (max-width: 991px) {
    .ns-hero-section {
        padding: 120px 0 0 0;
        text-align: center;
    }

    .ns-content-col {
        padding: 0 24px;
        margin-bottom: 40px;
    }

    .ns-description {
        margin-left: auto;
        margin-right: auto;
    }

    .ns-cta-row {
        justify-content: center;
    }

    /* On Mobile/Tablet: Switch oval from flush-right to symmetric round image */
    .ns-flush-oval-wrapper {
        max-width: 520px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .ns-flush-oval-border,
    .ns-flush-oval-mask {
        border-radius: 40px !important;
        padding: 10px;
        aspect-ratio: 16 / 11;
    }

    .ns-stats-pill-card {
        padding: 24px 20px;
        margin-top: 30px;
        border-radius: 20px;
    }

    .ns-stat-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

@media (max-width: 575px) {
    .ns-title {
        font-size: 2.2rem;
    }

    .ns-description {
        font-size: 0.98rem;
    }

    .ns-btn {
        width: 100%;
    }

    .ns-stat-num {
        font-size: 1.25rem;
    }
}
/* ==========================================
   PROJECT NAARI SHAKTI - OUR APPROACH STYLES
========================================== */

.ns-approach-section {
    position: relative;
    padding: 30px 0 30px 0;
    overflow: hidden;
}

/* LEFT COLUMN: Flush Image with Wave Overlays */
.ns-approach-image-col {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.ns-approach-img-wrapper {
    position: relative;
    width: 100%;         /* Image ki maximum chaudai control ki */
    height: 100%;         /* Exact height taaki bohot lambi na ho */
    max-height: 80vh;   
    
    /* RIGHT SIDE CURVE MAGIC (Top-Left:0, Top-Right:50%, Bottom-Right:50%, Bottom-Left:0) */
    /* border-radius: 0 50% 50% 0 / 0 50% 50% 0 !important; */
    
    overflow: hidden !important;
    box-shadow: 15px 20px 50px rgba(0, 0, 0, 0.08);
}

.ns-approach-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform 0.8s ease;
}


/* Warm Orange Sun-like Tint Layer */
.ns-approach-tint-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 136, 0, 0.28) 0%, rgba(243, 123, 18, 0.15) 40%, rgba(255, 246, 238, 0.05) 100%);
    pointer-events: none;
    z-index: 1;
}





/* RIGHT COLUMN: Content Padding & Layout */
.ns-approach-content-col {
    padding: 90px 6% 40px 6%;
    z-index: 3;
}

.ns-approach-inner {
    width: 100%;
    max-width: 680px;
}

/* Section Header Typography */
.ns-approach-kicker {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--Blue);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.ns-approach-title {
    font-size: 3.1rem;
    font-weight: 800;
    line-height: 1.15;
    color: #111827;
    margin-bottom: 20px;
    letter-spacing: -0.6px;
}

.ns-approach-line {
    width: 60px;
    height: 3px;
    background-color: var(--Blue);
    margin-bottom: 24px;
    border-radius: 2px;
}

.ns-approach-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 35px;
    max-width: 580px;
}

/* 4 Feature Cards (White Elevated Rounded Containers) */
.ns-approach-card {
    background-color: #ffffff !important;
    border-radius: 24px !important;
    padding: 28px 24px !important;
    border: 1px solid rgba(243, 123, 18, 0.08) !important;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

.ns-approach-card:hover {
    
    box-shadow: 0 20px 45px rgba(243, 123, 18, 0.12) !important;
    border-color: var(--Blue)!important;
}

.ns-card-header-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}

.ns-approach-icon {
    width: 52px;
    height: 52px;
    background-color: #e0fffa !important;
    color: var(--Blue) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.3rem !important;
    flex-shrink: 0 !important;
    border: 1px solid var(--Blue) !important;
}

.ns-approach-card-title {
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    color: #111827 !important;
    line-height: 1.3 !important;
    margin-bottom: 0 !important;
}

.ns-approach-card-text {
    font-size: 0.93rem !important;
    line-height: 1.62 !important;
    color: #4b5563 !important;
    margin-bottom: 0 !important;
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
========================================== */

@media (max-width: 1399px) {
    .ns-approach-title {
        font-size: 2.7rem;
    }
}

@media (max-width: 1199px) {
    .ns-approach-title {
        font-size: 2.4rem;
    }
    .ns-approach-content-col {
        padding: 70px 4%;
    }
}

@media (max-width: 991px) {
    .ns-approach-image-col {
        min-height: auto;
    }

    .ns-approach-img-wrapper {
        max-width: 500px;
        margin: 0 auto 30px auto;
        /* Mobile par dono taraf se symmetric round curve */
        border-radius: 0px !important;
    }

    .ns-approach-content-col {
        padding: 60px 24px 80px 24px;
        justify-content: center;
    }

    .ns-approach-inner {
        max-width: 560px;
        margin: 0 auto;
        text-align: center;
    }

    .ns-approach-line {
        margin-left: auto;
        margin-right: auto;
    }

    .ns-approach-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .ns-approach-card {
        text-align: left;
    }
}

@media (max-width: 575px) {
    .ns-approach-title {
        font-size: 2.1rem;
    }

    .ns-approach-desc {
        font-size: 0.98rem;
        margin-bottom: 28px;
    }

    .ns-approach-img-wrapper {
        height: 100%;
        border-radius: 0px !important;
    }


    .ns-approach-card {
        padding: 24px 20px !important;
    }
}


/* ==========================================
   PROJECT NAARI SHAKTI - OUR INITIATIVES STYLES
========================================== */

.ns-init-section {
    position: relative;
    /* background-color: #fcfaf7; */
    padding: 80px 0 40px 0;
    overflow: hidden;
}

/* LEFT COLUMN: Content Padding & Layout */
.ns-init-content-col {
    padding-left: 8%;
    padding-right: 4%;
    z-index: 3;
}

.ns-init-inner {
    width: 100%;
    max-width: 580px;
}

/* Section Header Typography */
.ns-init-kicker {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--Blue);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.ns-init-line {
    width: 60px;
    height: 3px;
    background-color: var(--Blue);
    margin-bottom: 20px;
    border-radius: 2px;
}

.ns-init-title {
    font-size: 3.1rem;
    font-weight: 800;
    line-height: 1.15;
    color: #111827;
    margin-bottom: 18px;
    letter-spacing: -0.6px;
}

.ns-init-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 35px;
}

/* Stacked Initiatives List */
.ns-init-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ns-init-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.ns-init-item:first-child {
    padding-top: 0;
}

.ns-init-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ns-init-icon {
    width: 54px;
    height: 54px;
    background-color: #e1fffb !important;
    color: var(--Blue) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.35rem !important;
    flex-shrink: 0 !important;
    border: 1px solid var(--Blue) !important;
}

.ns-init-item-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
    line-height: 1.3;
}

.ns-init-item-text {
    font-size: 0.95rem;
    line-height: 1.62;
    color: #4b5563;
    margin-bottom: 0;
}

/* RIGHT COLUMN: Flush-Right Image + Quote Card System */
.ns-init-image-col {
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 2;
}

.ns-init-oval-wrapper {
    position: relative;
    width: 100%;
    max-width: 780px;
    display: flex;
    justify-content: flex-end;
}

/* Flush Right Semi-Oval Frame */
.ns-init-oval-border {
    width: 100%;
    aspect-ratio: 1.15 / 1;
    border-radius: 50% 0 0 50% / 50% 0 0 50%;
    padding: 16px 0 16px 16px;
}

.ns-init-oval-mask {
    width: 100%;
    height: 100%;
    /* border-radius: 50% 0 0 50% / 50% 0 0 50%; */
    overflow: hidden;
    position: relative;
    background-color: #f3f4f6;
}

.ns-init-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    display: block;
    transform: scale(1.02);
    transition: transform 0.8s ease;
}



/* Overlapping White Quote Card */
.ns-init-quote-card {
    position: absolute;
    bottom: -90px;
    right: 0;
    width: 260px;
    background-color: #ffffff;
    border-radius: 24px;
    padding: 30px 28px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--Blue);
    z-index: 5;
}

.ns-quote-icon {
    font-size: 3rem;
    font-weight: 800;
    line-height: 0.8;
    color: var(--Blue);
    margin-bottom: 12px;
}

.ns-quote-text {
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 18px;
}

.ns-quote-line {
    width: 40px;
    height: 3px;
    background-color: var(--Blue);
    border-radius: 2px;
}


/* ==========================================
   RESPONSIVE MEDIA QUERIES
========================================== */

@media (max-width: 1399px) {
    .ns-init-title {
        font-size: 2.7rem;
    }
    .ns-init-quote-card {
        left: -10px;
        width: 290px;
        padding: 24px;
    }
}

@media (max-width: 1199px) {
    .ns-init-title {
        font-size: 2.4rem;
    }
    .ns-init-content-col {
        padding-left: 5%;
    }
    .ns-init-quote-card {
        bottom: 15px;
        left: 10px;
        width: 260px;
    }
}

@media (max-width: 991px) {
    .ns-init-section {
        padding: 60px 0 4cqi 0;
        text-align: center;
    }

    .ns-init-content-col {
        padding: 0 24px;
        margin-bottom: 50px;
    }

    .ns-init-inner {
        max-width: 580px;
        margin: 0 auto;
    }

    .ns-init-line {
        margin-left: auto;
        margin-right: auto;
    }

    .ns-init-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .ns-init-item {
        text-align: left;
    }

    /* On Mobile/Tablet: Switch oval from flush-right to symmetric round image */
    .ns-init-oval-wrapper {
        max-width: 520px;
        margin: 0 auto;
        padding: 0 20px;
        flex-direction: column;
        align-items: center;
    }

    .ns-init-oval-border,
    .ns-init-oval-mask {
        border-radius: 40px !important;
        padding: 10px;
        aspect-ratio: 16 / 11;
        width: 100%;
    }

    /* On Tablet & Mobile: Move quote box below the image naturally */
    .ns-init-quote-card {
        position: relative;
        bottom: auto;
        left: auto;
        width: 90%;
        margin-top: -30px;
        text-align: left;
    }
}

@media (max-width: 575px) {
    .ns-init-title {
        font-size: 2.1rem;
    }

    .ns-init-desc {
        font-size: 0.98rem;
    }

    .ns-init-item {
        gap: 14px;
        padding: 18px 0;
    }

    .ns-init-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem !important;
        margin: auto;
    }

    .ns-init-quote-card {
        width: 95%;
        padding: 24px 20px;
    }
}


/* ==========================================
   STORIES OF CHANGE - CAROUSEL STYLES
========================================== */

.ns-stories-section {
    position: relative;
    background-color: #fcfaf7;
    padding: 80px 0  40px 0;
    overflow: hidden;
}

.ns-stories-kicker {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--Blue);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.ns-stories-line {
    width: 60px;
    height: 3px;
    background-color: var(--Blue);
    margin-bottom: 20px;
    border-radius: 2px;
}

.ns-stories-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    color: #111827;
    margin-bottom: 16px;
    letter-spacing: -0.6px;
}

.ns-stories-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4b5563;
    max-width: 580px;
    margin-bottom: 45px;
}

/* Base Carousel Slide Styling (Default for Left & Right slides) */
.ns-stories-carousel .owl-item {
    padding: 30px 10px 40px 10px; /* Spacing for smooth zoom shadow */
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ns-story-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transform: scale(0.86); /* Side images small */
    opacity: 0.75;          /* Slight fade on sides */
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ACTIVE CENTER SLIDE (Beech wali image badi aur highlight hogi) */
.ns-stories-carousel .owl-item.center .ns-story-card {
    transform: scale(1.08); /* Center slide zooms up */
    opacity: 1;
    box-shadow: 0 25px 60px rgba(243, 123, 18, 0.18);
    z-index: 5;
}

.ns-story-img-wrap {
    width: 100%;
    aspect-ratio: 4 / 3.8;
    overflow: hidden;
    position: relative;
    border-radius: 28px;
}

.ns-story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Floating Overlapping White Caption Pill Box */
.ns-story-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    background: #ffffff;
    border-radius: 20px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(243, 123, 18, 0.1);
}

.ns-caption-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #911ff9 0%, #3a01e7 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.ns-caption-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 2px;
    line-height: 1.3;
}

.ns-caption-desc {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 0;
    line-height: 1.4;
}

/* Custom Circle Arrow Navigation Buttons (Left / Right) */
.ns-stories-carousel .owl-nav {
    position: absolute;
    top: 45%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    transform: translateY(-50%);
}

.ns-stories-carousel .owl-nav button.owl-prev,
.ns-stories-carousel .owl-nav button.owl-next {
    width: 54px;
    height: 54px;
    background-color: #ffffff !important;
    color: var(--Blue) !important;
    border-radius: 50% !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
    pointer-events: auto;
    font-size: 1.5rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    border: 1px solid rgba(243, 123, 18, 0.15) !important;
}

.ns-stories-carousel .owl-nav button.owl-prev {
    margin-left: -20px;
}

.ns-stories-carousel .owl-nav button.owl-next {
    margin-right: -20px;
}

.ns-stories-carousel .owl-nav button:hover {
    background: var(--Blue) !important;
    color: #ffffff !important;
    transform: scale(1.08);
}

/* Custom Dots */
.ns-stories-carousel .owl-dots {
    text-align: center;
    margin-top: 15px;
}

.ns-stories-carousel .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 6px;
    background: #e5e7eb;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.ns-stories-carousel .owl-dots .owl-dot.active span {
    width: 28px;
    background: var(--Blue);
    border-radius: 10px;
}





/* ==========================================
   RESPONSIVE MEDIA QUERIES
========================================== */

@media (max-width: 991px) {
    .ns-stories-title {
        font-size: 2.3rem;
    }
    .ns-stories-carousel .owl-nav {
        display: none; /* Tablet/Mobile par arrow hide karein, dots & touch swipe best hai */
    }
    .ns-stories-carousel .owl-item.center .ns-story-card,
    .ns-story-card {
        transform: scale(1) !important; /* Mobile par scale same rahega taaki clean dikhe */
        opacity: 1 !important;
    }
}

@media (max-width: 575px) {
    .ns-stories-title {
        font-size: 1.95rem;
    }
    .ns-story-caption {
        width: 93%;
        padding: 12px 14px;
        gap: 12px;
    }
    .ns-caption-icon {
        width: 40px;
        height: 40px;
        font-size: 1.05rem;
    }
    .ns-caption-title {
        font-size: 0.95rem;
    }
    .ns-caption-desc {
        font-size: 0.78rem;
    }
}


/* ==========================================
   CREATING RIPPLES - CHANGING GENERATIONS STYLES
========================================== */

.ns-ripples-section {
    position: relative;
    background-color: #fcfaf7;
    padding: 85px 0 110px 0;
    overflow: hidden;
    
}

.ns-ripples-section::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 35%); 
    z-index: 1;
}

/* Kicker & Line Shared Styles */
.ns-ripples-kicker {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--Blue);
    text-transform: uppercase;
}

.ns-ripples-line {
    width: 50px;
    height: 3px;
    background-color: var(--Blue);
    margin-top: 6px;
    margin-bottom: 16px;
    border-radius: 2px;
}

/* Left Column Styling */
.ns-ripples-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    color: #111827;
    margin-bottom: 16px;
    letter-spacing: -0.6px;
}

.ns-ripples-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4b5563;
    max-width: 480px;
}


/* ==========================================
   RIGHT COLUMN: TOP IMPACT BOX
========================================== */
.ns-ripples-impact-box {
    background-color: #ffffff;
    border-radius: 32px;
    padding: 35px 30px;
    border: 1px solid rgba(243, 123, 18, 0.12);
}

.ns-impact-dotted-line {
    position: absolute;
    top: 30px;
    left: 0;
    right: 12%;
    height: 2px;
    border-top: 2px dashed var(--Blue);
    z-index: 1;
    opacity: 0.5;
}

.ns-impact-step {
    position: relative;
    z-index: 2;
}

.ns-impact-icon {
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    color: var(--Blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 14px;
    border: 1px solid rgba(5, 5, 5, 0.808);
    transition: all 0.3s ease;
}

.ns-impact-step:hover .ns-impact-icon {
    background-color: var(--Blue);
    color: #ffffff;
    transform: translateY(-4px);
}





/* ==========================================
   RIGHT COLUMN: BOTTOM STORIES CARD
========================================== */
.ns-ripples-stories-card {
    background-color: #ffffff;
    border-radius: 32px;
    padding: 38px 36px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.ns-heart-badge {
    width: 32px;
    height: 32px;
    background-color: var(--card-bg);
    color: var(--Blue);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.ns-stories-tag {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--Blue);
    font-style: italic;
}

.ns-stories-heading {
    font-size: 1.9rem;
    font-weight: 800;
    color: #111827;
    line-height: 1.22;
    margin-bottom: 14px;
    letter-spacing: -0.4px;
}

.ns-stories-body {
    font-size: 0.94rem;
    line-height: 1.65;
    color: #4b5563;
    margin-bottom: 24px;
}

.ns-ripples-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #911ff9 0%, #3a01e7 100%);
    color: #ffffff !important;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ns-ripples-btn:hover {
    transform: translateY(-2px);
}

/* ==========================================
   OWL CAROUSEL QUOTE CARD (Right Side of White Box)
========================================== */
.ns-quote-carousel-wrapper {
    position: relative;
    background-color: var(--card-bg);
    border-radius: 24px;
    padding: 35px 28px 25px 28px;
    border: 1px solid rgba(243, 123, 18, 0.1);
}

.ns-quote-mark {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 0.7;
    color: var(--Blue);
    margin-bottom: 16px;
}

.ns-quote-text {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #1f2937;
    margin-bottom: 20px;
    min-height: 90px;
}

.ns-quote-author {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--Blue);
}

/* Owl Dots Positioning */
.ns-ripples-carousel .owl-dots {
    text-align: left;
    margin-top: 15px;
}

.ns-ripples-carousel .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    margin: 4px 5px;
    background: #e5e7eb;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.ns-ripples-carousel .owl-dots .owl-dot.active span {
    width: 22px;
    background: var(--Blue);
    border-radius: 10px;
}

/* Custom Orange Right Circle Button */
.ns-ripples-carousel .owl-nav {
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 !important;
}

.ns-ripples-carousel .owl-nav button.owl-next {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #f9881f 0%, #ea6605 100%) !important;
    color: #ffffff !important;
    border-radius: 50% !important;
    box-shadow: 0 8px 18px rgba(243, 123, 18, 0.35) !important;
    font-size: 1.2rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
}

.ns-ripples-carousel .owl-nav button.owl-next:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 22px rgba(243, 123, 18, 0.45) !important;
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
========================================== */

@media (max-width: 1399px) {
    .ns-ripples-title {
        font-size: 2.5rem;
    }
    .ns-stories-heading {
        font-size: 1.7rem;
    }
}

@media (max-width: 991px) {
    .ns-ripples-section {
        padding: 60px 0 85px 0;
    }

    .ns-ripples-title {
        font-size: 2.2rem;
    }

    .ns-ripples-image-frame {
        min-height: 320px;
        margin-bottom: 20px;
    }

    .ns-ripples-img {
        min-height: 320px;
    }

    .ns-ripples-impact-box,
    .ns-ripples-stories-card {
        padding: 28px 20px;
    }

    .ns-ripples-carousel .owl-nav {
        right: -10px;
    }
}

@media (max-width: 575px) {
    .ns-ripples-title {
        font-size: 1.95rem;
    }

    .ns-stories-heading {
        font-size: 1.5rem;
    }

    .ns-quote-text {
        min-height: auto;
        font-size: 0.98rem;
    }

    /* Mobile par navigation button hide karke swiping & dots clean rahenge */
    .ns-ripples-carousel .owl-nav {
        display: none;
    }
    
    .ns-ripples-carousel .owl-dots {
        text-align: center;
    }
}


:root {
  /* --about-primary-green: #EA6605; */
  --about-light-green: #527a4d;
  --about-accent-green: #7ca874;
  --about-text-dark: #222222;
  --about-text-gray: #555555;
  --about-bg-offwhite: #f5f4ef;
  --about-bg-white: #ffffff;
  --about-transition: all 0.3s ease;
}


.about-section-padding {
  padding: 80px 0;
}

.about-text-center {
  text-align: center;
}

.about-highlight {
  color: var(--Blue);
  text-decoration: underline;
}

.about-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--Blue);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--Blue);
  color: var(--about-bg-white);
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--about-transition);
  border: none;
  cursor: pointer;
}

.about-btn:hover {
  background-color: var(--Blue);
  transform: translateY(-3px);
}

.about-link-arrow {
  color: var(--Blue);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--about-transition);
}

.about-link-arrow:hover {
  gap: 10px;
  color: var(--Blue);
}

/* =========================================
   PROFESSIONAL HERO SECTION V2 CSS
========================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* Core Variables */
:root {
    --about-dark: #1a2b22;
    /* --about-green: #EA6605; */
    --about-light-gray: #666666;
    --about-bg-light: #fafbf9;
    --about-white: #ffffff;
}



/* Section Container */
.about-hero-v2 {

    position: relative;
    overflow: hidden;
}

/* Background Rings Effect */
.about-bg-rings {
    position: absolute;
    top: -15%;
    right: -10%;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    border: 1px solid rgba(45, 90, 54, 0.04);
    box-shadow: 
        inset 0 0 0 50px rgba(45, 90, 54, 0.015),
        inset 0 0 0 100px rgba(45, 90, 54, 0.01),
        inset 0 0 0 150px rgba(45, 90, 54, 0.015);
    z-index: 0;
    pointer-events: none;
}

/* Grid Layout */
.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}


.about-tagline {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--Blue);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-dot {
    width: 8px;
    height: 8px;
    background-color: var(--Blue);
    border-radius: 50%;
    display: inline-block;
}

.about-main-heading {
    font-size: clamp(2.8rem, 4vw, 4rem) !important;
    font-weight: 800 !important;
    line-height: 1.15 !important;
    color: var(--about-dark);
    margin-bottom: 25px;
    letter-spacing: -1px;
    
}

.about-text-green {
    color: var(--Blue);
}

.about-divider {
    width: 70px;
    height: 3px;
    background-color: var(--Blue);
    margin-bottom: 25px;
    border-radius: 5px;
}

.about-desc-text {
    font-size: 1.05rem !important;
    color: var(--about-light-gray);
    line-height: 1.7 !important;
    margin-bottom: 40px;
}

.about-desc-text strong {
    color: var(--about-dark);
    font-weight: 700;
}

/* Features Card Box */
.about-features-card {
    background: var(--about-white);
    border-radius: 20px;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    margin-bottom: 40px;
    border: 1px solid rgba(0,0,0,0.03);
}

.about-feat-item {
    text-align: center;
    flex: 1;
    position: relative;
    padding: 0 10px;
}

/* Separator Lines */
.about-feat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: #f0f0f0;
}

.about-feat-item i {
    font-size: 1.4rem;
    color: var(--Blue);
    margin-bottom: 12px;
    background: rgba(45, 90, 54, 0.06);
    width: 48px;
    height: 48px;
    line-height: 48px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.about-feat-item:hover i {
    background: var(--Blue);
    color: var(--about-white);
    transform: translateY(-3px);
}

.about-feat-item span {
    display: block;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    color: var(--about-dark);
    line-height: 1.3 !important;
}

/* Solid Button */
.about-btn-solid {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--Blue);
    color: var(--about-white) !important;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600 !important;
    font-size: 1rem !important;
    transition: all 0.3s ease;
    text-decoration: none;
}

.about-btn-solid:hover {
    background-color: var(--about-dark);
    transform: translateY(-4px);
}


.about-main-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    object-position: left;
}

/* The Overlapping Quote Card */
.about-quote-card {
    position: absolute;
    bottom: 0;
    left: 25px;
    background: var(--about-white);
    border-radius: 20px;
    padding: 35px 40px;
    display: flex;
    gap: 25px;
    max-width: 90%;
    /* Solid Green Offset Shadow (Exactly like the design) */
    box-shadow: 14px 14px 0px var(--Blue);
    border: 1px solid rgba(0,0,0,0.05);
    z-index: 3;
}

.about-quote-mark {
    font-size: 5rem !important;
    color: var(--Blue);
    line-height: 0.8 !important;
    height: 40px;
    margin-top: 10px;
}

.about-quote-content p {
    font-size: 1.1rem !important;
    color: var(--about-dark);
    font-weight: 500 !important;
    line-height: 1.6 !important;
    margin-bottom: 15px;
}

.about-quote-author {
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    color: var(--Blue);
}

/* =========================================
   RESPONSIVE MEDIA QUERIES
========================================= */

@media (max-width: 1200px) {
    .about-main-image { height: 410px; }
    .about-quote-card { left: -20px; max-width: 95%; padding: 25px; }
}

@media (max-width: 992px) {
    /* Stack into 1 column on tablets */
    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 80px;
        text-align: center;
    }
    
    
    .about-tagline { justify-content: center; }
    .about-divider { margin: 0 auto 25px; }
    
    .about-quote-card {
        bottom: -30px;
        left: 5%;
        width: 90%;
        max-width: none;
        box-shadow: 10px 10px 0px var(--Blue);
        display: none; 
    }
}

@media (max-width: 576px) {
    
  .about-main-heading, .about-desc-text{
    padding: 17px;
    text-align: center;
  }

    /* Features card turns into a 2x2 grid on small mobile */
    .about-features-card {
        gap: 25px 0;
        padding: 20px;
    }
    
    .about-feat-item {
        flex: 0 0 25%;
    }
    
    .about-feat-item:nth-child(even)::after {
        display: none; /* Remove line after every 2nd item */
    }

    .about-feat-item:nth-child(1)::after, 
    .about-feat-item:nth-child(2)::after {
        height: 1px;
        width: 60%;
        top: auto;
        bottom: -15px;
        right: 20%;
    }
    
    .about-main-image { height: 300px;
    border-radius: 0; }

    .about-quote-card {
        flex-direction: column;
        gap: 10px;
        padding: 25px 20px;
        box-shadow: 8px 8px 0px var(--Blue);
        display:none;
    }
    
    .about-quote-mark { font-size: 4rem !important; margin-top: 0; text-align: left; }
}

.about-paper-tear {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 40px;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 40" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,40 L1200,40 L1200,0 C1100,20 1000,-10 900,10 C800,30 700,-10 600,10 C500,30 400,-10 300,10 C200,30 100,-10 0,10 Z" fill="%23ffffff"/></svg>') no-repeat center bottom / cover;
  z-index: 5;
}

/* ====================
           2. DRIVES US SECTION
           ==================== */
.about-drives-us {
  padding: 80px 0;
}

.about-drives-us h2 {
  font-size: 2.2rem;
  margin-bottom: 60px;
}

.about-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.about-features-grid .about-feature-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -15px;
  top: 20%;
  height: 60%;
  width: 1px;
  background-color: #eaeaea;
}

.about-feature-item {
  text-align: center;
  position: relative;
  padding: 15px;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);

}

.about-feature-icon {
  font-size: 2.5rem;
  color: var(--Blue);
  margin-bottom: 20px;
  text-align:left;
}

.about-feature-item h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  text-align:left;
}

.about-feature-item p {
  font-size: 0.95rem;
  text-align:left;
}

/* ====================
           3. WHO WE ARE
           ==================== */
/* .about-who-we-are {
  background: linear-gradient(140deg,
      #FFC94D 0%,
      #FFE8B3 15%,
      #FFFFFF 42%,
      #F3F8FF 60%,
      #DCEBFF 82%,
      #BCD6FF 100%);
  ;
} */

.about-who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-who-images {
  position: relative;
  max-width: 500px;
}

.about-who-main-img {
  border-radius: 20px;
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-who-sub-img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  border-radius: 15px;
  border: 6px solid var(--about-bg-offwhite);
}

.about-empower-badge {
  position: absolute;
  bottom: -20px;
  right: 20%;
  background: var(--Blue);
  color: white;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-empower-badge i {
  font-size: 2rem;
  margin-top: 10px;
  color: #ffde59;
}

.about-who-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-who-content p {
  margin-bottom: 20px;
  font-size: 1.05rem;
}

/* ====================
           4. PILLARS (HOW WE MAKE CHANGE)
           ==================== */
/* .about-pillars {
  background: var(--about-bg-white); 
}*/

.about-pillars h2 {
  font-size: 2.5rem;
}

.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.about-pillar-card {
  background: var(--about-bg-white);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: var(--about-transition);
  position: relative;
  padding-bottom: 25px;
}


.about-pillar-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.about-pillar-icon {
  width: 60px;
  height: 60px;
  background: var(--about-bg-white);
  color: var(--Blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: -30px auto 15px;
  position: relative;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border: 3px solid var(--Blue);
}

.about-pillar-content {
  padding: 0 20px;
  text-align: center;
}

.about-pillar-content h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.about-pillar-content p {
  font-size: 0.9rem;
  margin-bottom: 20px;
}
/* ====================
   TEAM SECTION (SYNC FADE EFFECT)
   ==================== */
:root {
  --about-bg-white: #ffffff;
}

.about-team-section {
  background-size: cover;
  background-position: top center;
  color: var(--about-bg-white);
  padding: 60px 20px;
}


.about-team-section h2 {
  color: var(--about-bg-white);
  font-size: 2.2rem;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 15px;
  
}

/* 2-Column Layout */
.team-sync-layout {
  display: flex;
  align-items: center;
  gap: 50px;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
}

/* Image Wrapper */
.sync-images-wrapper {
  flex: 0 0 40%;
  display: grid; /* Grid helps stack items easily */
}

.sync-img {
  grid-area: 1 / 1; /* Puts all images in the same cell */
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  pointer-events: none;
  object-position: 50% 35%;
}

/* Text Wrapper */
.sync-texts-wrapper {
  flex: 1;
  display: grid;
}

.sync-text-item {
  grid-area: 1 / 1; /* Puts all text items in the same cell */
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  pointer-events: none;
}

/* Active Classes (Makes them visible) */
.sync-img.active,
.sync-text-item.active {
  opacity: 1;
  pointer-events: auto;
}

/* Typography Details */
.sync-text-item h3 {
  font-size: 2rem;
  margin-bottom: 5px;
}
.sync-text-item .designation {
  font-size: 1.1rem;
  color: #d1e2cd;
  display: block;
  margin-bottom: 25px;
}
.about-team-quote i {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.about-team-quote p {
  font-size: 1.4rem;
  font-style: italic;
  margin-bottom: 15px;
  line-height: 1.5;
}

/* Dots Styling */
.sync-dots {
  text-align: center;
  margin-top: 30px;
}
.sync-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: background 0.3s;
}
.sync-dot.active, .sync-dot:hover {
  background: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .team-sync-layout {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 20px;
  }
  .sync-images-wrapper {
    flex: 0 0 100%;
    width: 100%;
  }
  .sync-img {
    height: 280px;
  }
}

/* ====================
           7. CTA SECTION
           ==================== */
.about-cta-section {
  /* background-color: var(--about-bg-offwhite); */
  padding: 60px 0;
}

/* .about-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: center;
} */

.about-cta-text h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.about-cta-text p {
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.about-cta-icons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-cta-icon-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  color: var(--about-text-dark);
  font-size: 16px;
}

.about-cta-icon-item i {
  font-size: 1.5rem;
  color: var(--Blue);
  width: 30px;
  text-align: center;
}

.about-cta-image img {
  border-radius: 20px;
  max-width: 100%;  
  height: auto;    
  display: block;
}

/* ====================
           RESPONSIVE MEDIA QUERIES
           ==================== */
@media (max-width: 992px) {


  .about-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }

  .about-features-grid .about-feature-item:not(:last-child)::after {
    display: none;
  }

  .about-who-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-who-images {
    margin-bottom: 30px;
    width: 80%;
    margin: 0 auto;
  }

  .about-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }

  .about-team-layout {
    grid-template-columns: 1fr;
  }

  .about-news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-cta-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-cta-icons {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

}

@media (max-width: 768px) {
  .about-hero-container {
    flex-direction: column;
    text-align: center;
  }

  .about-hero-content h1 {
    font-size: 2.2rem;
  }

  .about-hero-content p {
    margin: 0 auto 30px;
  }

  .about-features-grid {
    grid-template-columns: 1fr;
  }

  .about-pillars-grid {
    grid-template-columns: 1fr;
  }

  .about-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-news-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .about-team-grid {
    grid-template-columns: 1fr;
  }

  .about-news-card {
    flex-direction: column;
    text-align: center;
  }

  .about-news-img-wrap {
    width: 100%;
  }

  .about-news-img-wrap img {
    height: 180px;
  }
  .about-cta-image {
    width: 100%; 
  }

  .about-news-date {
    font-size: 0.9rem;
    padding: 8px 12px;
  }

  .about-team-card img{
        object-position: 50% 34%;
  }

  .about-cta-section{
    padding: 30px 0;
  }
}

/* ==========================================
   NEWSLETTER & EVENTS HERO SECTION STYLES
========================================== */

.ns-news-hero-section {
    position: relative;
    /* background: linear-gradient(135deg, #fcfaf7 0%, #fff6ed 100%); */
    padding: 80px 0 30px; 
    overflow: hidden;
}






/* Left Content Typography */
.ns-news-kicker {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--Blue);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.ns-news-line {
    width: 50px;
    height: 3px;
    background-color: var(--Blue);
    margin-bottom: 18px;
    border-radius: 2px;
}

.ns-news-title {
    font-size: 3.3rem;
    font-weight: 800;
    line-height: 1.15;
    color: #111827;
    margin-bottom: 18px;
    letter-spacing: -0.8px;
}

.ns-highlight-orange {
    color: var(--Blue);
}

.ns-news-desc {
    font-size: 1.08rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 28px;
    max-width: 500px;
}

/* 2 Highlight Mini Cards */
.ns-news-mini-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 22px 18px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border: 1px solid rgba(243, 123, 18, 0.12);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    height: 100%;
    transition: all 0.3s ease;
}

.ns-news-mini-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(243, 123, 18, 0.1);
    border-color: rgba(243, 123, 18, 0.28);
}

.ns-mini-icon {
    width: 48px;
    height: 48px;
    background-color: #dffaff;
    color: var(--Blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    border: 1px solid rgba(243, 123, 18, 0.15);
}

.ns-mini-title {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
    line-height: 1.3;
}

.ns-mini-desc {
    font-size: 0.84rem;
    line-height: 1.48;
    color: #64748b;
    margin-bottom: 0;
}

/* Right Illustration Envelope Vector Art */
.ns-news-art-wrapper {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

.ns-envelope-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
========================================== */

@media (max-width: 1199px) {
    .ns-news-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 991px) {
    .ns-news-hero-section {
        text-align: center;
    }

    .ns-news-line {
        margin-left: auto;
        margin-right: auto;
    }

    .ns-news-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .ns-news-mini-card {
        text-align: left;
    }

    .ns-news-art-wrapper {
        max-width: 440px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .ns-news-filter-bar {
        padding: 20px 16px;
    }
}

@media (max-width: 575px) {
    .ns-news-title {
        font-size: 2.1rem;
    }

    .ns-news-desc {
        font-size: 0.98rem;
    }

    .ns-news-mini-card {
        padding: 18px 16px;
        gap: 12px;
    }

    .ns-mini-icon {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }

    .ns-news-pill {
        padding: 8px 14px;
        font-size: 0.82rem;
    }
}


/* ==========================================
   UPCOMING EVENTS STYLES & OUTER ARROWS FIX
========================================== */
.ns-events-section {
    /* background: #fff9f4; */
    padding: 40px 0 40px;
    position: relative;
    overflow: hidden;
}


.ns-events-kicker {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--Blue);
    letter-spacing: 1.5px;
}

.ns-kicker-line-side {
    display: inline-block;
    width: 25px;
    height: 2px;
    background-color: var(--Blue);
}

.ns-events-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #111827;
    margin-top: 10px;
    margin-bottom: 15px;
}

.ns-highlight-orange { color: var(--Blue); }

.ns-events-desc {
    color: #4b5563;
    font-size: 1.05rem;
    max-width: 600px;
    line-height: 1.6;
}

.ns-events-view-btn {
    display: inline-block;
    padding: 10px 24px;
    border: 1.5px solid var(--Blue);
    border-radius: 30px;
    color: var(--Blue);
    font-weight: 600;
    text-decoration: none;
    background: transparent;
    transition: all 0.3s;
}

.ns-events-view-btn:hover {
    background: var(--Blue);
    color: #fff;
}

/* OUTER CAROUSEL WRAPPER WITH PADDING FOR ARROWS */
.ns-carousel-outer-wrapper {
    position: relative;
    padding: 0 60px; /* Crucial padding to give room for side arrows */
}

/* FORCE OWL CAROUSEL NAV ARROWS TO DISPLAY EXTERNALLY */
.ns-events-carousel .owl-nav {
    position: absolute !important;
    top: 50% !important;
    left: 0 !important;
    width: 100% !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    justify-content: space-between !important;
    pointer-events: none !important;
    margin-top: 0 !important;
}

/* CUSTOM ROUND ARROWS STYLING */
.ns-events-carousel .owl-nav button.owl-prev,
.ns-events-carousel .owl-nav button.owl-next {
    width: 48px !important;
    height: 48px !important;
    background-color: var(--icon-bg) !important; /* Soft peach background */
    color: var(--Blue) !important;            /* Orange arrow color */
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    pointer-events: auto !important;
    transition: all 0.3s ease !important;
    border: none !important;
    outline: none !important;
}

.ns-events-carousel .owl-nav button.owl-prev i,
.ns-events-carousel .owl-nav button.owl-next i {
    font-size: 1.1rem !important;
    line-height: 1 !important;
}

/* PUSH BUTTONS INTO THE OUTER PADDING AREA */
.ns-events-carousel .owl-nav button.owl-prev {
    margin-left: -55px !important;
}

.ns-events-carousel .owl-nav button.owl-next {
    margin-right: -55px !important;
}

.ns-events-carousel .owl-nav button.owl-prev:hover,
.ns-events-carousel .owl-nav button.owl-next:hover {
    background-color: var(--Blue) !important;
    color: #ffffff !important;
    transform: scale(1.08);
}

/* EVENT CARDS */
.ns-event-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ns-event-img-wrap {
    position: relative;
    aspect-ratio: 4/3;
}

.ns-event-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ns-event-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #fff;
    padding: 8px 12px;
    border-radius: 12px;
    text-align: center;
    line-height: 1;
}

.ns-event-date strong {
    display: block;
    font-size: 1.2rem;
    color: #111827;
}

.ns-event-date span {
    font-size: 0.7rem;
    font-weight: 700;
    color: #4b5563;
}

.ns-event-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--Blue);
    color: #fff;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.ns-event-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.ns-event-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.ns-event-text {
    font-size: 0.85rem;
    color: #4b5563;
    line-height: 1.5;
    flex-grow: 1;
}

.ns-event-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 15px;
}

.ns-event-meta {
    font-size: 0.75rem;
    color: #6b7280;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ns-event-card-arrow {
    width: 35px;
    height: 35px;
    background: var(--icon-bg);
    color: var(--Blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.ns-event-card-arrow:hover {
    background: var(--Blue);
    color: #fff;
}

/* BOTTOM STRIP */
.ns-events-bottom-strip {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.ns-strip-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.ns-strip-icon {
    width: 50px;
    height: 50px;
    background: var(--icon-bg);
    color: var(--Blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.ns-strip-feature h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 5px;
}

.ns-strip-feature p {
    font-size: 0.8rem;
    color: #4b5563;
    margin: 0;
    line-height: 1.4;
}

/* RESPONSIVE HIDE ARROWS FOR SMALLER SCREENS */
@media (max-width: 991px) {
    .ns-carousel-outer-wrapper { 
        padding: 0; 
    }
    .ns-events-carousel .owl-nav { 
        display: none !important; 
    }
}

/* ==========================================
   OUR IMPACT SECTION STYLES
========================================== */

.ns-impact-section {
    position: relative;
    /* background-color: #fcfaf7; */
    padding: 40px 0 40px 0;
    overflow: hidden;
}


/* Header Styling */
.ns-impact-icon-kicker {
    color: var(--Blue);
    font-size: 1.5rem;
}

.ns-impact-kicker {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--Blue);
    text-transform: uppercase;
}



.ns-highlight-orange { color: var(--Blue); }

.ns-impact-desc {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #4b5563;
    max-width: 480px;
}

/* Vertical Timeline Styling */
.ns-timeline-wrapper {
    position: relative;
    padding-left: 20px;
    border-left: 2px solid var(--Blue);
    margin-left: 10px;
}

.ns-timeline-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
}

.ns-timeline-item:last-child {
    margin-bottom: 0;
}



/* Round Icons */
.ns-timeline-icon {
    width: 50px;
    height: 50px;
    background-color: var(--icon-bg);
    color: var(--Blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    border: 1px solid rgba(243, 123, 18, 0.15);
}

.ns-timeline-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
    margin-top: 4px;
}

.ns-timeline-text p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 0;
}

/* ==========================================
   RIGHT COLUMN: VISUALS
========================================== */
.ns-impact-visuals {
    position: relative;
    padding-left: 40px;
}



/* Main Image Curved Mask */
.ns-impact-main-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    z-index: 2;
}

.ns-impact-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

/* Floating Cards Common */
.ns-float-card {
    position: absolute;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 4;
}

/* Floating Video Card */
.ns-float-video {
    top: -30px;
    right: 20px;
    width: 180px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid rgba(243, 123, 18, 0.1);
}

.ns-float-play-btn {
    width: 45px;
    height: 45px;
    background: #fff4e6;
    color: var(--Blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    font-size: 1.1rem;
    border: 1px solid rgba(243, 123, 18, 0.2);
}

.ns-float-video h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
}

.ns-float-video p {
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 0;
    line-height: 1.4;
}

/* Floating Polaroid Photo */
.ns-float-photo {
    bottom: 60px;
    right: -20px;
    padding: 8px;
    width: 190px;
    transform: rotate(6deg);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.ns-float-photo img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* ==========================================
   OVERLAPPING STATS CARD
========================================== */
.ns-stats-overlap-card {
    position: relative;
    background-color: #ffffff;
    border-radius: 24px;
    padding: 40px 30px;
    border: 1px solid rgba(243, 123, 18, 0.05);
    z-index: 10;
}

.ns-stat-box {
    position: relative;
}

/* Divider lines between stats on desktop */
@media (min-width: 768px) {
    .ns-stat-box:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 20%;
        right: 0;
        width: 1px;
        height: 60%;
        background-color: #f1f5f9;
    }
}


.ns-stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--Blue);
    margin-bottom: 6px;
    letter-spacing: -1px;
}

.ns-stat-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
}

.ns-stat-detail {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 0;
    line-height: 1.4;
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
========================================== */
@media (max-width: 1199px) {
    .ns-impact-title { font-size: 2.7rem; }
    .ns-float-video { width: 160px; right: 0; }
    .ns-float-photo { width: 160px; right: -10px; }
}

@media (max-width: 991px) {
    .ns-impact-section { padding: 60px 0 80px 0; }
    .ns-impact-content { margin-bottom: 50px;
    padding-bottom: 0; }
    .ns-impact-visuals { padding-left: 0; }

    .ns-impact-title { font-size: 1.7rem; }
    
    .ns-impact-main-img-wrap {
        border-radius: 40px; /* Switch to symmetric rounded box on mobile */
        aspect-ratio: 16 / 11;
    }
    
    .ns-image-arch-outline { display: none; }
    
    .ns-float-video { top: -20px; right: 10px; padding: 20px 15px; }
    .ns-float-photo { bottom: 20px; right: 10px; }
    
    .ns-stats-overlap-card { margin-top: 30px; } /* Remove negative overlap on tablet */
    
    .ns-cta-divider-col { border-left: none; padding-left: calc(var(--bs-gutter-x) * .5); }
    .ns-dark-cta-banner { padding: 30px 24px; text-align: center; }
    .ns-dark-cta-banner .d-flex { justify-content: center !important; }
}

@media (max-width: 575px) {
    .ns-impact-title { font-size: 1.5rem; }
    .ns-float-video, .ns-float-photo { display: none; } /* Hide floating cards on tiny screens for clarity */
    .ns-stat-number { font-size: 1.8rem; }
    .ns-stats-overlap-card { padding: 30px 20px; }
    .ns-stat-box { margin-bottom: 20px; }
    .ns-btn-solid-orange, .ns-btn-outline-white { width: 100%; justify-content: center; }
}



/* ==========================================
   FAQS & NEWSLETTER SECTION STYLES
========================================== */

.ns-faq-section {
    position: relative;
    /* background-color: #fcfaf7; */
    padding: 85px 0 110px 0;
    overflow: hidden;
}




.accordion-button:not(.collapsed) {
  background: white;
}

/* Header Styling */
.ns-faq-top-icon {
    font-size: 1.8rem;
    color: var(--Blue);
    margin-bottom: 8px;
}

.ns-faq-kicker {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--Blue);
    text-transform: uppercase;
}

.ns-kicker-line {
    display: inline-block;
    width: 25px;
    height: 2px;
    background-color: var(--Blue);
}

.ns-faq-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #111827;
    margin-top: 10px;
    margin-bottom: 15px;
    letter-spacing: -0.6px;
}

.ns-highlight-orange { color: var(--Blue); }

.ns-faq-desc {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #4b5563;
    max-width: 550px;
}

/* ==========================================
   CUSTOM ACCORDION STYLING
========================================== */
.ns-faq-accordion {
    --bs-accordion-bg: #ffffff;
    --bs-accordion-border-width: 0;
    --bs-accordion-btn-focus-box-shadow: none;
    display: flex;
    flex-direction: column;
    gap: 16px; /* Space between items */
}

.ns-faq-item {
    border-radius: 12px !important;
    overflow: hidden;
    background-color: #ffffff;
    border: 1px solid rgba(243, 123, 18, 0.1) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    border-left: 4px solid transparent !important; /* Left border default */
}

/* Active State Customization */
.ns-faq-item:has(.ns-faq-btn:not(.collapsed)) {
    border-left-color: var(--Blue) !important;
    border-color: var(--Blue) !important;
}

.ns-faq-btn {
    padding: 20px 24px;
    background-color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.05rem;
    color: #111827;
}

/* Hide Default Bootstrap Arrow */
.ns-faq-btn::after {
    display: none !important; 
}

.ns-faq-btn-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ns-faq-icon {
    color: var(--Blue);
    font-size: 1.15rem;
    background: var(--icon-bg);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

/* Custom +/- Toggle Icon Logic */
.ns-faq-toggle-icon {
    color: var(--Blue);
    font-size: 1.1rem;
}

.ns-faq-btn.collapsed .minus-icon { display: none; }
.ns-faq-btn.collapsed .plus-icon { display: inline-block; }

.ns-faq-btn:not(.collapsed) .plus-icon { display: none; }
.ns-faq-btn:not(.collapsed) .minus-icon { display: inline-block; }

.ns-faq-body {
    padding: 0 24px 24px 74px; /* Align text with question, skip icon */
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.65;
}

/* ==========================================
   RIGHT COLUMN: CONTACT BOX
========================================== */
.ns-faq-contact-box {
    background-color: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid var(--Blue);
    height: 100%;
}

.ns-speech-bubbles {
    position: relative;
    display: inline-block;
}

.ns-bubble-main {
    background-color: var(--Blue);
    color: #ffffff;
    font-size: 2rem;
    font-weight: 800;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50% 50% 50% 0; /* Chat bubble tail */
}

.ns-bubble-small {
    position: absolute;
    bottom: -10px;
    right: -25px;
    background-color: #ffdcb8;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50% 50% 50% 0;
}

.ns-contact-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 10px;
}

.ns-contact-desc {
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.5;
}

.ns-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ns-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.ns-contact-list li i {
    color: var(--Blue);
    font-size: 1.1rem;
    margin-top: 3px;
}

.ns-contact-list li strong {
    display: block;
    color: #111827;
    margin-bottom: 2px;
}

.ns-contact-list li span {
    color: var(--Blue);
    font-weight: 600;
}

.ns-contact-list li span.text-muted {
    color: #64748b !important;
    font-weight: 500;
}

.ns-btn-dark-full {
    display: block;
    width: 100%;
    text-align: center;
    background-color: var(--Blue);
    color: #ffffff !important;
    padding: 14px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ns-btn-dark-full:hover {
    background-color: var(--Blue);
    transform: translateY(-2px);
}

/* ==========================================
   BOTTOM NEWSLETTER BANNER
========================================== */
.ns-faq-bottom-banner {
    background-color: var(--icon-bg);
    border-radius: 20px;
    padding: 35px 40px;
    border: 1px solid rgba(243, 123, 18, 0.15);
    position: relative;
    z-index: 2;
}

.ns-banner-icon {
    width: 70px;
    height: 70px;
    background-color: #99ecff;
    color: var(--Blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.ns-banner-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 4px;
    line-height: 1.25;
}

.ns-banner-desc {
    font-size: 0.9rem;
    color: #4b5563;
    margin-bottom: 0;
}

/* Right side newsletter box */
.ns-banner-small-icon {
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    color: var(--Blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 1px solid var(--Blue);
}

.ns-newsletter-title {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
}

.ns-newsletter-desc {
    font-size: 0.85rem;
    color: #64748b;
}

.ns-newsletter-form {
    display: flex;
    background-color: #ffffff;
    border-radius: 50px;
    padding: 6px;
    border: 1px solid var(--Blue);
}

.ns-newsletter-input {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    padding-left: 20px;
    font-size: 0.95rem;
}

.ns-btn-dark-subscribe {
    background-color: var(--Blue);
    color: #ffffff;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.ns-btn-dark-subscribe:hover {
    background-color: var(--Blue);
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
========================================== */

@media (max-width: 1199px) {
    .ns-faq-title { font-size: 2.8rem; }
    .ns-faq-bottom-banner { padding: 30px; }
}

@media (max-width: 991px) {
    .ns-faq-section { padding: 60px 0 80px 0; }
    .ns-faq-title { font-size: 2.3rem; }
    .ns-faq-body { padding: 0 20px 20px 20px; } /* Reset padding for tablet/mobile */
    
    .ns-faq-contact-box { margin-top: 20px; }
    .ns-banner-title { font-size: 1.2rem; }
}

@media (max-width: 575px) {
    .ns-faq-title { font-size: 2rem; }
    .ns-faq-btn { padding: 16px 15px; font-size: 0.95rem; }
    .ns-faq-icon { width: 30px; height: 30px; font-size: 1rem; }
    .ns-faq-body { font-size: 0.9rem; padding: 0 15px 15px 15px; }
    
    .ns-faq-bottom-banner { padding: 25px 20px; text-align: center; }
    .col-lg-6.d-flex { flex-direction: column; align-items: center; text-align: center; }
    
    .ns-newsletter-form { flex-direction: column; border-radius: 16px; padding: 10px; background: transparent; border: none; }
    .ns-newsletter-input { background: #fff !important; border-radius: 50px !important; margin-bottom: 10px; padding: 12px 20px; border: 1px solid rgba(0,0,0,0.1) !important;}
    .ns-btn-dark-subscribe { width: 100%; padding: 12px; }
}


/* ===== CONTACT PAGE (contact.html) — prefix: contact- ===== */
/* Typography and Colors */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --contact-bg-cream: #fdfbf7;
  /* Top section background */
  --contact-bg-white: #ffffff;
  /* Bottom section background */
  --contact-bg-card: #faecec;
  /* Soft pink for branch cards */
  --contact-text-dark: #332626;
  /* Dark text for headings */
  --contact-text-muted: #5a4b4b;
  /* Slightly lighter text for paragraphs */
  --contact-accent-green: #67a992;
  /* Overline and icon color */
}

.page-contact {
  color: var(--contact-text-dark);
  margin: 0;
  padding: 0;
}

/* --- Global Components --- */
.contact-overline {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--contact-accent-green);
  margin-bottom: 0.75rem;
}

.contact-main-heading {
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--contact-text-dark);
  line-height: 1.2;
  margin-bottom: 0;
}

.contact-paragraph-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--contact-text-muted);
  margin-bottom: 0;
}

/* --- Section 1: Contact Header --- */
.contact-header {
  background-color: var(--card-bg);
  padding: 80px 0 60px; 
}

.contact-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.58);
    z-index: 0;
}
.contact-header > .container,
.contact-header .row,
.contact-header .col-lg-6,
.contact-header .col-lg-5 {
    position: relative;
    z-index: 2;
}
.contact-header .contact-overline,
.contact-header .contact-main-heading,
.contact-header .contact-paragraph-text {
    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
}

/* --- Section 2: Branches --- */
.contact-branches-section {
  padding: 80px 0 100px;
}

.contact-branches-section .contact-overline {
  text-align: center;
}

.contact-branches-section .contact-main-heading {
  text-align: center;
  font-size: clamp(2rem, 3.5vw, 2.5rem);
}

/* Branch Card Styling */
.contact-branch-card {
  background-color: var(--card-bg);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.contact-branch-name {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--contact-text-dark);
}

/* Contact Details List */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--contact-text-muted);
  line-height: 1.5;
}

.contact-list li i {
  color: var(--Blue);
  font-size: 1rem;
  margin-top: 2px;
  width: 16px;
  text-align: center;
}

/* Map Link Styling */
.contact-map-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--contact-text-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

.contact-map-link:hover {
  color: var(--contact-accent-green);
}

.contact-map-link i {
  font-size: 0.75rem;
  text-decoration: none;
}

:root {
  --contact-bg-light-pink: #fdf5f5;
  /* Soft background matching the design */
  --contact-bg-white: #ffffff;
  --contact-text-dark: #332626;
  /* Dark text for headings */
  --contact-text-muted: #6c757d;
  /* Muted text for placeholders */
  --contact-accent-green: #67a992;
  /* Overlines and buttons */
  --contact-input-border: #ffcccc;
  /* Soft border for form fields */
}

.page-contact {
  color: var(--contact-text-dark);
  margin: 0;
  padding: 0;
  background-color: var(--contact-bg-light-pink);
}

/* --- Global Components --- */
.contact-overline {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--Blue);
  margin-bottom: 0.75rem;
  text-transform: capitalize;
}

.contact-main-heading {
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  color: var(--contact-text-dark);
  line-height: 1.2;
}

.contact-btn-custom-green {
  background-color: var(--Blue);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: 50px;
  /* Pill shape */
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.3s ease, transform 0.2s ease;
  text-decoration: none;
}

.contact-btn-custom-green:hover {
  opacity: 0.9;
  color: #ffffff;
  transform: translateY(-2px);
}

/* --- Section 1: Contact Form Area --- */
.contact-form-section {
  padding: 80px 0;
}

/* Form Styling */
.contact-form-card {
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--contact-input-border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.contact-custom-input {
  background-color: var(--contact-bg-white);
  border: 1px solid var(--contact-input-border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: var(--contact-text-dark);
  margin-bottom: 1rem;
  box-shadow: none !important;
  transition: border-color 0.3s ease;
}

.contact-custom-input:focus {
  border-color: var(--contact-accent-green);
}

.contact-custom-input::placeholder {
  color: #a39595;
  font-weight: 500;
}

/* Image Placeholder */
.contact-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 450px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* --- Section 2: Map Area --- */
.contact-map-section {
  max-width: 90vw;
  width: 100%;
  border: 10px solid white;
  border-radius: 25px;
  height: 450px;
  line-height: 0;
  margin-bottom: 0;
  margin: auto;
}

.contact-map-section iframe {
  width: 100%;
  height: 100%;
   border-radius: 25px;
  border: 0;
  filter: grayscale(20%) contrast(90%);
  /* Slight styling to match the image tone */
}

/* --- Section 3: Help / CTA Area --- */
.contact-help-section {
  padding: 40px 0;
}

.contact-help-section .contact-main-heading {
  margin-bottom: 0;
}

@media (max-width: 525px){
  .contact-map-section{
    max-width: 100%;
  }
}

/* ==========================================
   OUR GALLERY SECTION STYLES (MOMENTS OF CHANGE)
========================================== */

.ns-gallery-section {
    position: relative;
    padding: 80px 0 60px; 
    overflow: hidden;
}

/* Header Typography */
.ns-gallery-top-icon {
    width: 48px;
    height: 48px;
    background-color: #fff4e6;
    color: var(--Blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 12px auto;
    border: 1px solid rgba(243, 123, 18, 0.2);
}

.ns-gallery-kicker {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--Blue);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.ns-gallery-title {
    font-size: 3.1rem;
    font-weight: 800;
    line-height: 1.15;
    color: #111827;
    margin-bottom: 12px;
    letter-spacing: -0.6px;
}

.ns-highlight-orange {
    color: var(--Blue);
}

.ns-gallery-desc {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #4b5563;
    margin-bottom: 16px;
    max-width: 520px;
}

.ns-gallery-line {
    width: 50px;
    height: 3px;
    background-color: var(--Blue);
    border-radius: 2px;
    margin-bottom: 35px;
}

/* Filter Pills Button Bar */
.ns-filter-btn {
    background-color: #ffffff;
    color: #374151;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    padding: 10px 22px;
    font-size: 0.92rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.ns-filter-btn:hover {
    background-color: #e3fcff;
    color: var(--Blue);
    border-color: rgba(243, 123, 18, 0.3);
}

.ns-filter-btn.active {
    background: linear-gradient(135deg, #911ff9 0%, #3a01e7 100%);
    color: #ffffff !important;
    border-color: #f9881f;
    box-shadow: 0 8px 20px rgb(63 18 243 / 30%);
}

/* 4-Column Card Grid Styling */
.ns-gallery-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 3.1;
    background-color: #eaeaea;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.ns-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}



/* Small Badges inside Card */
.ns-card-badge-left {
    position: absolute;
    bottom: 12px;
    left: 12px;
    width: 32px;
    height: 32px;
    background-color: rgba(17, 24, 39, 0.65);
    color: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    backdrop-filter: blur(4px);
    z-index: 2;
}

.ns-card-badge-right {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background-color: rgba(17, 24, 39, 0.75);
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
    z-index: 2;
}

/* Play Button overlay for Video Cards */
.ns-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 58px;
    height: 58px;
    background-color: rgba(44, 0, 220, 0.9);
    border: 3px solid rgba(255, 255, 255, 0.8);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.ns-play-btn i {
    margin-left: 3px;
}

.ns-video-card:hover .ns-play-btn {
    background-color: #ffffff;
    color: var(--Blue);
    transform: translate(-50%, -50%) scale(1.12);
}

/* Load More Button */
.ns-load-more-btn {
    background-color: transparent;
    color: var(--Blue);
    border: 1.5px solid var(--Blue);
    border-radius: 50px;
    padding: 12px 36px;
    font-size: 0.95rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.ns-load-more-btn:hover {
    background-color: var(--Blue);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(243, 123, 18, 0.25);
}

/* Modal Popup Custom Close Button */
.ns-modal-close {
    filter: invert(1) grayscale(100%) brightness(200%);
    position: absolute;
    right: -30px;
    top: -35px;
    z-index: 10;
    opacity: 0.85;
}

.ns-modal-video-frame,
.ns-lightbox-frame img {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    border-radius: 16px;
    overflow: hidden;
}

.ns-lightbox-caption {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.05rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
========================================== */

@media (max-width: 1199px) {
    .ns-gallery-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 991px) {
    .ns-gallery-section {
        padding: 100px 0 80px 0;
    }
    .ns-gallery-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 767px) {
    .ns-modal-close {
        right: 10px;
        top: -40px;
    }
}

@media (max-width: 575px) {
    .ns-gallery-title {
        font-size: 1.95rem;
    }
    .ns-filter-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}




/* ==========================================
   MISSION HERO SECTION (CUSTOM STYLES)
========================================== */

.mission-hero-section {
    position: relative;
    padding: 80px 0 40px; 
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Gradient Background Layer */
/* .mission-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 85% 50%, rgba(255, 145, 36, 0.18) 0%, rgba(255, 237, 218, 0.4) 45%, rgba(255, 255, 255, 1) 75%);
    z-index: 0;
} */




/* Typography & Content Layout */
.mission-kicker-wrapper {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 24px;
}

.mission-kicker {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--Blue);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.mission-kicker-line {
    width: 60px;
    height: 3px;
    background: var(--Blue);
    border-radius: 2px;
}

.mission-title {
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1.15;
    color: #111827;
    margin-bottom: 28px;
    letter-spacing: -0.5px;
}

.mission-highlight {
    color: var(--Blue);
}

.mission-desc {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #4b5563;
    max-width: 520px;
    margin-bottom: 40px;
}


.mission-btn-icon {
    transition: transform 0.3s ease;
}

.mission-btn-primary:hover .mission-btn-icon {
    transform: translateX(5px);
}

/* Oval Image Frame System */
.mission-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
}

/* .mission-oval-border {
    position: relative;
    width: 100%;
    aspect-ratio: 1.08 / 1;
    background: linear-gradient(145deg, #ffe0c2, #fff4e8);
    border-radius: 50% / 45%;
    padding: 16px;
    box-shadow: 0 25px 60px rgba(220, 110, 10, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
} */

.mission-oval-mask {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.mission-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}



/* Bottom Waves */
/* .mission-hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    pointer-events: none;
}

.mission-hero-wave img {
    width: 100%;
    height: 100%;
    display: block;
} */

/* ==========================================
   RESPONSIVE MEDIA QUERIES
========================================== */

@media (max-width: 1199px) {
    .mission-title {
        font-size: 3rem;
    }
    .mission-hero-section {
        padding: 120px 0 40px 0;
    }
}

@media (max-width: 991px) {
    .mission-hero-section {
        padding: 120px 0 40px 0;
        text-align: center;
        height: 100%;
    }

    .mission-kicker-wrapper {
        align-items: center;
    }

    .mission-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .mission-cta-wrapper {
        margin-bottom: 40px;
    }

    .mission-dots-bottom-center {
        left: 20%;
    }
}

@media (max-width: 575px) {
    .mission-title {
        font-size: 2.3rem;
        margin-bottom: 20px;
    }

    .mission-desc {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .mission-btn-primary {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .mission-oval-border {
        padding: 10px;
    }
}/* ==========================================
   MISSION VISION SECTION (CUSTOM STYLES)
========================================== */

.mission-vision-section {
    position: relative;
    padding: 30px 0 20px; 
    overflow: hidden;
        /* background: radial-gradient(circle at 85% 50%, rgba(255, 145, 36, 0.18) 0%, rgba(255, 237, 218, 0.4) 45%, rgba(255, 255, 255, 1) 75%); */
}



/* Circular Image Frame System (Left Side) */
.mission-vision-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

.mission-vision-circle-mask {
    width: 100%;
    height: 100%;
    border-radius:10px;
    overflow: hidden;
    position: relative;
}

.mission-vision-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.03);
    transition: transform 0.8s ease;
}

.mission-vision-circle-border:hover .mission-vision-img {
    transform: scale(1.08);
}


/* Typography */
.mission-vision-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.18;
    color: #111827;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.mission-vision-desc {
    font-size: 1.1rem;
    line-height: 1.75;
    color: #4b5563;
    max-width: 560px;
    margin-bottom: 35px;
}
.mission-vision-cards-row {
    position: relative;
    z-index: 5; /* Card sabse upar dikhe */
}

.mission-vision-card {
    background-color: #ffffff !important;
    border-radius: 20px !important;
    padding: 30px 20px !important;
    text-align: center !important;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.15) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    opacity: 1 !important; /* GSAP ya kisi script se fade out nahi hoga */
    visibility: visible !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}


.mission-vision-icon-circle {
    width: 64px !important;
    height: 64px !important;
    background: var(--Blue) !important;
    color: #ffffff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.5rem !important;
    margin-bottom: 20px !important;
}

/* Hardcoded Dark Colors for Text (To prevent white-on-white text) */
.mission-vision-card-title {
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    color: #111827 !important; /* Pure dark grey/black */
    margin-bottom: 12px !important;
    line-height: 1.35 !important;
    font-style: normal !important;
}

.mission-vision-card-text {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    color: #4b5563 !important; /* Readable medium grey */
    margin-bottom: 0 !important;
    font-style: normal !important;
}





/* ==========================================
   RESPONSIVE MEDIA QUERIES
========================================== */

@media (max-width: 1199px) {
    .mission-vision-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 991px) {
    .mission-vision-section {
        padding: 80px 0 40px 0;
        text-align: center;
    }

    .mission-kicker-wrapper {
        align-items: center;
    }

    .mission-vision-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .mission-vision-image-wrapper {
        margin-bottom: 30px;
        max-width: 440px;
    }

    .mission-vision-badge-circle {
        width: 75px;
        height: 75px;
        bottom: 20px;
        right: 10px;
    }
}

@media (max-width: 575px) {
    .mission-vision-title {
        font-size: 2.1rem;
    }

    .mission-vision-desc {
        font-size: 0.98rem;
    }

    .mission-vision-card {
        padding: 24px 16px;
    }

    .mission-vision-circle-border {
        padding: 8px;
    }

    .mission-vision-badge-circle {
        width: 60px;
        height: 60px;
    }
}

/* ==========================================
   MISSION MULTI-SECTION (CUSTOM CSS)
========================================== */

/* Section Spacing & Background Tones */
.mission-section-pad {
  padding: 40px 0;
    position: relative !important;
    overflow: hidden !important;
}

.pb-6 {
    padding-bottom: 110px !important;
}

.mission-bg-cream {
    /* background: radial-gradient(circle at 85% 50%, rgba(255, 145, 36, 0.18) 0%, rgba(255, 237, 218, 0.4) 45%, rgba(255, 255, 255, 1) 75%); */
}


/* Typography & Labels */
.mission-kicker {
    display: inline-block !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px !important;
    color: var(--Blue) !important;
    text-transform: uppercase !important;
    margin-bottom: 12px !important;
}

.mission-sec-title {
    font-size: 2.75rem !important;
    font-weight: 800 !important;
    line-height: 1.18 !important;
    color: #111827 !important;
    margin-bottom: 18px !important;
    letter-spacing: -0.5px !important;
}

.mission-sec-desc {
    font-size: 1.05rem !important;
    line-height: 1.7 !important;
    color: #4b5563 !important;
    margin-bottom: 24px !important;
    max-width: 520px !important;
}

/* Rounded Corner Images (Card-like Aspect) */
.mission-rounded-img-frame {
    width: 100% !important;
    border-radius: 30px !important;
    overflow: hidden !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08) !important;
    background-color: #f3f4f6 !important;
    aspect-ratio: 16 / 10 !important;
}

.mission-block-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    transform: scale(1.02);
    transition: transform 0.6s ease !important;
}

.mission-rounded-img-frame:hover .mission-block-img {
    transform: scale(1.06);
}

/* Interactive Orange Icon Badges */
.mission-icon-badge {
    width: 60px !important;
    height: 60px !important;
    background-color: var(--Blue) !important;
    color: #d9f8ff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.35rem !important;
    margin: 0 auto 10px auto !important;
    border: 1px solid rgba(243, 123, 18, 0.15) !important;
    transition: all 0.3s ease !important;
}

.mission-icon-badge:hover {
    background-color: var(--Blue) !important;
    color: #d9f8ff !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 18px rgba(243, 123, 18, 0.3) !important;
}

.mission-icon-label {
    display: block !important;
    font-size: 1.15rem !important;
    font-weight: 600 !important;
    color: #1f2937 !important;
    line-height: 1.35 !important;
}

.mission-stat-num {
    display: block !important;
    font-size: 1.05rem !important;
    font-weight: 800 !important;
    color: #111827 !important;
    margin-bottom: 2px !important;
}

/* CTA Pill Button */
.mission-btn-primary {
    display: inline-flex !important;
    align-items: center !important;
    background: var(--Blue);
    color: #ffffff !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    padding: 15px 34px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.involvement-card{
  background-color: #ffffff !important;
  border-radius: 20px !important;
  padding: 30px 20px !important;
  text-align: center !important;
  height: 100% !important;
  border: 1px solid rgba(0, 0, 0, 0.15) !important;

}

.progrm-card{
      background-color: #ffffff !important;
    border-radius: 20px !important;
    padding: 30px 20px !important;
    text-align: center !important;
    border: 1px solid rgba(0, 0, 0, 0.15) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    opacity: 1 !important;
    visibility: visible !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
========================================== */

@media (max-width: 1199px) {
    .mission-sec-title {
        font-size: 2.3rem !important;
    }
}

@media (max-width: 991px) {
    .mission-section-pad {
        text-align: center !important;
    }

    .mission-sec-desc {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .mission-rounded-img-frame {
        max-width: 540px !important;
        margin: 0 auto !important;
    }
}

@media (max-width: 575px) {
    .mission-sec-title {
        font-size: 1.95rem !important;
    }

    .mission-icon-badge {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.15rem !important;
    }

    .mission-rounded-img-frame {
        border-radius: 20px !important;
    }
}



/* ============================================================
   VOLUNTEER LANDING (become-volunteer.html)
   Prefix: vl-  |  Scope: .page-vl
   Isolated to avoid overrides with volunteer- / base styles
   ============================================================ */

:root {
  --vl-forest: #0b3d36;
  --vl-teal: #0f7b6c;
  --vl-teal-soft: #d8efe9;
  --vl-sand: #f3efe6;
  --vl-ink: #14261f;
  --vl-mute: #5f726a;
  --vl-gold: #e2b457;
  --vl-paper: #faf8f4;
  --vl-head: "Fraunces", Georgia, serif;
  --vl-body: "Manrope", system-ui, sans-serif;
}

.page-vl {
  margin: 0;
  background: var(--vl-paper);
  color: var(--vl-ink);
  line-height: 1.7;
}

.page-vl img {
  display: block;
  max-width: 100%;
}

.vl-wrap {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.vl-eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vl-teal);
}

.vl-eyebrow-light {
  color: #9fd5c8;
}

.page-vl h1,
.page-vl h2,
.vl-way h3 {
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-top: 0;
}

.page-vl h1 em,
.page-vl h2 em {
  font-style: italic;
  font-weight: 600;
  color: var(--vl-gold);
}

.vl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 12px 24px;
  border-radius: 8px;
  border: 0;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.vl-btn:hover {
  transform: translateY(-2px);
}

.vl-btn:focus-visible,
.vl-text-link:focus-visible,
.vl-form input:focus-visible,
.vl-form select:focus-visible,
.vl-form textarea:focus-visible {
  outline: 2px solid var(--vl-gold);
  outline-offset: 3px;
}

.vl-btn-primary {
  background: var(--vl-gold);
  color: #1a2a22;
}

.vl-btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.vl-btn-block {
  width: 100%;
}

.vl-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--vl-teal);
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
}


.text-theme-pink {
  color: var(--Blue);
}

.header-divider {
  color: var(--Blue);
  font-size: 1.2rem;
  position: relative;
  display: inline-block;
  margin-top: 10px;
}

.header-divider::before,
.header-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px;
  height: 2px;
  background-color: var(--Blue);
}

.header-divider::before {
  right: 100%;
  margin-right: 15px;
}

.header-divider::after {
  left: 100%;
  margin-left: 15px;
}

/* === THEME VARIABLES === */
.theme-yellow {
  --bg: #fefdf5;
  --num-bg: #fef08a;
  --text-dark: #1e1e1e;
  --icon-color: #f59e0b;
}

.theme-blue {
  --bg: #f0f7ff;
  --num-bg: #bfdbfe;
  --text-dark: #1e3a8a;
  --icon-color: #60a5fa;
}

.theme-orange {
  --bg: #fff5f0;
  --num-bg: #fed7aa;
  --text-dark: #9a3412;
  --icon-color: #fb923c;
}

.theme-green {
  --bg: #f0fdf4;
  --num-bg: #bbf7d0;
  --text-dark: #166534;
  --icon-color: #4ade80;
}

.theme-purple {
  --bg: #f5f3ff;
  --num-bg: #e9d5ff;
  --text-dark: #5b21b6;
  --icon-color: #a78bfa;
}

.theme-gold {
  --bg: #fefce8;
  --num-bg: #fde047;
  --text-dark: #854d0e;
  --icon-color: #eab308;
}

/* Base Card Styling */
.project-card {
  background-color: var(--bg);
  border-radius: 24px;
  /* box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04); */
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Watermark Icon */
.watermark {
  position: absolute;
  font-size: 180px;
  color: var(--icon-color);
  opacity: 0.05;
  z-index: 0;
  top: 50%;
  transform: translateY(-50%);
}

.watermark-right {
  right: -30px;
}

.watermark-left {
  left: -30px;
}

/* Indicator Column (Number & Icon) */
.indicator-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 20px 10px;
  position: relative;
  z-index: 2;
}

.project-num {
  background-color: var(--num-bg);
  color: var(--text-dark);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 8px 18px;
  border-radius: 12px;
}

.project-icon {
  font-size: 2rem;
  color: var(--icon-color);
}

/* Image Column */
.project-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 16px;
  position: relative;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      object-position: 50% 37%;
}

/* Text & Button Column */
.text-col {
  position: relative;
  z-index: 2;
}

.project-title {
  color: var(--text-dark);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.project-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Read More Button (Dynamic matching theme) */
.btn-read-more {
  border: 2px solid var(--text-dark);
  color: var(--text-dark);
  font-weight: 600;
  padding: 8px 24px;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.btn-read-more:hover {
  background-color: var(--text-dark);
  color: #fff;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .project-img {
    height: 200px;
  }

  .indicator-col {
    flex-direction: row;
    justify-content: flex-start;
    padding-bottom: 0;
    padding-left: 20px;
  }

  .watermark {
    font-size: 120px;
    top: auto;
    bottom: 10%;
  }
}


/* ==========================================
   VOLUNTEER HERO SECTION STYLES
========================================== */

.ns-vol-hero-section {
    position: relative;
    padding: 80px 0 60px; 
    overflow: hidden;
}

.ns-vol-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
     background: rgba(255, 255, 255, 0.85);
    z-index: 0;
}


/* .ns-vol-bg-skyline {
    position: absolute;
    bottom: 0;
    left: 0;
  right: 0;
    z-index: 1;
    pointer-events: none;
}
.ns-vol-bg-skyline::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.85);
    pointer-events: none;
}

.ns-stories-bg-skyline::after{
     content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.85);
    pointer-events: none;
}

.ns-vol-bg-skyline img{
      width: 100%;
    background-size: cover;
    background-position: bottom center;
}

.ns-vol-kicker-wrap {
    margin-bottom: 12px;
}

.ns-vol-kicker {
    display: block;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--Blue);
    text-transform: uppercase;
}

.ns-vol-kicker-line {
    width: 35px;
    height: 3px;
    background-color: var(--Blue);
    margin-top: 6px;
    border-radius: 2px;
}

.ns-vol-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.8px;
}

.ns-highlight-orange {
    color: var(--Blue);
}

.ns-vol-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4b5563;
    max-width: 500px;
}

/* CTA Buttons */
.ns-btn-primary {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #911ff9 0%, #3a01e7 100%);
    color: #ffffff !important;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 10px 20px rgb(18 233 243 / 25%);
}

.ns-btn-primary:hover {
    box-shadow: 0 14px 25px rgb(18 233 243 / 35%);
} 

.ns-btn-outline {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #111827 !important;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}


/* ==========================================
   RIGHT COLUMN: IMAGE COLLAGE
========================================== */
.ns-vol-visuals-col {
    position: relative;
    padding-left: 20px;
}

.ns-vol-collage-wrapper {
    position: relative;
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
    height: 550px;
}


.ns-main-img-box {
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 400px;
    border-radius: 32px;
    overflow: hidden;
    z-index: 2;
}

.ns-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 2. Polaroid Common Styles */
.ns-polaroid {
    position: absolute;
    background-color: #ffffff;
    padding: 8px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    z-index: 3;
    transition: transform 0.4s ease;
}

.ns-polaroid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.ns-pol-badge {
    position: absolute;
    width: 56px;
    height: 56px;
    background-color: var(--Blue);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 10px 20px rgba(243, 123, 18, 0.4);
    border: 3px solid #ffffff;
    z-index: 4;
}




/* 3. Floating Card */
.ns-vol-floating-card {
    position: absolute;
    bottom: 10px;
    left: 40px;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    width: 85%;
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
    border: 1px solid rgba(0,0,0,0.04);
    z-index: 5;
}

.ns-float-icon {
    width: 54px;
    height: 54px;
    background-color: var(--Blue);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.ns-float-text h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 4px;
}

.ns-float-text p {
    font-size: 0.78rem;
    color: #64748b;
    margin-bottom: 0;
    line-height: 1.4;
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
========================================== */
@media (max-width: 1199px) {
    .ns-vol-title { font-size: 2.8rem; }
    .ns-vol-collage-wrapper { transform: scale(0.9); transform-origin: left center; }
}

@media (max-width: 991px) {
    .ns-vol-hero-section { padding: 60px 0 0 0; text-align: center; }
    .ns-vol-kicker-line { margin-left: auto; margin-right: auto; }
    .ns-vol-desc { margin-left: auto; margin-right: auto; }
    .d-flex.flex-wrap { justify-content: center; }
    
    .ns-vol-visuals-col { margin-top: 50px; }
    .ns-vol-collage-wrapper { transform: scale(1); height: auto; padding-bottom: 100px; }
    
    .ns-main-img-box { position: relative; width: 100%; top: 0; height: 350px; }
    .ns-pol-top { display: none; } /* Hide polaroids on mobile for clean layout */
    .ns-pol-bottom { display: none; }
    
    .ns-vol-floating-card { left: 50%; transform: translateX(-50%); }
}

@media (max-width: 575px) {
    .ns-vol-title { font-size: 2.3rem; }
    .ns-btn-primary, .ns-btn-outline { width: 100%; justify-content: center; }

}

/* ==========================================
   WHY VOLUNTEER WITH US - STYLES
========================================== */

.ns-why-section {
    position: relative;
    background-color: #ffffff;
    padding: 90px 0 110px 0;
    overflow: hidden;
}

/* Dots Decoration */
.ns-why-dots {
    position: absolute;
    width: 120px;
    height: 100px;
    background-image: radial-gradient(rgba(243, 123, 18, 0.25) 2.5px, transparent 2.5px);
    background-size: 18px 18px;
    z-index: 1;
    pointer-events: none;
}
.ns-dots-top-right {
    top: 30px;
    right: 3%;
}

/* --- Left Column Styling --- */
.ns-why-content {
    position: relative;
    padding-right: 20px;
}

.ns-why-kicker-wrap {
    margin-bottom: 12px;
}

.ns-why-kicker {
    display: block;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--Blue);
    text-transform: uppercase;
}

.ns-why-kicker-line {
    width: 35px;
    height: 2px;
    background-color: var(--Blue);
    margin-top: 6px;
}

.ns-why-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #111827;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.ns-highlight-orange {
    color: var(--Blue);
}



.ns-why-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 35px;
    max-width: 480px;
}

/* Vertical List */
.ns-list-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.ns-list-item:last-child {
    margin-bottom: 0;
}

.ns-list-icon {
    width: 50px;
    height: 50px;
    background-color: var(--icon-bg);
    color: var(--Blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
        border: 1px solid rgba(0, 0, 0, 0.2);
}

.ns-list-text h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
}

.ns-list-text p {
    font-size: 0.9rem;
    line-height: 1.55;
    color: #64748b;
    margin-bottom: 0;
}

/* --- Right Column Visuals --- */
.ns-visuals-wrapper {
    position: relative;
    padding-left: 30px;
    padding-bottom: 30px;
}

.ns-bg-circle {
    position: absolute;
    top: -20px;
    right: -40px;
    width: 480px;
    height: 480px;
    background-color: #fff9f2;
    border-radius: 50%;
    z-index: 1;
}

.ns-deco-dashed-line {
    position: absolute;
    top: 50%;
    left: -10px;
    width: 60px;
    height: 60px;
    z-index: 5;
    opacity: 0.4;
    transform: translateY(-50%);
}

.ns-image-masonry {
    position: relative;
    z-index: 2;
}

.ns-img-box {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

/* .ns-img-large {
    aspect-ratio: 16 / 9;
} */

.ns-img-small {
    aspect-ratio: 4 / 3;
}

.ns-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* 


.ns-floating-stats-card {
    position: absolute;
    right: -20px;
    bottom: 50px;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 24px;
    width: 280px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border: 1px solid rgba(0,0,0,0.03);
    z-index: 10;
}

.ns-stat-card-icon {
    width: 44px;
    height: 44px;
    background-color: #fff6ee;
    color: var(--Blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

.ns-stat-card-num {
    font-size: 1.4rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 0;
    line-height: 1;
}

.ns-stat-card-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #111827;
}

.ns-stat-card-desc {
    font-size: 0.8rem;
    color: #4b5563;
    line-height: 1.5;
    margin-top: 10px;
    margin-bottom: 0;
}
 */

/* .ns-feature-icon {
    width: 56px;
    height: 56px;
    background-color: var(--icon-bg);
    color: var(--Blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    border: 1px solid rgba(243, 123, 18, 0.2);
} */

.ns-feature-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.ns-feature-desc {
    font-size: 0.88rem;
    line-height: 1.5;
    color: #64748b;
    margin-bottom: 20px;
    flex-grow: 1;
}

.ns-feature-dash {
    width: 20px;
    height: 2px;
    background-color: var(--Blue);
    border-radius: 2px;
}

/* --- Responsive Media Queries --- */
@media (max-width: 1199px) {
    .ns-why-title { font-size: 2.8rem; }
    .ns-bg-circle { width: 400px; height: 400px; top: 0; right: -20px; }
    /* .ns-floating-stats-card { right: 0; width: 250px; padding: 20px; bottom: 30px; } */
   
}

@media (max-width: 991px) {
    .ns-why-section { padding: 60px 0 80px 0; }
    .ns-why-content { padding-right: 0; margin-bottom: 50px; text-align: center; }
    .ns-why-kicker-line { margin-left: auto; margin-right: auto; }
    .ns-why-desc { margin-left: auto; margin-right: auto; }
    .ns-list-item { text-align: left; }
    
    .ns-visuals-wrapper { padding-left: 0; padding-bottom: 0; }
    .ns-bg-circle { left: 50%; transform: translateX(-50%); top: -20px; width: 100%; height: 90%; }
    .ns-deco-dashed-line { display: none; }
    
    .ns-floating-stats-card { position: relative; right: auto; bottom: auto; margin: -40px auto 0 auto; width: 90%; z-index: 10; }
}

@media (max-width: 575px) {
    .ns-why-title { font-size: 2.2rem; }
    .ns-list-item { gap: 15px; }
    .ns-list-icon { width: 45px; height: 45px; font-size: 1.1rem; }
    /* .ns-img-large { aspect-ratio: 4 / 3; } */
    .ns-feature-card { padding: 30px 20px; }
}

/* ==========================================
   WAYS YOU CAN VOLUNTEER SECTION STYLES
========================================== */
.ns-ways-section {
    position: relative;
    background-color: #ffffff;
    padding: 80px 0 40px 0;
    overflow: hidden;
}


/* Header */
.ns-ways-kicker {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--Blue);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.ns-ways-title {
    font-size: 3rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.ns-highlight-orange {
    color: var(--Blue);
}

.ns-ways-desc {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.6;
    max-width: 600px;
}

/* Subtitles (Areas & How it works) */
.ns-section-title-wrap {
    position: relative;
}

.ns-section-subtitle {
    font-size: 1.4rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 6px;
}

.ns-title-underline {
    width: 45px;
    height: 3px;
    background-color: var(--Blue);
    border-radius: 2px;
}

/* AREAS GRID (5 Cards) */
.ns-areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.ns-area-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 18px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.04);
    flex: 1 1 calc(33.333% - 15px);
    min-width: 160px;
    transition: all 0.3s ease;
}

.ns-area-card:hover {
    transform: translateY(-5px);
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.ns-area-icon {
    width: 50px;
    height: 50px;
    background-color: var(--icon-bg);
    color: var(--Blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 16px auto;
    border: 1px solid rgba(0, 0, 0, 0.15);
}

.ns-area-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.ns-area-card p {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.45;
    margin-bottom: 0;
}

/* RIGHT IMAGE & FLOATING CARD */
.ns-ways-visual-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 350px;
}

.ns-ways-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.ns-ways-floating-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 320px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.03);
    z-index: 5;
}

.ns-float-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #911ff9 0%, #3a01e7 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.ns-ways-floating-card h5 {
    font-size: 0.95rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 4px;
}

.ns-ways-floating-card p {
    font-size: 0.78rem;
    color: #64748b;
    margin-bottom: 0;
    line-height: 1.4;
}

/* TIMELINE (HOW IT WORKS) */
.ns-timeline-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.ns-timeline-step {
    text-align: center;
    flex: 1;
}

.ns-step-icon-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.ns-step-icon {
    width: 65px;
    height: 65px;
    background-color: var(--icon-bg);
    color: var(--Blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.ns-step-line {
    position: absolute;
    top: 50%;
    left: 70%;
    width: calc(100% - 20px);
    height: 1px;
    border-top: 2px dashed #e2e8f0;
    z-index: 1;
}

.ns-step-num {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--Blue);
    margin-bottom: 4px;
}

.ns-timeline-step h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
}

.ns-timeline-step p {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.4;
    margin-bottom: 0;
}

/* TESTIMONIAL CARD */
.ns-testimonial-card {
    background-color: var(--card-bg);
    border-radius: 20px;
    padding: 35px 30px;
    border: 1px solid rgba(243, 123, 18, 0.1);
    height: 100%;
}

.ns-quote-icon {
    font-size: 4rem;
    line-height: 0.5;
    font-weight: 800;
    color: var(--Blue);
    margin-bottom: 20px;
}

.ns-testi-text {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 25px;
}

.ns-testi-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(243, 123, 18, 0.15);
    padding-top: 20px;
}

.ns-author-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.ns-testi-author h6 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 2px;
}

.ns-testi-author span {
    font-size: 0.8rem;
    color: #64748b;
}

/* BOTTOM CTA ROW */
.ns-bottom-cta-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ns-cta-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: #111827;
}

.ns-btn-solid {
    background: linear-gradient(135deg, #911ff9 0%, #3a01e7 100%);
    color: #ffffff !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
}

.ns-btn-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(243, 123, 18, 0.3);
}

.ns-hand-curl { width: 50px; height: 30px; }
.ns-hand-heart { width: 40px; height: 40px; }

/* RESPONSIVE */
@media (max-width: 1199px) {
    .ns-ways-floating-card { right: 0; width: 280px; padding: 15px; }
}

@media (max-width: 991px) {
    .ns-ways-section { padding: 60px 0 40px 0; }
    .ns-ways-visual-wrapper { margin-top: 40px; }
    .ns-ways-floating-card { bottom: -20px; right: auto; left: 50%; transform: translateX(-50%); width: 90%; }
    .ns-testimonial-card { margin-top: 30px; }
    
    .ns-timeline-row { flex-direction: column; gap: 30px; }
    .ns-timeline-step { display: flex; align-items: center; text-align: left; gap: 20px; }
    .ns-step-icon-wrap { margin-bottom: 0; }
    .ns-step-line { display: none !important; }
    .ns-timeline-step p { margin-top: 4px; }
}

@media (max-width: 575px) {
    .ns-ways-title { font-size: 2.2rem; }
    .ns-areas-grid { flex-direction: column; }
    .ns-area-card { flex: 1 1 100%; }
    .ns-ways-visual-wrapper { min-height: 250px; }
    .ns-cta-text { width: 100%; text-align: center; }
    .ns-hand-curl { display: none; }
}

/* ==========================================
   STORIES OF CHANGE SECTION STYLES
========================================== */

.ns-stories-section {
    position: relative;
    background-color: #ffffff;
    padding: 80px 0 50px 0;
    overflow: hidden;
}

/* Faint Skyline Background */
.ns-stories-bg-skyline {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;


    z-index: 1;
    pointer-events: none;
    opacity: 0.9;
}

.ns-stories-bg-skyline img{
    width: 100%;
    background-size: cover;
    background-position: bottom center;
}

/* Header */
.ns-stories-kicker-wrap {
    margin-bottom: 12px;
}

.ns-stories-kicker {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--Blue);
    text-transform: uppercase;
}

.ns-stories-kicker-line {
    width: 35px;
    height: 2px;
    background-color: var(--Blue);
    margin-top: 6px;
}

.ns-stories-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 15px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.ns-highlight-orange {
    color: var(--Blue);
}


.ns-stories-desc {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.6;
    max-width: 450px;
    margin-bottom: 20px;
}

/* ==========================================
   TESTIMONIAL CAROUSEL
========================================== */
.ns-testi-carousel-wrapper {
    position: relative;
    padding: 0 45px 0 0; /* Padding for right arrow */
    margin-left: -45px;
    padding-left: 45px;  /* Padding for left arrow */
}

.ns-testi-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    height: 100%;
    min-height: 240px;
}

.ns-quote-icon {
    font-size: 4rem;
    line-height: 0.6;
    font-weight: 800;
    color: var(--Blue);
    margin-bottom: 15px;
}

.ns-testi-text {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 25px;
}

.ns-testi-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ns-testi-author img {
    width: 45px !important;
    height: 45px !important;
    border-radius: 50%;
    object-fit: cover;
}

.ns-testi-author h6 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 2px;
}

.ns-testi-author span {
    font-size: 0.8rem;
    color: #64748b;
}

/* External Arrows Setup */
.ns-testimonial-carousel .owl-nav {
    position: absolute !important;
    top: 50% !important;
    left: 0 !important;
    width: 100% !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    justify-content: space-between !important;
    pointer-events: none !important;
    margin-top: 0 !important;
}

.ns-testimonial-carousel .owl-nav button.owl-prev,
.ns-testimonial-carousel .owl-nav button.owl-next {
    width: 40px !important;
    height: 40px !important;
    background-color: var(--icon-bg) !important; 
    color: var(--Blue) !important;            
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    pointer-events: auto !important;
    transition: all 0.3s ease !important;
    border: none !important;
    box-shadow: 0 4px 10px rgba(243, 123, 18, 0.1) !important;
}

.ns-testimonial-carousel .owl-nav button.owl-prev { margin-left: -40px !important; }
.ns-testimonial-carousel .owl-nav button.owl-next { margin-right: -40px !important; }

.ns-testimonial-carousel .owl-nav button:hover {
    background-color: var(--Blue) !important;
    color: #ffffff !important;
}

/* Dots Setup */
.ns-testimonial-carousel .owl-dots {
    position: absolute;
    bottom: 35px;
    right: 30px;
    margin: 0 !important;
    display: flex;
    gap: 6px;
}

.ns-testimonial-carousel .owl-dots .owl-dot span {
    width: 6px;
    height: 6px;
    margin: 0;
    background: #e2e8f0;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.ns-testimonial-carousel .owl-dots .owl-dot.active span {
    background: var(--Blue);
}

/* ==========================================
   IMAGE COLLAGE
========================================== */
/* .ns-stories-collage {
    height: 420px;
} */
.ns-collage-img {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* ==========================================
   SUBTITLE & FEATURE CARDS
========================================== */
.ns-section-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
}

.ns-feature-card {
    background-color: #cffbff;
    border-radius: 20px;
    padding: 35px 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.ns-feature-card:hover {
    border-color: rgba(243, 123, 18, 0.15);
}

.ns-feature-icon {
    width: 60px;
    height: 60px;
    color: var(--Blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.ns-feature-card h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 10px;
}

.ns-feature-card p {
    font-size: 0.88rem;
    line-height: 1.5;
    color: #64748b;
    margin-bottom: 0;
}

/* ==========================================
   BOTTOM CTA
========================================== */
.ns-cta-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
}

.ns-btn-solid {
    background: linear-gradient(135deg, #911ff9 0%, #3a01e7 100%);
    color: #ffffff !important;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
}

.ns-btn-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(243, 123, 18, 0.3);
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
========================================== */
@media (max-width: 1199px) {
    .ns-stories-title { font-size: 2.8rem; }
    .ns-stories-collage { height: 380px; }
}

@media (max-width: 991px) {
    .ns-stories-section { padding: 60px 0 80px 0; }
    .ns-stories-content {  text-align: center; }
    .ns-stories-kicker-line { margin-left: auto; margin-right: auto; }
    .ns-stories-desc { margin-left: auto; margin-right: auto; }
 
    
    .ns-testi-carousel-wrapper { padding: 0; margin-left: 0; }
    .ns-testimonial-carousel .owl-nav { display: none !important; }
    .ns-testimonial-carousel .owl-dots { position: relative; bottom: auto; right: auto; justify-content: center; margin-top: 20px !important; }
    
    .ns-stories-collage { height: 350px; }
}

@media (max-width: 575px) {
    .ns-stories-title { font-size: 2.2rem; }
    .ns-stories-collage { height: auto; }
    .ns-stories-collage .row { flex-direction: column; }
    .ns-stories-collage .col-6 { width: 100%;}
    .ns-stories-collage .col-6.d-flex { height: auto !important; flex-direction: row !important; }
    .ns-stories-collage .col-6.d-flex img { height: 150px !important; width: 50% !important; }
    
    .ns-section-subtitle { font-size: 1.2rem; }
}

/* ============================================
   Donation Landing Page — scoped styles
   All selectors use .donation-* to avoid clashes
   ============================================ */

:root {
  --donation-blue-soft: #f1f9ff;
  --donation-orange-badge: #fff5eb;
  --donation-navy: #1a2b49;
  --donation-navy-deep: #0a1b39;
  --donation-text: #5c6578;
  --donation-text-soft: #7a8499;
  --donation-bg: #fdfbf7;
  --donation-bg-warm: #fcf9f4;
  --donation-white: #ffffff;
  --donation-border: #e8e4dc;
  --donation-olive: #5a6b3a;
  --donation-impact-bg: #f7f6f0;
  --donation-quote-bg: #eef5e6;
  --donation-green: #4a8c5c;
  --donation-blue: #4a90a4;
  --donation-radius-card: 28px;
  --donation-radius-btn: 12px;
  --donation-shadow: 0 20px 60px rgba(26, 43, 73, 0.08);
  --donation-font-serif: "Playfair Display", Georgia, serif;
  --donation-font-sans: "Inter", system-ui, sans-serif;
  --donation-font-script: "Caveat", cursive;
}

/* ---- Base ---- */
.donation-page {
  color: var(--donation-navy);
  background: var(--donation-bg);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.donation-page *,
.donation-page *::before,
.donation-page *::after {
  box-sizing: border-box;
}

/* ---- Hero ---- */
.donation-hero-section {
  position: relative;
  min-height: 92vh;
  padding: 125px 0 60px; 
  overflow: hidden;
}

.donation-hero-section::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 82%); 
    z-index: 1;
}

.donation-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.donation-hero-bg::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 180px;
  background: linear-gradient(to bottom, rgba(253, 251, 249, 0) 0%, #fdfbf9 100%);
  z-index: 1;
  pointer-events: none;
}

/* .donation-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(253, 251, 247, 0.97) 0%,
    rgba(253, 251, 247, 0.92) 38%,
    rgba(253, 251, 247, 0.55) 55%,
    rgba(253, 251, 247, 0.15) 72%,
    rgba(253, 251, 247, 0) 100%
  );
} */

.donation-hero-container {
  position: relative;
  z-index: 2;
  padding-top: 15px;
}

.donation-hero-content {
  max-width: 540px;
}

.donation-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: var(--donation-orange-badge);
  color: var(--Blue);
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.donation-hero-badge i {
  font-size: 0.75rem;
}

.donation-hero-title {
  font-weight: 700;
  font-size: clamp(2.1rem, 4vw, 3.15rem);
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 1.1rem;
}

.donation-hero-script {
  font-weight: 700;
  font-size: 1.35em;
  color: var(--Blue);
  display: inline-block;
  line-height: 1;
  vertical-align: baseline;
}

.donation-hero-heart {
  color: var(--Blue);
  font-size: 0.7em;
  margin-left: 0.15rem;
  vertical-align: middle;
}

.donation-hero-text {
  color: var(--donation-text);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 460px;
}

.donation-hero-features {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-bottom: 1.75rem;
}

.donation-hero-feature {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--Blue);
  font-size: 0.9rem;
  font-weight: 600;
}

.donation-hero-feature i {
  font-size: 1rem;
}

.donation-hero-feature-divider {
  width: 1px;
  height: 18px;
  background: #e0d5c8;
}

.donation-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.donation-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--Blue) !important;
  border: 2px solid var(--Blue) !important;
  color: #fff !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(230, 126, 34, 0.35);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.donation-btn-primary:hover,
.donation-btn-primary:focus {
  background: var(--black) !important;
  border-color: var(--black) !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(230, 126, 34, 0.4);
}

.donation-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.85) !important;
  border: 2px solid var(--Blue) !important;
  color: var(--Blue) !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}

.donation-btn-outline:hover,
.donation-btn-outline:focus {
  background: var(--donation-blue-soft) !important;
  color: var(--black) !important;
}

/* .donation-hero-trust {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--donation-text-soft);
  font-size: 0.82rem;
  margin: 0;
}

.donation-hero-trust i {
  color: var(--Blue);
  font-size: 0.95rem;
} */

/* Floating kindness card */
.donation-hero-visual {
  position: relative;
  min-height: 420px;
}
/* 
.donation-float-card {
  position: absolute;
  right: 8%;
  bottom: 8%;
  max-width: 240px;
  background: var(--donation-white);
  border-radius: 16px;
  padding: 1.1rem 1.15rem;
  box-shadow: 0 12px 40px rgba(26, 43, 73, 0.15);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  animation: donation-float 4s ease-in-out infinite;
}

.donation-float-card-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--donation-blue-soft);
  color: var(--Blue);
  display: grid;
  place-items: center;
  font-size: 0.9rem;
}

.donation-float-card-text {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--donation-navy);
}

.donation-float-card-text strong {
  color: var(--Blue);
  font-weight: 600;
}

@keyframes donation-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
} */

/* ---- Main section / card ---- */
.donation-main-section {
  position: relative;
  z-index: 3;
  margin-top: -5.5rem;
  padding-bottom: 3rem;
  background: transparent;
}

.donation-card {
  background: var(--donation-white);
  border-radius: var(--donation-radius-card);
  box-shadow: var(--donation-shadow);
  overflow: hidden;
  border: 1px solid rgba(232, 228, 220, 0.6);
}

.donation-form-col {
  background: var(--donation-white);
}

.donation-form-container {
  padding: 2.5rem 2.25rem 2rem;
}

.donation-section-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--Blue);
  margin-bottom: 0.4rem;
}

.donation-form-heading {
  font-weight: 700;
  font-size: clamp(1.55rem, 2.5vw, 1.95rem);
  color: var(--donation-navy-deep);
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

/* Amount grid */
.donation-amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.donation-amount-btn {
  position: relative;
  appearance: none;
  border: 1.5px solid var(--donation-border);
  background: var(--donation-white);
  color: var(--donation-navy);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.95rem 0.5rem;
  border-radius: var(--donation-radius-btn);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
}

.donation-amount-btn:hover {
  border-color: var(--Blue);
  color: var(--Blue);
}

.donation-amount-btn.is-active {
  background: var(--donation-blue-soft);
  border-color: var(--Blue);
  color: #000;
  box-shadow: 0 0 0 1px var(--Blue);
}

.donation-amount-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--Blue);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  white-space: nowrap;
  line-height: 1.2;
}

.donation-amount-other {
  position: relative;
  display: flex;
  align-items: center;
  border: 1.5px solid var(--donation-border);
  border-radius: var(--donation-radius-btn);
  background: var(--donation-white);
  padding: 0 0.75rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.donation-amount-other.is-active {
  border-color: var(--Blue);
  box-shadow: 0 0 0 1px var(--Blue);
  background: var(--donation-blue-soft);
}

.donation-amount-other-prefix {
  color: var(--donation-text-soft);
  font-weight: 600;
  font-size: 0.95rem;
  margin-right: 0.25rem;
}

.donation-amount-other-input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  padding: 0.95rem 0;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--donation-navy);
}

.donation-amount-other-input::placeholder {
  color: var(--donation-text-soft);
  font-weight: 500;
}

.donation-amount-other-input::-webkit-outer-spin-button,
.donation-amount-other-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.donation-amount-other-input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

/* Monthly checkbox */
.donation-monthly-option {
  margin-bottom: 1.5rem;
}

.donation-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  margin: 0;
}

.donation-checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.donation-checkbox-custom {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border: 1.5px solid #c8c2b6;
  border-radius: 5px;
  background: #fff;
  position: relative;
  transition: border-color 0.15s, background 0.15s;
}

.donation-checkbox:checked + .donation-checkbox-custom {
  background: var(--Blue);
  border-color: var(--Blue);
}

.donation-checkbox:checked + .donation-checkbox-custom::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.donation-checkbox-copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.donation-checkbox-title {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--donation-navy);
}

.donation-checkbox-hint {
  font-size: 0.78rem;
  color: var(--donation-text-soft);
  line-height: 1.4;
}

/* Details */
.donation-details-label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--donation-text-soft);
  margin-bottom: 0.85rem;
}

.donation-input-group {
  position: relative;
}

.donation-input-icon {
  position: absolute;
  left: 0.95rem;
  top: 50%;
  transform: translateY(-50%);
  color: #a8a294;
  font-size: 1rem;
  z-index: 2;
  pointer-events: none;
}

.donation-input-group--textarea .donation-input-icon {
  top: 1.1rem;
  transform: none;
}

.donation-input.form-control,
.donation-page .donation-input {
  border: 1.5px solid var(--donation-border);
  border-radius: 10px;
  padding: 0.8rem 0.9rem 0.8rem 2.5rem;
  font-size: 0.9rem;
  color: var(--donation-navy);
  background: #fafaf8;
  box-shadow: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.donation-input.form-control:focus,
.donation-page .donation-input:focus {
  border-color: var(--Blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.15);
  outline: none;
}

.donation-textarea {
  resize: vertical;
  min-height: 90px;
}

.donation-input.is-invalid {
  border-color: #dc3545;
}

/* Submit */
.donation-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  margin-top: 1.35rem;
  padding: 0.95rem 1.5rem;
  background: var(--Blue) !important;
  border: none !important;
  color: #fff !important;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 12px;
  transition: background 0.2s, transform 0.2s;
}

.donation-submit-btn:hover,
.donation-submit-btn:focus {
  background: var(--black) !important;
  color: #fff !important;
  transform: translateY(-1px);
}

.donation-payment-footer {
  margin-top: 1.25rem;
  text-align: center;
}

.donation-payment-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.65rem;
}

.donation-pay-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  min-width: 48px;
  padding: 0 0.5rem;
  border-radius: 6px;
  border: 1px solid var(--donation-border);
  background: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #555;
}

.donation-pay-visa {
  color: #1a1f71;
  font-style: italic;
}

.donation-pay-mc {
  gap: 0;
  min-width: 42px;
  padding: 0 0.35rem;
}

.donation-pay-mc span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
}

.donation-pay-mc span:first-child {
  background: #eb001b;
  margin-right: -5px;
  z-index: 1;
}

.donation-pay-mc span:last-child {
  background: #f79e1b;
}

.donation-pay-upi {
  color: #097939;
}

.donation-pay-paytm {
  color: #00baf2;
  text-transform: none;
  letter-spacing: 0;
}

.donation-pay-gpay {
  color: #4285f4;
  text-transform: none;
  letter-spacing: 0;
}

.donation-secured-by {
  margin: 0;
  font-size: 0.78rem;
  color: var(--donation-text-soft);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.donation-secured-by i {
  color: var(--donation-green);
}

/* ---- Impact column ---- */
.donation-impact-col {
  /* background: var(--card-bg); */
}

.donation-impact-info {
  padding: 2.5rem 2rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.donation-impact-heading {
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--black);
  margin-bottom: 1.15rem;
}

.donation-impact-image-wrap {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.35rem;
  aspect-ratio: 16 / 10;
}

.donation-impact-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.donation-impact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.donation-impact-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.donation-impact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1rem;
  color: #fff;
}

.donation-impact-icon--green {
  background: var(--donation-green);
}

.donation-impact-icon--blue {
  background: var(--donation-blue);
}

.donation-impact-icon--orange {
  background: var(--Blue);
}

.donation-impact-item-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--donation-navy);
  margin: 0 0 0.2rem;
}

.donation-impact-item-text {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--donation-text);
}

.donation-quote-box {
  margin: auto 0 0;
  background: var(--card-bg);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.donation-quote-icon {
  color: var(--donation-green);
  font-size: 1.1rem;
  margin-top: 0.15rem;
}

.donation-quote-text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--donation-navy);
  font-style: italic;
}

.donation-quote-text cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 0.8rem;
  margin-top: 0.35rem;
  color: var(--Blue);
}

/* ---- Footer ---- */
.donation-footer {
  background: var(--donation-bg);
  padding: 1rem 0 0;
  margin-top: -1px;
}

.donation-footer-skyline {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.donation-footer-svg {
  width: 100%;
  height: auto;
  display: block;
  max-height: 140px;
}

/* ---- Toast ---- */
.donation-toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--donation-navy);
  color: #fff;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transition: transform 0.35s ease;
  max-width: calc(100vw - 2rem);
}

.donation-toast.is-visible {
  transform: translateX(-50%) translateY(0);
}

.donation-toast i {
  color: #6fcf97;
  font-size: 1.15rem;
}

.donation-toast[hidden] {
  display: none;
}

.donation-toast:not([hidden]) {
  display: flex;
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
  .donation-hero-section {
    min-height: auto;
    padding: 3rem 0 7rem;
  }

  .donation-hero-bg {
    background-position: 70% center;
  }

  .donation-hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(253, 251, 247, 0.96) 0%,
      rgba(253, 251, 247, 0.9) 55%,
      rgba(253, 251, 247, 0.75) 100%
    );
  }

  .donation-hero-content {
    max-width: 100%;
  }

  .donation-main-section {
    margin-top: -4rem;
  }

  .donation-form-container,
  .donation-impact-info {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .donation-hero-section {
    padding: 106px 0;
  }


  .donation-hero-features {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }

  .donation-hero-feature-divider {
    display: none;
  }

  .donation-hero-ctas {
    flex-direction: column;
  }

  .donation-btn-primary,
  .donation-btn-outline {
    width: 100%;
    justify-content: center;
  }

  .donation-amount-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .donation-card {
    border-radius: 20px;
  }

  .donation-form-container,
  .donation-impact-info {
    padding: 1.5rem 1.15rem;
  }
}


/* ============================================
   SITE FOOTER — whole page footer (not donation form)
   Prefixed: site-footer-* to avoid Bootstrap clashes
   ============================================ */

.site-footer {
  --sf-coral: #ff6f42;
  --sf-coral-dark: #e85a30;
  --sf-navy: #1a2533;
  --sf-cream: #fffbf6;
  --sf-peach: #ffedd5;
  --sf-muted: #94a3b8;
  --sf-text: #000000;
  margin-top: 3rem;
  position: relative;
  width: 100%;
}

/* ---------- CTA Banner ---------- */
.site-footer-cta {
  background: transparent;
  position: relative;
  z-index: 2;
}

.site-footer-cta-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: -2.75rem;
  position: relative;
  z-index: 3;
}

.site-footer-cta-row {
  min-height: 210px;
}

.site-footer-cta-left {
  padding: 2rem 1.75rem 2rem 2.25rem;
  display: flex;
  align-items: center;
}

.site-footer-cta-left-inner {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.site-footer-cta-icon {
  line-height: 0;
}

.site-footer-cta-title {
  font-size: clamp(1.2rem, 2.1vw, 1.5rem);
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
  margin: 0;
}

.site-footer-cta-title span {
  color: var(--Blue);
}

.site-footer-cta-text {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: #64748b;
  max-width: 300px;
}

.site-footer-cta-mid {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.75rem 1.25rem;
  position: relative;
}

.site-footer-cta-mid::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16%;
  bottom: 16%;
  border-left: 1.5px dashed #e8cbb8;
}

.site-footer-cta-mid-inner {
  text-align: center;
  width: 100%;
  max-width: 280px;
}

.site-footer-cta-script {
  font-size: 1.4rem;
  color: #334155;
  margin: 0 0 1rem;
  line-height: 1.35;
}

.site-footer-cta-script em {
  font-style: normal;
  font-weight: 700;
  color: var(--Blue);
  font-size: 0.92em;
}

.site-footer-donate-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--Blue) !important;
  border: none !important;
  color: #fff !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  transition: background 0.2s, transform 0.2s;
  width: 100%;
  max-width: 230px;
  text-decoration: none;
}

.site-footer-donate-btn:hover,
.site-footer-donate-btn:focus {
  color: #fff !important;
  transform: translateY(-1px);
}

.site-footer-secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin: 0.8rem 0 0;
  font-size: 0.76rem;
  color: #64748b;
}

.site-footer-secure-note i {
  color: #22a06b;
}

.site-footer-cta-photo-col {
  position: relative;
  min-height: 210px;
  padding: 0;
}

.site-footer-cta-photo-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.site-footer-cta-photo {
    width: 44%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 3%;
    display: block;
}

/* ---------- Main navy body ---------- */
.site-footer-body {
  background: #f5f9ff;
  color: #fff;
  padding: 5.25rem 0 2.75rem;
}

.site-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #fff;
  margin-bottom: 1rem;
}

.site-footer-brand:hover {
  color: #fff;
}

.site-footer-brand-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 111, 66, 0.16);
  color: var(--Blue);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}

.site-footer-brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.site-footer-brand-copy strong {
  font-size: 1.08rem;
  font-weight: 700;
  color: #000000;
}

.site-footer-brand-copy small {
  font-size: 0.72rem;
  color: var(--Blue);
  font-weight: 500;
  margin-top: 0.18rem;
}

.site-footer-about-text {
  font-size: 0.83rem;
  line-height: 1.65;
  color: var(--sf-muted);
  margin-bottom: 1.25rem;
  max-width: 270px;
}

.site-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.site-footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #000000;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.site-footer-social-link:hover {
  background: var(--Blue);
  border-color: var(--Blue);
  color: #fff;
}

.site-footer-heading {
  font-size: 0.98rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1.15rem;
}

.site-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.58rem;
}

.site-footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--sf-text);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.15s, transform 0.15s;
}

.site-footer-links a:hover {
  color: var(--Blue);
  transform: translateX(2px);
}

.site-footer-links--arrows a i {
  font-size: 0.72rem;
  color: var(--Blue);
}

.site-footer-links--icons a i {
  font-size: 0.92rem;
  color: var(--Blue);
  width: 1.15rem;
  text-align: center;
}

.site-footer-newsletter-text {
  font-size: 0.8rem;
  color: var(--sf-muted);
  margin-bottom: 0.8rem;
  line-height: 1.5;
}

.site-footer-newsletter {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1.3rem;
}

.site-footer-newsletter-input {
  flex: 1;
  min-width: 0;
  border: none;
  border-radius: 10px;
  padding: 0.72rem 0.9rem;
  font-size: 0.85rem;
  outline: none;
}

.site-footer-newsletter-input:focus {
  box-shadow: 0 0 0 3px rgba(255, 111, 66, 0.35);
}

.site-footer-newsletter-btn {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: none;
  border-radius: 10px;
  background: var(--Blue);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s;
}

.site-footer-newsletter-btn:hover {
  background: var(--sf-coral-dark);
}

.site-footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.site-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.83rem;
  color: var(--sf-text);
  line-height: 1.4;
}

.site-footer-contact i {
  color: var(--Blue);
  margin-top: 0.12rem;
  flex-shrink: 0;
}

.site-footer-contact a {
  color: var(--sf-text);
  text-decoration: none;
}

.site-footer-contact a:hover {
  color: var(--Blue);
}

/* Mobile accordion */
.site-footer-mobile {
  padding-top: 0.15rem;
}

.site-footer-mobile .site-footer-about-text {
  max-width: none;
}

.site-footer-mobile .site-footer-brand {
  margin-bottom: 0.85rem;
}

.site-footer-mobile-about {
  margin-bottom: 1.4rem;
}

.site-footer-accordion {
  --bs-accordion-bg: transparent;
  --bs-accordion-border-color: rgba(255, 255, 255, 0.12);
  border: none;
  margin-bottom: 1.5rem;
}

.site-footer-acc-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer-acc-btn.accordion-button {
  background: transparent !important;
  color: #000 !important;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: none !important;
  padding: 1rem 0;
}

.site-footer-acc-btn.accordion-button::after {
  filter: invert(1);
}

.site-footer-acc-btn.accordion-button:not(.collapsed) {
  color: var(--Blue) !important;
}

.site-footer-accordion .accordion-body {
  padding: 0 0 1rem;
}

.site-footer-mobile-connect {
  margin-top: 0.35rem;
}

/* ---------- Trust bar ---------- */
.site-footer-trust {
  background: #f5f9ff;
  padding: 1.15rem 0;
}

.site-footer-trust-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}

.site-footer-trust-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.site-footer-trust-item > i {
  font-size: 1.5rem;
  color: var(--Blue);
}

.site-footer-trust-item strong {
  display: block;
  font-size: 0.9rem;
  color: #1e293b;
  font-weight: 700;
}

.site-footer-trust-item span {
  display: block;
  font-size: 0.72rem;
  color: #64748b;
}

.site-footer-trust-divider {
  width: 1px;
  height: 38px;
  background: #e8d5c4;
}

.site-footer-payments {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem 0.9rem;
}

.site-footer-payments-label {
  font-size: 0.84rem;
  font-weight: 600;
  color: #1e293b;
}

.site-footer-pay-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}

.site-footer-pay-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  min-width: 46px;
  padding: 0 0.45rem;
  border-radius: 6px;
  border: 1px solid #e5ddd0;
  background: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #555;
}

.site-footer-pay-visa {
  color: #1a1f71;
  font-style: italic;
}

.site-footer-pay-mc {
  gap: 0;
  min-width: 42px;
}

.site-footer-pay-mc span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
}

.site-footer-pay-mc span:first-child {
  background: #eb001b;
  margin-right: -5px;
  z-index: 1;
}

.site-footer-pay-mc span:last-child {
  background: #f79e1b;
}

.site-footer-pay-upi {
  color: #097939;
}

.site-footer-pay-paytm {
  color: #00baf2;
  letter-spacing: 0;
}

.site-footer-pay-gpay {
  color: #4285f4;
  letter-spacing: 0;
}

/* ---------- Copyright ---------- */
.site-footer-copy {
  background: #f5f9ff;
  padding: 0.9rem 0;
}

.site-footer-copy-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
}

.site-footer-copy-text {
  margin: 0;
  font-size: 0.8rem;
  color: #64748b;
}

.site-footer-copy-links {
  margin: 0;
  font-size: 0.8rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.site-footer-copy-links a {
  color: #64748b;
  text-decoration: none;
}

.site-footer-copy-links a:hover {
  color: var(--Blue);
  text-decoration: underline;
}

/* ---------- Back to top ---------- */
.site-footer-back-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--Blue);
  color: #fff;
  font-size: 1.15rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s, background 0.2s;
}

.site-footer-back-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-footer-back-top:hover {
  background: var(--Blue);
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .site-footer {
    margin-top: 2rem;
  }

  .site-footer-cta-card {
    margin-bottom: 0;
    border-radius: 18px;
  }

  .site-footer-cta {
    padding: 0 0 1.25rem;
  }

  .site-footer-cta-mid::before {
    display: none;
  }

  .site-footer-cta-left,
  .site-footer-cta-mid {
    padding: 1.4rem 1.25rem;
  }

  .site-footer-cta-mid-inner {
    max-width: none;
  }

  .site-footer-donate-btn {
    max-width: none;
  }

  .site-footer-cta-text {
    max-width: none;
  }

  .site-footer-body {
    padding: 2.5rem 0 2rem;
  }

  .site-footer-trust-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer-trust-divider {
    display: none;
  }

  /* Mobile copyright: coral bar, white text */
  .site-footer-copy {
    background: var(--Blue);
  }

  .site-footer-copy-inner {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .site-footer-copy-text,
  .site-footer-copy-links,
  .site-footer-copy-links a {
    color: #fff;
  }

  .site-footer-copy-links a:hover {
    color: #fff;
    text-decoration: underline;
  }
}

@media (max-width: 575.98px) {
  .site-footer-payments {
    width: 100%;
  }
}


/* ============================================
   Newsletter Details — scoped styles
   All selectors use .newsletter-details-* 
   ============================================ */

:root {
  --newsletter-details-black: #00000069;
  --newsletter-details-black-dark: #00000090;
  --newsletter-details-black-soft: #00000030;
  --newsletter-details-black-tint: #00000010;
  --newsletter-details-navy: var(--Blue);
  --newsletter-details-navy-deep: #0d1452;
  --newsletter-details-text: #4a5568;
  --newsletter-details-text-soft: #6b7280;
  --newsletter-details-bg: #ffffff;
  --newsletter-details-cream: #faf6f1;
  --newsletter-details-voices-bg: #eef2f7;
  --newsletter-details-border: #e8e4de;
  --newsletter-details-white: #ffffff;
  --newsletter-details-radius: 12px;
  --newsletter-details-radius-sm: 8px;
  --newsletter-details-shadow: 0 12px 40px rgba(26, 35, 126, 0.08);
}

.newsletter-details-page {
  color: var(--newsletter-details-navy);
  background: var(--newsletter-details-bg);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.newsletter-details-page *,
.newsletter-details-page *::before,
.newsletter-details-page *::after {
  box-sizing: border-box;
}

/* ---- Hero ---- */
.newsletter-details-hero {
  position: relative;
  min-height: 520px;
  padding: 4.5rem 0 0;
  overflow: hidden;
  color: var(--newsletter-details-white);
}

.newsletter-details-hero-bg {
  position: absolute;
  inset: 0;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  transform: scale(1.02);
}

.newsletter-details-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      100deg,
      rgba(10, 16, 48, 0.88) 0%,
      rgba(10, 16, 48, 0.72) 42%,
      rgba(10, 16, 48, 0.45) 68%,
      rgba(10, 16, 48, 0.35) 100%
    ),
    linear-gradient(
      to top,
      rgba(10, 16, 48, 0.55) 0%,
      transparent 42%
    );
}

.newsletter-details-hero-inner {
  position: relative;
  z-index: 2;
}

.newsletter-details-hero-row {
  min-height: 440px;
}

.newsletter-details-hero-content {
  padding-bottom: 2.75rem;
}

.newsletter-details-hero-badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: var(--newsletter-details-black);
  color: var(--newsletter-details-white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 4px;
  margin-bottom: 1.15rem;
}

.newsletter-details-hero-title {
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--newsletter-details-white);
  max-width: 16ch;
}

.newsletter-details-hero-quote {
  font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 500;
  opacity: 0.95;
  margin: 0 0 2rem;
  max-width: 28ch;
}

.newsletter-details-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
}

.newsletter-details-hero-meta-item {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.35;
  max-width: 260px;
}

.newsletter-details-hero-meta-item i {
  color: var(--newsletter-details-black);
  font-size: 1.05rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}
/* 
.newsletter-details-hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  position: relative;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to top, transparent 0%, black 8%),
    radial-gradient(ellipse 72% 88% at 50% 58%, black 52%, transparent 78%);
  mask-image: linear-gradient(to top, transparent 0%, black 8%),
    radial-gradient(ellipse 72% 88% at 50% 58%, black 52%, transparent 78%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

.newsletter-details-hero-girl {
  display: block;
  width: min(100%, 440px);
  height: auto;
  max-height: 500px;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 22px 48px rgba(0, 0, 0, 0.4));
  animation: newsletter-details-float 5.5s ease-in-out infinite;
}

@keyframes newsletter-details-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
} */

/* ---- Main layout ---- */
.newsletter-details-main {
  padding: 3.25rem 0 4rem;
  background: var(--newsletter-details-bg);
}

.newsletter-details-block {
  margin-bottom: 2.75rem;
}

.newsletter-details-heading {
  font-size: clamp(1.45rem, 2.4vw, 1.75rem);
  font-weight: 700;
  color: var(--newsletter-details-navy);
  margin: 0 0 1.15rem;
  position: relative;
  padding-bottom: 0.65rem;
}

.newsletter-details-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 3px;
  background: var(--newsletter-details-black);
  border-radius: 2px;
}

.newsletter-details-text {
  color: var(--newsletter-details-text);
  font-size: 0.98rem;
  line-height: 1.75;
  margin: 0 0 1rem;
}

.newsletter-details-text:last-child {
  margin-bottom: 0;
}

/* ---- Objectives ---- */
.newsletter-details-objective-card {
  height: 100%;
  background: var(--newsletter-details-white);
  border: 1px solid var(--newsletter-details-border);
  border-top: 4px solid var(--newsletter-details-black);
  border-radius: var(--newsletter-details-radius-sm);
  padding: 1.25rem 1.2rem 1.35rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.newsletter-details-objective-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--newsletter-details-shadow);
}

.newsletter-details-objective-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.45rem;
  background: var(--newsletter-details-black);
  color: var(--newsletter-details-white);
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 4px;
  margin-bottom: 0.85rem;
}

.newsletter-details-objective-title {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--newsletter-details-navy);
  margin: 0 0 0.45rem;
}

.newsletter-details-objective-text {
  color: var(--newsletter-details-text-soft);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* ---- Checklist ---- */
.newsletter-details-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.newsletter-details-checklist li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.newsletter-details-checklist i {
  color: var(--newsletter-details-black);
  font-size: 1.2rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.newsletter-details-checklist strong {
  display: block;
  color: var(--newsletter-details-navy);
  font-size: 0.98rem;
  margin-bottom: 0.2rem;
}

.newsletter-details-checklist span {
  display: block;
  color: var(--newsletter-details-text);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* ---- Stats ---- */
.newsletter-details-impact-intro {
  margin-bottom: 1.35rem;
}

.newsletter-details-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}

.newsletter-details-stat-box {
  background: var(--card-bg);
  border-radius: var(--newsletter-details-radius-sm);
  padding: 1.15rem 0.65rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  transition: transform 0.25s ease;
}

.newsletter-details-stat-box:hover {
  transform: translateY(-2px);
}

.newsletter-details-stat-box i {
  color: var(--newsletter-details-black);
  font-size: 1.25rem;
}

.newsletter-details-stat-num {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--newsletter-details-navy);
  line-height: 1.2;
}

.newsletter-details-stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--newsletter-details-text-soft);
  line-height: 1.3;
}

/* ---- Sidebar ---- */
.newsletter-details-sidebar-sticky {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 992px) {
  .newsletter-details-sidebar-sticky {
    position: sticky;
    top: 1.5rem;
  }
}

.newsletter-details-card {
  border-radius: var(--newsletter-details-radius);
  padding: 1.5rem 1.35rem;
}

.newsletter-details-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--newsletter-details-navy);
  margin: 0 0 1.25rem;
}

.newsletter-details-event-card {
  background: var(--newsletter-details-cream);
  border: 1px solid #f0e8de;
}

.newsletter-details-event-list {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.newsletter-details-event-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.newsletter-details-event-icon {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  background: var(--newsletter-details-black-tint);
  color: var(--newsletter-details-black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.95rem;
}

.newsletter-details-event-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--newsletter-details-text-soft);
  margin-bottom: 0.15rem;
}

.newsletter-details-event-value {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--newsletter-details-navy);
  line-height: 1.4;
}

.newsletter-details-map-link {
  display: inline-block;
  margin-top: 0.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--newsletter-details-black);
  text-decoration: none;
}

.newsletter-details-map-link:hover {
  color: var(--newsletter-details-black-dark);
  text-decoration: underline;
}

.newsletter-details-btn-register {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--Blue);
  color: var(--newsletter-details-white);
  border: none;
  border-radius: var(--newsletter-details-radius-sm);
  padding: 0.85rem 1.25rem;
  font-size: 0.98rem;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.newsletter-details-btn-register:hover,
.newsletter-details-btn-register:focus-visible {
  background: var(--newsletter-details-black-dark);
  color: var(--newsletter-details-white);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(255, 87, 34, 0.35);
}

/* ---- Voices ---- */
.newsletter-details-voices {
  background: var(--newsletter-details-voices-bg);
  border: 1px solid #e2e8f0;
}

.newsletter-details-quote {
  margin: 0;
  position: relative;
}

.newsletter-details-quote-mark {
  display: block;
  font-size: 1.75rem;
  color: var(--newsletter-details-navy);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.newsletter-details-quote p {
  font-style: italic;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--newsletter-details-navy);
  margin: 0 0 0.55rem;
}

.newsletter-details-quote footer {
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--newsletter-details-text-soft);
}

.newsletter-details-voices-divider {
  border: 0;
  border-top: 1px solid #d5dde8;
  margin: 1.15rem 0;
}

/* ---- Responsive ---- */
@media (max-width: 1199.98px) {
  .newsletter-details-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991.98px) {
  .newsletter-details-hero {
    min-height: auto;
    padding-top: 3.25rem;
  }

  .newsletter-details-hero-row {
    min-height: auto;
  }

  .newsletter-details-hero-content {
    padding-bottom: 1.5rem;
    text-align: left;
  }

  .newsletter-details-hero-title {
    max-width: none;
  }

  .newsletter-details-hero-quote {
    max-width: none;
  }

  /* .newsletter-details-hero-visual {
    justify-content: center;
    margin-top: 0.25rem;
  } */

  /* .newsletter-details-hero-girl {
    max-height: 340px;
    width: min(100%, 300px);
  } */

  .newsletter-details-main {
    padding-top: 2.5rem;
  }

  .newsletter-details-sidebar {
    margin-top: 0.5rem;
  }
}

@media (max-width: 767.98px) {
  .newsletter-details-hero {
    padding-top: 2.5rem;
  }

  .newsletter-details-hero-meta {
    flex-direction: column;
    gap: 0.75rem;
  }

  .newsletter-details-hero-meta-item {
    max-width: none;
  }

  .newsletter-details-hero-girl {
    max-height: 280px;
    width: min(100%, 250px);
  }

  .newsletter-details-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .newsletter-details-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .newsletter-details-btn-donate {
    width: 100%;
    justify-content: center;
  }

  .newsletter-details-toast {
    left: 1rem;
    right: 1rem;
    width: auto;
    transform: translateX(0) translateY(20px);
    border-radius: 14px;
  }

  .newsletter-details-toast.is-visible {
    transform: translateX(0) translateY(0);
  }
}

@media (max-width: 575.98px) {
  .newsletter-details-stats {
    grid-template-columns: 1fr 1fr;
  }

  .newsletter-details-stat-box:last-child {
    grid-column: 1 / -1;
  }

  .newsletter-details-card {
    padding: 1.25rem 1.1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .newsletter-details-hero-girl,
  [data-newsletter-reveal],
  .newsletter-details-objective-card,
  .newsletter-details-stat-box,
  .newsletter-details-btn-register,
  .newsletter-details-btn-donate,
  .newsletter-details-toast {
    animation: none !important;
    transition: none !important;
  }

  [data-newsletter-reveal] {
    opacity: 1;
    transform: none;
  }
}

.ngo-vol-testimonial-sec {
            padding: 80px 0;
            overflow: hidden;
            height: 70vh;
        }
        
        /* Base Styling for Cards (Left & Right - Scaled Down) */
        .ngo-vol-card {
            text-align: center;
            padding: 30px 20px;
            opacity: 0.4;
            transform: scale(0.8);
            transition: all 0.4s ease;
            background: #ffffff;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin: 20px 0;
        }
        
        /* Image Styling */
        .ngo-vol-img-box img {
            width: 90px !important;
            height: 90px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 15px;
            border: 3px solid #e0e0e0;
            transition: all 0.4s ease;
        }

        /* Center Item Styling (Badi Image & Highlight) */
        .owl-item.active.center .ngo-vol-card {
            opacity: 1;
            transform: scale(1.1);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            z-index: 10;
            position: relative;
            background: #ffffff;
        }
        
        .owl-item.active.center .ngo-vol-img-box img {
            width: 120px !important;
            height: 120px;
            border-color: #28a745;
            box-shadow: 0 5px 15px rgba(40,167,69,0.3);
        }

        /* Typography */
        .ngo-vol-name {
            font-size: 1.25rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 8px;
        }
        
        .ngo-vol-quote {
            font-size: 0.95rem;
            color: #666;
            font-style: italic;
            line-height: 1.5;
        }


      .kj-reel-section { 
            background-color: #fffafb; 
            font-family: 'Georgia', serif; 
        }

        .kj-reel-title { 
            font-size: 2.5rem; 
            color: #222; 
            margin-bottom: 0.5rem; 
        }

        .kj-reel-subtitle { 
            font-family: 'Arial', sans-serif; 
            color: #888; 
            font-size: 0.95rem; 
            margin-bottom: 2rem; 
        }

        /* Updated Scroll Container Styling */
        .kj-reel-track { 
            display: flex; 
            gap: 15px; 
            overflow-x: auto; 
            scroll-snap-type: x mandatory; 
            padding-bottom: 20px; 
            scrollbar-width: thin; 
            scrollbar-color: #ffc0cb transparent; 
        }

        .kj-reel-track::-webkit-scrollbar { height: 6px; }
        .kj-reel-track::-webkit-scrollbar-track { background: transparent; }
        .kj-reel-track::-webkit-scrollbar-thumb { background-color: #ffc0cb; border-radius: 10px; }

        /* Updated Video Card Styling */
        .kj-reel-card { 
            position: relative; 
            flex: 0 0 calc(25% - 11.25px); 
            scroll-snap-align: center; 
            border-radius: 20px; 
            overflow: hidden; 
            background: #222; 
            aspect-ratio: 9 / 16; 
            cursor: pointer; 
            box-shadow: 0 4px 15px rgba(0,0,0,0.1); 
        }
        
        .kj-reel-card video { 
            width: 100%; 
            height: 100%; 
            object-fit: cover; 
            display: block; 
        }
        
        /* Updated Label Styling */
        .kj-reel-label { 
            position: absolute; 
            bottom: 15px; 
            left: 15px; 
            color: white; 
            font-family: 'Arial', sans-serif; 
            font-weight: bold; 
            font-size: 0.9rem; 
            z-index: 2; 
            text-shadow: 1px 1px 3px rgba(0,0,0,0.8); 
        }

        /* Responsive Breakpoints */
        @media (max-width: 1400px) {
           .ngo-vol-testimonial-sec { height:100%; }
        }
        @media (max-width: 992px) { .kj-reel-card { flex: 0 0 calc(50% - 10px); }  .ngo-vol-testimonial-sec { height:100%; } }
        @media (max-width: 576px) { .kj-reel-card { flex: 0 0 100%; } .ngo-vol-testimonial-sec { height:100vh; } }

.ns-grid-hidden {
    display: none !important;
}

/* ==========================================
   FOUNDATION MAGAZINE PAGE
========================================== */
.fm-page {
    --fm-navy: #12203a;
    --Blue-dark: #1d4ed8;
    --fm-soft: #e8f1ff;
    --fm-muted: #64748b;
    --fm-border: #e2e8f0;
    padding: 48px 0 80px;
    background: #f8fafc;
    min-height: 70vh;
}

.fm-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 36px;
}

.fm-header-copy h1 {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--fm-navy);
    letter-spacing: -0.6px;
    margin: 0 0 12px;
}

.fm-header-copy p {
    max-width: 520px;
    margin: 0;
    color: var(--fm-muted);
    font-size: 1.02rem;
    line-height: 1.7;
}

.fm-intro-box {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--card-bg);
    border-radius: 16px;
    padding: 18px 20px;
    max-width: 420px;
    flex-shrink: 0;
}

.fm-intro-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    color: var(--Blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.12);
}

.fm-intro-box p {
    margin: 0;
    color: #334155;
    font-size: 0.92rem;
    line-height: 1.55;
    font-weight: 500;
}

.fm-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

.fm-toolbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.fm-filter-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1.5px solid var(--Blue);
    background: #fff;
    color: var(--Blue);
    border-radius: 10px;
    padding: 10px 14px;
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1;
    white-space: nowrap;
}

.fm-filter-toggle:hover {
    background: var(--fm-soft);
    color: var(--Blue-dark);
}

.fm-filter-badge {
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--Blue);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.fm-showing {
    color: var(--fm-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

.fm-sort-form {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #334155;
    font-size: 0.92rem;
    font-weight: 600;
}

.fm-sort-select,
.fm-select {
    border: 1px solid var(--fm-border);
    border-radius: 10px;
    padding: 10px 14px;
    background: #fff;
    color: #0f172a;
    font-weight: 600;
    font-size: 0.92rem;
}

.fm-sort-select {
    min-width: 160px;
}

.fm-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fm-card:hover {
    transform: translateY(-4px);
}

.fm-card-cover {
    aspect-ratio: 4 / 3;
    background: #dbeafe;
    overflow: hidden;
}

.fm-card-cover img,
.fm-card-cover-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fm-card-cover-fallback {
    background: linear-gradient(135deg, #93c5fd, #2563eb);
}

.fm-card-body {
    padding: 16px 16px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.fm-card-date {
    color: var(--fm-muted);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.fm-card-title {
    font-size: 1.02rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 8px;
    line-height: 1.3;
}

.fm-card-meta {
    color: var(--fm-muted);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.fm-card-meta span {
    margin: 0 4px;
}

.fm-card-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.fm-read-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--Blue);
    color: #fff !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 10px;
    padding: 10px 12px;
    transition: background 0.2s ease;
}

.fm-read-btn:hover {
    background: var(--Blue-dark);
    color: #fff !important;
}

.fm-dl-btn {
    width: 42px;
    height: 42px;
    border: 1.5px solid var(--Blue);
    color: var(--Blue);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.fm-dl-btn:hover {
    background: var(--Blue);
    color: #fff;
}

.fm-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 36px;
}

.fm-page-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--fm-border);
    background: #fff;
    color: var(--fm-navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
}

.fm-page-btn.is-active {
    background: var(--Blue);
    border-color: var(--Blue);
    color: #fff;
}

.fm-page-btn.is-disabled {
    opacity: 0.4;
    pointer-events: none;
}

@media (min-width: 992px) {
    .fm-sidebar {
        position: sticky;
        top: 110px;
    }
}

.fm-drawer-header {
    padding: 16px 18px 14px;
    border-bottom: 1px solid var(--fm-border);
}

.fm-drawer-close {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--fm-soft);
    color: var(--fm-navy);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fm-drawer-close:hover {
    background: #dbeafe;
    color: var(--Blue-dark);
}

.fm-sidebar .fm-drawer-body {
    flex-direction: column;
}

.fm-filter-card,
.fm-newsletter-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
}

.fm-filter-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--fm-navy);
    margin: 0 0 16px;
}

.fm-filter-title i {
    color: var(--Blue);
}

.fm-search-wrap {
    position: relative;
    margin-bottom: 12px;
}

.fm-search-wrap i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 0.85rem;
}

.fm-search-wrap input {
    width: 100%;
    border: 1px solid var(--fm-border);
    border-radius: 10px;
    padding: 10px 12px 10px 36px;
    font-size: 0.9rem;
}

.fm-select {
    width: 100%;
    margin-bottom: 10px;
}

.fm-check-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 14px 0 18px;
}

.fm-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: #334155;
    font-weight: 600;
    cursor: pointer;
}

.fm-check input {
    width: 16px;
    height: 16px;
    accent-color: var(--Blue);
}

.fm-clear-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border: 1.5px solid var(--Blue);
    color: var(--Blue);
    background: #fff;
    border-radius: 10px;
    padding: 10px 14px;
    font-weight: 700;
    text-decoration: none;
}

.fm-clear-btn:hover {
    background: var(--fm-soft);
    color: var(--Blue-dark);
}

.fm-newsletter-card {
    margin-top: 16px;
    background: var(--card-bg);
    box-shadow: none;
}

.fm-newsletter-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #fff;
    color: var(--Blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.fm-newsletter-card p {
    color: #334155;
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 14px;
}

.fm-newsletter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--Blue);
    color: #fff !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 10px;
    padding: 10px 16px;
}

.fm-newsletter-btn:hover {
    background: var(--Blue-dark);
    color: #fff !important;
}

.fm-empty {
    background: #fff;
    border-radius: 16px;
    padding: 48px 24px;
    text-align: center;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.fm-empty i {
    font-size: 2rem;
    color: var(--Blue);
    margin-bottom: 12px;
}

.fm-empty h3 {
    color: var(--fm-navy);
    font-weight: 800;
    margin-bottom: 8px;
}

.fm-empty p {
    color: var(--fm-muted);
    margin-bottom: 18px;
}

.fm-empty .fm-clear-btn {
    max-width: 200px;
    margin: 0 auto;
}

@media (max-width: 991.98px) {
    .fm-header {
        flex-direction: column;
    }
    .fm-intro-box {
        max-width: none;
    }
    .fm-header-copy h1 {
        font-size: 2.1rem;
    }
    .fm-sidebar.offcanvas-lg {
        --bs-offcanvas-width: min(360px, 90vw);
        --bs-offcanvas-bg: #f8fafc;
        --bs-offcanvas-border-color: var(--fm-border);
        --bs-offcanvas-box-shadow: -12px 0 32px rgba(15, 23, 42, 0.16);
        z-index: 1055;
    }
    .fm-sidebar .fm-drawer-body {
        padding: 16px 16px 24px;
        overflow-y: auto;
    }
}

@media (max-width: 575px) {
    .fm-toolbar {
        flex-direction: column;
        align-items: stretch;
    }
    .fm-toolbar-actions {
        width: 100%;
        justify-content: space-between;
    }
    .fm-sort-form {
        flex: 1;
        min-width: 0;
    }
    .fm-sort-select {
        flex: 1;
        min-width: 0;
    }
    .fm-page {
        padding: 28px 0 56px;
    }
}


/* ===== PUBLIC BREADCRUMBS ===== */
.site-main {
    position: relative;
}

.site-breadcrumbs {
    position: absolute;
    top: calc(10px + var(--header-height, 90px) + 10px);
    z-index: 40;
    pointer-events: none;
}

.site-breadcrumbs .container {
    pointer-events: none;
}

.site-breadcrumb {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    max-width: 100%;
    margin: 0;
    padding: 7px 14px;
    list-style: none;
    pointer-events: auto;
    border-radius: 999px;
    backdrop-filter: blur(10px);
}

.site-breadcrumb-item {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    color: #4b5563;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.2;
}

.site-breadcrumb-item + .site-breadcrumb-item::before {
    content: ">";
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    color: var(--black);
    margin: 0 8px;
}

.site-breadcrumb-item a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #374151;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-breadcrumb-item a:hover {
    color: #e86a17;
}

.site-breadcrumb-item i {
    font-size: 0.78rem;
    color: var(--black);
}

.site-breadcrumb-item.is-current {
    color: var(--Blue);
    max-width: min(52vw, 280px);
}

.site-breadcrumb-item.is-current span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 525px) {
    .site-breadcrumb {
        padding: 6px 10px;
        border-radius: 14px;
    }

    .site-breadcrumb-item {
        font-size: 0.75rem;
    }

    .site-breadcrumb-item + .site-breadcrumb-item::before {
        margin: 0 6px;
    }

    .site-breadcrumb-item.is-current {
        max-width: 46vw;
    }
}

/* ========== VOLUNTEER POPUP ========== */
.volunteer-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s ease;
    padding: 16px;
}
.volunteer-popup-overlay.is-active {
    opacity: 1;
    visibility: visible;
}
.volunteer-popup-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    width: 100%;
    max-width: 580px;
    max-height: 100vh;
    overflow-y: auto;
    padding: 32px 28px 28px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.18);
    transform: translateY(30px) scale(0.96);
    transition: transform .35s ease;
}
.volunteer-popup-overlay.is-active .volunteer-popup-card {
    transform: translateY(0) scale(1);
}
.volunteer-popup-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    line-height: 1;
    transition: color .2s;
}
.volunteer-popup-close:hover { color: #c45c12; }

.volunteer-popup-header {
    text-align: center;
    margin-bottom: 20px;
}
.volunteer-popup-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--Blue);
    margin-bottom: 10px;
}
.volunteer-popup-title {
    font-size: 22px;
    color: var(--Blue);
    margin: 0 0 4px;
    font-weight: 700;
}
.volunteer-popup-subtitle {
    font-size: 13px;
    color: var(--Blue);
    margin: 0;
}

.volunteer-popup-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}
.volunteer-popup-field {
    flex: 1;
    position: relative;
}
.volunteer-popup-field--full { margin-bottom: 16px; position: relative; }
.volunteer-popup-field i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--Blue);
    font-size: 14px;
    pointer-events: none;
}
.volunteer-popup-field--full i {
    top: 16px;
    transform: none;
}
.volunteer-popup-field input,
.volunteer-popup-field select,
.volunteer-popup-field textarea {
    width: 100%;
    padding: 10px 12px 10px 36px;
    border: 1.5px solid #e5ddd6;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: var(--Blue);
    background: #faf8f6;
    transition: border-color .2s;
    outline: none;
    box-sizing: border-box;
}
.volunteer-popup-field input:focus,
.volunteer-popup-field select:focus,
.volunteer-popup-field textarea:focus {
    border-color: #c45c12;
    background: #fff;
}
.volunteer-popup-field select {
    appearance: none;
    cursor: pointer;
}
.volunteer-popup-field textarea {
    resize: vertical;
    min-height: 70px;
}

.volunteer-popup-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--Blue), var(--Blue));
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity .2s;
}
.volunteer-popup-btn:hover { opacity: 0.9; }
.volunteer-popup-btn:disabled { opacity: 0.7; cursor: not-allowed; }
.volunteer-popup-btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.volunteer-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2.5px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: volSpin .7s linear infinite;
}
@keyframes volSpin { to { transform: rotate(360deg); } }

.volunteer-popup-success {
    text-align: center;
    padding: 20px 0;
}
.volunteer-success-icon {
    font-size: 52px;
    margin-bottom: 12px;
}
.volunteer-popup-success h3 {
    font-size: 22px;
    color: #1c130c;
    margin: 0 0 8px;
}
.volunteer-popup-success p {
    font-size: 14px;
    color: #4a3c32;
    margin: 0 0 20px;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .volunteer-popup-row { flex-direction: column; gap: 10px; }
    .volunteer-popup-card { padding: 24px 18px 20px; }
}

/* ========== CONTACT FORM LOADING/SUCCESS ========== */
.contact-form-loading-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: inherit;
    z-index: 10;
}
.contact-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f0d9c4;
    border-top-color: #c45c12;
    border-radius: 50%;
    animation: volSpin .7s linear infinite;
    margin-bottom: 12px;
}
.contact-form-loading-overlay p {
    font-size: 14px;
    color: #4a3c32;
    font-weight: 600;
}
.contact-form-card { position: relative; }

.contact-success-message {
    text-align: center;
    padding: 40px 20px;
}
.contact-success-message .success-icon {
    font-size: 52px;
    margin-bottom: 10px;
    display: block;
}
.contact-success-message h3 {
    font-size: 20px;
    color: #1c130c;
    margin: 0 0 8px;
}
.contact-success-message p {
    font-size: 14px;
    color: #4a3c32;
    line-height: 1.6;
}

/* ========== SUBSCRIBE CHECKBOX (shared) ========== */
.kjf-subscribe-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.5;
    color: #4a3c32;
}
.kjf-subscribe-checkbox input[type="checkbox"] {
    margin-top: 3px;
    accent-color: #c45c12;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.kjf-subscribe-checkbox span {
    user-select: none;
}

/* ========== Unified section H2 scale (one size sitewide) ========== */
:root {
  --page-h2-size: clamp(1.85rem, 3.2vw, 2.35rem);
  --page-h2-lh: 1.22;
}

body section h2,
body article h2,
body .container > h2,
body .container h2.section-title,
body .about-us-section h2,
body .about-main-card h2,
body .commitment-title,
body .kj-reel-title,
body .empower-main-heading,
body .impact-glance-title,
body .headline,
body .ns-approach-title,
body .ns-init-title,
body .ns-stories-title,
body .ns-ripples-title,
body .ns-events-title,
body .ns-faq-title,
body .ns-why-title,
body .ns-ways-title,
body .mission-vision-title,
body .mission-sec-title,
body .donation-form-heading,
body .newsletter-details-heading,
body .about-text-center,
body h2.text-center,
body h2.contact-main-heading {
  font-size: var(--page-h2-size) !important;
  line-height: var(--page-h2-lh) !important;
}

/* Keep page hero H1 visually dominant — each hero keeps its own design size */


/* ==========================================
   UNIFIED ICON SIZE — MOBILE (≤525px)
   Consolidates all icon-badge/icon-circle classes
========================================== */
@media (max-width: 525px) {
  .badge-icon-circle,
  .stat-icon,
  .ns-stat-icon,
  .ns-mini-icon,
  .ns-timeline-icon,
  .ns-approach-icon,
  .ns-init-icon,
  .ns-feature-icon,
  .about-feat-item i,
  .about-pillar-icon,
  .mission-icon-badge,
  .mission-vision-icon-circle,
  .ns-list-icon,
  .ns-area-icon,
  .ns-step-icon,
  .donation-impact-icon,
  .ns-float-icon,
  .ns-stat-card-icon,
  .site-footer-brand-icon,
  .fm-intro-icon,
  .fm-dl-btn,
  .fm-newsletter-icon,
  .newsletter-details-event-icon,
  .ns-strip-icon,
  .ns-caption-icon,
  .ns-heart-badge,
  .ns-pol-badge,
  .ns-gallery-top-icon,
  .site-footer-social-link,
  .ns-event-card-arrow,
  .mission-text .mission-icon,
  .card-icon,
  .stat-icon.bg-pink,
  .stat-icon.bg-yellow,
  .stat-icon.bg-teal,
  .stat-icon.bg-purple,
  .indicator-col .project-icon,
  .feature-icon,
  .ns-init-icon,
  .ns-step-icon-wrap .ns-step-icon,
  .ns-float-play-btn,
  .about-empower-badge i {
    width: 40px !important;
    height: 40px !important;
    font-size: 1rem !important;
    line-height: 40px !important;
  }
}

.kj-reel-track {
    position: relative;
}

@media (max-width: 767px) {

    .kj-reel-track .owl-nav {
        position: absolute !important;
        top: 50% !important;
        left: 0 !important;
        right: 0 !important;

        transform: translateY(-50%) !important;

        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;

        margin: 0 !important;
        padding: 0 8px !important;

        z-index: 20 !important;
        pointer-events: none;
    }

    .kj-reel-track .owl-nav button.owl-prev,
    .kj-reel-track .owl-nav button.owl-next {
        width: 38px !important;
        height: 38px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        margin: 0 !important;

        border-radius: 50% !important;
        background: #fff !important;
        color: #00008B !important;

        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22) !important;

        font-size: 14px !important;
        pointer-events: auto;
    }

    .kj-reel-track .owl-nav button span {
        line-height: 1 !important;
    }
}

.ngo-vol-card {
    position: relative;
}

.ngo-vol-quote-icon {
    position: absolute;
    left: 35px;
    top: 150px;

    font-size: 70px;
    font-family: Georgia, serif;
    font-weight: 700;

    color: #18a558;
    opacity: 0.18;

    line-height: 1;
}