/* Google Fonts loaded via HTML link tags for performance optimization */

/* ==========================================================================
   Divy Jyot Foundation - Custom Color Rebranding & UX Polish
   ========================================================================== */

:root {
  --primary-navy: #1b2e53;
  /* Trust, social responsibility */
  --accent-magenta: #d81b60;
  /* Highlights, important actions, active states */
  --secondary-cyan: #0ea5e9;
  /* Modern accent, food safety indicator */
  --secondary-gold: #f59e0b;
  /* Warm trust / secondary accent color */
  --secondary-gold-hover: #d97706;
  --bg-light: #f8fafc;
  /* Soft section backgrounds */
  --text-dark: #0f172a;
  /* WCAG AA compliant slate charcoal text */
  --text-muted: #475569;
  /* WCAG AA compliant slate gray */
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* Typography & Overall Body */
body {
  font-family: var(--font-body) !important;
  color: var(--text-dark) !important;
  background-color: #fff;
  overflow-x: hidden;
}

/* Global Form Control Polish & Typography */
input,
select,
textarea,
button,
.form-control {
  font-family: var(--font-body) !important;
}

.form-control,
input[type="text"],
input[type="email"],
input[type="number"],
input[type="tel"],
select,
textarea {
  height: 50px !important;
  background: #ffffff !important;
  color: #0f172a !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  border-radius: 8px !important;
  border: 1px solid #cbd5e1 !important;
  padding: 10px 16px !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04) !important;
  transition: all 0.2s ease-in-out !important;
}

.form-control:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
  border-color: var(--accent-magenta) !important;
  box-shadow: 0 0 0 3px rgba(216, 27, 96, 0.12) !important;
  background: #ffffff !important;
  outline: none !important;
}

/* Headings color */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  color: var(--primary-navy) !important;
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
}

/* Subheadings style */
.subheading {
  color: var(--accent-magenta) !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px !important;
  display: inline-block;
  margin-bottom: 12px;
}

/* Navigation & Header Overrides */
.ftco_navbar {
  background: var(--primary-navy) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 10px 0 !important;
}

.navbar-brand {
  color: #fff !important;
}

.navbar-brand span {
  color: var(--accent-magenta);
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  transition: color 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: var(--accent-magenta) !important;
}

.navbar-dark .navbar-nav .nav-item.active>.nav-link {
  color: var(--accent-magenta) !important;
}

/* Active Navigation CTA Fix (on Donate Page) */
.navbar-dark .navbar-nav .nav-item.cta.active > .nav-link {
  background: var(--accent-magenta) !important;
  border: 1px solid var(--accent-magenta) !important;
  color: #ffffff !important;
  border-radius: 30px !important;
  padding: 8px 22px !important;
  margin-top: 5px;
  box-shadow: 0 4px 10px rgba(216, 27, 96, 0.3) !important;
}

.navbar-dark .navbar-nav .nav-item.cta.active > .nav-link:hover {
  background: transparent !important;
  border: 1px solid var(--accent-magenta) !important;
  color: var(--accent-magenta) !important;
  box-shadow: none !important;
}

/* Nav CTA button override */
.navbar-nav .nav-item.cta>.nav-link {
  background: var(--accent-magenta) !important;
  border: 1px solid var(--accent-magenta) !important;
  color: #fff !important;
  border-radius: 30px !important;
  padding: 8px 22px !important;
  margin-top: 5px;
  box-shadow: 0 4px 10px rgba(216, 27, 96, 0.3);
}

.navbar-nav .nav-item.cta>.nav-link:hover {
  background: transparent !important;
  border: 1px solid var(--accent-magenta) !important;
  color: var(--accent-magenta) !important;
  box-shadow: none;
}

/* Buttons */
.btn {
  font-weight: 600 !important;
  border-radius: 4px !important;
  padding: 14px 28px !important;
  transition: all 0.3s ease !important;
}

.btn-primary {
  background-color: var(--accent-magenta) !important;
  border-color: var(--accent-magenta) !important;
  color: #fff !important;
  box-shadow: 0 4px 15px rgba(216, 27, 96, 0.25);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #b0104b !important;
  border-color: #b0104b !important;
  box-shadow: 0 6px 20px rgba(216, 27, 96, 0.4);
}

.btn-secondary {
  background-color: var(--primary-navy) !important;
  border-color: var(--primary-navy) !important;
  color: #fff !important;
  box-shadow: 0 4px 15px rgba(27, 46, 83, 0.2);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: var(--accent-magenta) !important;
  border-color: var(--accent-magenta) !important;
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(216, 27, 96, 0.25);
}

.btn-outline-primary {
  border-color: var(--accent-magenta) !important;
  color: var(--accent-magenta) !important;
  background: transparent !important;
}

.btn-outline-primary:hover {
  background-color: var(--accent-magenta) !important;
  color: #fff !important;
}

.btn-white,
.btn-light {
  background-color: #fff !important;
  color: var(--primary-navy) !important;
  border: 1px solid #e2e8f0 !important;
}

.btn-white:hover,
.btn-light:hover {
  background-color: var(--accent-magenta) !important;
  border-color: var(--accent-magenta) !important;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(216, 27, 96, 0.2);
}

/* Background Color Overrides */
.bg-primary {
  background-color: var(--primary-navy) !important;
}

.bg-secondary {
  background-color: var(--accent-magenta) !important;
}

.bg-tertiary {
  background-color: var(--secondary-cyan) !important;
}

.bg-quarternary {
  background-color: #0f1c35 !important;
  /* Deeper navy */
}

.bg-light {
  background-color: var(--bg-light) !important;
}

/* Text Accent Colors */
.text-primary {
  color: var(--accent-magenta) !important;
}

.text-secondary {
  color: var(--primary-navy) !important;
}

.text-tertiary {
  color: var(--secondary-cyan) !important;
}

/* Hero Wrap overlay adjustments */
.hero-wrap .overlay-1,
.hero-wrap .overlay {
  background: var(--primary-navy) !important;
  opacity: 0.55 !important;
}

.hero-wrap .overlay-2,
.hero-wrap .overlay-3,
.hero-wrap .overlay-4 {
  background: transparent !important;
  opacity: 0 !important;
}

/* Home Slider Text adjustments */
.slider-text h1 {
  font-weight: 800 !important;
  color: #fff !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.slider-text h2 {
  color: var(--secondary-cyan) !important;
  font-weight: 600 !important;
  letter-spacing: 2px;
}

/* Causes / Campaign Styling overrides */
.causes-2 {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #edf2f7;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.causes-2:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.progress-bar {
  background-color: var(--accent-magenta) !important;
}

/* Testimonials section */
.testimony-section .overlay {
  background: var(--primary-navy) !important;
  opacity: 0.9 !important;
}

.testimony-wrap .quote {
  background: var(--accent-magenta) !important;
}

.testimony-wrap .name {
  color: var(--primary-navy) !important;
}

.testimony-wrap .position {
  color: var(--accent-magenta) !important;
}

/* Forms Polish */
.form-group label {
  font-weight: 600;
  color: var(--primary-navy);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control {
  border-radius: 4px !important;
  border: 1px solid #cbd5e1 !important;
  height: 52px !important;
  font-size: 15px;
  color: var(--text-dark) !important;
}

.form-control:focus,
.form-control:active {
  border-color: var(--accent-magenta) !important;
  box-shadow: 0 0 0 3px rgba(216, 27, 96, 0.15) !important;
}

textarea.form-control {
  height: inherit !important;
  padding-top: 15px;
}

/* Donation wrap styles on Home Page */
.donation-wrap {
  background: #fff !important;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 30px !important;
}

.donation-wrap .total-donate {
  background: var(--primary-navy) !important;
  border-radius: 6px;
  padding: 20px !important;
}

.donation-wrap .total-donate h4 {
  color: #fff !important;
  font-size: 16px;
}

.donation-wrap .total-donate p span {
  color: var(--accent-magenta) !important;
}

/* Services Grid Home Page */
.services {
  transition: all 0.3s ease;
}

.services:hover {
  transform: translateY(-8px);
}

.services .text {
  padding: 35px 25px !important;
}

.services .text h3 {
  color: #fff !important;
  font-size: 19px !important;
  margin-bottom: 12px;
}

/* Leaflet maps controls overrides */
.info-control {
  border-left: 4px solid var(--accent-magenta) !important;
}

/* Form submitting loading spinner style */
.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.15em;
  vertical-align: middle;
  margin-right: 8px;
}

