:root {
  --empower-orange: #E65100;
  --empower-orange-light: #FF8F00;
  --empower-orange-dark: #BF360C;
  --empower-orange-deep: #8C2A00;
  
  --trust-teal: #00695C;
  --trust-teal-light: #00897B;
  --trust-teal-dark: #004D40;
  --trust-teal-soft: #E0F2F1;
  
  --support-pink: #FF6B6B;
  --support-pink-light: #FF8A80;
  --support-pink-soft: #FFE0E6;
  --support-coral: #FF5252;
  
  --text-primary: #212121;
  --text-secondary: #424242;
  --text-light: #757575;
  --text-white: #FFFFFF;
  --text-muted: #9E9E9E;
  
  --bg-primary: #FFFFFF;
  --bg-secondary: #FAFAFA;
  --bg-light: #F5F5F5;
  --bg-card: #FFFFFF;
  --bg-warm: #FFF8F5;
  --bg-teal-light: #F0F7F5;
  
  --gradient-sunrise: linear-gradient(135deg, #E65100 0%, #FF8F00 100%);
  --gradient-teal: linear-gradient(135deg, #00695C 0%, #00897B 100%);
  --gradient-coral: linear-gradient(135deg, #FF6B6B 0%, #FF8A80 100%);
  --gradient-empower: linear-gradient(135deg, #E65100 0%, #00695C 50%, #FF6B6B 100%);
  --gradient-warm: linear-gradient(135deg, #FF8F00 0%, #FF6B6B 100%);
  
  --shadow-warm: rgba(230, 81, 0, 0.08);
  --shadow-soft: rgba(230, 81, 0, 0.15);
  --shadow-pink: rgba(255, 107, 107, 0.12);
  --shadow-teal: rgba(0, 105, 92, 0.1);
  
  --overlay-orange: rgba(230, 81, 0, 0.85);
  --overlay-teal: rgba(0, 105, 92, 0.8);
  --overlay-pink: rgba(255, 107, 107, 0.7);
}

/*hero section */
.nhs-section {
    margin-top: 5px;
    width: 100%;
    display: block;
    overflow: hidden;
}

.nhs-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    max-height: 700px;
    overflow: hidden;
    background: #0a0a0f;
}

.nhs-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.9s ease;
    pointer-events: none;
    z-index: 0;
}

.nhs-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.nhs-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    transform: scale(1.0);
    transition: transform 7s ease;
    will-change: transform;
}

.nhs-slide.is-active .nhs-bg {
    transform: scale(1.05);
}

.nhs-overlay-base {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.12);
    z-index: 1;
}
.nhs-overlay-grad {
    display: none;
    position: absolute;
    inset: 0;
    background: linear-gradient(
        100deg,
        rgba(10, 5, 5, 0.80) 0%,
        rgba(10, 5, 5, 0.50) 40%,
        rgba(10, 5, 5, 0.10) 75%,
        rgba(10, 5, 5, 0.00) 100%
    );
    z-index: 2;
}

.nhs-overlay-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 180px;
    background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
    z-index: 2;
}
.nhs-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
}

.nhs-content-inner {
    padding: 0 28px 70px;
    margin-left: clamp(16px, 6vw, 90px);
    max-width: 520px;
}

.nhs-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.55s ease 0.15s, transform 0.55s ease 0.15s;
}

.nhs-eyebrow-dot {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #FF8F00;
    flex-shrink: 0;
}

.nhs-slide.is-active .nhs-eyebrow {
    opacity: 1;
    transform: translateY(0);
}

.nhs-title {
    display: none;
    font-size: clamp(22px, 4vw, 48px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
    text-shadow: 0 2px 24px rgba(0,0,0,0.5);
    position: relative;
}

.nhs-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, #FF8F00, #B71C1C);
    border-radius: 3px;
    margin-top: 12px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease 0.8s;
}

.nhs-slide.is-active .nhs-title {
    opacity: 1;
    transform: translateY(0);
}

.nhs-slide.is-active .nhs-title::after {
    transform: scaleX(1);
}

.nhs-desc {
    font-size: clamp(12px, 1.4vw, 14px);
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.75;
    margin-bottom: 24px;
    max-width: 420px;
    font-weight: 400;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease 0.48s, transform 0.6s ease 0.48s;
}

.nhs-slide.is-active .nhs-desc {
    opacity: 1;
    transform: translateY(0);
}

.nhs-actions {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.6s ease 0.62s, transform 0.6s ease 0.62s;
}

.nhs-slide.is-active .nhs-actions {
    opacity: 1;
    transform: translateY(0);
}

.nhs-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #B71C1C 0%, #D32F2F 100%);
    color: #fff !important;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    border-radius: 50px;
    letter-spacing: 0.4px;
    box-shadow: 0 6px 22px rgba(183, 28, 28, 0.45);
    transition: transform 0.25s, box-shadow 0.25s;
    border: none;
}

.nhs-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(183, 28, 28, 0.55);
}

.nhs-btn i {
    font-size: 12px;
    transition: transform 0.25s;
}

.nhs-btn:hover i {
    transform: translateX(4px);
}

