/* ============================================================
   Ri-Light Foundation — Custom Theme Overrides
   Color palette derived from brand logo
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  --theme-color: #1A5276;
  --theme-dark: #0D2840;
  --theme-color2: #F58220;
  --theme-color3: #E85D04;
  --title-color: #0D2840;
  --body-color: #5A6578;
  --smoke-color: #F4F7FA;
  --smoke-color2: #EEF2F6;
  --gray-color: #F0F4F8;
  --yellow-color: #FFB539;
  --title-font: "Outfit", sans-serif;
  --body-font: "Inter", sans-serif;
  --caveat-font: "Outfit", sans-serif;
  --th-border-color: #DDE4EC;
  --section-space: 60px;
  --section-space-mobile: 44px;
  --section-title-space: 36px;
}

/* ---- Preloader ---- */
.rilight-preloader {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rilight-preloader .preloader-inner {
  position: static;
  transform: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.rilight-preloader .preloader-logo img {
  max-height: 72px;
  width: auto;
  animation: rilightLogoFade 1.2s ease-in-out infinite alternate;
}
.rilight-preloader .preloader-spinner {
  width: 44px;
  height: 44px;
  position: relative;
}
.rilight-preloader .preloader-spinner span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid rgba(26, 82, 118, 0.12);
  border-top-color: var(--theme-color);
  border-right-color: var(--theme-color2);
  animation: rilightSpin 0.85s linear infinite;
}
.rilight-preloader .preloader-tagline {
  font-family: var(--body-font);
  font-size: 13px;
  font-weight: 500;
  color: var(--body-color);
  letter-spacing: 0.5px;
  margin: 0;
  opacity: 0;
  animation: rilightTagline 1.5s ease 0.3s forwards;
}
.rilight-preloader .loader,
.rilight-preloader .loading-text {
  display: none !important;
}
@keyframes rilightSpin {
  to { transform: rotate(360deg); }
}
@keyframes rilightLogoFade {
  from { opacity: 0.75; transform: scale(0.97); }
  to   { opacity: 1;    transform: scale(1); }
}
@keyframes rilightTagline {
  to { opacity: 1; }
}

/* ---- Single Row Header ---- */
.rilight-header {
  background: #fff;
  box-shadow: 0 1px 8px rgba(13, 40, 64, 0.06);
  position: relative;
  z-index: 999;
  margin-bottom: 0 !important;
}
.rilight-header .container {
  padding-top: 0;
  padding-bottom: 0;
}
.rilight-header .menu-top {
  display: none !important;
}
.rilight-header .sticky-wrapper {
  all: unset;
}
.rilight-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 48px;
  padding: 4px 0;
}
.rilight-header .header-logo {
  flex-shrink: 0;
}
.rilight-header .header-logo img {
  max-height: 38px;
  width: auto !important;
  object-fit: contain;
  display: block;
}
.rilight-header .main-menu {
  flex: 1;
  display: flex;
  justify-content: center;
}
.rilight-header .main-menu > ul {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
}
.rilight-header .main-menu > ul > li {
  margin: 0;
  list-style: none;
}
.rilight-header .main-menu > ul > li > a {
  font-family: var(--title-font);
  font-weight: 600;
  font-size: 14px;
  color: var(--title-color) !important;
  padding: 6px 14px !important;
  border-radius: 8px;
  transition: all 0.25s ease;
  position: relative;
}
.rilight-header .main-menu > ul > li > a::after {
  display: none !important;
}
.rilight-header .main-menu > ul > li > a:hover,
.rilight-header .main-menu > ul > li > a.active {
  color: var(--theme-color) !important;
  background: rgba(26, 82, 118, 0.06);
}
.rilight-header .header-actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.rilight-header .rilight-donate-btn {
  padding: 9px 20px !important;
  font-size: 13px;
  font-weight: 700;
  min-width: unset !important;
  white-space: nowrap;
  line-height: 1.2;
}
.rilight-header .rilight-mobile-toggle {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--th-border-color);
  background: #fff;
  color: var(--title-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.25s;
}
.rilight-header .rilight-mobile-toggle:hover {
  background: var(--theme-color);
  color: #fff;
  border-color: var(--theme-color);
}

/* Override old header-default styles */
.header-default.rilight-header,
.th-header.rilight-header {
  margin-bottom: 0 !important;
}
.rilight-header .menu-area,
.rilight-header .menu-area .menu-area-wrap {
  all: unset;
}
.rilight-header.header-default .main-menu > ul > li > a {
  color: var(--title-color) !important;
}
.rilight-header.header-default .main-menu > ul > li > a:hover {
  color: var(--theme-color) !important;
}

/* Sticky header on scroll */
.rilight-header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  animation: rilightStickyIn 0.35s ease;
  box-shadow: 0 4px 20px rgba(13, 40, 64, 0.1);
}
body.rilight-header-sticky {
  padding-top: 48px;
}
@media (max-width: 991px) {
  body.rilight-header-sticky {
    padding-top: 44px;
  }
}

@keyframes rilightStickyIn {
  from { transform: translateY(-100%); }
  to   { transform: translateY(0); }
}