/* Header Logo Styling */
.navbar-brand img {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Footer UX polish */
.footer {
  background: #0f172a !important;
  padding: 7em 0 5em 0 !important;
  border-top: 4px solid var(--accent-magenta);
}

.footer-heading {
  font-size: 18px !important;
  margin-bottom: 30px !important;
  border-bottom: 2px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 10px;
}

.footer p,
.footer li {
  color: #94a3b8 !important;
  font-size: 14px;
}

.footer a {
  color: #cbd5e1 !important;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: var(--accent-magenta) !important;
  text-decoration: none;
}

.ftco-footer-social li a {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.ftco-footer-social li a:hover {
  background: var(--accent-magenta) !important;
  border-color: var(--accent-magenta) !important;
}

/* Volunteer Cards and Leader Search Page */
.volunteer-card {
  transition: all 0.3s ease;
}

.volunteer .text span {
  color: var(--text-muted);
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Sticky Navigation styling - Pure CSS position: sticky top: 0 */
.ftco_navbar {
  position: sticky !important;
  top: 0 !important;
  left: 0;
  right: 0;
  z-index: 1040 !important;
  background: var(--primary-navy) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
  transition: all 0.3s ease-in-out !important;
}

/* Premium Scroll-triggered Sticky Navbar */
.ftco_navbar.scrolled {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 1050 !important;
  margin-top: 0px !important;
  background: var(--primary-navy) !important;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.25) !important;
  animation: slideDownNav 0.38s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideDownNav {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}



/* Heading Colors in Dark Backgrounds */
#section-counter h2,
#section-counter h2.font-weight-bold,
.ftco-hireme h2,
.testimony-section h2,
.footer-heading {
  color: #fff !important;
}

/* Section Title Highlight Accents (Left-Aligned, Indented Subheadings) */
.heading-section .subheading {
  font-weight: 700 !important;
  font-size: 13px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: var(--accent-magenta) !important;
  margin-bottom: 10px !important;
}

/* Left-align sections specifically */
.heading-section.text-left {
  border-left: 4px solid var(--accent-magenta);
  padding-left: 20px !important;
  margin-left: 15px;
}

@media (max-width: 768px) {
  .heading-section.text-left {
    margin-left: 0;
    padding-left: 15px !important;
  }
}

/* Counter Block UI Overhaul (Image 1 Refinement) */
#section-counter {
  background-image: linear-gradient(rgba(27, 46, 83, 0.9), rgba(11, 21, 40, 0.95)), url('../images/bg_3.jpg') !important;
  background-attachment: fixed !important;
  background-position: center center !important;
  background-size: cover !important;
  padding: 6em 0 !important;
}

#section-counter .block-18 {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 16px !important;
  padding: 30px 20px !important;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
  margin-bottom: 25px;
}

#section-counter .block-18:hover {
  background: rgba(255, 255, 255, 0.09) !important;
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25) !important;
  border-color: var(--secondary-cyan) !important;
}

#section-counter .block-18 .icon-wrap {
  width: 60px;
  height: 60px;
  background: rgba(14, 165, 233, 0.12);
  border: 2px solid var(--secondary-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  transition: all 0.3s ease;
}

#section-counter .block-18:hover .icon-wrap {
  background: var(--accent-magenta);
  border-color: var(--accent-magenta);
  transform: scale(1.1) rotate(15deg);
  box-shadow: 0 0 15px rgba(216, 27, 96, 0.4);
}

#section-counter .block-18 .icon-wrap span {
  font-size: 22px !important;
  color: var(--secondary-cyan) !important;
  margin: 0 !important;
  transition: all 0.3s ease;
}

#section-counter .block-18:hover .icon-wrap span {
  color: #fff !important;
}

#section-counter .block-18 .number {
  font-size: 38px !important;
  font-weight: 800 !important;
  color: var(--accent-magenta) !important;
  line-height: 1 !important;
  display: inline-block;
  font-family: 'Montserrat', sans-serif !important;
}

.counter-plus {
  font-size: 28px !important;
  font-weight: 800 !important;
  color: var(--accent-magenta) !important;
  margin-left: 2px;
  display: inline-block;
  font-family: 'Montserrat', sans-serif !important;
}

#section-counter .block-18 span {
  color: #94a3b8 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
  display: block;
}

/* Interactive Cards (4 Card Section) - Premium Visual Upgrade */
.services-card-wrap {
  display: block;
  text-decoration: none !important;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid #e2e8f0;
  margin-bottom: 30px;
  height: 100%;
}

.services-card-wrap:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.12);
  border-color: var(--accent-magenta);
}

.services-card-wrap .card-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: all 0.4s ease;
}

.services-card-wrap:hover .card-img {
  transform: scale(1.02);
}

.services-card-wrap .card-img .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(27, 46, 83, 0.1), rgba(11, 21, 40, 0.65));
}

.services-card-wrap .card-icon {
  position: absolute;
  bottom: -25px;
  right: 25px;
  width: 54px;
  height: 54px;
  background: var(--accent-magenta);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(216, 27, 96, 0.35);
  font-size: 20px;
  border: 3px solid #fff;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 5;
}

.services-card-wrap:hover .card-icon {
  transform: rotate(360deg) scale(1.1);
  background: var(--primary-navy);
  box-shadow: 0 6px 18px rgba(27, 46, 83, 0.4);
}

.services-card-wrap .card-body {
  padding: 35px 24px 28px 24px;
}

.services-card-wrap .card-body h3 {
  font-size: 19px !important;
  font-weight: 700 !important;
  margin-bottom: 12px;
  color: var(--primary-navy) !important;
  transition: color 0.3s ease;
}

.services-card-wrap:hover .card-body h3 {
  color: var(--accent-magenta) !important;
}

.services-card-wrap .card-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Interactive Carousel Overlays & Readability */
.home-slider .slider-item .overlay-1 {
  background: #0b1528 !important;
  opacity: 0.55 !important;
}

.home-slider .slider-item .overlay-2,
.home-slider .slider-item .overlay-3,
.home-slider .slider-item .overlay-4 {
  background: transparent !important;
  opacity: 0 !important;
}

.home-slider .slider-text h1 {
  font-size: 58px !important;
  font-weight: 800 !important;
  color: #fff !important;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6) !important;
  line-height: 1.25 !important;
}

.home-slider .slider-text h2 {
  color: var(--secondary-cyan) !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
  margin-bottom: 20px !important;
}

/* Testimony and Donors slide styling overrides (Image 2 Consistency Fix) */
.carousel-testimonials .item,
.carousel-donors .item {
  padding: 15px;
}

.testimony-wrap {
  background: #ffffff !important;
  border-radius: 16px !important;
  padding: 35px 25px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06) !important;
  border: 1px solid #edf2f7 !important;
  transition: all 0.3s ease;
}

.testimony-wrap:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12) !important;
  border-color: rgba(216, 27, 96, 0.2) !important;
}

/* Force dark text inside white cards across ALL carousels (no overlay/white overlap) */
.testimony-wrap .text p,
.testimony-wrap p {
  color: #334155 !important;
  /* Dark Slate */
  font-size: 15px !important;
  line-height: 1.65 !important;
  margin-bottom: 15px !important;
}

.testimony-wrap .text .name,
.testimony-wrap .name {
  color: var(--primary-navy) !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  margin-bottom: 2px !important;
}

.testimony-wrap .text .position,
.testimony-wrap .position {
  color: var(--accent-magenta) !important;
  font-size: 12px !important;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: block;
}

.testimony-wrap .quote {
  background: var(--accent-magenta) !important;
  color: #fff !important;
  box-shadow: 0 4px 10px rgba(216, 27, 96, 0.3);
}