.nhs-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    /*display: flex;*/
    display: none;
    align-items: center;
    justify-content: center;
    transition: background 0.25s;
    padding: 0;
}

.nhs-arrow:hover {
    background:  #E65100;
    border-color: transparent;
}

.nhs-arrow--prev { left: 16px; }
.nhs-arrow--next { right: 16px; }

.nhs-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: min(280px, 75vw);
}

.nhs-dots {
    display: flex;
    gap: 7px;
    align-items: center;
}

.nhs-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.38);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, width 0.3s, border-radius 0.3s;
}

.nhs-dot.is-active {
    background: #fff;
    width: 22px;
    border-radius: 4px;
}

.nhs-progress-track {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.nhs-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #FF8F00, #B71C1C);
    border-radius: 2px;
}

/*quick-link section */
.ql-section {
    padding: 60px 16px;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.ql-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--shadow-warm) 0%, transparent 70%);
    pointer-events: none;
}

.ql-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--shadow-teal) 0%, transparent 70%);
    pointer-events: none;
}

.ql-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ql-header {
    text-align: center;
    margin-bottom: 40px;
}

.ql-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--support-pink-soft);
    border: 1px solid var(--support-pink-light);
    color: var(--empower-orange);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.ql-badge i { font-size: 11px; }

.ql-title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 10px;
    background: var(--gradient-empower);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ql-subtitle {
    font-size: 14px;
    color: var(--text-light);
    max-width: 420px;
    margin: 0 auto;
    line-height: 1.6;
}

.ql-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

@media (max-width: 900px) {
    .ql-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .ql-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}

.ql-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border-radius: 18px;
    padding: 22px 20px 20px;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    border: 1.5px solid var(--empower-orange-light);
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1),
                box-shadow 0.3s ease,
                border-color 0.3s ease;
    cursor: pointer;
}

.ql-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px var(--shadow-soft);
    border-color: var(--empower-orange-light);
}

.ql-card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, var(--empower-orange-light), transparent 65%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: 18px;
}

.ql-card:hover .ql-card-glow { opacity: 0.07; }

.ql-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px;
}

.ql-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--card-icon-bg, var(--gradient-sunrise));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-white);
    box-shadow: 0 6px 16px var(--shadow-warm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.ql-card:hover .ql-icon-wrap {
    transform: scale(1.08) rotate(-4deg);
    box-shadow: 0 10px 24px var(--shadow-soft);
}

.ql-arrow {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--text-muted);
    transition: background 0.3s, color 0.3s, transform 0.3s;
    flex-shrink: 0;
}

.ql-card:hover .ql-arrow {
    background: var(--gradient-teal);
    color: var(--text-white);
    transform: translate(3px, -3px);
}

.ql-card-body h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
    line-height: 1.3;
    transition: color 0.3s;
}

.ql-card:hover .ql-card-body h3 {
    color: var(--empower-orange);
}

.ql-card-body p {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.ql-card-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-warm);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 0 18px 18px;
}

.ql-card:hover .ql-card-bar { transform: scaleX(1); }

@media (max-width: 480px) {
    .ql-section { padding: 40px 14px; }

    .ql-card {
        padding: 16px 14px 16px;
        border-radius: 14px;
    }

    .ql-icon-wrap {
        width: 42px;
        height: 42px;
        font-size: 17px;
        border-radius: 11px;
    }

    .ql-card-body h3 { font-size: 13px; }
    .ql-card-body p  { font-size: 11px; }
    .ql-arrow        { width: 24px; height: 24px; font-size: 10px; }
}

@media (prefers-reduced-motion: reduce) {
    .ql-card, .ql-icon-wrap, .ql-arrow, .ql-card-bar {
        transition: none !important;
    }
}

   .ql-card-orange .ql-icon-wrap {
    background: var(--gradient-sunrise) !important;
}

.ql-card-teal .ql-icon-wrap {
    background: var(--gradient-teal) !important;
}

.ql-card-pink .ql-icon-wrap {
    background: var(--gradient-coral) !important;
}

.ql-card-orange:hover .ql-card-body h3 {
    color: var(--empower-orange) !important;
}

.ql-card-teal:hover .ql-card-body h3 {
    color: var(--trust-teal) !important;
}

.ql-card-pink:hover .ql-card-body h3 {
    color: var(--support-pink) !important;
}

.ql-card-orange .ql-card-bar {
    background: var(--gradient-sunrise) !important;
}

.ql-card-teal .ql-card-bar {
    background: var(--gradient-teal) !important;
}

.ql-card-pink .ql-card-bar {
    background: var(--gradient-coral) !important;
}

/*who we are */
.dpf-who-we-section {
  font-family: inherit;
  padding: 26px 40px;
  margin: 0 auto;
}

.dpf-section-title-orange {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  color: var(--empower-orange);
  margin: 0 0 6px;
  letter-spacing: -0.3px;
}

.dpf-title-underline {
  display: block;
  width: 66px;
  height: 3px;
  background: #d4621a;
  border-radius: 2px;
  margin: 0 auto 28px;
}

.dpf-brief-desc {
    text-align: center;
  background: #ffeee4;
  border-left: 4px solid var(--empower-orange);
  border-radius: 0 10px 10px 0;
  padding: 20px 154px;
  font-size: 18px;
  line-height: 1.8;
  color: #1a3d30;
  margin-bottom: 36px;
}

