/* Amahoro Human Respect - Redesign Stylesheet */
/* Updated Color Palette */
:root {
  --primary-dark-blue: #4300FF;
  --medium-blue: #0065F8;
  --cyan-accent: #00CAFF;
  --aqua-highlight: #00FFDE;
  --dark-text: #212121;
  --background: #F5F5F5;
  --white: #FFFFFF;
  --yellow: #FFE066;
  --green: #4BE38A;
  --purple: #A259FF;
  --pink: #FF6F91;
}

html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  font-family: 'Poppins', Arial, sans-serif;
  background: var(--background);
  color: var(--dark-text);
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--medium-blue);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: var(--cyan-accent);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header & Navigation */
.header {
  background: var(--primary-dark-blue);
  box-shadow: 0 2px 8px rgba(198,40,40,0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 100%;
  max-height: 64px;
  width: auto;
  filter: none;
}

.nav {
  display: flex;
  align-items: center;
}
.nav-menu {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu li {
  position: relative;
}
.nav-menu a {
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  border-radius: 0.4rem;
  transition: background 0.2s, color 0.2s;
  color: var(--white);
  background: transparent;
}
.nav-menu a.active, .nav-menu a:hover {
  background: var(--medium-blue);
  color: var(--white);
}

/* Desktop Submenu Styles */
.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 0.4rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  z-index: 1000;
  padding: 0.5rem 0;
  margin-top: 0.25rem;
}

.has-submenu:hover .submenu {
  display: block;
  animation: fadeInDown 0.2s ease-out;
}

.submenu li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.submenu a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--dark-text) !important;
  background: transparent !important;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
  border-radius: 0;
}

.submenu a:hover {
  background: var(--background) !important;
  color: var(--medium-blue) !important;
}

.submenu a.active {
  background: var(--medium-blue) !important;
  color: var(--white) !important;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Nav */
.mobile-nav-toggle {
  display: none !important;
  color: #fff !important;
  border: 2px solid #fff !important;
  border-radius: 0.5rem;
  background: transparent !important;
  padding: 0.2em 0.2em;
  transition: border 0.2s, color 0.2s, background 0.2s;
  font-size: 2rem;
  line-height: 1;
  box-sizing: border-box;
}
@media (max-width: 900px) {
  .mobile-nav-toggle {
    display: block !important;
    margin-top: 4px;
    margin-bottom: 4px;
  }
  .logo img {
    max-height: 50px;
  }
}

.mobile-nav-toggle:focus, .mobile-nav-toggle:hover {
  background: rgba(255,255,255,0.08) !important;
  outline: none;
  border-color: var(--aqua-highlight) !important;
  color: var(--aqua-highlight) !important;
}

@media (max-width: 900px) {
  .nav-menu {
    display: none;
  }
  .mobile-nav-toggle {
    display: block;
    margin-top: 4px;
    margin-bottom: 4px;
  }
  .submenu {
    display: none !important;
  }
  .logo img {
    max-height: 50px;
  }
}

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--primary-dark-blue);
  color: var(--white);
  z-index: 2000;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
  overflow-y: auto;
  transition: transform 0.3s;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem 0.5rem 1.5rem;
  background: var(--medium-blue);
}
.mobile-nav .logo img {
  height: 40px;
}
.mobile-nav-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}
.mobile-nav-menu {
  flex: 1 1 auto;
  list-style: none;
  padding: 1.5rem 0 2rem 0;
  margin: 0;
  font-size: 1.15rem;
}
.mobile-nav-menu > li {
  border-bottom: 1px solid var(--cyan-accent);
}
.mobile-nav-menu a, .mobile-nav-submenu-toggle {
  display: flex;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  text-align: left;
  font-size: 1.1em;
  padding: 1rem 2rem 1rem 1.5rem;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}
.mobile-nav-menu a:hover, .mobile-nav-submenu-toggle:hover {
  background: var(--medium-blue);
  color: var(--white);
}
.mobile-nav-submenu {
  display: none;
  background: var(--primary-dark-blue);
  padding-left: 0;
  margin: 0;
  list-style: none;
  font-size: 1em;
}
.mobile-nav-submenu.open {
  display: block;
  animation: fadeIn 0.2s;
}
.mobile-nav-submenu li a {
  color: var(--cyan-accent);
  padding: 0.85rem 2rem 0.85rem 2.5rem;
  text-decoration: none;
  font-size: 1em;
  border-bottom: 1px solid var(--cyan-accent);
  transition: background 0.2s, color 0.2s;
}
.mobile-nav-submenu li a:hover {
  background: var(--medium-blue);
  color: var(--white);
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero Section */
.hero {
  background: var(--primary-dark-blue);
  color: var(--white);
  padding: 3rem 0 2rem 0;
  text-align: center;
  position: relative;
}
.hero .hero-content {
  max-width: 700px;
  margin: 0 auto;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}
.hero .cta-btn {
  background: var(--aqua-highlight);
  color: var(--primary-dark-blue);
  border: none;
  border-radius: 0.5rem;
  padding: 0.9rem 2.2rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(198,40,40,0.08);
}
.hero .cta-btn:hover {
  background: var(--medium-blue);
  color: var(--white);
}

/* Hero Full Height */
.hero-full {
  min-height: 90vh;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
}

.hero-content {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  z-index: 2;
}

.hero-dynamic {
  margin: 2rem 0 1.5rem 0;
  min-height: 2.5rem;
  font-size: 1rem;
  color: #FFD600 !important;
  font-weight: 400;
  transition: opacity 0.5s;
}

@media (max-width: 700px) {
  .hero-full {
    min-height: 70vh;
    padding: 2rem 0 1rem 0;
  }
  .hero-content {
    max-width: 98vw;
    padding: 0 0.5rem;
  }
  .hero-dynamic {
    font-size: 1.05rem;
    margin: 1.2rem 0 1rem 0;
  }
}

/* Section Titles */
.section-title {
  color: var(--primary-dark-blue);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Cards & Grids */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.card {
  background: var(--white);
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(0,101,248,0.06);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  text-align: left;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 2px solid var(--cyan-accent);
}
.card:hover {
  box-shadow: 0 6px 24px rgba(0,101,248,0.12);
  transform: translateY(-4px) scale(1.02);
  border-color: var(--aqua-highlight);
}
.card .card-image {
  margin-bottom: 1rem;
}
.card .card-image img {
  border-radius: 0.7rem;
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.card h3 {
  color: var(--primary-dark-blue);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
.card p {
  color: var(--dark-text);
  font-size: 1rem;
}

/* Programs Section */
.programs-section {
  background: #f7fafd;
  color: var(--dark-text);
  padding: 4rem 0;
  margin-top: 2.5rem;
}

.programs-header {
  text-align: center;
  margin-bottom: 3rem;
}

.programs-header .section-title {
  color: var(--primary-dark-blue);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--medium-blue);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.program-card {
  background: #fff;
  border: 1px solid #e0e7ef;
  border-radius: 1rem;
  padding: 2rem;
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative;
  box-shadow: 0 4px 24px rgba(67,0,255,0.06);
  color: var(--dark-text);
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(67,0,255,0.10);
}

.program-icon {
  width: 72px;
  height: 72px;
  background: var(--aqua-highlight);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary-dark-blue);
  font-size: 2rem;
  box-shadow: 0 2px 8px rgba(67,0,255,0.08);
}

.program-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-dark-blue);
}

.program-content p {
  color: #444b5a;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.program-stats {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: auto;
}

.stat {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--medium-blue);
  line-height: 1;
}