@media (max-width: 991px) {
  .rilight-header-inner {
    min-height: 44px;
    padding: 3px 0;
  }
  .rilight-header .header-logo img {
    max-height: 34px;
  }
}

/* ---- Header Redesign (legacy overrides) ---- */
.th-header.header-default {
  box-shadow: none;
}
.th-header .menu-top {
  display: none;
}
.th-header .sticky-wrapper {
  background: #fff;
}
.th-header .main-menu > ul > li > a {
  font-family: var(--title-font);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  color: var(--title-color);
  position: relative;
}
.th-header .main-menu > ul > li > a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--theme-color), var(--theme-color2));
  transition: width 0.3s;
}
.th-header .main-menu > ul > li > a:hover::after,
.th-header .main-menu > ul > li.active > a::after {
  width: 100%;
}
.th-header .header-logo img {
  max-height: 70px;
  width: auto !important;
  object-fit: contain;
}

/* ---- Buttons ---- */
.th-btn {
  font-family: var(--title-font);
  font-weight: 600;
  border-radius: 50px;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  min-width: unset;
}
.th-btn.style3 {
  background: linear-gradient(135deg, var(--theme-color2), #FFB539) !important;
  color: #fff !important;
  border: none;
  box-shadow: 0 4px 15px rgba(245, 130, 32, 0.35);
}
.th-btn.style3:hover {
  background: linear-gradient(135deg, #E85D04, var(--theme-color2)) !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 130, 32, 0.45);
}
.th-btn.style4 {
  background: linear-gradient(135deg, var(--theme-color2), #E85D04) !important;
  color: #fff !important;
  border: none;
  box-shadow: none !important;
}
.th-btn.style4:hover {
  background: linear-gradient(135deg, #E85D04, #FFB539) !important;
  color: #fff !important;
  box-shadow: none !important;
}

/* Hero slider button — white pill, readable on dark overlay */
.hero-1 .th-btn.style4,
.hero-style1 .th-btn.style4 {
  background: #ffffff !important;
  color: var(--theme-color) !important;
  border: 2px solid #ffffff !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18) !important;
  padding: 14px 32px !important;
  font-weight: 700 !important;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18) !important;
}
.hero-1 .th-btn.style4:hover,
.hero-1 .th-btn.style4:active,
.hero-style1 .th-btn.style4:hover,
.hero-style1 .th-btn.style4:active {
  background: var(--theme-color2) !important;
  color: #ffffff !important;
  border-color: var(--theme-color2) !important;
  box-shadow: 0 6px 24px rgba(245, 130, 32, 0.45) !important;
  -webkit-box-shadow: 0 6px 24px rgba(245, 130, 32, 0.45) !important;
  transform: translateY(-2px);
}
.hero-1 .th-btn.style4 i,
.hero-style1 .th-btn.style4 i {
  color: inherit !important;
}
.th-btn.style5 {
  background: #fff !important;
  color: var(--theme-color) !important;
  border: 2px solid #fff !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.12) !important;
}
.th-btn.style5:hover {
  background: var(--theme-color2) !important;
  color: #fff !important;
  border-color: var(--theme-color2) !important;
  box-shadow: 0 6px 20px rgba(245,130,32,0.35) !important;
}
.th-btn:not(.style5):not(.style3):not(.style4):hover {
  color: #fff !important;
  background-color: var(--theme-color) !important;
}
.service-card .th-btn {
  background: var(--theme-color) !important;
  color: #fff !important;
  padding: 14px 28px !important;
  font-size: 14px;
}
.service-card .th-btn:hover {
  background: var(--theme-color2) !important;
  color: #fff !important;
}
.cta-card .th-btn.style5 {
  color: var(--theme-color) !important;
}
.cta-card .th-btn.style5:hover {
  color: #fff !important;
}

/* ---- Hero Section ---- */
.hero-1 .hero-inner {
  min-height: 620px;
}
.hero-1 .hero-title {
  font-family: var(--title-font);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.2;
}
.hero-1 .sub-title {
  background: rgba(245, 130, 32, 0.2);
  border: 1px solid rgba(245, 130, 32, 0.4);
  border-radius: 50px;
  padding: 6px 20px;
  font-family: var(--title-font);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--theme-color2) !important;
}

/* ---- Section Titles ---- */
.sec-title {
  font-family: var(--title-font);
  font-weight: 700;
  color: var(--title-color);
  line-height: 1.25;
}
.sub-title {
  font-family: var(--title-font);
  font-weight: 600;
  color: var(--theme-color2);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 13px;
  margin-bottom: 14px;
  line-height: 1.4;
}
.sub-title::before,
.sub-title::after {
  background: var(--theme-color2) !important;
  width: 32px;
  height: 2px;
}
.title-area.text-center .sub-title,
.rilight-center .sub-title {
  justify-content: center;
}
.sec-title {
  margin-bottom: 16px;
}
.title-area {
  margin-bottom: 32px;
}
.title-area.mb-30 {
  margin-bottom: 24px !important;
}
.title-area.mb-35 {
  margin-bottom: 28px !important;
}
.title-area.mb-5 {
  margin-bottom: 28px !important;
}

/* ---- About Section ---- */
.about-wrap1 .img1 img {
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(13, 40, 64, 0.15);
}
.checklist.style2 ul li {
  font-family: var(--body-font);
  font-weight: 500;
}

/* ---- Impact Cards ---- */
.video-area-1.bg-theme {
  background: linear-gradient(135deg, var(--theme-dark) 0%, var(--theme-color) 100%) !important;
}

/* About page stats — white cards, readable text on dark section */
.video-area-1 .counter-card-wrap .counter-card {
  background: #ffffff !important;
  border-radius: 14px;
  padding: 24px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-left: none !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.video-area-1 .counter-card-wrap .counter-card .box-number {
  color: var(--theme-color) !important;
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 4px;
}
.video-area-1 .counter-card-wrap .counter-card .box-text {
  color: var(--body-color) !important;
  font-weight: 600;
}
.video-area-1 .counter-card-wrap .counter-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}
.video-area-1 .counter-card-wrap:first-child .counter-card {
  background: linear-gradient(135deg, var(--theme-color2), #FFB539) !important;
}
.video-area-1 .counter-card-wrap:first-child .counter-card .box-number,
.video-area-1 .counter-card-wrap:first-child .counter-card .box-text {
  color: #ffffff !important;
}

/* ---- Section Spacing ---- */
.space, .space-top {
  padding-top: var(--section-space) !important;
}
.space, .space-bottom {
  padding-bottom: var(--section-space) !important;
}
.cta-area-1.space {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}
.cta-area-2.space {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}
.trust-area.space {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}
#mission-sec.space,
#about-sec.space {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}
.space-top {
  margin-top: 0 !important;
}
@media (max-width: 991px) {
  .space, .space-top {
    padding-top: var(--section-space-mobile) !important;
  }
  .space, .space-bottom {
    padding-bottom: var(--section-space-mobile) !important;
  }
  .cta-area-1.space,
  .cta-area-2.space,
  .trust-area.space,
  #mission-sec.space,
  #about-sec.space {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }
}

/* ---- CTA Cards ---- */
.cta-card {
  border-radius: 20px;
  overflow: hidden;
  min-height: 280px;
  position: relative;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,40,64,0.85) 0%, rgba(26,82,118,0.7) 100%);
  z-index: 1;
}
.cta-card .box-title,
.cta-card .box-text,
.cta-card .th-btn {
  position: relative;
  z-index: 2;
}
.cta-card.style2::before {
  background: linear-gradient(135deg, rgba(245,130,32,0.85) 0%, rgba(232,93,4,0.75) 100%);
}

/* ---- Service/Story Cards ---- */
.service-card {
  border-radius: 16px;
  border: 1px solid var(--th-border-color);
  transition: all 0.35s ease;
  background: #fff;
  padding: 0;
  text-align: center;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(13, 40, 64, 0.1);
  border-color: transparent;
}
.service-card .box-icon {
  width: 72px !important;
  height: 72px !important;
  min-height: 72px !important;
  line-height: 1 !important;
  border-radius: 16px !important;
  background: linear-gradient(135deg, rgba(26,82,118,0.08), rgba(245,130,32,0.1)) !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin: 28px auto 0 !important;
  position: relative;
}
.service-card .box-icon::after {
  display: none !important;
}
.service-card .box-content {
  background: transparent !important;
  padding: 20px 28px 32px !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.service-card .box-title {
  font-family: var(--title-font);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 12px;
}
.service-card .box-text {
  margin-bottom: 20px;
  color: var(--body-color);
}

/* ---- Trust Cards ---- */
.trust-area {
  background: var(--smoke-color);
}
.trust-card {
  background: #ffffff;
  padding: 28px 20px;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--th-border-color);
  transition: all 0.3s ease;
  height: 100%;
}
.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.trust-icon {
  width: 60px !important;
  height: 60px !important;
  border-radius: 50% !important;
  background: rgba(26, 82, 118, 0.08) !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px !important;
}
.trust-icon i {
  font-size: 22px !important;
  color: var(--theme-color) !important;
}
.trust-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.trust-text {
  font-size: 14px;
  color: var(--body-color);
  line-height: 1.6;
}

/* ---- Feature Cards (About page) ---- */
.feature-card {
  border-radius: 16px !important;
  transition: all 0.3s;
  border: 1px solid var(--th-border-color);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05) !important;
  background: #fff;
  overflow: visible;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(13, 40, 64, 0.08) !important;
}
.feature-card .feature-card-bg-shape {
  display: none !important;
}
.feature-card .box-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(26,82,118,0.08), rgba(245,130,32,0.1));
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px !important;
}
.feature-card .box-icon i {
  color: var(--theme-color) !important;
  font-size: 1.5rem;
}
.feature-card .box-title {
  font-size: 18px;
  font-weight: 700;
}
.feature-card .box-text {
  font-size: 14px;
  color: var(--body-color);
  line-height: 1.6;
}