.dpf-ngo-name-text {
  font-weight: 500;
  color: #0a6e52;
  font-size: 16px;
}

.dpf-areas-teal-wrap {
  background: var(--gradient-teal);
  border-radius: 16px;
  padding: 32px 28px 36px;
}

.dpf-areas-heading {
  text-align: center;
  margin-bottom: 28px;
}

.dpf-areas-title {
  display: block;
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

.dpf-areas-icon-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.dpf-areas-line {
  display: block;
  width: 45px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.dpf-areas-icon {
  font-size: 18px;
  color: #e8935a;
}

.dpf-areas-heading span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.dpf-areas-heading i {
  font-size: 22px;
  color: #fff;
  opacity: 0.85;
}

.dpf-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.dpf-circular-card {
  background: rgba(255, 255, 255, 0.15);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border: 1px solid rgba(255, 255, 255, 0.3);
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 20px 14px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.2s;
}

.dpf-circular-card:hover {
  transform: translateY(-4px);
}

.dpf-circle-img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #e8935a;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.dpf-circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dpf-card-label {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
}

.dpf-card-label i {
  color: #fff;
  font-size: 15px;
}

.dpf-card-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}
  .dpf-about-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-sunrise);
  color: #ffffff;
  text-decoration: none;
  padding: 11px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}

.dpf-about-btn:hover {
  background: #b8521a;
  transform: translateX(3px);
}

/*youtube-gallery*/
.youtube-gallery {
    padding: 5px 0px 30px 0px;
    background-color: var(--bg-secondary);
}

.youtube-gallery__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.youtube-gallery__header {
    text-align: center;
    margin-bottom: 40px;
}

.youtube-gallery__subtitle {
    color: var(--text-muted);
    font-size: 16px;
    display: none;
    margin-bottom: 10px;
}

.youtube-gallery__title {
    font-size: 32px;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.youtube-gallery__title span {
    color: var(--empower-orange);
}

.youtube-gallery__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.youtube-gallery__divider span {
    height: 2px;
    background-color: var(--empower-orange);
    width: 50px;
    border-radius: 2px;
}

.youtube-gallery__divider i {
    margin: 0 15px;
    color: var(--empower-orange);
}

.youtube-gallery__description {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.youtube-gallery__carousel {
    position: relative;
    overflow: hidden;
}

.youtube-gallery__track {
    display: flex;
    transition: transform 0.5s ease;
}

.youtube-gallery__item {
    flex: 0 0 300px;
    margin: 0 10px;
}

.youtube-gallery__video-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow-warm);
    transition: all 0.3s ease;
}

.youtube-gallery__video-wrapper:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow-soft);
}

.youtube-gallery__thumbnail {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.youtube-gallery__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--overlay-orange) 0%, var(--overlay-orange) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.youtube-gallery__info {
    text-align: center;
    padding: 20px;
    color: var(--text-white);
}

.youtube-gallery__item-title {
    font-size: 15px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-white);
}

.youtube-gallery__item-desc {
    font-size: 12px;
    margin-bottom: 15px;
    opacity: 0.8;
    color: var(--text-white);
}

.youtube-gallery__play {
    display: inline-block;
    color: var(--text-white);
    font-size: 40px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.youtube-gallery__play i {
    margin-left: 4px;
}

.youtube-gallery__play:hover {
    transform: scale(1.15);
    color: var(--support-pink);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
}

.youtube-gallery__video-wrapper:hover .youtube-gallery__overlay {
    opacity: 0.85;
}

.youtube-gallery__video-wrapper:hover .youtube-gallery__thumbnail {
    transform: scale(1.05);
}

.youtube-gallery__empty {
    text-align: center;
    padding: 40px;
    background-color: var(--bg-card);
    border-radius: 12px;
    color: var(--text-secondary);
    border: 1px solid rgba(230, 81, 0, 0.1);
    box-shadow: 0 4px 12px var(--shadow-warm);
}

.mobile-donors-section {
    display: none;
}

/*Recent blogpost*/
.activities {
    padding: 80px 0;
    background-color: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.activities::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/patterns/pattern-light.png');
    background-size: 200px;
    opacity: 0.1;
    z-index: 0;
}

.activities__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.activities__header {
    text-align: center;
    margin-bottom: 50px;
}

.activities__subtitle {
    display: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--empower-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative;
}

.activities__subtitle::before,
.activities__subtitle::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background-color: var(--empower-orange);
}

.activities__subtitle::before {
    right: 100%;
    margin-right: 15px;
}

.activities__subtitle::after {
    left: 100%;
    margin-left: 15px;
}

.activities__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 20px;
    text-decoration: none;
}

.activities__title span {
    color: var(--empower-orange);
}

.activities__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.activities__divider span {
    height: 2px;
    width: 60px;
    background-color: var(--empower-orange);
    border-radius: 2px;
}

.activities__divider i {
    color: var(--empower-orange);
    font-size: 24px;
    margin: 0 15px;
}