/* Social Media Hover Contrast Fix */
.ftco-footer-social li a:hover {
  background: var(--accent-magenta) !important;
  border-color: var(--accent-magenta) !important;
  color: #fff !important;
}

.ftco-footer-social li a:hover span {
  color: #fff !important;
}

/* Donation Form Premium UI Overhaul */
.donation-wrap {
  background: #ffffff !important;
  border-radius: 16px !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12) !important;
  border: 1px solid #edf2f7 !important;
  padding: 40px 30px !important;
  transition: all 0.3s ease;
}

.donation-wrap:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16) !important;
  transform: translateY(-3px);
}

.donation-wrap .total-donate {
  background: linear-gradient(135deg, var(--primary-navy), #0b1528) !important;
  border-radius: 10px !important;
  padding: 24px !important;
  margin-bottom: 30px !important;
  box-shadow: 0 8px 20px rgba(27, 46, 83, 0.2) !important;
  color: #fff !important;
  border-left: 5px solid var(--accent-magenta) !important;
}

.donation-wrap .total-donate h4 {
  color: #94a3b8 !important;
  font-size: 13px !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  font-weight: 700;
}

.donation-wrap .total-donate p {
  margin: 0 !important;
  font-size: 32px !important;
  font-weight: 800 !important;
  color: #fff !important;
  line-height: 1.1;
}

.donation-wrap .total-donate p span {
  color: var(--accent-magenta) !important;
}

.donation-wrap .form-group label {
  font-weight: 700 !important;
  color: var(--primary-navy) !important;
  font-size: 12px !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.donation-wrap .form-control {
  background: #f8fafc !important;
  border: 1px solid #cbd5e1 !important;
  border-radius: 8px !important;
  padding: 12px 18px !important;
  font-size: 14px !important;
  color: #1e293b !important;
  height: 50px !important;
  transition: all 0.2s ease;
}

.donation-wrap .form-control:focus {
  background: #fff !important;
  border-color: var(--accent-magenta) !important;
  box-shadow: 0 0 0 3px rgba(216, 27, 96, 0.12) !important;
}

.donation-wrap select.form-control {
  appearance: auto !important;
  padding-right: 15px !important;
}

.donation-wrap .btn-secondary {
  background: var(--accent-magenta) !important;
  border-color: var(--accent-magenta) !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px !important;
  padding: 16px !important;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(216, 27, 96, 0.25) !important;
}

.donation-wrap .btn-secondary:hover {
  background: var(--primary-navy) !important;
  border-color: var(--primary-navy) !important;
  box-shadow: 0 6px 18px rgba(27, 46, 83, 0.3) !important;
  transform: translateY(-2px);
}

.donation-wrap .form-radio label {
  cursor: pointer;
  font-weight: 600;
  color: var(--primary-navy);
}

/* Custom Responsive Typography and Spacing Updates */
@media (max-width: 1199.98px) {
  .home-slider .slider-text h1 {
    font-size: 46px !important;
  }
}

@media (max-width: 991.98px) {
  .home-slider .slider-text h1 {
    font-size: 38px !important;
  }

  .services-card-wrap {
    margin-bottom: 25px;
  }
}

@media (max-width: 767.98px) {
  .home-slider .slider-text h1 {
    font-size: 30px !important;
    line-height: 1.3 !important;
  }

  .home-slider .slider-text h2 {
    font-size: 15px !important;
    letter-spacing: 2px !important;
  }

  #section-counter {
    padding: 4em 0 !important;
  }

  #section-counter .block-18 {
    padding: 25px 15px !important;
  }

  #section-counter .block-18 .number {
    font-size: 32px !important;
  }

  .counter-plus {
    font-size: 24px !important;
  }

  .donation-wrap {
    padding: 30px 20px !important;
    margin-top: 30px;
  }
}

/* Hero Donation Card Overlay for desktop (lg and above) */
@media (min-width: 992px) {
  .hero-donation-container {
    position: absolute;
    top: 55%;
    right: 0;
    transform: translateY(-50%);
    width: 100%;
    z-index: 99;
    pointer-events: none;
    /* Let clicks pass through empty space */
  }

  .hero-donation-container .donation-wrap {
    pointer-events: auto;
    /* Enable interaction on the card */
    background: rgba(11, 21, 43, 0.96) !important;
    /* Premium Dark Navy */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3) !important;
    border-radius: 16px;
    padding: 22px 25px !important;
  }

  .hero-donation-container .donation-wrap .form-control {
    background: #ffffff !important;
    color: #0b132b !important;
    border: 1px solid rgba(0, 0, 0, 0.15) !important;
  }

  .hero-donation-container .donation-wrap .form-control::placeholder {
    color: #94a3b8 !important;
  }

  .hero-donation-container .donation-wrap label {
    font-weight: 600;
  }

  /* Make sure hero text leaves room on the right */
  .home-slider .slider-text .col-lg-7 {
    max-width: 55% !important;
    flex: 0 0 55% !important;
  }
}

/* Adjustments for mobile & tablet screens */
@media (max-width: 991.98px) {
  .home-slider .owl-dots {
    left: 50% !important;
    transform: translateX(-50%) !important;
    text-align: center !important;
  }
}

/* Hero slider owl dots positioning & reset */
.home-slider .owl-dots {
  position: absolute !important;
  bottom: 25px !important;
  left: 10% !important;
  transform: none;
  text-align: left;
  z-index: 100 !important;
}

.home-slider .owl-dots .owl-dot {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  padding: 0 !important;
  margin: 0 5px !important;
  width: auto !important;
  height: auto !important;
}

.home-slider .owl-dots .owl-dot::after {
  display: none !important;
  content: none !important;
}

.home-slider .owl-dots .owl-dot span {
  width: 10px !important;
  height: 10px !important;
  margin: 5px 6px !important;
  background: rgba(255, 255, 255, 0.4) !important;
  border-radius: 50% !important;
  display: block !important;
  transition: all 0.3s ease !important;
  border: none !important;
}

.home-slider .owl-dots .owl-dot.active span {
  background: var(--accent-magenta) !important;
  transform: scale(1.3) !important;
}


/* ==========================================================================
   Feedback (Testimonials) Section styling
   ========================================================================== */
.bg-light-blue-tint {
  background-color: #f1f5f9 !important;
  /* Soft modern slate-light background */
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.feedback-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.feedback-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.feedback-quote-icon {
  color: rgba(216, 27, 96, 0.12);
  /* Accent magenta translucent */
  font-size: 32px;
  line-height: 1;
  margin-bottom: 12px;
  text-align: left;
}

.feedback-rating {
  margin-bottom: 12px;
  text-align: left;
}

.feedback-rating span {
  color: #ffb800;
  /* Beautiful gold star color */
  font-size: 13px;
  margin-right: 2px;
}

.feedback-text {
  font-size: 15px !important;
  line-height: 1.6 !important;
  color: #475569 !important;
  font-style: italic;
  margin-bottom: 20px;
  flex-grow: 1;
  text-align: left;
}

.feedback-author {
  border-top: 1px solid #f1f5f9;
  padding-top: 15px;
  margin-top: auto;
  text-align: left;
}

.feedback-author .author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-size: cover;
  background-position: center center;
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}

/* ==========================================================================
   Supporters (Donors) Section styling
   ========================================================================== */
.bg-dark-navy {
  background-color: #0b132b !important;
  /* Premium Dark Navy */
  position: relative;
  overflow: hidden;
}

.donor-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.donor-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
}

.donor-quote-icon {
  color: rgba(255, 255, 255, 0.08);
  font-size: 32px;
  line-height: 1;
  margin-bottom: 12px;
  text-align: left;
}

.donor-text {
  font-size: 15px !important;
  line-height: 1.6 !important;
  color: #cbd5e1 !important;
  font-style: italic;
  margin-bottom: 20px;
  flex-grow: 1;
  text-align: left;
}

.donor-author {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 15px;
  margin-top: auto;
  text-align: left;
}

.donor-author .author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-size: cover;
  background-position: center center;
  border: 2px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