/* ---- Brand/Partners ---- */
.brand-area-1 {
  background: #fff;
  border-top: 1px solid var(--th-border-color);
}
.brand-wrap-title {
  font-family: var(--title-font);
  font-weight: 700;
  color: var(--title-color);
}
.brand-box img {
  filter: grayscale(30%);
  opacity: 0.85;
  transition: all 0.3s;
  max-height: 60px;
  object-fit: contain;
}
.brand-box:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ---- Footer ---- */
.rilight-footer.footer-wrapper {
  background: var(--theme-dark) !important;
}
.rilight-footer .footer-top {
  display: none !important;
}
.rilight-footer .widget-area {
  padding: 44px 0 32px !important;
}
.rilight-footer .widget_title {
  font-family: var(--title-font);
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.rilight-footer .widget_title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--theme-color2);
  border-radius: 2px;
}
.rilight-footer .about-logo img {
  max-height: 52px;
  width: auto;
}
.rilight-footer .about-text {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 16px;
}
.rilight-footer-social-wrap {
  margin-top: 6px;
}
.rilight-footer-social-label {
  display: block;
  font-family: var(--title-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 14px;
}
.rilight-footer .rilight-footer-social,
.rilight-footer .social-share.rilight-footer-social {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.rilight-footer-social li {
  margin: 0;
  padding: 0;
  line-height: 1;
}
.rilight-footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 17px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, color 0.28s ease;
}
.rilight-footer-social a::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.28s ease;
}
.rilight-footer-social a i {
  position: relative;
  z-index: 1;
  line-height: 1;
}
.rilight-footer-social a:hover {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  color: #fff;
}
.rilight-footer-social a:hover::before {
  opacity: 1;
}
.rilight-footer-social .rilight-social-fb::before { background: #1877f2; }
.rilight-footer-social .rilight-social-tw::before { background: #000000; }
.rilight-footer-social .rilight-social-yt::before { background: #ff0000; }
.rilight-footer-social .rilight-social-in::before {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.rilight-footer-social .rilight-social-li::before { background: #0a66c2; }
.rilight-footer-social .rilight-social-blog::before { background: var(--theme-color2); }
.rilight-footer-social .rilight-social-and::before { background: linear-gradient(135deg, #34a853, #3ddc84); }
.rilight-footer-social .rilight-social-ios::before { background: #ffffff; }
.rilight-footer-social .rilight-social-fb:hover { color: #fff; }
.rilight-footer-social .rilight-social-tw:hover { color: #fff; }
.rilight-footer-social .rilight-social-yt:hover { color: #fff; }
.rilight-footer-social .rilight-social-in:hover { color: #fff; }
.rilight-footer-social .rilight-social-li:hover { color: #fff; }
.rilight-footer-social .rilight-social-blog:hover { color: #fff; }
.rilight-footer-social .rilight-social-and:hover { color: #0d2840; }
.rilight-footer-social .rilight-social-ios:hover { color: #111; }
.rilight-footer-social .rilight-social-fb { color: #8cb8ff; }
.rilight-footer-social .rilight-social-tw { color: #d6d6d6; }
.rilight-footer-social .rilight-social-yt { color: #ff8a8a; }
.rilight-footer-social .rilight-social-in { color: #f5a0c8; }
.rilight-footer-social .rilight-social-li { color: #8ec5ff; }
.rilight-footer-social .rilight-social-blog { color: #ffc48a; }
.rilight-footer-social .rilight-social-and { color: #8de9b0; }
.rilight-footer-social .rilight-social-ios { color: #f2f2f2; }
.rilight-footer .footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.rilight-footer .footer-links-list li {
  margin-bottom: 8px;
}
.rilight-footer .footer-links-list li a {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  transition: color 0.25s, transform 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.rilight-footer .footer-links-list li a i {
  font-size: 11px;
  color: var(--theme-color2);
  width: 14px;
  text-align: center;
  transition: transform 0.25s;
}
.rilight-footer .footer-links-list li a:hover {
  color: #fff;
}
.rilight-footer .footer-links-list li a:hover i {
  transform: translateX(3px);
}
.rilight-footer .footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.rilight-footer .footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}
.rilight-footer .footer-icon-box {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 10px;
  background: rgba(245, 130, 32, 0.12);
  border: 1px solid rgba(245, 130, 32, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rilight-footer .footer-icon-box i {
  font-size: 14px;
  color: var(--theme-color2);
  line-height: 1;
}
.rilight-footer .footer-contact-list li a,
.rilight-footer .footer-contact-list li span {
  color: rgba(255,255,255,0.75);
  transition: color 0.25s;
  word-break: break-word;
}
.rilight-footer .footer-contact-list li a:hover {
  color: #fff;
}
.rilight-footer .footer-subscribe-text {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 14px;
}
.rilight-footer .footer-newsletter-input {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 12px;
  padding: 6px 6px 6px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
}
.rilight-footer .footer-newsletter-input input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 8px 0;
  font-size: 14px;
  color: #fff;
  outline: none;
  min-width: 0;
}
.rilight-footer .footer-newsletter-input input::placeholder {
  color: rgba(255,255,255,0.4);
}
.rilight-footer .footer-subscribe-btn {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--theme-color2), #FFB539);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  flex-shrink: 0;
}
.rilight-footer .footer-subscribe-btn i {
  font-size: 14px;
  line-height: 1;
}
.rilight-footer .footer-subscribe-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(245,130,32,0.35);
}
.rilight-footer .copyright-wrap {
  padding: 14px 0 !important;
  background: rgba(0,0,0,0.25) !important;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.rilight-footer .copyright-text {
  color: rgba(255,255,255,0.45) !important;
  font-size: 13px;
}
.rilight-footer .copyright-text a {
  color: var(--theme-color2) !important;
}
@media (max-width: 991px) {
  .rilight-footer .widget-area {
    padding: 36px 0 24px !important;
  }
}

/* legacy footer overrides */
.footer-wrapper.footer-default {
  background: var(--theme-dark) !important;
}
.footer-wrapper .subscribe-box {
  display: none !important;
}

/* ---- Breadcrumb ---- */
.breadcumb-wrapper {
  padding: 0 !important;
  min-height: unset !important;
  background-size: cover !important;
  background-position: center !important;
}
.breadcumb-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,40,64,0.88) 0%, rgba(26,82,118,0.75) 100%);
  z-index: 1;
}
.breadcumb-wrapper .container {
  position: relative;
  z-index: 2;
}
.breadcumb-wrapper .breadcumb-content {
  --space: 36px !important;
  padding: 44px 0 36px !important;
  text-align: center;
}
.breadcumb-title {
  font-family: var(--title-font);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem) !important;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.2;
}
.breadcumb-menu {
  margin: 0 !important;
}
.breadcumb-menu li,
.breadcumb-menu li a {
  color: rgba(255,255,255,0.75) !important;
  font-family: var(--body-font);
  font-size: 14px !important;
}
@media (max-width: 767px) {
  .breadcumb-wrapper .breadcumb-content {
    padding: 32px 0 28px !important;
  }
  .breadcumb-title {
    font-size: 1.35rem !important;
  }
}

/* ---- Contact Page ---- */
.contact-feature {
  border-radius: 12px;
  border: 1px solid var(--th-border-color);
  transition: all 0.3s;
}
.contact-feature:hover {
  border-color: var(--theme-color2);
  box-shadow: 0 8px 24px rgba(13,40,64,0.08);
}
.contact-form .form-control {
  border-radius: 8px;
  font-family: var(--body-font);
}
.contact-form .form-control:focus {
  border-color: var(--theme-color);
  box-shadow: 0 0 0 3px rgba(26,82,118,0.12);
}

/* ---- Donate Page ---- */
.donate-hero-sec {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}
.rilight-donate-img {
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(13, 40, 64, 0.12);
  width: 100%;
}
.donate-pay-box {
  background: #fff;
  border: 1px solid var(--th-border-color);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(13, 40, 64, 0.06);
}
.donate-form-fields .donate-field {
  margin-bottom: 16px;
}
.donate-form-fields label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--title-color);
  margin-bottom: 6px;
}
.donate-form-fields input,
.donate-form-fields select {
  width: 100%;
  border: 1px solid var(--th-border-color);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 15px;
  color: var(--title-color);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.donate-form-fields input:focus,
.donate-form-fields select:focus {
  outline: none;
  border-color: var(--theme-color);
  box-shadow: 0 0 0 3px rgba(26, 82, 118, 0.12);
}
.donate-form-alert {
  background: #fdecea;
  color: #c0392b;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 14px;
  margin-bottom: 14px;
}
.donate-public-progress {
  height: 8px;
  background: rgba(26, 82, 118, 0.12);
  border-radius: 999px;
  overflow: hidden;
  margin: 10px 0 8px;
}
.donate-public-progress-bar {
  height: 100%;
  border-radius: 999px;
  transition: width 0.6s ease;
}
.donate-amount-label {
  font-family: var(--title-font);
  font-weight: 600;
  font-size: 14px;
  color: var(--title-color);
  margin: 20px 0 12px;
}
.donate-amount-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}
.donate-amt-btn {
  border: 2px solid var(--th-border-color);
  background: #fff;
  border-radius: 10px;
  padding: 12px 8px;
  font-family: var(--title-font);
  font-weight: 700;
  font-size: 14px;
  color: var(--title-color);
  cursor: pointer;
  transition: all 0.25s;
}
.donate-amt-btn:hover,
.donate-amt-btn.active {
  border-color: var(--theme-color);
  background: rgba(26, 82, 118, 0.06);
  color: var(--theme-color);
}
.donate-custom-amt {
  display: flex;
  align-items: center;
  border: 2px solid var(--th-border-color);
  border-radius: 10px;
  padding: 0 16px;
  margin-bottom: 20px;
  transition: border-color 0.25s;
}
.donate-custom-amt:focus-within {
  border-color: var(--theme-color);
}
.donate-custom-amt span {
  font-weight: 700;
  color: var(--theme-color);
  font-size: 18px;
  margin-right: 8px;
}
.donate-custom-amt input {
  border: none;
  outline: none;
  padding: 14px 0;
  font-size: 16px;
  font-family: var(--body-font);
  width: 100%;
  background: transparent;
}
.rilight-pay-btn {
  padding: 16px 28px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.donate-secure-block {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed var(--th-border-color);
}
.donate-secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 13px;
  color: var(--body-color);
  text-align: center;
}
.donate-secure-note i {
  color: var(--theme-color2);
  font-size: 16px;
}
.donate-secure-note strong {
  color: var(--theme-color);
  font-weight: 700;
}
.donate-pay-trust-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.donate-trust-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 36px;
  padding: 6px 12px;
  border-radius: 8px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #475569;
  font-size: 12px;
  line-height: 1;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.donate-trust-chip:hover {
  border-color: var(--theme-color);
  box-shadow: 0 4px 12px rgba(26, 82, 118, 0.08);
}
.donate-trust-chip i {
  font-size: 18px;
  line-height: 1;
}
.donate-trust-chip small {
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.02em;
}
.donate-trust-brand {
  padding: 6px 10px;
  min-width: 48px;
}
.donate-trust-brand.visa i {
  color: #1a1f71;
  font-size: 26px;
}
.donate-trust-brand.mastercard i {
  color: #eb001b;
  font-size: 26px;
}
.donate-trust-brand.amex i {
  color: #006fcf;
  font-size: 26px;
}
.donate-trust-rpay {
  background: #072654;
  border-color: #072654;
  color: #fff;
  padding: 8px 14px;
}
.donate-rpay-wordmark {
  display: inline-block;
  font-family: var(--body-font), Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.4px;
  line-height: 1;
  text-transform: lowercase;
}
.donate-trust-rpay:hover {
  border-color: #0d3d7a;
  box-shadow: 0 4px 12px rgba(7, 38, 84, 0.25);
}
@media (max-width: 575px) {
  .donate-pay-trust-icons {
    gap: 6px;
  }
  .donate-trust-chip {
    min-height: 32px;
    padding: 5px 10px;
  }
  .donate-trust-brand i {
    font-size: 22px !important;
  }
}

/* Impact cards on donate page */
.donate-impact-sec {
  background: var(--smoke-color);
  padding: 48px 0;
}
.impact-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  border: 1px solid var(--th-border-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}
.impact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(13, 40, 64, 0.08);
}
.impact-card .impact-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 24px;
}
.impact-card.impact-edu .impact-icon-wrap {
  background: rgba(26, 82, 118, 0.1);
  color: var(--theme-color);
}
.impact-card.impact-health .impact-icon-wrap {
  background: rgba(245, 130, 32, 0.12);
  color: var(--theme-color2);
}
.impact-card.impact-welfare .impact-icon-wrap {
  background: rgba(232, 93, 4, 0.1);
  color: var(--theme-color3);
}
.impact-card .impact-pct {
  font-family: var(--title-font);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--theme-color);
  line-height: 1;
  margin-bottom: 4px;
}
.impact-card.impact-health .impact-pct { color: var(--theme-color2); }
.impact-card.impact-welfare .impact-pct { color: var(--theme-color3); }
.impact-card .impact-label {
  font-family: var(--title-font);
  font-size: 17px;
  font-weight: 700;
  color: var(--title-color);
  margin-bottom: 10px;
}
.impact-card p {
  font-size: 14px;
  color: var(--body-color);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 575px) {
  .donate-amount-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .donate-pay-box {
    padding: 24px 20px;
  }
  .donate-impact-sec {
    padding: 36px 0;
  }
}

/* Donation goals page */
.donation-goals-sec {
  background: var(--smoke-color);
}
.program-goal-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px 24px 24px;
  height: 100%;
  border: 1px solid var(--th-border-color);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.program-goal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(13, 40, 64, 0.1);
}
.program-goal-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.program-goal-title {
  font-family: var(--title-font);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--title-color);
  margin-bottom: 16px;
}
.program-goal-progress-wrap {
  margin-bottom: 14px;
}
.program-goal-progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--body-color);
  margin-bottom: 8px;
}
.program-goal-stats {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--body-color);
  font-size: 0.92rem;
}
.program-goal-stats li strong {
  color: var(--title-color);
}
.program-goal-btn {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

/* Gallery page */
.rg-gallery-page {
  padding: 70px 0 90px;
  background: linear-gradient(180deg, #f8fafb 0%, #ffffff 42%, #f4f7f9 100%);
}
.rg-gallery-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 42px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(26, 82, 118, 0.1);
}
.rg-gallery-intro-text {
  max-width: 720px;
}
.rg-gallery-intro-text p {
  margin: 0;
  color: var(--body-color);
  font-size: 1.02rem;
  line-height: 1.75;
}
.rg-gallery-stat {
  min-width: 120px;
  padding: 18px 22px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(26, 82, 118, 0.12);
  box-shadow: 0 10px 30px rgba(13, 40, 64, 0.06);
  text-align: center;
}
.rg-gallery-stat strong {
  display: block;
  font-family: var(--title-font);
  font-size: 2rem;
  line-height: 1;
  color: var(--theme-color);
  margin-bottom: 6px;
}
.rg-gallery-stat span {
  color: var(--body-color);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.rg-gallery-featured {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: repeat(2, 260px);
  gap: 18px;
  margin-bottom: 22px;
}
.rg-gallery-featured-main {
  grid-row: 1 / span 2;
}
.rg-gallery-featured-item:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}
.rg-gallery-featured-item:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}

.rg-gallery-masonry {
  column-count: 3;
  column-gap: 18px;
}
.rg-gallery-masonry--top {
  margin-top: 0;
}
.rg-gallery-masonry-item {
  break-inside: avoid;
  margin-bottom: 18px;
}

.rg-gallery-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  background: #0d2840;
  box-shadow: 0 14px 40px rgba(13, 40, 64, 0.12);
  text-decoration: none;
  color: #fff;
  transform: translateZ(0);
}
.rg-gallery-featured .rg-gallery-card {
  height: 100%;
  min-height: 100%;
}
.rg-gallery-card-media {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 220px;
}
.rg-gallery-masonry-item .rg-gallery-card-media {
  min-height: 0;
}
.rg-gallery-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease;
}
.rg-gallery-masonry-item .rg-gallery-card-media img {
  height: auto;
  min-height: 220px;
  max-height: 520px;
}
.rg-gallery-card-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 40, 64, 0) 35%, rgba(13, 40, 64, 0.88) 100%);
  opacity: 0.72;
  transition: opacity 0.35s ease;
}
.rg-gallery-card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 22px 22px 20px;
  transform: translateY(8px);
  transition: transform 0.35s ease;
}
.rg-gallery-card-title {
  margin: 0 0 10px;
  font-family: var(--title-font);
  font-size: 1.15rem;
  line-height: 1.35;
  font-weight: 700;
  color: #fff;
}
.rg-gallery-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}
.rg-gallery-card-btn i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.16);
  font-size: 12px;
  transition: background 0.25s ease, transform 0.25s ease;
}
.rg-gallery-card:hover .rg-gallery-card-media img {
  transform: scale(1.06);
  filter: saturate(1.05);
}
.rg-gallery-card:hover .rg-gallery-card-shade {
  opacity: 0.95;
}
.rg-gallery-card:hover .rg-gallery-card-content {
  transform: translateY(0);
}
.rg-gallery-card:hover .rg-gallery-card-btn i {
  background: var(--theme-color2);
  transform: scale(1.05);
}

.rg-gallery-cta {
  margin-top: 48px;
}
.rg-gallery-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  border-radius: 20px;
  background: linear-gradient(135deg, #1A5276 0%, #0D2840 100%);
  color: #fff;
  box-shadow: 0 18px 45px rgba(13, 40, 64, 0.18);
}
.rg-gallery-cta-inner h3 {
  margin: 0 0 8px;
  font-size: 1.45rem;
  color: #fff;
}
.rg-gallery-cta-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  line-height: 1.6;
}