.activities__description {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.activities__wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.activities__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.activities__card {
    background-color: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-warm);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(230, 81, 0, 0.06);
}

.activities__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-soft);
    border-color: rgba(230, 81, 0, 0.12);
}

.activities__image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.activities__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.activities__card:hover .activities__image img {
    transform: scale(1.1);
}

.activities__date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--empower-orange) 0%, var(--empower-orange-dark) 100%);
    color: var(--text-white);
    padding: 10px 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow-soft);
    z-index: 1;
}

.activities__date-day {
    display: block;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}

.activities__date-month {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    margin-top: 3px;
}

.activities__content {
    padding: 8px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.activities__meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-muted);
}

.activities__category, 
.activities__author {
    display: flex;
    align-items: center;
}

.activities__meta i {
    margin-right: 5px;
    color: var(--empower-orange);
}

.activities__item-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.4;
}

.activities__link {
    color: var(--empower-orange-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.activities__link:hover {
    color: var(--empower-orange);
}

.activities__empty {
    text-align: center;
    padding: 40px;
    background: var(--bg-card);
    border-radius: 12px;
    box-shadow: 0 4px 12px var(--shadow-warm);
    grid-column: span 3;
    border: 1px solid rgba(230, 81, 0, 0.08);
}

.activities__cta {
    text-align: center;
    margin-top: 30px;
}

.activities__btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--empower-orange) 0%, var(--empower-orange-dark) 100%);
    color: var(--text-white);
    font-size: 18px;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px var(--shadow-soft);
}

.activities__btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.activities__btn:hover {
    background: linear-gradient(135deg, var(--empower-orange-light) 0%, var(--empower-orange) 100%);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(230, 81, 0, 0.3);
}

.activities__btn:hover i {
    transform: translateX(5px);
}

/*Photo Gallery*/
.gallery {
    padding: 20px 0;
    background-color: var(--bg-warm);
    position: relative;
}

.gallery::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/patterns/pattern-light.png');
    background-size: 200px;
    opacity: 0.1;
    z-index: 0;
}

.gallery__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.gallery__header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery__subtitle {
    display: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--empower-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative;
}

.gallery__subtitle::before,
.gallery__subtitle::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background-color: var(--empower-orange);
}

.gallery__subtitle::before {
    right: 100%;
    margin-right: 15px;
}

.gallery__subtitle::after {
    left: 100%;
    margin-left: 15px;
}

.gallery__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 20px;
}

.gallery__title span {
    color: var(--empower-orange);
    font-size: 32px;
    font-weight: 700;
    margin-right: 5px;
}

.gallery__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.gallery__divider span {
    height: 2px;
    width: 60px;
    background-color: var(--empower-orange);
    border-radius: 2px;
}

.gallery__divider i {
    color: var(--empower-orange);
    font-size: 24px;
    margin: 0 15px;
}

.gallery__description {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.gallery__carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 40px;
}

.gallery__track {
    display: flex;
    width: fit-content;
    animation: galleryScroll 60s linear infinite;
}

.gallery__track:hover {
    animation-play-state: paused;
}

@keyframes galleryScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.gallery__item {
    flex: 0 0 auto;
    width: 300px;
    margin-right: 25px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-warm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery__item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-soft);
    z-index: 10;
}

.gallery__image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.gallery__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery__item:hover .gallery__image {
    transform: scale(1.1);
}

.gallery__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--overlay-orange) 0%, var(--overlay-orange) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery__item:hover .gallery__overlay {
    opacity: 1;
}

.gallery__info {
    text-align: center;
    color: var(--text-white);
    padding: 20px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery__item:hover .gallery__info {
    transform: translateY(0);
}

.gallery__item-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-white);
}

.gallery__item-desc {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--text-white);
}

.gallery__zoom {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--text-white);
    color: var(--empower-orange);
    border-radius: 50%;
    font-size: 16px;
    transition: all 0.3s ease;
}

.gallery__zoom:hover {
    text-decoration: none;
    background: linear-gradient(135deg, var(--empower-orange) 0%, var(--empower-orange-dark) 100%);
    color: var(--text-white);
    transform: scale(1.1);
}

.gallery__empty {
    text-align: center;
    padding: 40px;
    background: var(--bg-card);
    border-radius: 12px;
    box-shadow: 0 4px 12px var(--shadow-warm);
    border: 1px solid rgba(230, 81, 0, 0.08);
}

.gallery__btn-wrapper {
    text-align: center;
    margin-top: 30px;
}

.gallery__btn {
    display: inline-block;
    padding: 10px 30px;
    color: var(--text-white);
    font-weight: 600;
    text-decoration: none;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
    border: none;
    background: transparent;
}

.gallery__btn::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -20px;
    width: calc(100% + 50px);
    height: calc(100% + 25px);
    background-image: url('https://www.raiseindiafoundation.org/assets/img/brush-btn-6.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: -1;
}

.gallery__btn:hover {
    transform: translateY(-3px);
}

.gallery__btn span {
    position: relative;
    z-index: 2;
    font-size: 16px;
    font-weight: 700;
}

/*IMPACT SECTION*/

.impact-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--trust-teal-dark) 0%, var(--trust-teal-light) 100%);
    overflow: hidden;
}