.stat-label {
  font-size: 0.95rem;
  color: #444b5a;
  font-weight: 500;
}

/* Partners Slider */
.partners-section {
  background: var(--background);
  padding: 2.5rem 0;
}
.partners-slider {
  position: relative;
  overflow: visible;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partners-track-wrapper {
  overflow-x: auto;
  overflow-y: visible;
  width: 100%;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}
.partners-track-wrapper::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
.partners-track {
  display: flex;
  gap: 2.5rem;
  transition: transform 0.5s cubic-bezier(0.4,0.2,0.2,1);
  will-change: transform;
  min-width: 100%;
}
.partner-logo {
  flex: 0 0 auto;
  width: 150px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(67,0,255,0.08), 0 1.5px 6px rgba(0,0,0,0.04);
  padding: 0.5rem;
  border: 2px solid var(--cyan-accent);
  scroll-snap-align: start;
  margin-bottom: 0.5rem;
  transition: box-shadow 0.2s, border 0.2s;
}
.partner-logo img {
  max-width: 100%;
  max-height: 64px;
  object-fit: contain;
}
.partners-arrow {
  background: none;
  border: none;
  color: var(--primary-dark-blue);
  border-radius: 0;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  box-shadow: none;
  opacity: 0.85;
  padding: 0 0.3em;
  transition: color 0.2s;
}
.partners-arrow.left {
  left: 0.2rem;
}
.partners-arrow.right {
  right: 0.2rem;
}
.partners-arrow:hover, .partners-arrow:focus {
  color: var(--cyan-accent);
  background: none;
  outline: none;
}
@media (max-width: 900px) {
  .partners-arrow {
    font-size: 1.5rem;
  }
}
@media (max-width: 700px) {
  .partners-arrow {
    font-size: 1.2rem;
  }
}
@media (max-width: 900px) {
  .partners-track {
    gap: 1.2rem;
  }
  .partner-logo {
    width: 110px;
    height: 60px;
    padding: 0.3rem;
  }
}
@media (max-width: 700px) {
  .partners-arrow {
    display: none;
  }
  .partners-slider {
    justify-content: flex-start;
  }
  .partners-track-wrapper {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .partners-track {
    gap: 0.7rem;
  }
  .partner-logo {
    width: 80px;
    height: 44px;
    padding: 0.2rem;
    border-radius: 0.6rem;
    box-shadow: 0 2px 6px rgba(67,0,255,0.08), 0 1px 3px rgba(0,0,0,0.04);
  }
}

/* Footer */
footer {
  background: #000000;
  color: var(--white);
  padding: 2.5rem 0 1rem 0;
  margin-top: 3rem;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto 1.5rem auto;
  padding: 0 1.5rem;
  color: var(--white);
}
.footer-col {
  flex: 1 1 220px;
  min-width: 220px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}
.footer-logo img {
  height: 40px;
}
.footer-logo span {
  color: var(--aqua-highlight);
}
.footer-desc {
  color: var(--cyan-accent);
  font-size: 1rem;
  margin-bottom: 1.2rem;
}
.footer-social a {
  color: var(--white);
  margin-right: 0.7rem;
  font-size: 1.3rem;
  transition: color 0.2s;
}
.footer-social a:hover {
  color: var(--aqua-highlight);
}
.footer-col h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
  font-weight: 600;
}
.footer-col h4, .footer-logo span {
  color: var(--aqua-highlight);
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 0.5rem;
  color: var(--medium-blue);
  font-size: 1rem;
}
.footer-col ul li a {
  color: var(--cyan-accent);
  text-decoration: underline;
}
.footer-col ul li a:hover {
  color: var(--aqua-highlight);
}
.footer-bottom {
  border-top: 1px solid var(--cyan-accent);
  padding-top: 1rem;
  text-align: center;
  color: var(--cyan-accent);
  font-size: 0.95rem;
}

/* Popup Modal */
.site-popup {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(67,0,255,0.12);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}
.site-popup .popup-content {
  background: var(--white);
  color: var(--primary-dark-blue);
  border-radius: 1.2rem;
  box-shadow: 0 8px 32px rgba(198,40,40,0.18);
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  max-width: 90vw;
  width: 350px;
  text-align: center;
  position: relative;
  animation: fadeIn 0.3s;
  border: 2px solid var(--aqua-highlight);
}
.site-popup .popup-close {
  position: absolute;
  top: 0.7rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--primary-dark-blue);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}
.site-popup .popup-emoji {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.7rem;
  color: var(--medium-blue);
}
.site-popup .popup-message {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}
@media (max-width: 700px) {
  .footer-main {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 0.5rem;
  }
  .header-content, .container {
    width: 98%;
    padding: 0 0.5rem;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.3rem;
  }
  
  /* Programs Section Mobile */
  .programs-section {
    padding: 2.5rem 0;
  }
  
  .programs-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .program-card {
    padding: 1.2rem;
  }
  
  .program-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 1rem;
    font-size: 1.3rem;
  }
  
  .program-content h3 {
    font-size: 1.1rem;
  }
  
  .stat {
    font-size: 1.2rem;
  }
}
@media (max-width: 500px) {
  .site-popup .popup-content {
    width: 95vw;
    padding: 1.5rem 0.5rem 1rem 0.5rem;
  }
  .hero {
    padding: 2rem 0 1rem 0;
  }
} 