.rg-gallery-empty {
  text-align: center;
  background: #fff;
  border-radius: 24px;
  padding: 70px 28px;
  border: 1px solid rgba(26, 82, 118, 0.1);
  box-shadow: 0 16px 40px rgba(13, 40, 64, 0.06);
}
.rg-gallery-empty-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 82, 118, 0.1);
  color: var(--theme-color);
  font-size: 34px;
}
.rg-gallery-empty h3 {
  margin-bottom: 10px;
}
.rg-gallery-empty p {
  color: var(--body-color);
  margin-bottom: 22px;
}

@media (max-width: 1199px) {
  .rg-gallery-featured {
    grid-template-rows: repeat(2, 220px);
  }
}
@media (max-width: 991px) {
  .rg-gallery-intro {
    flex-direction: column;
    align-items: flex-start;
  }
  .rg-gallery-featured {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .rg-gallery-featured-main,
  .rg-gallery-featured-item:nth-child(2),
  .rg-gallery-featured-item:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
  }
  .rg-gallery-featured .rg-gallery-card-media {
    min-height: 280px;
  }
  .rg-gallery-masonry {
    column-count: 2;
  }
  .rg-gallery-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .rg-gallery-page {
    padding: 50px 0 70px;
  }
  .rg-gallery-masonry {
    column-count: 1;
  }
  .rg-gallery-cta-inner {
    padding: 24px 20px;
  }
}