.impact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="justice-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.05)"/><rect x="35" y="35" width="8" height="8" fill="rgba(0,105,92,0.08)" rx="2"/></pattern></defs><rect width="100%" height="100%" fill="url(%23justice-pattern)"/></svg>');
    pointer-events: none;
}

.impact-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, transparent 0%, rgba(0,105,92,0.1) 50%, transparent 100%);
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 80%);
}

.impact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.impact-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.impact-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: var(--trust-teal-soft);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.impact-subtitle::before,
.impact-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    background: var(--trust-teal-soft);
}

.impact-subtitle::before {
    left: -60px;
}

.impact-subtitle::after {
    right: -60px;
}

.impact-title {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    position: relative;
}

.impact-title .highlight {
    background: linear-gradient(135deg, var(--trust-teal-soft) 0%, var(--text-white) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.impact-description {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border-color: var(--trust-teal-soft);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,105,92,0.1) 0%, rgba(0,105,92,0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--empower-orange-light) 0%, var(--empower-orange) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(0,105,92,0.3);
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotateY(180deg);
    box-shadow: 0 12px 35px rgba(0,105,92,0.4);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-description {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

.achievements-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
}

.achievements-section::before {
    display: none;
}

.achievements-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.achievements-title {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 2px 15px rgba(0,0,0,0.3);
}

.achievements-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    max-width: 500px;
    margin: 0 auto;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
    z-index: 2;
}

.achievement-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 30px 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.achievement-card:hover {
    transform: translateY(-5px);
    border-color: var(--trust-teal-soft);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.achievement-card:hover::before {
    left: 100%;
}

.achievement-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--empower-orange-light) 0%, var(--empower-orange) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,105,92,0.3);
}

.achievement-title {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 1px 5px rgba(0,0,0,0.2);
}

.achievement-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

.impact-cta {
    text-align: center;
    margin-top: 70px;
    position: relative;
    z-index: 2;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--empower-orange-light) 0%, var(--empower-orange) 100%);
    color: white;
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,105,92,0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transition: left 0.3s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,105,92,0.4);
}

.cta-button i {
    font-size: 18px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-card {
    animation: fadeInUp 0.6s ease forwards;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

.achievement-card {
    animation: fadeInUp 0.6s ease forwards;
}

.achievement-card:nth-child(1) { animation-delay: 0.2s; }
.achievement-card:nth-child(2) { animation-delay: 0.3s; }
.achievement-card:nth-child(3) { animation-delay: 0.4s; }
.achievement-card:nth-child(4) { animation-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.stat-card:focus,
.achievement-card:focus,
.cta-button:focus {
    outline: 3px solid var(--trust-teal-soft);
    outline-offset: 3px;
}

/*Testimonial Section*/
.testimonials {
    padding: 80px 0;
    background-color: var(--bg-warm);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, var(--shadow-warm) 1px, transparent 1px),
        radial-gradient(circle, var(--shadow-warm) 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: 0 0, 15px 15px;
    opacity: 0.5;
    z-index: 0;
}

.testimonials__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.testimonials__header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials__subtitle {
    display: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--empower-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative;
}

.testimonials__subtitle::before,
.testimonials__subtitle::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background-color: var(--empower-orange);
}

.testimonials__subtitle::before {
    right: 100%;
    margin-right: 15px;
}

.testimonials__subtitle::after {
    left: 100%;
    margin-left: 15px;
}

.testimonials__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 20px;
}

.testimonials__title span {
    color: var(--text-primary);
}

.testimonials__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.testimonials__divider span {
    height: 2px;
    width: 60px;
    background-color: var(--empower-orange);
    border-radius: 2px;
}

.testimonials__divider i {
    color: var(--empower-orange);
    font-size: 24px;
    margin: 0 15px;
}

.testimonials__description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.testimonials__wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 50px;
    padding: 0 60px;
}

.testimonials__item {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonials__item--active {
    display: block;
    opacity: 1;
}

.testimonials__content {
    background-color: var(--bg-card);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px var(--shadow-warm);
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(230, 81, 0, 0.06);
}

.testimonials__content:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-soft);
    border-color: rgba(230, 81, 0, 0.12);
}

.testimonials__quote-icon {
    position: absolute;
    top: -20px;
    left: 40px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--empower-orange) 0%, var(--empower-orange-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 24px;
    box-shadow: 0 5px 15px var(--shadow-soft);
}

.testimonials__text {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonials__item-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--empower-orange) 0%, var(--empower-orange-light) 100%);
    margin-bottom: 20px;
    border-radius: 2px;
}

.testimonials__author {
    display: flex;
    align-items: center;
}

.testimonials__author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid var(--empower-orange);
}

.testimonials__author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials__author-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--empower-orange-dark);
    margin-bottom: 5px;
}

.testimonials__author-info p {
    font-size: 14px;
    color: var(--text-muted);
}

.testimonials__dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.testimonials__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(230, 81, 0, 0.3);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonials__dot--active {
    background-color: var(--empower-orange-dark);
    transform: scale(1.2);
}

@keyframes testimonials-fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes testimonials-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.testimonials__header,
.testimonials__item--active {
    animation: testimonials-fade-in 0.8s ease forwards;
}