/* Owl dots styling for feedback and supporters sections */
.feedback-section .owl-dots,
.supporters-section .owl-dots {
  text-align: center !important;
  margin-top: 30px !important;
  width: 100% !important;
  display: block !important;
}

.feedback-section .owl-dot,
.supporters-section .owl-dot {
  display: inline-block !important;
  margin: 0 5px !important;
  outline: none !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  width: auto !important;
  height: auto !important;
}

.feedback-section .owl-dot::after,
.supporters-section .owl-dot::after {
  display: none !important;
  content: none !important;
}

.feedback-section .owl-dot span,
.supporters-section .owl-dot span {
  display: block !important;
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  transition: all 0.3s ease !important;
  border: none !important;
}

.feedback-section .owl-dot span {
  background: rgba(27, 46, 83, 0.2) !important;
}

.feedback-section .owl-dot.active span {
  background: var(--accent-magenta) !important;
  transform: scale(1.2) !important;
}

.supporters-section .owl-dot span {
  background: rgba(255, 255, 255, 0.2) !important;
}

.supporters-section .owl-dot.active span {
  background: var(--accent-magenta) !important;
  transform: scale(1.2) !important;
}

/* ==========================================================================
   About Us Redesign Styling
   ========================================================================== */

/* Hero Scroll Indicator */
.about-hero-content {
  max-width: 800px;
}

.about-hero-divider {
  width: 50px;
  height: 3px;
  background-color: var(--accent-magenta);
  margin: 15px 0 20px 0;
}

.scroll-indicator-wrap {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
  pointer-events: none;
}

.scroll-mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  position: relative;
  margin: 0 auto 5px auto;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background-color: var(--accent-magenta);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: mouseScroll 1.8s ease-out infinite;
}

@keyframes mouseScroll {
  0% {
    transform: translate(-50%, 0);
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  75% {
    transform: translate(-50%, 8px);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

/* 2x2 Pillars Grid Section */
.pillars-title-badge {
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-magenta);
  display: inline-block;
  padding: 4px 10px;
  background: rgba(216, 27, 96, 0.08);
  border-radius: 30px;
  margin-bottom: 12px;
}

.highlight-quote {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 600;
  color: var(--primary-navy);
  border-left: 4px solid var(--accent-magenta);
  padding-left: 20px;
  margin: 25px 0;
  font-style: italic;
}

.pillar-card-wrap {
  margin-top: 15px;
}

.pillar-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.38s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.pillar-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-magenta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(216, 27, 96, 0.1);
}

.pillar-card:hover::after {
  transform: scaleX(1);
}

.pillar-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.pillar-card.pc-1 .pillar-icon-box {
  background: rgba(216, 27, 96, 0.08);
  color: var(--accent-magenta);
}

.pillar-card.pc-2 .pillar-icon-box {
  background: rgba(14, 165, 233, 0.08);
  color: var(--primary-cyan);
}

.pillar-card.pc-3 .pillar-icon-box {
  background: rgba(14, 165, 233, 0.08);
  color: var(--primary-cyan);
}

.pillar-card.pc-4 .pillar-icon-box {
  background: rgba(216, 27, 96, 0.08);
  color: var(--accent-magenta);
}

.pillar-card:hover .pillar-icon-box {
  transform: scale(1.1) rotate(5deg);
}

.pillar-card h5 {
  font-weight: 700;
  font-size: 16px;
  color: var(--primary-navy);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pillar-card .pillar-arrow {
  font-size: 13px;
  color: var(--accent-magenta);
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.pillar-card:hover .pillar-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Staggering columns for editorial feel */
@media (min-width: 992px) {
  .pillar-col-odd {
    transform: translateY(20px);
  }

  .pillar-col-even {
    transform: translateY(-20px);
  }
}

/* Mission & Vision Panels */
.mv-panel {
  background: #ffffff;
  border-radius: 16px;
  padding: 45px 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(11, 19, 43, 0.05);
  border-left: 4px solid var(--accent-magenta);
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.mv-panel-navy {
  background: #0b132b;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--secondary-cyan);
}

.mv-panel-navy h3 {
  color: #ffffff !important;
}

.mv-panel-navy p {
  color: #cbd5e1 !important;
}

.mv-badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 30px;
  margin-bottom: 20px;
  font-family: var(--font-display);
}

.mv-badge-pink {
  background: rgba(216, 27, 96, 0.08);
  color: #c2185b;
  /* 5.3:1 contrast against white */
}

.mv-badge-cyan {
  background: rgba(14, 165, 233, 0.12);
  color: #0277bd;
  /* 4.6:1 contrast against white */
}

.mv-panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(11, 19, 43, 0.08);
}

.mv-panel-navy:hover {
  box-shadow: 0 20px 45px rgba(11, 19, 43, 0.35);
}

/* Asymmetric Core Values Grid */
.values-container {
  padding-bottom: 20px;
}

.value-card-asymmetric {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(11, 19, 43, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.value-card-asymmetric:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(11, 19, 43, 0.06);
  border-color: rgba(11, 19, 43, 0.1);
}

.value-card-asymmetric h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--primary-navy);
  margin-bottom: 12px;
}

.value-card-asymmetric p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Asymmetric icon shapes */
.value-icon-container {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.value-icon-container svg {
  width: 24px;
  height: 24px;
}

/* Card 1: Organic Squircle */
.value-card-asymmetric.vc-1 {
  border-top: 4px solid var(--accent-magenta);
}

.value-card-asymmetric.vc-1 .value-icon-container {
  background: rgba(216, 27, 96, 0.08);
  color: var(--accent-magenta);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}

.value-card-asymmetric.vc-1:hover .value-icon-container {
  background: var(--accent-magenta);
  color: #fff;
  border-radius: 50%;
}

/* Card 2: Hexagon Clip-path */
.value-card-asymmetric.vc-2 {
  border-top: 4px solid var(--secondary-gold);
}

.value-card-asymmetric.vc-2 .value-icon-container {
  background: rgba(245, 158, 11, 0.08);
  color: var(--secondary-gold);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.value-card-asymmetric.vc-2:hover .value-icon-container {
  background: var(--secondary-gold);
  color: #fff;
  clip-path: circle(50% at 50% 50%);
}

/* Card 3: Double ring circle */
.value-card-asymmetric.vc-3 {
  border-top: 4px solid var(--secondary-cyan);
}

.value-card-asymmetric.vc-3 .value-icon-container {
  background: rgba(14, 165, 233, 0.08);
  color: var(--secondary-cyan);
  border-radius: 50%;
  border: 2px dashed rgba(14, 165, 233, 0.4);
  box-shadow: 0 0 0 2px rgba(14, 165, 233, 0.1);
}

.value-card-asymmetric.vc-3:hover .value-icon-container {
  background: var(--secondary-cyan);
  color: #fff;
  border: 2px solid transparent;
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.15);
}

/* Card 4: Rotated Square */
.value-card-asymmetric.vc-4 {
  border-top: 4px solid var(--primary-navy);
}

.value-card-asymmetric.vc-4 .value-icon-container {
  background: rgba(27, 46, 83, 0.08);
  color: var(--primary-navy);
  border-radius: 12px;
  transform: rotate(15deg);
}

.value-card-asymmetric.vc-4 .value-icon-container svg {
  transform: rotate(-15deg);
}

.value-card-asymmetric.vc-4:hover .value-icon-container {
  background: var(--primary-navy);
  color: #fff;
  transform: rotate(0deg);
}

.value-card-asymmetric.vc-4:hover .value-icon-container svg {
  transform: rotate(0deg);
}

/* Card 5: Smooth Teardrop */
.value-card-asymmetric.vc-5 {
  border-top: 4px solid var(--accent-magenta);
}

.value-card-asymmetric.vc-5 .value-icon-container {
  background: rgba(216, 27, 96, 0.08);
  color: var(--accent-magenta);
  border-radius: 0 50% 50% 50%;
}

.value-card-asymmetric.vc-5:hover .value-icon-container {
  background: var(--accent-magenta);
  color: #fff;
  border-radius: 50% 50% 50% 0;
}

/* Objectives Timeline Section */
.objectives-timeline-wrapper {
  position: relative;
  padding: 50px 0;
}

.objectives-timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-navy) 0%, rgba(11, 19, 43, 0.08) 100%);
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-item-staggered {
  position: relative;
  margin-bottom: 50px;
  width: 100%;
}

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