/* ---- Thank You Page ---- */
.thankyou-sec {
  padding: 60px 0 80px;
  background: var(--smoke-color);
  min-height: 50vh;
  display: flex;
  align-items: center;
}
.thankyou-card {
  background: #fff;
  border-radius: 20px;
  padding: 48px 40px;
  box-shadow: 0 12px 40px rgba(13, 40, 64, 0.08);
  border: 1px solid var(--th-border-color);
}
.thankyou-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(245,130,32,0.15), rgba(26,82,118,0.1));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.thankyou-icon i {
  font-size: 32px;
  color: var(--theme-color2);
}
.thankyou-title {
  font-family: var(--title-font);
  font-size: clamp(1.6rem, 4vw, 2rem);
  font-weight: 800;
  color: var(--title-color);
  margin-bottom: 16px;
}
.thankyou-text {
  font-size: 16px;
  color: var(--body-color);
  line-height: 1.7;
  margin-bottom: 20px;
}
.thankyou-payment-id {
  background: var(--smoke-color);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 16px;
  display: inline-block;
}
.thankyou-payment-id span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--body-color);
  margin-bottom: 4px;
}
.thankyou-payment-id code {
  font-size: 13px;
  color: var(--theme-color);
  word-break: break-all;
}
.thankyou-details {
  text-align: left;
  background: var(--smoke-color);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 20px 0;
}
.thankyou-detail-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(0,0,0,0.08);
  font-size: 15px;
}
.thankyou-detail-row:last-child {
  border-bottom: none;
}
.thankyou-detail-row span {
  color: var(--body-color);
}
.thankyou-note {
  font-size: 14px;
  color: var(--body-color);
  margin-bottom: 28px;
}
.thankyou-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.thankyou-actions .th-btn {
  padding: 12px 24px !important;
  font-size: 14px !important;
}
@media (max-width: 575px) {
  .thankyou-card {
    padding: 32px 24px;
  }
  .thankyou-actions {
    flex-direction: column;
  }
  .thankyou-actions .th-btn {
    width: 100%;
    justify-content: center;
  }
}