/* Buttons */
button, .cta-btn {
  background: var(--primary-dark-blue);
  color: var(--white);
  border: none;
  border-radius: 0.5rem;
  padding: 0.9rem 2.2rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
button:hover, .cta-btn:hover {
  background: var(--medium-blue);
  color: var(--white);
}

/* Highlights & Callouts */
.aqua-highlight, .highlight {
  background: var(--aqua-highlight);
  color: var(--primary-dark-blue);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
}

/* Accent Borders/Icons */
.accent-border {
  border: 2px solid var(--cyan-accent);
}
.icon-accent {
  color: var(--cyan-accent);
} 

.footer-main, .footer-col ul li, .footer-desc, .footer-social a, .footer-col ul li a, .footer-bottom {
  color: #fff !important;
}
.footer-col h4, .footer-logo span {
  color: var(--aqua-highlight) !important;
}
.footer-col ul li a:hover {
  color: var(--aqua-highlight) !important;
} 

.footer-social-icon svg {
  color: #fff;
  transition: color 0.2s;
}
.footer-social-icon:hover svg {
  color: var(--aqua-highlight);
} 

/* Top Header Bar - Compact & Responsive */
.top-header {
  background: #f8fbff;
  color: #111;
  font-size: 0.78rem;
  border-bottom: 1px solid #e0e7ef;
  width: 100%;
  z-index: 900;
  position: relative;
  transition: top 0.4s, opacity 0.4s;
  padding: 4px 0;
  min-height: 28px;
  line-height: 1.2;
}
.top-header-hide {
  top: -60px;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  width: 100%;
}
.top-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.32rem 0;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 28px;
}
.top-header-left {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: nowrap;
  overflow: hidden;
}
.top-header-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: #111;
  font-size: 0.78rem;
  padding: 0 6px;
  white-space: nowrap;
}
.top-header-icon {
  font-size: 1em;
  color: #111;
}
.top-header-item a {
  color: #111;
  text-decoration: none;
  transition: color 0.2s;
}
.top-header-item a:hover {
  color: #222;
}
.top-header-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.top-header-social {
  font-size: 0.78rem;
  padding: 0 6px;
}
.top-header-social.social-icon-btn {
  width: 32px;
  height: 32px;
  margin: 0 2px;
}
.top-header-social svg {
  width: 18px;
  height: 18px;
  display: block;
  color: #111;
  transition: color 0.2s;
}
.top-header-social:hover svg {
  color: #222;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .top-header-content {
    width: 98%;
    padding: 0.32rem 0.5rem;
    gap: 0.5rem;
  }
  .top-header-left {
    gap: 0.5rem;
    flex: 1;
    min-width: 0;
  }
  .top-header-item {
    font-size: 0.72rem;
    padding: 0 4px;
  }
  .top-header-social.social-icon-btn {
    width: 28px;
    height: 28px;
    margin: 0 1px;
  }
  .top-header-social svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 600px) {
  .top-header-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .top-header-left {
    gap: 0.3rem;
  }
  .top-header-item {
    font-size: 0.68rem;
    padding: 0 2px;
  }
  .top-header-item:nth-child(2) {
    display: none; /* Hide email on very small screens */
  }
  .top-header-social.social-icon-btn {
    width: 24px;
    height: 24px;
    margin: 0;
  }
  .top-header-social svg {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 400px) {
  .top-header-item:nth-child(3) {
    display: none; /* Hide phone on very small screens */
  }
  .top-header-right {
    gap: 0.2rem;
  }
}

/* Social Icon Button Style (Outlined, Rounded, Like Image) */
.social-icon-btn, .footer-social-icon, .top-header-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 2px solid #3ec6c6;
  border-radius: 12px;
  background: transparent;
  color: #3ec6c6;
  transition: background 0.2s, color 0.2s;
  margin: 0 8px;
  font-size: 1.6rem;
}
.social-icon-btn svg, .footer-social-icon svg, .top-header-social svg {
  width: 28px;
  height: 28px;
}
.social-icon-btn:hover, .footer-social-icon:hover, .top-header-social:hover {
  background: #3ec6c6;
  color: #1e2636;
}
.social-icon-btn:active, .footer-social-icon:active, .top-header-social:active {
  background: #2ba6a6;
  color: #fff;
} 

/* Who We Are Page Styles */
.hero-about {
  background: linear-gradient(135deg, var(--primary-dark-blue) 0%, var(--medium-blue) 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-about .hero-content {
  position: relative;
  z-index: 2;
}

.hero-about h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.95;
  line-height: 1.6;
}

/* About Intro Section */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}

.about-text h2 {
  color: var(--primary-dark-blue);
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  font-weight: 700;
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--dark-text);
  margin-bottom: 0;
}

.about-image {
  position: relative;
}

.about-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.about-img:hover {
  transform: translateY(-5px);
}

/* Mission & Vision Cards */
.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.mission-card, .vision-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mission-card::before, .vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-dark-blue), var(--cyan-accent));
}

.mission-card:hover, .vision-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary-dark-blue), var(--medium-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.mission-card h3, .vision-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-dark-blue);
  margin-bottom: 1rem;
}

.mission-card p, .vision-card p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--dark-text);
  margin: 0;
}

/* Values Section */
.values-section {
  background: linear-gradient(135deg, #f8f9ff 0%, #e8f4ff 100%);
  padding: 4rem 0;
  margin-top: 4rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.value-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(67, 0, 255, 0.1);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.value-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-dark-blue);
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--dark-text);
  line-height: 1.6;
  margin: 0;
}

/* Team Overview Section */
.team-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.team-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(67, 0, 255, 0.1);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.team-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--cyan-accent), var(--aqua-highlight));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.team-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-dark-blue);
  margin-bottom: 1rem;
}