.timeline-item-staggered::after {
  content: '';
  display: block;
  clear: both;
}

.timeline-card-content {
  width: 44%;
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 24px rgba(11, 19, 43, 0.02);
  border: 1px solid rgba(11, 19, 43, 0.05);
  position: relative;
  transition: all 0.38s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.timeline-card-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(11, 19, 43, 0.06);
  border-color: var(--accent-magenta);
}

.timeline-item-staggered:nth-child(odd) .timeline-card-content {
  float: left;
}

.timeline-item-staggered:nth-child(even) .timeline-card-content {
  float: right;
}

/* Numeric badges */
.timeline-badge-center {
  position: absolute;
  left: 50%;
  top: 30px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid var(--accent-magenta);
  color: var(--accent-magenta);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, 0);
  z-index: 3;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.timeline-item-staggered:nth-child(even) .timeline-badge-center {
  border-color: var(--secondary-gold);
  color: var(--secondary-gold);
}

.timeline-card-content:hover~.timeline-badge-center {
  background: var(--accent-magenta);
  color: #ffffff;
  box-shadow: 0 0 0 4px rgba(216, 27, 96, 0.15);
}

.timeline-item-staggered:nth-child(even) .timeline-card-content:hover~.timeline-badge-center {
  background: var(--secondary-gold);
  color: #ffffff;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.2);
}

.timeline-title-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
}

.timeline-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--primary-navy);
  margin: 0;
}

.timeline-card-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

.timeline-card-icon-svg {
  width: 22px;
  height: 22px;
  color: var(--accent-magenta);
  flex-shrink: 0;
}

.timeline-item-staggered:nth-child(even) .timeline-card-icon-svg {
  color: var(--secondary-gold);
}

/* Responsiveness for timeline */
@media (max-width: 991.98px) {
  .timeline-card-content {
    width: 42%;
  }
}

@media (max-width: 767.98px) {
  .objectives-timeline-line {
    left: 20px;
    transform: none;
  }

  .timeline-card-content {
    width: calc(100% - 45px) !important;
    float: right !important;
    padding: 24px;
  }

  .timeline-badge-center {
    left: 20px;
    top: 24px;
    transform: translate(-50%, 0);
  }
}

/* Glassmorphic Statistics Area */
.glass-stat-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 35px 25px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
}

.glass-stat-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-magenta);
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(216, 27, 96, 0.2);
}

.glass-stat-number {
  font-size: 46px;
  font-weight: 800;
  color: var(--accent-magenta);
  line-height: 1.1;
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -1px;
}

.glass-stat-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: #e2e8f0;
}

/* Floating card inside Leaflet map */
.map-floating-overlay-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  max-width: 260px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  pointer-events: auto;
}

/* Testimonial Active Center scaling */
.testimony-wrap {
  border-radius: 16px !important;
  background: #ffffff !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03) !important;
  padding: 35px !important;
  margin: 15px 0 !important;
  transition: all 0.4s ease !important;
  border: 1px solid rgba(0, 0, 0, 0.03) !important;
}

.owl-item.active.center .testimony-wrap {
  transform: scale(1.03);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08) !important;
  border-color: rgba(216, 27, 96, 0.1) !important;
}

/* Final CTA Section Redesign */
.final-cta-section {
  position: relative;
  background: linear-gradient(135deg, #0b132b 0%, #1c2541 100%);
  padding: 100px 0;
  overflow: hidden;
  color: #fff;
}

.final-cta-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(216, 27, 96, 0.15) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
}

.final-cta-shape {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(216, 27, 96, 0.08) 0%, transparent 70%);
  bottom: -150px;
  right: -50px;
  border-radius: 50%;
  pointer-events: none;
}

.final-cta-shape-2 {
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.05) 0%, transparent 70%);
  top: -100px;
  left: -50px;
  border-radius: 50%;
  pointer-events: none;
}

.btn-cta-pink {
  background-color: var(--accent-magenta);
  color: #fff !important;
  font-weight: 700;
  border-radius: 30px;
  padding: 14px 32px;
  box-shadow: 0 4px 15px rgba(216, 27, 96, 0.3);
  transition: all 0.3s ease;
  display: inline-block;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
}

.btn-cta-pink:hover {
  background-color: #be1250;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(216, 27, 96, 0.4);
}

.btn-cta-outline {
  background-color: transparent;
  color: #fff !important;
  font-weight: 700;
  border-radius: 30px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  padding: 12px 32px;
  transition: all 0.3s ease;
  display: inline-block;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
}

.btn-cta-outline:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: #fff;
  transform: translateY(-2px);
}

/* Global Link Overrides to Remove Template Green */
a {
  color: var(--accent-magenta);
}

a:hover,
a:focus {
  color: var(--primary-navy);
}

/* Contact Page Input Focus Styling to Remove Template Colors */
.contactForm .form-control:focus {
  border-color: var(--accent-magenta) !important;
  box-shadow: 0 0 0 3px rgba(216, 27, 96, 0.12) !important;
  background: #ffffff !important;
}

/* Responsive Contact Form card styling */
.contact-card-left {
  background: var(--primary-navy) !important;
}

@media (min-width: 768px) {
  .contact-card-left {
    border-radius: 12px 0 0 12px !important;
  }

  .contact-card-right {
    border-radius: 0 12px 12px 0 !important;
  }
}

@media (max-width: 767.98px) {
  .contact-card-left {
    border-radius: 12px 12px 0 0 !important;
  }

  .contact-card-right {
    border-radius: 0 0 12px 12px !important;
  }
}

/* Contact Page Info Circles Hover Effect */
.dbox {
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.dbox .icon {
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.dbox .icon span {
  transition: all 0.3s ease-in-out !important;
}

.dbox:hover .icon {
  background: var(--accent-magenta) !important;
  transform: scale(1.18) rotate(8deg);
  box-shadow: 0 8px 24px rgba(216, 27, 96, 0.3) !important;
}

.dbox:hover .icon span {
  color: #ffffff !important;
}

/* ==========================================================================
   Volunteer Page Retheming
   ========================================================================== */

/* Subheadings Rebrand */
.subheading {
  color: var(--accent-magenta) !important;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 12px;
}

/* Global Button Secondary Retheming */
.btn-secondary {
  background: var(--accent-magenta) !important;
  border-color: var(--accent-magenta) !important;
  color: #fff !important;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--primary-navy) !important;
  border-color: var(--primary-navy) !important;
  color: #fff !important;
}

/* Global Button Primary Retheming */
.btn-primary {
  background: var(--primary-navy) !important;
  border-color: var(--primary-navy) !important;
  color: #fff !important;
  transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--accent-magenta) !important;
  border-color: var(--accent-magenta) !important;
  color: #fff !important;
}

/* Volunteer Cards Aesthetic Upgrade */
.volunteer {
  border-radius: 16px !important;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  background: #ffffff;
}

.volunteer:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
}

.volunteer .img {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Rebranding Volunteer Card Colors to Logo Theme Colors */
.volunteer .text.text-1 {
  background: var(--primary-navy) !important;
  /* Navy */
}

.volunteer .text.text-2 {
  background: var(--accent-magenta) !important;
  /* Magenta Pink */
}

.volunteer .text.text-3 {
  background: var(--secondary-cyan) !important;
  /* Cyan */
}

.volunteer .text.text-4 {
  background: var(--primary-navy) !important;
  /* Navy */
}

/* Force high contrast text on the color backgrounds */
.volunteer .text h3 {
  color: #ffffff !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px;
}

.volunteer .text span {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 13px !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  display: block;
  margin-top: 4px;
}

.volunteer .text p {
  color: #ffffff !important;
  font-weight: 700 !important;
  opacity: 0.9;
}

/* Volunteer Sign Up Form Refinements */
#signup-section .form-control {
  background: #ffffff !important;
  color: #0f172a !important;
  border: 1px solid #cbd5e1 !important;
  border-radius: 6px !important;
  padding: 10px 16px !important;
  height: 48px !important;
  font-size: 14px !important;
  transition: all 0.3s ease !important;
}