.donation-box {
  background: var(--smoke-color);
  border-radius: 16px;
  padding: 30px;
  border-left: 4px solid var(--theme-color2);
}
.donation-box .list-style2 li {
  padding: 10px 0;
  border-bottom: 1px solid var(--th-border-color);
  font-family: var(--body-font);
}
.donation-box .list-style2 li:last-child {
  border-bottom: none;
}

/* ---- CTA Dark Section ---- */
.cta-area-2.bg-theme-dark {
  background: linear-gradient(135deg, var(--theme-dark), var(--theme-color)) !important;
}

/* ---- Scroll Top ---- */
.scroll-top::after {
  color: #fff !important;
  background: var(--theme-color) !important;
  border-color: var(--theme-color) !important;
  line-height: 46px !important;
  font-size: 16px !important;
}
.scroll-top svg {
  background: rgba(255,255,255,0.15) !important;
}
.scroll-top .progress-circle path {
  stroke: var(--theme-color2) !important;
}

/* ---- Mobile Menu ---- */
.th-menu-wrapper {
  background: var(--theme-dark);
}
.th-mobile-menu ul li a {
  font-family: var(--title-font);
  font-weight: 600;
  color: #fff;
}
.th-mobile-menu ul li a:hover {
  color: var(--theme-color2);
}