.team-card p {
  color: var(--dark-text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.team-link {
  display: inline-block;
  color: var(--medium-blue);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.team-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyan-accent);
  transition: width 0.3s ease;
}

.team-link:hover {
  color: var(--cyan-accent);
}

.team-link:hover::after {
  width: 100%;
}

/* Policies Section */
.policies-section {
  background: var(--white);
  padding: 4rem 0;
  margin-top: 4rem;
}

.policies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.policy-card {
  background: linear-gradient(135deg, #f8f9ff 0%, #e8f4ff 100%);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  border: 1px solid rgba(67, 0, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.policy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.policy-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.policy-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-dark-blue);
  margin-bottom: 1rem;
}

.policy-card p {
  color: var(--dark-text);
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark-blue) 0%, var(--medium-blue) 100%);
  color: var(--white);
  padding: 3rem;
  border-radius: 1rem;
  margin-top: 2rem;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  text-align: center;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn-secondary {
  background: transparent !important;
  border: 2px solid var(--white) !important;
  color: var(--white) !important;
}

.cta-btn-secondary:hover {
  background: var(--white) !important;
  color: var(--primary-dark-blue) !important;
}

/* Responsive Design for Who We Are Page */
@media (max-width: 900px) {
  .hero-about h1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .about-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-text h2 {
    font-size: 2rem;
  }
  
  .mission-vision-grid {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .team-overview {
    grid-template-columns: 1fr;
  }
  
  .policies-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .cta-section {
    padding: 2rem;
  }
  
  .cta-section h2 {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 600px) {
  .hero-about {
    padding: 3rem 0;
  }
  
  .hero-about h1 {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .about-text h2 {
    font-size: 1.75rem;
  }
  
  .mission-card, .vision-card {
    padding: 2rem;
  }
  
  .card-icon {
    width: 60px;
    height: 60px;
  }
  
  .value-card, .team-card, .policy-card {
    padding: 1.5rem;
  }
  
  .cta-section {
    padding: 1.5rem;
  }
  
  .cta-section h2 {
    font-size: 1.75rem;
  }
} 

/* Staff Page Styles */
.hero-staff {
  background: linear-gradient(135deg, var(--primary-dark-blue) 0%, var(--medium-blue) 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-staff::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-staff .hero-content {
  position: relative;
  z-index: 2;
}

.hero-staff h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Staff Intro Section */
.staff-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.staff-intro h2 {
  color: var(--primary-dark-blue);
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  font-weight: 700;
}

.staff-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--dark-text);
  margin-bottom: 0;
}

/* Staff Grid */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.staff-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(67, 0, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.staff-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.staff-avatar {
  flex-shrink: 0;
}

.staff-avatar-lg {
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f3f3;
  border-radius: 50%;
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 4px 16px rgba(67, 0, 255, 0.08);
}

.staff-person-icon {
  width: 96px;
  height: 96px;
  display: block;
}

.staff-info {
  flex: 1;
}

.staff-info h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-dark-blue);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.staff-position {
  display: block;
  font-size: 1rem;
  color: var(--dark-text);
  margin-bottom: 1rem;
  font-weight: 500;
}

.staff-department {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.department-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.department-badge.leadership {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  color: var(--white);
}

.department-badge.legal {
  background: linear-gradient(135deg, #4834d4, #686de0);
  color: var(--white);
}

.department-badge.me {
  background: linear-gradient(135deg, #00b894, #00cec9);
  color: var(--white);
}

.department-badge.finance {
  background: linear-gradient(135deg, #fdcb6e, #e17055);
  color: var(--white);
}

.department-badge.community {
  background: linear-gradient(135deg, #6c5ce7, #a29bfe);
  color: var(--white);
}

.department-badge.communications {
  background: linear-gradient(135deg, #fd79a8, #fdcb6e);
  color: var(--white);
}

/* Team Stats Section */
.team-stats-section {
  background: linear-gradient(135deg, #f8f9ff 0%, #e8f4ff 100%);
  padding: 4rem 0;
  margin-top: 4rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.stat-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(67, 0, 255, 0.1);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-dark-blue);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  color: var(--dark-text);
  font-weight: 500;
}

/* Join Team CTA */
.join-team-cta {
  background: linear-gradient(135deg, var(--primary-dark-blue) 0%, var(--medium-blue) 100%);
  color: var(--white);
  padding: 3rem;
  border-radius: 1rem;
  margin-top: 2rem;
}

.join-team-cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.join-team-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  text-align: center;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design for Staff Page */
@media (max-width: 900px) {
  .hero-staff h1 {
    font-size: 2.5rem;
  }
  
  .staff-intro h2 {
    font-size: 2rem;
  }
  
  .staff-grid {
    grid-template-columns: 1fr;
  }
  
  .staff-card {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .join-team-cta {
    padding: 2rem;
  }
  
  .join-team-cta h2 {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .hero-staff {
    padding: 3rem 0;
  }
  
  .hero-staff h1 {
    font-size: 2rem;
  }
  
  .staff-intro h2 {
    font-size: 1.75rem;
  }
  
  .staff-card {
    padding: 1.5rem;
  }
  
  .avatar-placeholder {
    width: 60px;
    height: 60px;
  }
  
  .staff-info h3 {
    font-size: 1.1rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .join-team-cta {
    padding: 1.5rem;
  }
  
  .join-team-cta h2 {
    font-size: 1.75rem;
  }
} 

.whatsapp-icon-btn svg {
  display: block;
  background: none;
  border-radius: 10px;
  box-shadow: none;
}

.whatsapp-icon-btn {
  padding: 0;
  border-radius: 10px;
  background: none;
  box-shadow: none;
  transition: box-shadow 0.2s, background 0.2s;
}

.whatsapp-icon-btn:hover svg rect {
  stroke: #FFD600;
  background: none;
}

/* Donate Button in Navigation */
.nav-donate-btn {
  background: #dc2626 !important;
  color: white !important;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 2px 4px rgba(220, 38, 38, 0.2);
}

.nav-donate-btn:hover {
  background: #b91c1c !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(220, 38, 38, 0.3);
  color: white !important;
}

.nav-donate-btn:active {
  transform: translateY(0);
}

/* Donation Page Styles */
.hero-donation {
  background: linear-gradient(135deg, var(--primary-dark-blue) 0%, var(--medium-blue) 100%);
  color: var(--white);
  text-align: center;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.hero-donation::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-donation .hero-content {
  position: relative;
  z-index: 2;
}

.donation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.donation-impact {
  background: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.impact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.impact-card {
  text-align: center;
  padding: 1.5rem;
  background: var(--background);
  border-radius: 0.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.impact-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.impact-card h3 {
  color: var(--primary-dark-blue);
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
}

.impact-card p {
  color: var(--dark-text);
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.donation-form-section {
  background: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.donation-form-card h2 {
  color: var(--primary-dark-blue);
  margin-bottom: 1.5rem;
  text-align: center;
}

.bank-details {
  background: var(--background);
  padding: 1.5rem;
  border-radius: 0.75rem;
  margin-bottom: 2rem;
}

.bank-detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e0e0e0;
}

.bank-detail-item:last-child {
  border-bottom: none;
}

.detail-label {
  font-weight: 600;
  color: var(--dark-text);
}

.detail-value {
  font-weight: 700;
  color: var(--primary-dark-blue);
  font-family: 'Courier New', monospace;
  font-size: 1.1rem;
}

.donation-options {
  margin-bottom: 2rem;
}

.donation-options h3 {
  color: var(--primary-dark-blue);
  margin-bottom: 1rem;
}

.amount-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.amount-btn {
  background: var(--white);
  border: 2px solid var(--medium-blue);
  color: var(--medium-blue);
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.amount-btn:hover,
.amount-btn.active {
  background: var(--medium-blue);
  color: var(--white);
}

.custom-amount {
  margin-top: 1rem;
}

.custom-amount label {
  display: block;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 0.5rem;
}

.custom-amount input {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e0e0e0;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.custom-amount input:focus {
  outline: none;
  border-color: var(--medium-blue);
}

.donation-instructions {
  background: #f0f9ff;
  padding: 1.5rem;
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--medium-blue);
}

.donation-instructions h3 {
  color: var(--primary-dark-blue);
  margin-bottom: 1rem;
}

.donation-instructions ol {
  margin: 0;
  padding-left: 1.5rem;
}

.donation-instructions li {
  margin-bottom: 0.5rem;
  color: var(--dark-text);
  line-height: 1.6;
}

.donation-instructions a {
  color: var(--medium-blue);
  font-weight: 600;
}

.donation-instructions a:hover {
  color: var(--primary-dark-blue);
}

.donation-note {
  background: #fef3c7;
  padding: 1rem;
  border-radius: 0.5rem;
  border-left: 4px solid #f59e0b;
}

.donation-note p {
  margin: 0;
  color: #92400e;
  font-size: 0.9rem;
}

.testimonials-section {
  margin-top: 4rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-content p {
  font-style: italic;
  color: var(--dark-text);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonial-author strong {
  color: var(--primary-dark-blue);
  display: block;
  margin-bottom: 0.25rem;
}

.testimonial-author span {
  color: #666;
  font-size: 0.9rem;
}

/* Responsive Design for Donation Page */
@media (max-width: 900px) {
  .donation-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .impact-cards {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .amount-buttons {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .hero-donation {
    padding: 3rem 0;
  }
  
  .donation-impact,
  .donation-form-section {
    padding: 1.5rem;
  }
  
  .bank-detail-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  
  .amount-buttons {
    grid-template-columns: 1fr;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
} 

/* Payment Modal Styles */
.payment-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(33,33,33,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
}
.payment-modal-content {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  box-shadow: 0 8px 32px rgba(67,0,255,0.10);
  max-width: 400px;
  width: 100%;
  position: relative;
  animation: fadeInDown 0.2s;
}
.payment-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #888;
  cursor: pointer;
  transition: color 0.2s;
}
.payment-modal-close:hover {
  color: #dc2626;
}
#cardPaymentForm label {
  display: block;
  margin-top: 1rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
  color: var(--primary-dark-blue);
}
#cardPaymentForm input {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e0e0e0;
  border-radius: 0.5rem;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  transition: border-color 0.2s;
}
#cardPaymentForm input:focus {
  outline: none;
  border-color: var(--medium-blue);
}
.card-row {
  display: flex;
  gap: 1rem;
}
.card-row > div {
  flex: 1;
}
.payment-confirmation {
  text-align: center;
  padding: 1.5rem 0 0 0;
}
.payment-confirmation h4 {
  color: var(--primary-dark-blue);
  margin-bottom: 0.5rem;
}
.payment-confirmation p {
  color: var(--dark-text);
  font-size: 1rem;
  margin: 0.5rem 0 0 0;
}
@media (max-width: 600px) {
  .payment-modal-content {
    padding: 1rem 0.5rem 1rem 0.5rem;
    max-width: 98vw;
  }
  .card-row {
    flex-direction: column;
    gap: 0.5rem;
  }
} 

/* Modern contact form styles */
.contact-form-modern {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin-top: 1.5rem;
}
.contact-form-modern label {
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.contact-form-modern input,
.contact-form-modern textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 0.5rem;
  transition: border 0.2s;
}
.contact-form-modern input:focus,
.contact-form-modern textarea:focus {
  border: 1.5px solid #4f2fff;
  outline: none;
}
.btn-modern {
  background: #4f2fff;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.9rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-modern:hover {
  background: #2e1ab7;
}
.footer-contact {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: #fff;
}
.footer-contact a {
  color: #fff;
  text-decoration: underline;
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}
@media (max-width: 700px) {
  .contact-form-modern {
    max-width: 100%;
  }
} 

/* Contact section layout for side-by-side design */
.contact-section-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
  margin: 2.5rem 0 3rem 0;
}
.contact-section-left, .contact-section-right {
  flex: 1 1 0;
  min-width: 320px;
}
.contact-section-left {
  max-width: 450px;
}
.contact-section-right {
  max-width: 600px;
}
@media (max-width: 900px) {
  .contact-section-container {
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
  }
  .contact-section-left, .contact-section-right {
    max-width: 100%;
    min-width: 0;
  }
} 

/* Minimize space between menu and hero section text on desktop, restore space on mobile */
.hero-section, .main-hero, .home-hero, .section-hero {
  margin-top: 0 !important;
  padding-top: 0.1rem !important;
}
@media (max-width: 700px) {
  .hero-section, .main-hero, .home-hero, .section-hero {
    margin-top: 2.5rem !important;
    padding-top: 2.5rem !important;
  }
} 

/* Flexbox layout for hero section */
.hero-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  gap: 1.2rem;
  padding-top: 0.5rem;
  padding-bottom: 2.5rem;
}
.hero-flex h1 {
  margin-bottom: 0.5rem;
}
.hero-flex p {
  margin-bottom: 0.5rem;
  max-width: 700px;
  text-align: center;
}
.hero-flex .cta-btn {
  margin-top: 0.5rem;
}
@media (max-width: 700px) {
  .hero-flex {
    min-height: 40vh;
    gap: 0.7rem;
    padding-top: 2.5rem;
    padding-bottom: 1.5rem;
  }
  .hero-flex p {
    font-size: 1.05rem;
    padding-left: 0.2rem;
    padding-right: 0.2rem;
  }
} 

/* Unified hero content box for heading, text, and button */
.hero-content-box {
  background: #3a19ff;
  color: #fff;
  border-radius: 2.5rem;
  box-shadow: 0 4px 24px 0 rgba(58,25,255,0.08);
  padding: 2.5rem 2.2rem 2.2rem 2.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 700px;
  width: 100%;
  margin: 0 auto 2.5rem auto;
}
.hero-content-box h1,
.hero-content-box p,
.hero-content-box .cta-btn {
  color: #fff;
}
.hero-content-box h1 {
  margin-bottom: 1.1rem;
}
.hero-content-box p {
  margin-bottom: 1.1rem;
  text-align: center;
}
.hero-content-box .cta-btn {
  margin-top: 0.5rem;
}
@media (max-width: 700px) {
  .hero-content-box {
    padding: 1.5rem 0.7rem 1.2rem 0.7rem;
    border-radius: 1.2rem;
    max-width: 98vw;
    margin-bottom: 2.8rem;
  }
  .hero-content-box h1 {
    font-size: 1.5rem;
    line-height: 1.15;
  }
  .hero-content-box p {
    font-size: 1rem;
    line-height: 1.3;
  }
  .hero-content-box .cta-btn {
    font-size: 1rem;
    padding: 0.8rem 1.2rem;
  }
}
@media (min-width: 1200px) {
  .hero-content-box {
    max-width: 900px;
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }
} 

.hero, .hero-full {
  margin-bottom: 0 !important;
} 

/* Hero section with full viewport height and centered content */
.hero-flex-vh {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  width: 100%;
  padding-top: 0.5rem;
  padding-bottom: 2.5rem;
}
@media (max-width: 700px) {
  .hero-flex-vh {
    min-height: 40vh;
    padding-top: 2.5rem;
    padding-bottom: 1.5rem;
  }
} 

@media (min-width: 601px) {
  .hero:not(.home-hero),
  .hero-full,
  .hero-ourwork,
  .hero-educational,
  .hero-employment,
  .hero-hivprevention,
  .hero-advocacy,
  .hero-legalaid,
  .hero-policybriefs,
  .hero-annualreports,
  .hero-sportswellness,
  .hero-contact,
  .hero-donation,
  .hero-full:not(.home-hero) {
    min-height: 50vh !important;
    max-height: 50vh !important;
    height: 50vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .hero .hero-content, .hero-full .hero-content, .hero-content-box {
    padding: 0 !important;
    margin: 0 auto !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
  .hero h1, .hero-full h1, .hero-content-box h1 {
    font-size: clamp(2rem, 5vw, 2.8rem) !important;
    margin: 0.2em 0 0.2em 0 !important;
  }
  .hero .hero-subtitle, .hero-full .hero-subtitle, .hero-content-box .hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem) !important;
    margin: 0 !important;
  }
}
@media (max-width: 600px) {
  .hero:not(.home-hero),
  .hero-full,
  .hero-ourwork,
  .hero-educational,
  .hero-employment,
  .hero-hivprevention,
  .hero-advocacy,
  .hero-legalaid,
  .hero-policybriefs,
  .hero-annualreports,
  .hero-sportswellness,
  .hero-contact,
  .hero-donation,
  .hero-full:not(.home-hero) {
    min-height: 38vh !important;
    max-height: 38vh !important;
    height: 38vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .hero .hero-content, .hero-full .hero-content, .hero-content-box {
    padding: 0 !important;
    margin: 0 auto !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
  .hero h1, .hero-full h1, .hero-content-box h1 {
    font-size: clamp(1.1rem, 5vw, 1.5rem) !important;
    margin: 0.2em 0 0.2em 0 !important;
  }
  .hero .hero-subtitle, .hero-full .hero-subtitle, .hero-content-box .hero-subtitle {
    font-size: clamp(0.85rem, 2vw, 1rem) !important;
    margin: 0 !important;
  }
} 

/* --- HOMEPAGE HERO SECTION REFINEMENTS --- */
.hero.hero-full.hero-flex-vh {
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.hero-content-box {
  padding: 1.7rem 1.2rem 1.5rem 1.2rem;
  border-radius: 1.5rem;
  max-width: 650px;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 12px 0 rgba(58,25,255,0.10);
}
.hero-content-box h1 {
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  line-height: 1.13;
  margin-bottom: 0.7rem;
  font-weight: 700;
}
.hero-content-box p {
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  line-height: 1.35;
  margin-bottom: 1.1rem;
  margin-top: 0.2rem;
}
.hero-content-box .cta-btn {
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
  padding: 0.7rem 1.5rem;
  margin-top: 0.2rem;
}
@media (max-width: 900px) {
  .hero-content-box {
    max-width: 98vw;
    padding: 1.1rem 0.4rem 1.1rem 0.4rem;
    border-radius: 1rem;
    margin-top: 0.3rem;
    margin-bottom: 1.2rem;
  }
  .hero-content-box h1 {
    font-size: clamp(1.1rem, 5vw, 1.5rem);
    line-height: 1.12;
    margin-bottom: 0.5rem;
  }
  .hero-content-box p {
    font-size: clamp(0.95rem, 3vw, 1.05rem);
    line-height: 1.25;
    margin-bottom: 0.7rem;
  }
  .hero-content-box .cta-btn {
    font-size: 0.98rem;
    padding: 0.6rem 1.1rem;
  }
}
@media (max-width: 600px) {
  .hero.hero-full.hero-flex-vh {
    margin-top: 0.5rem;
    margin-bottom: 0.7rem;
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
  }
  .hero-content-box {
    padding: 0.7rem 0.2rem 0.7rem 0.2rem;
    border-radius: 0.7rem;
    margin-top: 0.1rem;
    margin-bottom: 0.7rem;
  }
  .hero-content-box h1 {
    font-size: clamp(1rem, 6vw, 1.2rem);
    margin-bottom: 0.3rem;
  }
  .hero-content-box p {
    font-size: clamp(0.9rem, 3vw, 1rem);
    margin-bottom: 0.5rem;
  }
  .hero-content-box .cta-btn {
    font-size: 0.95rem;
    padding: 0.5rem 0.7rem;
  }
} 

/* --- HOMEPAGE HERO SECTION: FURTHER REFINEMENTS --- */
.hero.hero-full.hero-flex-vh {
  margin-top: 1.1rem;
  margin-bottom: 1.1rem;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  min-height: unset;
  height: auto;
  max-height: 100vh;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-content-box {
  padding: 1.1rem 0.7rem 1.1rem 0.7rem;
  border-radius: 1.1rem;
  max-width: 540px;
  margin-top: 0.2rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px 0 rgba(58,25,255,0.09);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-content-box h1 {
  font-size: clamp(1.1rem, 3vw, 1.45rem);
  line-height: 1.11;
  margin-bottom: 0.45rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.hero-content-box p {
  font-size: clamp(0.92rem, 2vw, 1.05rem);
  line-height: 1.28;
  margin-bottom: 0.7rem;
  margin-top: 0.1rem;
  max-width: 95vw;
}
.hero-content-box .cta-btn {
  font-size: clamp(0.85rem, 1.2vw, 0.98rem);
  padding: 0.5rem 1.1rem;
  margin-top: 0.1rem;
  margin-bottom: 0;
  min-width: 160px;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
}
@media (max-width: 900px) {
  .hero-content-box {
    max-width: 98vw;
    padding: 0.7rem 0.2rem 0.7rem 0.2rem;
    border-radius: 0.7rem;
    margin-top: 0.1rem;
    margin-bottom: 0.7rem;
  }
  .hero-content-box h1 {
    font-size: clamp(0.98rem, 4vw, 1.18rem);
    line-height: 1.09;
    margin-bottom: 0.3rem;
  }
  .hero-content-box p {
    font-size: clamp(0.85rem, 2.5vw, 0.98rem);
    line-height: 1.22;
    margin-bottom: 0.4rem;
  }
  .hero-content-box .cta-btn {
    font-size: 0.92rem;
    padding: 0.45rem 0.8rem;
    min-width: 120px;
  }
}
@media (max-width: 600px) {
  .hero.hero-full.hero-flex-vh {
    margin-top: 0.2rem;
    margin-bottom: 0.3rem;
    padding-top: 0.1rem;
    padding-bottom: 0.1rem;
  }
  .hero-content-box {
    padding: 0.4rem 0.1rem 0.4rem 0.1rem;
    border-radius: 0.5rem;
    margin-top: 0.05rem;
    margin-bottom: 0.3rem;
  }
  .hero-content-box h1 {
    font-size: clamp(0.85rem, 5vw, 1.05rem);
    margin-bottom: 0.18rem;
  }
  .hero-content-box p {
    font-size: clamp(0.8rem, 3vw, 0.92rem);
    margin-bottom: 0.2rem;
  }
  .hero-content-box .cta-btn {
    font-size: 0.89rem;
    padding: 0.38rem 0.6rem;
    min-width: 100px;
  }
} 

/* --- HOMEPAGE HERO SECTION: ULTRA COMPACT & CLEAR --- */
.hero-content-box {
  padding: 0.7rem 0.3rem 0.7rem 0.3rem;
  border-radius: 0.7rem;
  max-width: 440px;
  margin-top: 0.1rem;
  margin-bottom: 0.5rem;
  box-shadow: 0 1px 6px 0 rgba(58,25,255,0.08);
}
.hero-content-box h1 {
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  line-height: 1.08;
  margin-bottom: 0.22rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.hero-content-box p {
  font-size: clamp(0.78rem, 1.5vw, 0.92rem);
  line-height: 1.18;
  margin-bottom: 0.28rem;
  margin-top: 0.08rem;
  max-width: 98vw;
}
.hero-content-box .cta-btn {
  font-size: clamp(0.75rem, 1vw, 0.88rem);
  padding: 0.32rem 0.7rem;
  margin-top: 0.08rem;
  min-width: 90px;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
}
@media (max-width: 900px) {
  .hero-content-box {
    max-width: 98vw;
    padding: 0.4rem 0.1rem 0.4rem 0.1rem;
    border-radius: 0.5rem;
    margin-top: 0.05rem;
    margin-bottom: 0.3rem;
  }
  .hero-content-box h1 {
    font-size: clamp(0.82rem, 3vw, 1.01rem);
    line-height: 1.06;
    margin-bottom: 0.13rem;
  }
  .hero-content-box p {
    font-size: clamp(0.7rem, 2vw, 0.85rem);
    line-height: 1.13;
    margin-bottom: 0.13rem;
  }
  .hero-content-box .cta-btn {
    font-size: 0.8rem;
    padding: 0.28rem 0.5rem;
    min-width: 70px;
  }
}
@media (max-width: 600px) {
  .hero-content-box {
    padding: 0.2rem 0.05rem 0.2rem 0.05rem;
    border-radius: 0.3rem;
    margin-top: 0.01rem;
    margin-bottom: 0.1rem;
  }
  .hero-content-box h1 {
    font-size: clamp(0.7rem, 4vw, 0.85rem);
    margin-bottom: 0.08rem;
  }
  .hero-content-box p {
    font-size: clamp(0.62rem, 2vw, 0.75rem);
    margin-bottom: 0.08rem;
  }
  .hero-content-box .cta-btn {
    font-size: 0.7rem;
    padding: 0.18rem 0.3rem;
    min-width: 50px;
  }
}

/* --- HOMEPAGE HERO SECTION: MODERN, CLEAN, RESPONSIVE --- */
.hero.hero-full.hero-flex-vh {
  background: var(--primary-dark-blue);
  color: #fff;
  width: 100vw;
  min-height: 50vh;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 0 3.5rem 0;
  margin: 0;
  box-shadow: none;
  border-radius: 0;
}
.hero-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-content h1 {
  font-size: clamp(1.2rem, 4vw, 2.1rem);
  font-weight: 700;
  margin-bottom: 1.1rem;
  letter-spacing: -0.01em;
  text-align: center;
}
.hero-dynamic {
  min-height: 2.2rem;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: #FFD600 !important;
  font-weight: 500;
  margin-bottom: 0.7rem;
  text-align: center;
  width: 100%;
  max-width: 600px;
}
#heroMission {
  font-size: clamp(0.95rem, 2vw, 1.13rem);
  line-height: 1.35;
  margin-bottom: 1.2rem;
  margin-top: 0.1rem;
  text-align: center;
  max-width: 600px;
  color: #fff;
}
.cta-btn {
  display: inline-block;
  margin: 0 auto;
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
  padding: 0.7rem 1.5rem;
  border-radius: 0.5rem;
  background: var(--aqua-highlight);
  color: var(--primary-dark-blue);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(198,40,40,0.08);
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.cta-btn:hover {
  background: var(--medium-blue);
  color: #fff;
}
@media (max-width: 900px) {
  .hero.hero-full.hero-flex-vh {
    padding: 2.2rem 0 2.2rem 0;
    min-height: 38vh;
    max-height: unset;
  }
  .hero-content h1 {
    font-size: clamp(1rem, 5vw, 1.4rem);
    margin-bottom: 0.7rem;
  }
  #heroMission {
    font-size: clamp(0.85rem, 2.5vw, 1rem);
    margin-bottom: 0.7rem;
  }
  .hero-dynamic {
    font-size: clamp(0.85rem, 2vw, 1rem);
    margin-bottom: 0.5rem;
  }
  .cta-btn {
    font-size: 0.98rem;
    padding: 0.6rem 1.1rem;
  }
}
@media (max-width: 600px) {
  .hero.hero-full.hero-flex-vh {
    padding: 1.2rem 0 1.2rem 0;
    min-height: 28vh;
  }
  .hero-content h1 {
    font-size: clamp(0.9rem, 6vw, 1.1rem);
    margin-bottom: 0.4rem;
  }
  #heroMission {
    font-size: clamp(0.7rem, 3vw, 0.9rem);
    margin-bottom: 0.4rem;
  }
  .hero-dynamic {
    font-size: clamp(0.7rem, 2vw, 0.9rem);
    margin-bottom: 0.3rem;
  }
  .cta-btn {
    font-size: 0.92rem;
    padding: 0.45rem 0.8rem;
  }
}

/* --- HERO TITLE AND ANIMATED TEXT SIZE BALANCE (REVISED) --- */
#heroTitle {
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  font-weight: 700;
  margin-bottom: 0.7rem;
  letter-spacing: -0.01em;
  text-align: center;
}
.hero-dynamic {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  min-height: 1.2em;
  color: #FFD600 !important;
  font-weight: 500;
  margin-bottom: 0.7rem;
  text-align: center;
  width: 100%;
  max-width: 700px;
}
@media (max-width: 900px) {
  #heroTitle {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    margin-bottom: 0.5rem;
  }
  .hero-dynamic {
    font-size: clamp(0.8rem, 2.5vw, 1rem);
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 600px) {
  #heroTitle {
    font-size: clamp(0.8rem, 4vw, 1rem);
    margin-bottom: 0.3rem;
  }
  .hero-dynamic {
    font-size: clamp(0.7rem, 3vw, 0.95rem);
    margin-bottom: 0.3rem;
  }
}

/* --- HERO ANIMATED TEXT VISIBILITY FIX --- */
.hero-dynamic {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  min-height: 3.5em;
  color: #FFD600 !important;
  font-weight: 500;
  margin-bottom: 2.2rem;
  text-align: center;
  width: 100%;
  max-width: 700px;
  overflow-wrap: break-word;
  word-break: break-word;
}
.cta-btn {
  margin-top: 0.5rem;
}
@media (max-width: 900px) {
  .hero-dynamic {
    font-size: clamp(0.8rem, 2.5vw, 1rem);
    min-height: 4em;
    margin-bottom: 1.5rem;
  }
  .cta-btn {
    margin-top: 0.4rem;
  }
}
@media (max-width: 600px) {
  .hero-dynamic {
    font-size: clamp(0.7rem, 3vw, 0.95rem);
    min-height: 5em;
    margin-bottom: 1rem;
  }
  .cta-btn {
    margin-top: 0.3rem;
  }
}

/* --- HERO SECTION SPACING & SMALL BUTTON --- */
.hero.hero-full.hero-flex-vh {
  padding-bottom: 6rem;
}
.cta-btn {
  font-size: clamp(0.7rem, 1vw, 0.85rem);
  padding: 0.35rem 0.9rem;
  border-radius: 0.35rem;
  min-width: 90px;
  max-width: 220px;
  margin-top: 0.5rem;
  margin-bottom: 0.2rem;
  box-shadow: 0 1px 4px rgba(67,0,255,0.08);
}
@media (max-width: 900px) {
  .hero.hero-full.hero-flex-vh {
    padding-bottom: 4rem;
  }
  .cta-btn {
    font-size: 0.75rem;
    padding: 0.28rem 0.7rem;
    min-width: 70px;
    max-width: 180px;
  }
}
@media (max-width: 600px) {
  .hero.hero-full.hero-flex-vh {
    padding-bottom: 2.5rem;
  }
  .cta-btn {
    font-size: 0.7rem;
    padding: 0.18rem 0.5rem;
    min-width: 50px;
    max-width: 120px;
  }
}

/* --- HERO BUTTON: SMALL, SINGLE LINE, SPACED --- */
.cta-btn {
  font-size: clamp(0.7rem, 1vw, 0.85rem);
  padding: 0.32rem 1.1rem;
  border-radius: 0.35rem;
  min-width: 170px;
  max-width: 220px;
  margin-top: 2.2rem;
  margin-bottom: 0.2rem;
  box-shadow: 0 1px 4px rgba(67,0,255,0.08);
  white-space: nowrap;
  text-align: center;
  overflow: hidden;
}
@media (max-width: 900px) {
  .cta-btn {
    font-size: 0.75rem;
    padding: 0.28rem 0.9rem;
    min-width: 130px;
    max-width: 180px;
    margin-top: 1.5rem;
  }
}
@media (max-width: 600px) {
  .cta-btn {
    font-size: 0.7rem;
    padding: 0.18rem 0.7rem;
    min-width: 100px;
    max-width: 120px;
    margin-top: 1rem;
  }
}

/* --- HERO BUTTON: SINGLE LINE, RESPONSIVE, NO WRAP --- */
.cta-btn {
  font-size: clamp(0.85rem, 1vw, 1rem);
  padding: 0.38rem 1.5rem;
  border-radius: 0.35rem;
  min-width: 260px;
  max-width: 100vw;
  margin-top: 2.2rem;
  margin-bottom: 0.2rem;
  box-shadow: 0 1px 4px rgba(67,0,255,0.08);
  white-space: nowrap;
  text-align: center;
  overflow: hidden;
  display: inline-block;
}
@media (max-width: 900px) {
  .cta-btn {
    font-size: 0.82rem;
    padding: 0.32rem 1.1rem;
    min-width: 210px;
    margin-top: 1.5rem;
  }
}
@media (max-width: 600px) {
  .cta-btn {
    font-size: 0.75rem;
    padding: 0.22rem 0.7rem;
    min-width: 150px;
    margin-top: 1rem;
  }
}

/* --- OUR WORK PAGE: MODERN CARDS & COLORS --- */
.programs-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.program-card-v2 {
  border-radius: 1.2rem;
  box-shadow: 0 4px 24px rgba(67,0,255,0.08);
  padding: 2.2rem 1.2rem 1.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.18s, box-shadow 0.18s;
  background: var(--white);
  color: var(--dark-text);
  position: relative;
}
.program-card-v2:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(67,0,255,0.13);
}
.program-icon-v2 {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
  box-shadow: 0 2px 8px rgba(67,0,255,0.08);
}
.program-card-v2 h3 {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: center;
}
.program-card-v2 p {
  font-size: 1rem;
  text-align: center;
  color: var(--dark-text);
}
.bg-blue { background: var(--primary-dark-blue) !important; }
.bg-green { background: var(--green) !important; }
.bg-yellow { background: var(--yellow) !important; }
.bg-cyan { background: var(--cyan-accent) !important; }
.bg-purple { background: var(--purple) !important; }
.bg-pink { background: var(--pink) !important; }
.bg-white { background: var(--white) !important; }
.text-blue { color: var(--primary-dark-blue) !important; }
.text-green { color: var(--green) !important; }
.text-yellow { color: #B88600 !important; }
.text-cyan { color: var(--cyan-accent) !important; }
.text-purple { color: var(--purple) !important; }
.text-pink { color: var(--pink) !important; }
.text-white { color: var(--white) !important; }
.text-dark { color: var(--dark-text) !important; }

/* Milestone Cards (Impact & Advocacy) */
.milestone-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.milestone-card {
  border-radius: 1.1rem;
  box-shadow: 0 2px 16px rgba(67,0,255,0.07);
  padding: 2rem 1.1rem 1.2rem 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--white);
  color: var(--dark-text);
  transition: transform 0.18s, box-shadow 0.18s;
}
.milestone-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 6px 24px rgba(67,0,255,0.13);
}
.milestone-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
  box-shadow: 0 2px 8px rgba(67,0,255,0.08);
}
.milestone-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  text-align: center;
}
.milestone-card p {
  font-size: 0.98rem;
  text-align: center;
  color: var(--dark-text);
}

/* Impact Stat Cards */
.impact-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.impact-stat-card {
  border-radius: 1.2rem;
  box-shadow: 0 4px 24px rgba(67,0,255,0.10);
  padding: 2.2rem 1.2rem 1.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--white);
  color: var(--dark-text);
  transition: transform 0.18s, box-shadow 0.18s;
  position: relative;
}
.impact-stat-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(67,0,255,0.13);
}
.impact-stat-icon {
  font-size: 2.5rem;
  margin-bottom: 0.7rem;
}
.impact-stat-value {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.impact-stat-label {
  font-size: 1rem;
  text-align: center;
  color: var(--dark-text);
}
@media (max-width: 700px) {
  .programs-grid-v2, .milestone-grid, .impact-stats-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .program-card-v2, .milestone-card, .impact-stat-card {
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
}

/* --- OUR IMPACT: FOUR CARDS IN ONE ROW ON DESKTOP --- */
@media (min-width: 900px) {
  .impact-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
  }
}

/* --- PARTNERS PAGE: GRID & CARD STYLES --- */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 2rem;
  margin: 2.5rem 0 2.5rem 0;
}
.partner-card {
  background: var(--white);
  border-radius: 1.1rem;
  box-shadow: 0 2px 16px rgba(67,0,255,0.07);
  padding: 1.5rem 1rem 1.2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.18s, box-shadow 0.18s;
  text-align: center;
}
.partner-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 6px 24px rgba(67,0,255,0.13);
}
.partner-card img {
  max-width: 90px;
  max-height: 60px;
  margin-bottom: 1rem;
  object-fit: contain;
  border-radius: 0.5rem;
  background: #f7fafd;
  box-shadow: 0 1px 4px rgba(67,0,255,0.04);
}
.partner-card span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-dark-blue);
  margin-top: 0.2rem;
  word-break: break-word;
}
@media (max-width: 700px) {
  .partners-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }
  .partner-card {
    padding: 1rem 0.5rem 0.8rem 0.5rem;
  }
  .partner-card img {
    max-width: 70px;
    max-height: 40px;
  }
}

/* Remove the animation from .partners-track for JS-based scroll */
.partners-track {
  animation: none !important;
}

.scroll-to-top-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1200;
  width: 38px;
  height: 38px;
  border-radius: 8px !important;
  background: rgba(0,0,0,0.7) !important;
  color: inherit;
  border: none !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, background 0.2s, color 0.2s;
  cursor: pointer;
  padding: 0;
}
.scroll-to-top-btn:focus, .scroll-to-top-btn:hover {
  background: rgba(0,0,0,0.85) !important;
  color: inherit;
  outline: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
.scroll-to-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
}