#signup-section textarea.form-control {
  height: auto !important;
}

#signup-section .form-control:focus {
  background: #ffffff !important;
  border-color: var(--accent-magenta) !important;
  box-shadow: 0 0 0 3px rgba(216, 27, 96, 0.12) !important;
}

#signup-section label {
  font-weight: 700 !important;
  color: var(--primary-navy) !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  margin-bottom: 6px !important;
  display: block;
}

/* Ensure the dynamically injected navbar works with position: fixed/sticky */
#header-placeholder {
  display: contents !important;
}

/* Overlap donation form between slider and welcome section on desktop */
@media (min-width: 992px) {
  .donation-overlap {
    margin-top: -160px !important;
    min-height: calc(100% + 160px) !important;
    height: 100% !important;
    border-radius: 0 !important;
    position: relative !important;
    z-index: 99 !important;
  }
}

@media (max-width: 991.98px) {
  .donation-overlap {
    margin-top: 30px !important;
    border-radius: 12px !important;
  }
}

/* ==========================================================================
   Interactive Map Dashboard & Responsive Carousel Styling
   ========================================================================== */

.map-dashboard-container {
  border-radius: 20px !important;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(27, 46, 83, 0.08) !important;
  border: 1px solid rgba(27, 46, 83, 0.08) !important;
  background: #ffffff;
  position: relative;
  transition: all 0.3s ease;
}

.map-sidebar {
  max-height: 550px;
  overflow-y: auto;
  border-right: 1px solid rgba(27, 46, 83, 0.06);
  background: #ffffff;
}

/* Custom Scrollbar for Map Sidebar */
.map-sidebar::-webkit-scrollbar {
  width: 6px;
}

.map-sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.map-sidebar::-webkit-scrollbar-thumb {
  background: rgba(27, 46, 83, 0.1);
  border-radius: 10px;
}

.map-sidebar::-webkit-scrollbar-thumb:hover {
  background: rgba(27, 46, 83, 0.2);
}

.map-sidebar-header {
  padding: 24px 20px;
  background: #ffffff;
  border-bottom: 1px solid rgba(27, 46, 83, 0.06);
  position: sticky;
  top: 0;
  z-index: 10;
}

.map-region-list {
  padding: 15px;
}

.region-card-item {
  background: #f8fafc;
  border: 1px solid rgba(27, 46, 83, 0.04);
  border-radius: 12px;
  margin-bottom: 10px;
  padding: 16px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.region-card-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--accent-magenta);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.region-card-item:hover {
  transform: translateY(-2px);
  background: #ffffff;
  box-shadow: 0 6px 15px rgba(27, 46, 83, 0.04);
  border-color: rgba(216, 27, 96, 0.1);
}

.region-card-item:hover::before {
  transform: scaleY(1);
}

.region-card-item.active-region {
  background: rgba(216, 27, 96, 0.03);
  border-color: rgba(216, 27, 96, 0.18);
  box-shadow: 0 4px 12px rgba(216, 27, 96, 0.03);
}

.region-card-item.active-region::before {
  transform: scaleY(1);
  background: var(--accent-magenta);
}

.region-badge {
  background: rgba(27, 46, 83, 0.05);
  color: var(--primary-navy);
  font-weight: 700;
  font-size: 11px;
  padding: 6px 12px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.region-card-item.active-region .region-badge {
  background: var(--accent-magenta);
  color: #ffffff;
}

/* Mobile Scrollable Regions Bar */
.mobile-regions-carousel {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  padding: 14px 16px;
  background: #f8fafc;
  border-bottom: 1px solid rgba(27, 46, 83, 0.06);
  gap: 10px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.mobile-regions-carousel::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar for clean look */
}

.mobile-pill-btn {
  display: inline-block;
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid rgba(27, 46, 83, 0.08);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 13px;
  border-radius: 30px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  outline: none;
  user-select: none;
}

.mobile-pill-btn.active {
  background: var(--accent-magenta) !important;
  color: #ffffff !important;
  border-color: var(--accent-magenta) !important;
  box-shadow: 0 4px 12px rgba(216, 27, 96, 0.25) !important;
}

.mobile-pill-btn:hover:not(.active) {
  background: #f1f5f9;
  color: var(--primary-navy);
}

/* Floating overlay stats card on the map */
.map-floating-overlay-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 15px 35px rgba(27, 46, 83, 0.12);
  width: calc(100% - 48px);
  max-width: 300px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 991.98px) {
  .map-floating-overlay-card {
    bottom: 16px;
    left: 50% !important;
    transform: translateX(-50%) translateY(10px);
    width: calc(100% - 32px);
    max-width: 380px;
  }
}

/* Custom styles for Leaflet elements */
.leaflet-container {
  font-family: var(--font-body) !important;
}

.leaflet-bar {
  border: none !important;
  box-shadow: 0 4px 12px rgba(27, 46, 83, 0.1) !important;
}

.leaflet-bar a {
  background-color: #ffffff !important;
  border-bottom: 1px solid rgba(27, 46, 83, 0.06) !important;
  color: var(--primary-navy) !important;
  transition: all 0.2s ease;
  width: 32px !important;
  height: 32px !important;
  line-height: 32px !important;
}

.leaflet-bar a:first-child {
  border-top-left-radius: 8px !important;
  border-top-right-radius: 8px !important;
}

.leaflet-bar a:last-child {
  border-bottom-left-radius: 8px !important;
  border-bottom-right-radius: 8px !important;
  border-bottom: none !important;
}

.leaflet-bar a:hover {
  background-color: #f8fafc !important;
  color: var(--accent-magenta) !important;
}

.close-info-btn:hover {
  color: var(--accent-magenta) !important;
}

/* ==========================================================================
   Typography Visibility Overrides (Ensuring readable text on dark backgrounds)
   ========================================================================== */
.hero-wrap h1,
.hero-wrap h2,
.hero-wrap h3,
.hero-wrap h4,
.bg-dark-navy h1,
.bg-dark-navy h2,
.bg-dark-navy h3,
.final-cta-section h1,
.final-cta-section h2,
.final-cta-section h3,
.about-counter-section h1,
.about-counter-section h2,
.about-counter-section h3,
.footer h2.footer-heading,
.footer p,
.footer a:not(:hover),
.mv-panel-navy h1,
.mv-panel-navy h2,
.mv-panel-navy h3,
.mv-panel-navy h4,
.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-light h1,
.text-light h2,
.text-light h3,
.bg-primary h1,
.bg-primary h2,
.bg-primary h3,
.bg-dark h1,
.bg-dark h2,
.bg-dark h3 {
  color: #ffffff !important;
}

/* ==========================================================================
   Cinema Overlay (Unifies background vignettes and ensures maximum contrast)
   ========================================================================== */
.owl-carousel.home-slider .slider-item .overlay-1 {
  width: 100% !important;
  left: 0 !important;
  background: linear-gradient(135deg, rgba(11, 19, 43, 0.8) 0%, rgba(27, 46, 83, 0.55) 50%, rgba(15, 23, 42, 0.85) 100%) !important;
  opacity: 0.65 !important;
}

.owl-carousel.home-slider .slider-item .overlay-2,
.owl-carousel.home-slider .slider-item .overlay-3,
.owl-carousel.home-slider .slider-item .overlay-4 {
  width: 0 !important;
  left: 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  background: transparent !important;
}

/* ==========================================================================
   Services Cards Design Polish
   ========================================================================== */
.services-card-wrap {
  background: #ffffff;
  border-radius: 16px !important;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(27, 46, 83, 0.03);
  border: 1px solid rgba(27, 46, 83, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: block;
  height: 100%;
  text-decoration: none !important;
}

.services-card-wrap:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(27, 46, 83, 0.08) !important;
  border-color: rgba(14, 165, 233, 0.15) !important;
}