/*Support Our Cause*/
.causes {
    padding: 30px 0 0 0;
    background-color: var(--bg-secondary);
    position: relative;
}

.causes::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/images/pattern-light.svg');
    background-size: 200px;
    opacity: 0.07;
    z-index: 0;
}

.causes__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.causes__header {
    text-align: center;
    margin-bottom: 60px;
}

.causes__subtitle {
    display: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--empower-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative;
}

.causes__subtitle::before,
.causes__subtitle::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background-color: var(--empower-orange);
}

.causes__subtitle::before {
    right: 100%;
    margin-right: 15px;
}

.causes__subtitle::after {
    left: 100%;
    margin-left: 15px;
}

.causes__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 20px;
    position: relative;
}

.causes__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.causes__divider span {
    height: 2px;
    width: 60px;
    background-color: var(--empower-orange);
    border-radius: 2px;
}

.causes__divider i {
    color: var(--empower-orange);
    font-size: 24px;
    margin: 0 15px;
}

.causes__description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.causes__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.causes__item {
    transition: all 0.3s ease;
}

.causes__item:hover {
    transform: translateY(-10px);
}

.causes__inner {
    background-color: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px var(--shadow-warm);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border: 1px solid rgba(230, 81, 0, 0.06);
}

.causes__item:hover .causes__inner {
    box-shadow: 0 20px 40px var(--shadow-soft);
    border-color: rgba(230, 81, 0, 0.12);
}

.causes__thumb {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.causes__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.causes__item:hover .causes__thumb img {
    transform: scale(1.05);
}

.causes__badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--empower-orange) 0%, var(--empower-orange-dark) 100%);
    color: var(--text-white);
    font-size: 14px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    box-shadow: 0 4px 10px var(--shadow-soft);
}

.causes__time {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.causes__time i {
    color: var(--empower-orange);
}

.causes__content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.causes__item-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 15px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.causes__read-more {
    display: none;
}

.causes__title-link {
    text-decoration: none;
    color: var(--empower-orange-dark);
}

.causes__item:hover .causes__item-title {
    color: var(--empower-orange);
}

.causes__excerpt {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.causes__progress {
    margin-top: auto;
    margin-bottom: 25px;
}

.causes__progress-bar {
    height: 10px;
    background-color: #e5e7eb;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 20px;
}

.causes__progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--empower-orange) 0%, var(--empower-orange-light) 100%);
    border-radius: 5px;
    position: relative;
    transition: width 1s ease-in-out;
}

.causes__progress-fill::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 12px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 0 5px 5px 0;
}

.causes__stats {
    display: flex;
    justify-content: space-between;
}

.causes__stats-item {
    text-align: center;
    flex: 1;
}

.causes__stats-value {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.causes__stats-item:nth-child(2) .causes__stats-value {
    color: var(--empower-orange-dark);
}

.causes__stats-label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.causes__footer {
    border-top: 1px solid rgba(230, 81, 0, 0.1);
    padding-top: 5px;
}

.causes__btn {
    width: 100%;
    text-align: center;
    display: block;
    background: linear-gradient(135deg, var(--empower-orange) 0%, var(--empower-orange-dark) 100%);
    color: var(--text-white);
    font-size: 15px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px var(--shadow-warm);
}

.causes__btn:hover {
    background: linear-gradient(135deg, var(--empower-orange-light) 0%, var(--empower-orange) 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-soft);
}

.causes__empty {
    text-align: center;
    padding: 50px;
    background-color: var(--bg-card);
    border-radius: 16px;
    box-shadow: 0 8px 25px var(--shadow-warm);
    border: 1px solid rgba(230, 81, 0, 0.08);
}

.causes__empty p {
    font-size: 18px;
    color: var(--text-muted);
}

@keyframes causes-fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.causes__header,
.causes__item {
    animation: causes-fade-in-up 0.8s ease forwards;
}

.causes__header {
    animation-delay: 0.2s;
}

.causes__item:nth-child(1) {
    animation-delay: 0.4s;
}

.causes__item:nth-child(2) {
    animation-delay: 0.6s;
}

/*Latest Update and Member Section*/

.updates-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px 0 0 0;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
    color: var(--text-primary);
    font-weight: 600;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--empower-orange) 0%, var(--empower-orange-light) 100%);
    margin: 15px auto 0;
    border-radius: 2px;
}

.updates-donors__container {
    display: flex;
    gap: 20px;
    margin: 0 auto;
}

.updates-feed__wrapper {
    flex: 2;
    background-color: var(--bg-card);
    border-radius: 16px;
    box-shadow: 0 8px 25px var(--shadow-warm);
    overflow: hidden;
    border: 1px solid rgba(230, 81, 0, 0.1);
}

.updates-feed__header {
    background: linear-gradient(135deg, var(--empower-orange) 0%, var(--empower-orange-dark) 100%);
    color: var(--text-white);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.updates-feed__title_content {
    color: var(--empower-orange);
    font-size: 18px;
    font-weight: bold;
}

.updates-feed__options {
    display: flex;
    gap: 15px;
}

.updates-feed__option {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 5px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
}

.updates-feed__option:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

#updatesAutoScrollToggle {
    min-width: 110px;
    text-align: center;
}