/* ---- Impact Cards (Home) ---- */
.video-area-1 .impact-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(245, 130, 32, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.video-area-1 .impact-icon i {
  font-size: 24px;
  color: var(--theme-color);
}
/* ---- Impact Cards (Home donate amounts) ---- */
.video-area-1 .counter-card.bg-white {
  text-align: left;
  padding: 28px 24px;
  border-radius: 14px;
  background: #ffffff !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border-left: none !important;
}
.video-area-1 .counter-card.bg-white h4 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--theme-color);
  position: relative;
  padding-bottom: 6px;
}
.video-area-1 .counter-card.bg-white h4::after {
  content: "";
  width: 40px;
  height: 3px;
  background: currentColor;
  display: block;
  margin-top: 6px;
  border-radius: 10px;
}
.video-area-1 .counter-card.bg-white p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 0;
}
.video-area-1 .counter-card.bg-white:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}
.video-area-1 .col-md-6:first-child .counter-card.bg-white {
  background: linear-gradient(135deg, var(--theme-color2), #FFB539) !important;
  color: #ffffff;
  transform: scale(1.03);
  box-shadow: 0 10px 15px rgba(59, 59, 59, 0.3);
}
.video-area-1 .col-md-6:first-child .counter-card.bg-white h4,
.video-area-1 .col-md-6:first-child .counter-card.bg-white p {
  color: #ffffff !important;
}
.video-area-1 .col-md-6:first-child .counter-card.bg-white .impact-icon {
  background: rgba(255, 255, 255, 0.25);
}
.video-area-1 .col-md-6:first-child .counter-card.bg-white .impact-icon i {
  color: #ffffff;
}

/* ---- Trust Cards (duplicate cleanup - merged above) ---- */

.cta-area-2 .th-btn.style5 {
  background: #fff !important;
  color: var(--theme-color) !important;
}
.cta-area-2 .th-btn.style5:hover {
  background: var(--theme-color2) !important;
  color: #fff !important;
}

/* ---- Process / Commitment cards ---- */
.process-card {
  border-radius: 16px !important;
  border-color: var(--th-border-color) !important;
  transition: all 0.3s;
}
.process-card:hover {
  box-shadow: 0 8px 24px rgba(13,40,64,0.08);
}
.process-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(245,130,32,0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

/* ---- Brand section spacing ---- */
.brand-area-1.space-bottom {
  padding-bottom: 48px !important;
}
.brand-area-1.space {
  padding-top: 36px !important;
}

/* ---- Responsive tweaks ---- */
@media (max-width: 991px) {
  .th-header .header-logo img {
    max-height: 55px;
  }
  .hero-1 .hero-inner {
    min-height: 480px;
  }
}