.services-card-wrap .card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: all 0.4s ease;
}

.services-card-wrap:hover .card-img {
  transform: scale(1.03);
}

.services-card-wrap .card-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-magenta) !important;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  position: absolute;
  bottom: -25px;
  left: 25px;
  z-index: 2;
  border: 3px solid #ffffff;
  transition: all 0.4s ease;
}

.services-card-wrap:hover .card-icon {
  background: var(--primary-navy) !important;
  transform: rotate(10deg) scale(1.1);
}

.services-card-wrap .card-body {
  padding: 40px 25px 25px 25px !important;
}

.services-card-wrap h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-navy) !important;
  margin-bottom: 12px;
}

.services-card-wrap p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   Causes Cards Design Polish
   ========================================================================== */
.causes {
  background: #ffffff;
  border-radius: 16px !important;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(27, 46, 83, 0.02);
  border: 1px solid rgba(27, 46, 83, 0.04);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.causes:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(27, 46, 83, 0.08) !important;
}

.causes .img {
  height: 220px !important;
  transition: all 0.4s ease;
}

.causes:hover .img {
  transform: scale(1.02);
}

.causes .text {
  padding: 24px 20px !important;
}

.causes h2 a {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-navy) !important;
  transition: color 0.3s ease;
  text-decoration: none;
}

.causes h2 a:hover {
  color: var(--accent-magenta) !important;
}

.causes p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.causes .goal {
  background: rgba(27, 46, 83, 0.02);
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid rgba(27, 46, 83, 0.04);
}

.causes .goal p {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px !important;
}

.causes .goal p span {
  color: var(--primary-navy);
  font-weight: 700;
}

.causes .progress {
  background-color: rgba(27, 46, 83, 0.08) !important;
  border-radius: 30px !important;
  box-shadow: none !important;
}

.causes .progress-bar {
  border-radius: 30px !important;
  font-weight: 700;
  font-size: 10px;
  background: linear-gradient(90deg, var(--secondary-cyan) 0%, var(--accent-magenta) 100%) !important;
}

/* Custom outline action button transitions */
.btn-outline-magenta {
  border: 2px solid var(--accent-magenta) !important;
  color: var(--accent-magenta) !important;
  background: transparent !important;
  transition: all 0.3s ease !important;
}

.btn-outline-magenta:hover {
  background: var(--accent-magenta) !important;
  color: #ffffff !important;
  box-shadow: 0 6px 15px rgba(216, 27, 96, 0.25) !important;
}

/* Global Form Control Focus State Override */
.form-control:focus,
.form-group .form-control:focus,
.contactForm .form-control:focus {
  border-color: var(--accent-magenta) !important;
  box-shadow: 0 0 0 3px rgba(216, 27, 96, 0.12) !important;
  outline: 0 !important;
}

/* ==========================================================================
   Storytelling Dashboard Tabs (About Us)
   ========================================================================== */
.about-tabs-nav {
  display: inline-flex;
  padding: 6px;
  background: #ffffff;
  border-radius: 40px;
  border: 1px solid rgba(27, 46, 83, 0.08);
  box-shadow: 0 10px 25px rgba(27, 46, 83, 0.04);
}

.tab-nav-btn {
  border: none;
  background: transparent;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  border-radius: 35px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.tab-nav-btn.active {
  background: var(--primary-navy);
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(27, 46, 83, 0.15);
}

.tab-nav-btn:hover:not(.active) {
  color: var(--primary-navy);
  background: rgba(27, 46, 83, 0.04);
}

.about-tab-panel {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Tab Switch Slide up Fade Animation */
.fade-in-up {
  animation: tabFadeInUp 0.4s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes tabFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   Premium Objectives Grid Cards
   ========================================================================== */
.goal-card-premium {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(27, 46, 83, 0.02);
  border: 1px solid rgba(27, 46, 83, 0.04);
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.goal-card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary-cyan) 0%, var(--accent-magenta) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.goal-card-premium:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(27, 46, 83, 0.06);
  border-color: rgba(27, 46, 83, 0.08);
}

.goal-card-premium:hover::before {
  transform: scaleX(1);
}

.goal-number {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 28px;
  font-weight: 800;
  color: rgba(27, 46, 83, 0.05);
  font-family: var(--font-display);
  transition: color 0.3s ease;
}

.goal-card-premium:hover .goal-number {
  color: rgba(216, 27, 96, 0.08);
}

.goal-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(14, 165, 233, 0.08);
  color: var(--secondary-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.goal-card-premium:hover .goal-icon-wrap {
  background: var(--accent-magenta);
  color: #ffffff;
  transform: rotate(5deg) scale(1.05);
}

.goal-card-premium h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-navy) !important;
  margin-bottom: 12px;
}

.goal-card-premium p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ==========================================================================
   Decorations (Hero Wave Divider)
   ========================================================================== */
.custom-shape-divider-bottom-168903 {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
  z-index: 5;
}

.custom-shape-divider-bottom-168903 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.custom-shape-divider-bottom-168903 .shape-fill {
  fill: #ffffff;
  /* Transitions smoothly into the white content section */
}

/* ==========================================================================
   Services 2 Cards Redesign (Why Campaign Matters)
   ========================================================================== */
.services-2-card {
  background: #ffffff;
  border-radius: 16px !important;
  padding: 35px 25px !important;
  box-shadow: 0 10px 35px rgba(27, 46, 83, 0.02) !important;
  border: 1px solid rgba(27, 46, 83, 0.04) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  height: 100%;
}

.services-2-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(27, 46, 83, 0.08) !important;
  border-color: rgba(14, 165, 233, 0.1) !important;
}

.services-2-card .icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(216, 27, 96, 0.06) !important;
  color: var(--accent-magenta) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 24px auto !important;
  transition: all 0.3s ease;
}

.services-2-card:hover .icon {
  background: var(--accent-magenta) !important;
  color: #ffffff !important;
  transform: rotate(5deg) scale(1.05);
}

.services-2-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-navy) !important;
  margin-bottom: 12px;
}

.services-2-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ==========================================================================
   Header and Footer Logo Responsiveness & Polish
   ========================================================================== */
.header-logo {
  height: 65px !important;
  width: 65px !important;
  margin-right: 12px !important;
  border-radius: 50% !important;
  border: 2px solid #ffffff !important;
  background: #ffffff !important;
  object-fit: cover !important;
  transition: all 0.3s ease !important;
}

@media (max-width: 768px) {
  .header-logo {
    height: 50px !important;
    width: 50px !important;
    margin-right: 8px !important;
  }
  .navbar-brand div span:first-child {
    font-size: 16px !important;
  }
  .navbar-brand div span:last-child {
    font-size: 9px !important;
  }
}

.footer-logo {
  height: 80px !important;
  width: 80px !important;
  margin-right: 12px !important;
  border-radius: 50% !important;
  border: 2px solid #ffffff !important;
  background: #ffffff !important;
  object-fit: cover !important;
}

@media (max-width: 768px) {
  .footer-logo {
    height: 65px !important;
    width: 65px !important;
  }
}

/* ==========================================================================
   Rebranded & Polished CTA Banner (.ftco-hireme)
   ========================================================================== */