#updatesAutoScrollToggle.active {
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.updates-feed__scroll-container {
    position: relative;
    height: 500px;
    overflow-y: auto;
    background-color: var(--bg-warm);
    scrollbar-width: thin;
    scrollbar-color: var(--empower-orange) var(--support-pink-soft);
}

.updates-feed__scroll-container::-webkit-scrollbar {
    width: 6px;
}

.updates-feed__scroll-container::-webkit-scrollbar-track {
    background: var(--support-pink-soft);
    border-radius: 10px;
}

.updates-feed__scroll-container::-webkit-scrollbar-thumb {
    background: var(--empower-orange);
    border-radius: 10px;
}

.updates-feed__scroll-content {
    width: 100%;
    padding: 15px;
}

.updates-feed__card {
    background-color: var(--bg-card);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px var(--shadow-warm);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s forwards;
    border: 1px solid rgba(230, 81, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.updates-feed__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px var(--shadow-soft);
    border-color: rgba(230, 81, 0, 0.12);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.updates-feed__card-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.updates-feed__avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--empower-orange-light), var(--support-pink));
    margin-right: 12px;
    overflow: hidden;
    border: 2px solid var(--empower-orange);
    box-shadow: 0 2px 8px var(--shadow-pink);
}

.updates-feed__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.updates-feed__info {
    flex: 1;
}

.updates-feed__author {
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 3px;
    font-size: 16px;
}

.updates-feed__timestamp {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
}

.updates-feed__timestamp i {
    margin-right: 5px;
    font-size: 12px;
    color: var(--empower-orange);
}

.updates-feed__content {
    margin-bottom: 15px;
}

.updates-feed__title {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--text-white);
    font-weight: 700;
}

.updates-feed__text {
    line-height: 1.5;
    margin-bottom: 15px;
    color: var(--text-secondary);
    font-size: 15px;
}

.updates-feed__media {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px var(--shadow-warm);
}

.updates-feed__media img, 
.updates-feed__media video {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.updates-feed__media:hover img {
    transform: scale(1.02);
}

.updates-feed__actions {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--support-pink-soft);
    padding-top: 15px;
}

.updates-feed__action-button {
    color: var(--text-secondary);
    font-size: 14px;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 30px;
    transition: all 0.3s ease;
    gap: 8px;
}

.updates-feed__action-button:hover {
    background: linear-gradient(135deg, var(--bg-warm), var(--support-pink-soft));
    transform: translateY(-2px);
}

.updates-feed__action-button i {
    font-size: 16px;
    transition: transform 0.2s ease;
}

.updates-feed__action-button:hover i {
    transform: scale(1.1);
}

.updates-feed__like-button:hover {
    color: var(--support-coral);
}

.updates-feed__like-button:hover i {
    color: var(--support-coral);
}

.updates-feed__comment-button:hover {
    color: var(--empower-orange);
}

.updates-feed__share-button:hover {
    color: var(--trust-teal);
}

.updates-feed__comments {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--support-pink-soft);
    display: none;
    background: var(--bg-teal-light);
    border-radius: 8px;
    padding: 12px;
}

.updates-feed__comment-form {
    display: flex;
    margin-bottom: 12px;
    gap: 8px;
}

.updates-feed__comment-input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid rgba(0, 105, 92, 0.2);
    border-radius: 25px;
    margin-right: 0;
    font-size: 13px;
    transition: all 0.3s ease;
    background: var(--bg-primary);
}

.updates-feed__comment-input:focus {
    outline: none;
    border-color: var(--empower-orange);
    box-shadow: 0 0 0 3px var(--shadow-warm);
}

.updates-feed__comment-submit {
    background: linear-gradient(135deg, var(--empower-orange) 0%, var(--empower-orange-dark) 100%);
    color: var(--text-white);
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.updates-feed__comment-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-soft);
}

.updates-feed__comments-list {
    max-height: 200px;
    overflow-y: auto;
    padding-right: 6px;
}

.updates-feed__comments-list::-webkit-scrollbar {
    width: 4px;
}

.updates-feed__comments-list::-webkit-scrollbar-track {
    background: var(--support-pink-soft);
    border-radius: 10px;
}

.updates-feed__comments-list::-webkit-scrollbar-thumb {
    background: var(--trust-teal-light);
    border-radius: 10px;
}

.updates-feed__comment-item {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 105, 92, 0.1);
    font-size: 14px;
    color: var(--text-secondary);
}

.updates-feed__comment-author {
    font-weight: bold;
    color: var(--empower-orange-dark);
    font-size: 13px;
    margin-right: 8px;
}

.donors-feed__wrapper {
    flex: 1;
    background-color: var(--bg-card);
    border-radius: 16px;
    box-shadow: 0 8px 25px var(--shadow-warm);
    overflow: hidden;
    border: 1px solid rgba(230, 81, 0, 0.1);
}