.ftco-hireme {
  background: var(--accent-magenta) !important;
  padding: 60px 0 !important;
  position: relative !important;
  overflow: hidden !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.ftco-hireme::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background-image: url('../images/moroccan-flower-dark.png') !important;
  background-repeat: repeat !important;
  opacity: 0.08 !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

.ftco-hireme .container {
  position: relative !important;
  z-index: 2 !important;
}

.ftco-hireme h2 {
  color: #ffffff !important;
  font-size: 26px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  margin-bottom: 0 !important;
  font-family: 'Montserrat', sans-serif !important;
  letter-spacing: 0.5px !important;
}

.ftco-hireme p {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 14px !important;
  margin-top: 5px !important;
  margin-bottom: 0 !important;
}

.ftco-hireme .btn-cta-white {
  background: #ffffff !important;
  color: var(--accent-magenta) !important;
  border: 1px solid #ffffff !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  border-radius: 30px !important;
  padding: 14px 28px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: inline-block !important;
  text-decoration: none !important;
}

.ftco-hireme .btn-cta-white:hover {
  background: var(--primary-navy) !important;
  border-color: var(--primary-navy) !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(27, 46, 83, 0.25) !important;
}

@media (max-width: 991.98px) {
  .ftco-hireme {
    text-align: center !important;
    padding: 50px 0 !important;
  }
  .ftco-hireme h2 {
    font-size: 22px !important;
    margin-bottom: 10px !important;
  }
  .ftco-hireme p {
    margin-bottom: 25px !important;
  }
  .ftco-hireme .col-md-4 {
    justify-content: center !important;
  }
}

/* ==========================================================================
   Donate Page Modern Layout & UX Polish
   ========================================================================== */
.donation-section-padding {
  padding: 80px 0 !important;
}

.impact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
  background: #ffffff;
  padding: 16px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.impact-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(216, 27, 96, 0.05);
  border-color: rgba(216, 27, 96, 0.1);
}

.impact-icon-wrap {
  min-width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(216, 27, 96, 0.08);
  color: var(--accent-magenta);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  font-size: 20px;
}

.impact-content h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--primary-navy);
}

.impact-content p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.45;
}

.why-support-card {
  background: var(--primary-navy);
  color: #ffffff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(27, 46, 83, 0.15);
  position: relative;
  overflow: hidden;
}

.why-support-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(216, 27, 96, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.why-support-card h5 {
  color: #ffffff !important;
  font-size: 16.5px;
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.why-support-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.why-support-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}

.why-support-list li:last-child {
  margin-bottom: 0;
}

.why-support-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-magenta);
  font-weight: bold;
}

.appeal-quote {
  border-left: 3px solid var(--accent-magenta);
  padding-left: 16px;
  margin-top: 24px;
}

.donation-card-modern {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.donation-step-indicator {
  background: rgba(27, 46, 83, 0.04);
  padding: 8px 16px;
  border-radius: 6px;
  margin-bottom: 20px;
  border-left: 4px solid var(--primary-navy);
}

.donation-step-indicator span {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary-navy);
}

.amount-quick-select-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.amount-btn {
  flex: 1;
  min-width: 70px;
  height: 40px;
  border-radius: 6px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: var(--text-dark);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.amount-btn:hover {
  border-color: var(--accent-magenta);
  color: var(--accent-magenta);
  background: rgba(216, 27, 96, 0.02);
}

.amount-btn.active {
  background-color: var(--accent-magenta) !important;
  border-color: var(--accent-magenta) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(216, 27, 96, 0.2);
}

.qr-payment-container {
  background: var(--bg-light);
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.qr-image-wrap {
  width: 160px;
  height: 160px;
  margin: 0 auto 16px;
  background: #ffffff;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-image-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.upi-id-badge {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  border: 1px dashed var(--accent-magenta);
  color: var(--accent-magenta);
  padding: 6px 14px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
}

.upi-id-badge:hover {
  background: var(--accent-magenta);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(216, 27, 96, 0.15);
}

.payment-upload-zone {
  position: relative;
  border: 2px dashed #cbd5e1;
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.payment-upload-zone:hover {
  border-color: var(--accent-magenta);
  background: rgba(216, 27, 96, 0.01);
}

.payment-upload-zone.file-selected {
  border-color: #22c55e;
  background: rgba(34, 197, 94, 0.02);
}

.payment-upload-zone input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.upload-icon {
  font-size: 32px;
  color: #94a3b8;
  margin-bottom: 12px;
  transition: color 0.2s;
}

.payment-upload-zone:hover .upload-icon {
  color: var(--accent-magenta);
}

.payment-upload-zone.file-selected .upload-icon {
  color: #22c55e;
}

.upload-label-main {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.upload-label-sub {
  font-size: 12px;
  color: var(--text-muted);
}

.btn-donate-modern {
  background: var(--accent-magenta) !important;
  border: 1px solid var(--accent-magenta) !important;
  border-radius: 8px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(216, 27, 96, 0.2) !important;
  cursor: pointer;
}

.btn-donate-modern:hover:not(:disabled) {
  background: var(--primary-navy) !important;
  border-color: var(--primary-navy) !important;
  box-shadow: 0 6px 20px rgba(27, 46, 83, 0.25) !important;
  transform: translateY(-1px);
}

.btn-donate-modern:disabled {
  background: #cbd5e1 !important;
  border-color: #cbd5e1 !important;
  box-shadow: none !important;
  cursor: not-allowed;
  opacity: 0.65;
}

.donation-trust-message {
  margin-top: 14px;
  text-align: center;
  font-size: 11.5px;
  color: var(--text-muted);
}

/* ==========================================================================
   Contact Page Styles & Interactive Elements
   ========================================================================== */
.contact-info-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
}

.contact-info-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 27, 96, 0.2);
  box-shadow: 0 10px 30px rgba(216, 27, 96, 0.08);
}

.contact-info-card .icon-box {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(216, 27, 96, 0.08);
  color: var(--accent-magenta);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 20px;
  transition: all 0.3s ease;
}

.contact-info-card:hover .icon-box {
  background: var(--accent-magenta);
  color: #ffffff;
  transform: scale(1.1);
}

.contact-info-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary-navy);
}

.contact-info-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.5;
}

.contact-info-card p a {
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.2s;
}

.contact-info-card p a:hover {
  color: var(--accent-magenta);
  text-decoration: none;
}

.contact-wrap {
  background: var(--primary-navy) !important;
}

.contact-info-sidebar {
  background: #111e38;
  color: #ffffff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.contact-info-sidebar h3 {
  color: #ffffff !important;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 16px;
}

.contact-info-sidebar .info-item {
  margin-bottom: 24px;
}

.contact-info-sidebar .info-item:last-child {
  margin-bottom: 0;
}

.contact-info-sidebar .info-item h5 {
  color: var(--accent-magenta) !important;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.contact-info-sidebar .info-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin-bottom: 0;
}

.contact-info-sidebar .info-item p a {
  color: #ffffff;
  transition: color 0.2s;
}

.contact-info-sidebar .info-item p a:hover {
  color: var(--accent-magenta);
  text-decoration: none;
}

.contact-info-sidebar .social-links {
  display: flex;
  gap: 12px;
}

.contact-info-sidebar .social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all 0.3s ease;
}

.contact-info-sidebar .social-links a:hover {
  background: var(--accent-magenta);
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(216, 27, 96, 0.3);
  color: #ffffff;
  text-decoration: none;
}

/* Custom Leaflet Tooltip Premium Styling */
.custom-leaflet-tooltip {
  background: #ffffff !important;
  border: 1px solid rgba(27, 46, 83, 0.08) !important;
  box-shadow: 0 10px 25px rgba(27, 46, 83, 0.12) !important;
  border-radius: 10px !important;
  padding: 8px 12px !important;
}

.custom-leaflet-tooltip::before {
  border-top-color: #ffffff !important;
}

/* ==========================================================================
   Stepper Wizard Layout and Animations
   ========================================================================== */
.donation-step-content {
  animation: fadeInStep 0.3s ease-in-out;
}

@keyframes fadeInStep {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-prev-step {
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  padding: 8px 24px !important;
  transition: all 0.2s ease !important;
}

/* Unified light theme Back button styling */
.donation-card-modern .btn-prev-step,
.donation-wrap .btn-prev-step {
  border: 1px solid #cbd5e1 !important;
  color: #475569 !important;
  background: #ffffff !important;
}

.donation-card-modern .btn-prev-step:hover,
.donation-wrap .btn-prev-step:hover {
  background: #f1f5f9 !important;
  border-color: #94a3b8 !important;
  color: #0f172a !important;
}

/* Container width optimization for high-resolution desktop screens */
@media (min-width: 1200px) {
  .container {
    max-width: 1220px !important;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1340px !important;
  }
}