.donors-feed__header {
    background: linear-gradient(135deg, var(--empower-orange) 0%, var(--empower-orange-dark) 100%);
    color: var(--text-white);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.donors-feed__title {
    font-size: 18px;
    font-weight: bold;
}

.donors-feed__options {
    display: flex;
    gap: 15px;
}

.donors-feed__option {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 5px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
}

.donors-feed__option:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

#donorsAutoScrollToggle {
    min-width: 110px;
    text-align: center;
}

#donorsAutoScrollToggle.active {
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.donors-feed__scroll-container {
    position: relative;
    height: 500px;
    overflow-y: auto;
    background-color: var(--bg-warm);
    scrollbar-width: thin;
    scrollbar-color: var(--empower-orange) var(--support-pink-soft);
}

.donors-feed__scroll-container::-webkit-scrollbar {
    width: 6px;
}

.donors-feed__scroll-container::-webkit-scrollbar-track {
    background: var(--support-pink-soft);
    border-radius: 10px;
}

.donors-feed__scroll-container::-webkit-scrollbar-thumb {
    background: var(--empower-orange);
    border-radius: 10px;
}

.donors-feed__scroll-content {
    width: 100%;
    padding: 15px;
}

.donors-feed__card {
    background-color: var(--bg-card);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px var(--shadow-warm);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s forwards;
    border: 1px solid rgba(230, 81, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
}

.donors-feed__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px var(--shadow-soft);
    border-color: rgba(230, 81, 0, 0.12);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.donors-feed__donor-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid var(--empower-orange);
    flex-shrink: 0;
    box-shadow: 0 2px 8px var(--shadow-warm);
}

.donors-feed__donor-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.donors-feed__donor-info {
    flex: 1;
}

.donors-feed__donor-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 5px 0;
}

.donors-feed__donation-amount {
    font-size: 18px;
    font-weight: 700;
    color: var(--empower-orange);
    margin-bottom: 5px;
}

.donors-feed__donation-time {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.donors-feed__donor-message {
    font-size: 13px;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.4;
    border-left: 3px solid var(--empower-orange);
    padding-left: 10px;
    margin-top: 5px;
}

.updates-section__header {
    text-align: center;
    margin-bottom: 50px;
}

.updates-section__subtitle {
    display: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--empower-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative;
}

.updates-section__subtitle::before,
.updates-section__subtitle::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background-color: var(--empower-orange);
}

.updates-section__subtitle::before {
    right: 100%;
    margin-right: 15px;
}

.updates-section__subtitle::after {
    left: 100%;
    margin-left: 15px;
}

.updates-section__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 20px;
}

.updates-section__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.updates-section__divider span {
    height: 2px;
    width: 60px;
    background-color: var(--empower-orange);
    border-radius: 2px;
}

.updates-section__divider i {
    color: var(--empower-orange);
    font-size: 24px;
    margin: 0 15px;
}

.updates-section__description {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}


/*
==============================================================================
                        HOVER EFFECTS & TRANSITIONS
==============================================================================
*/

/* Global Hover Effects */
.hover-lift:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 20px var(--shadow-medium);
    transition: box-shadow 0.3s ease;
}

/* Button Hover Effects */
.btn-saffron {
    background: var(--gradient-primary);
    color: var(--text-white);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px var(--shadow-light);
}

.btn-saffron:hover {
    background: var(--gradient-secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--shadow-medium);
    color: var(--text-white);
    text-decoration: none;
}

.btn-outline-saffron {
    background: transparent;
    color: var(--primary-saffron);
    border: 2px solid var(--primary-saffron);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-outline-saffron:hover {
    background: var(--primary-saffron);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--shadow-medium);
    text-decoration: none;
}

/*
==============================================================================
                        ANIMATION KEYFRAMES
==============================================================================
*/

@keyframes saffron-glow {
    0% {
        box-shadow: 0 0 5px var(--shadow-light);
    }
    50% {
        box-shadow: 0 0 20px var(--shadow-medium);
    }
    100% {
        box-shadow: 0 0 5px var(--shadow-light);
    }
}

@keyframes saffron-pulse {
    0% {
        transform: scale(1);
        background-color: var(--primary-saffron);
    }
    50% {
        transform: scale(1.05);
        background-color: var(--primary-saffron-light);
    }
    100% {
        transform: scale(1);
        background-color: var(--primary-saffron);
    }
}

@keyframes saffron-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes saffron-fade-in {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes saffron-slide-in-left {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes saffron-slide-in-right {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/*
==============================================================================
                        ACCESSIBILITY IMPROVEMENTS
==============================================================================
*/

/* Focus States */
*:focus {
    outline: 2px solid var(--primary-saffron);
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-saffron: #B71C1C;
        --primary-saffron-dark: #8D1010;
        --text-primary: #000000;
        --text-secondary: #2C2C2C;
        --bg-primary: #FFFFFF;
        --bg-secondary: #F8F8F8;
    }
}

/*
==============================================================================
                        PRINT STYLES
==============================================================================
*/

@media print {
    .hero-slider,
    .advertisement,
    .youtube-gallery,
    .updates-section {
        display: none;
    }
    
    * {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
    }
    
    .dharmic-mission,
    .impact {
        background: white !important;
        color: black !important;
    }
    
    .dharmic-mission *,
    .impact * {
        color: black !important;
    }
}
