/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #fdf2f8 0%, #faf5ff 100%);
  display: flex;
  flex-direction: column;
}

main {
  flex-grow: 1;
}

html {
  scroll-behavior: smooth;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Color Variables ===== */
:root {
  --pink-50: #fdf2f8;
  --pink-100: #fce7f3;
  --pink-200: #fbcfe8;
  --pink-300: #f9a8d4;
  --pink-400: #f472b6;
  --pink-500: #ec4899;
  --pink-600: #db2777;
  --pink-700: #be185d;
  --purple-50: #faf5ff;
  --purple-100: #f3e8ff;
  --purple-200: #e9d5ff;
  --purple-300: #d8b4fe;
  --purple-400: #c084fc;
  --purple-500: #a855f7;
  --purple-600: #9333ea;
  --purple-700: #7c3aed;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --health-green: #2a7f62;
}

/* ===== Compact Header Styles ===== */
.header {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 8px 0;
  /* Reduced padding */
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  /* Removed vertical padding */
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

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

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--pink-400), var(--purple-500));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}



.logo-text h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-800);
  margin: 0;
}

.logo-text p {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin: 0;
}
/* Navigation Dropdown Styles */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.nav-dropdown .nav-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 320px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
    border: 1px solid #F3F4F6;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: #1F2937;
    transition: all 0.3s ease;
    border-bottom: 1px solid #F9FAFB;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, #FFF0F5, #F8FAFC);
    color: #EC4899;
}

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

.dropdown-item-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dropdown-item-content i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #EC4899;
    font-size: 1rem;
}

.dropdown-item-content div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.dropdown-item-content strong {
    font-weight: 600;
    font-size: 0.95rem;
    color: #1F2937;
}

.dropdown-item-content span {
    font-size: 0.8rem;
    color: #6B7280;
}

.dropdown-item:hover .dropdown-item-content strong {
    color: #EC4899;
}

.dropdown-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #E5E7EB, transparent);
    margin: 0.5rem 0;
}

.dropdown-item.view-all {
    background: linear-gradient(135deg, #FFF0F5, #F3E8FF);
    border-top: 2px solid #F472B6;
}

.dropdown-item.view-all:hover {
    background: linear-gradient(135deg, #FCE7F3, #EDE9FE);
}

.dropdown-item.view-all .dropdown-item-content strong {
    color: #9333EA;
}

.dropdown-item.view-all:hover .dropdown-item-content strong {
    color: #7C3AED;
}

/* Mobile Submenu Styles */
.mobile-submenu {
    display: flex;
    flex-direction: column;
}

.mobile-submenu-items {
    display: none;
    flex-direction: column;
    padding-left: 1rem;
    background: rgba(244, 114, 182, 0.05);
    border-left: 3px solid #F472B6;
    margin-left: 1rem;
}

.mobile-submenu:hover .mobile-submenu-items,
.mobile-submenu:focus-within .mobile-submenu-items {
    display: flex;
}

.mobile-submenu-items a {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: #6B7280;
    border-bottom: 1px solid rgba(244, 114, 182, 0.1);
}

.mobile-submenu-items a:hover {
    color: #EC4899;
    background: rgba(244, 114, 182, 0.1);
}

.mobile-submenu-items a:last-child {
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-dropdown .dropdown-content {
        display: none;
    }
}

/* Smooth scroll for anchor links */
html {
    scroll-behavior: smooth;
}

/* Highlight target sections */
.section:target {
    scroll-margin-top: 100px;
}
.nav {
  display: flex;
  gap: 2rem;
}

.nav a {
  text-decoration: none;
  color: var(--gray-700);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: var(--pink-600);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--gray-700);
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 999;
  flex-direction: column;
  padding: 1rem;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  padding: 0.75rem 0;
  text-decoration: none;
  color: var(--gray-700);
  border-bottom: 1px solid #f3f4f6;
}

/* Button Styles */
.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink-500), var(--purple-600));
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--pink-600), var(--purple-700));
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--pink-300);
  color: var(--pink-700);
}

.btn-outline:hover {
  background: var(--pink-50);
}

.btn-outline-purple {
  background: transparent;
  border: 2px solid var(--purple-300);
  color: var(--purple-700);
}

.btn-outline-purple:hover {
  background: var(--purple-50);
}

.btn-outline-pink {
  background: transparent;
  border: 2px solid var(--pink-300);
  color: var(--pink-700);
}

.btn-outline-pink:hover {
  background: var(--pink-50);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* Badge Styles */
.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.badge.pink {
  background: var(--pink-100);
  color: var(--pink-700);
}

.badge.purple {
  background: var(--purple-100);
  color: var(--purple-700);
}

/* Hero Section */
.hero {
  padding: 8rem 0 5rem;
  /* Removed margin-top: 80px; */
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--gray-800);
}

.gradient-text {
  background: linear-gradient(135deg, var(--pink-500), var(--purple-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.stat-number.pink {
  color: var(--pink-600);
}

.stat-number.purple {
  color: var(--purple-600);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.image-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--pink-400), var(--purple-500));
  border-radius: 1.5rem;
  transform: rotate(6deg);
}

.hero-image img {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

/* Section Styles */
section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 1.5rem;
}

.section-description {
  font-size: 1.25rem;
  color: var(--gray-600);
  max-width: 48rem;
  margin: 0 auto;
}

/* About Section */
.about {
  background: white;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-text h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 1.5rem;
}

.about-text > p {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.feature-icon.pink {
  background: var(--pink-500);
}

.feature-icon.purple {
  background: var(--purple-500);
}

.feature-content h4 {
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}

.feature-content p {
  color: var(--gray-600);
}

/* Work Section */
.work {
  background: linear-gradient(135deg, var(--pink-50), var(--purple-50));
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: slideInLeft 0.6s ease-out;
}

.service-card:nth-child(even) {
  animation: slideInRight 0.6s ease-out;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.service-icon.pink {
  background: linear-gradient(135deg, var(--pink-400), var(--pink-500));
}

.service-icon.purple {
  background: linear-gradient(135deg, var(--purple-400), var(--purple-500));
}

.service-icon.gradient {
  background: linear-gradient(135deg, var(--pink-400), var(--purple-500));
}

.service-icon.purple-pink {
  background: linear-gradient(135deg, var(--purple-400), var(--pink-500));
}

.service-icon.pink-purple {
  background: linear-gradient(135deg, var(--pink-500), var(--purple-400));
}

.service-icon.purple-pink-alt {
  background: linear-gradient(135deg, var(--purple-500), var(--pink-400));
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--gray-600);
  line-height: 1.6;
}

/* Get Involved Section */
.involved {
  background: white;
}

.involvement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.involvement-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid;
  position: relative;
  overflow: hidden;
}

.involvement-card.pink-border {
  border-color: var(--pink-200);
}

.involvement-card.purple-border {
  border-color: var(--purple-200);
}

.involvement-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.involvement-card.pink-border:hover {
  border-color: var(--pink-300);
}

.involvement-card.purple-border:hover {
  border-color: var(--purple-300);
}

.involvement-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

.involvement-icon.pink {
  background: linear-gradient(135deg, var(--pink-400), var(--pink-500));
}

.involvement-icon.purple {
  background: linear-gradient(135deg, var(--purple-400), var(--purple-500));
}

.involvement-icon.gradient {
  background: linear-gradient(135deg, var(--pink-400), var(--purple-500));
}

.involvement-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 1rem;
}

.involvement-card p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Success Stories Section */
.stories {
  background: linear-gradient(135deg, var(--purple-50), var(--pink-50));
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.story-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.story-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.story-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.story-info h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 0.25rem;
}

.story-info p {
  color: var(--gray-600);
  font-size: 0.875rem;
}

.story-text {
  color: var(--gray-600);
  font-style: italic;
  line-height: 1.6;
}

/* Contact Section */
.contact {
  /* Match site-wide pink gradient theme */
  background: linear-gradient(135deg, var(--pink-50), var(--purple-50));
  padding: 3rem 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 1.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
}

.contact-icon.pink {
  background: var(--pink-100);
  color: var(--pink-600);
}

.contact-icon.purple {
  background: var(--purple-100);
  color: var(--purple-600);
}

.contact-text h4 {
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 0.25rem;
}

.contact-text p {
  color: var(--gray-600);
}

/* Social Media Links */
.social-media h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

/* Enhanced Social Media Links */
.social-link {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.25rem;
}

.social-link.facebook {
  background: linear-gradient(135deg, #1877f2, #42a5f5);
  color: white;
}

.social-link.instagram {
  background: linear-gradient(135deg, #e4405f, #f77737, #fccc63);
  color: white;
}

.social-link.youtube {
  background: linear-gradient(135deg, #ff0000, #ff4444);
  color: white;
}

.social-link.twitter {
  background: linear-gradient(135deg, #1da1f2, #42a5f5);
  color: white;
}

.social-link:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Contact Form */
.contact-form-container {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-form-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}

.contact-form-header p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--pink-500);
  box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Footer */
.footer {
  background: var(--gray-800);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--pink-400), var(--purple-500));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
}

.footer-logo-text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.footer-logo-text p {
  font-size: 0.875rem;
  color: #9ca3af;
}

.footer-description {
  color: #9ca3af;
  line-height: 1.6;
}

.footer-section h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--pink-400);
}

.footer-contact p {
  color: #9ca3af;
  margin-bottom: 0.25rem;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  text-align: center;
  color: #9ca3af;
}

/* Newsletter Signup */
.newsletter-signup {
  background: linear-gradient(135deg, var(--pink-500), var(--purple-600));
  border-radius: 1rem;
  padding: 2rem;
  margin-top: 2rem;
  text-align: center;
  color: white;
}

.newsletter-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.newsletter-content p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
}

.newsletter-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

/* Projects Section */
.projects {
  background: white;
}

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

.project-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #f3f4f6;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.project-card.featured {
  border: 2px solid var(--pink-300);
  transform: scale(1.02);
}

.project-image {
  position: relative;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.1);
}

.project-status {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.project-content {
  padding: 1.5rem;
}

.project-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.75rem;
}

.project-content p {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.project-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.stat-item {
  text-align: center;
  padding: 0.75rem;
  background: var(--pink-50);
  border-radius: 0.5rem;
}

.stat-item .stat-number {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--pink-600);
  margin-bottom: 0.25rem;
}

.stat-item .stat-label {
  font-size: 0.75rem;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-progress {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.progress-bar {
  flex: 1;
  height: 8px;
  background: #f3f4f6;
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(135deg, var(--pink-500), var(--purple-600));
  border-radius: 4px;
  transition: width 0.3s ease;
}

.progress-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
}

/* Volunteer Spotlight Section */
.volunteers {
  background: linear-gradient(135deg, var(--purple-50), var(--pink-50));
}

.volunteers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.volunteer-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.volunteer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.volunteer-image {
  position: relative;
  text-align: center;
  padding: 2rem 2rem 1rem;
  background: linear-gradient(135deg, var(--pink-100), var(--purple-100));
}

.volunteer-image img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.volunteer-badge {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--pink-500), var(--purple-600));
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.volunteer-info {
  padding: 1.5rem;
  text-align: center;
}

.volunteer-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.25rem;
}

.volunteer-role {
  color: var(--pink-600);
  font-weight: 600;
  margin-bottom: 1rem;
}

.volunteer-description {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.volunteer-stats {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.volunteer-stats span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.volunteer-stats i {
  color: var(--purple-500);
}

/* Enhanced Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Enhanced Card Hover Effects */
.service-card::before,
.story-card::before,
.involvement-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--pink-500), var(--purple-600));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.service-card:hover::before,
.story-card:hover::before,
.involvement-card:hover::before {
  opacity: 0.05;
}

/* Responsive Updates */
@media (max-width: 768px) {
  .newsletter-form {
    flex-direction: column;
  }
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .project-card.featured {
    transform: none;
  }
  .volunteer-stats {
    flex-direction: column;
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  .hero {
    padding: 6rem 0 3rem;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-description {
    font-size: 1.125rem;
  }
  section {
    padding: 3rem 0;
  }
  .services-grid,
  .involvement-grid,
  .stories-grid {
    grid-template-columns: 1fr;
  }
  .service-card,
  .involvement-card,
  .story-card {
    padding: 1.5rem;
  }
}

/* Animation Classes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-5 {
  margin-top: 1.25rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

/* Social Icons Styling */
.social-icons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f0f0f0;
  color: #333;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: #4267b2;
  /* Facebook blue */
  color: white;
}

.social-icon:hover:nth-child(2) {
  background: #e1306c;
  /* Instagram pink */
}

.social-icon:hover:nth-child(3) {
  background: #ff0000;
  /* YouTube red */
}

.social-icon i {
  font-size: 16px;
}

/* Header layout adjustments */
.header {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

/* Professional Navigation Styling */
.nav {
  display: flex;
  gap: 2px;
  /* Very subtle gap */
}

.nav a {
  position: relative;
  padding: 12px 20px;
  text-decoration: none;
  color: #555;
  /* Professional dark gray */
  font-weight: 500;
  font-size:17px;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
}

/* Subtle Underline Animation */
.nav a::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 20px;
  right: 20px;
  height: 1.5px;
  background: #2a7f62;
  /* Health-oriented green */
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Color Change on Hover */
.nav a:hover {
  color: #333;
  /* Darker text on hover */
}

/* Active Link Styling */
.nav a.active {
  color: #2a7f62;
  /* Brand color */
  font-weight: 600;
}

.nav a.active::after {
  transform: scaleX(1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    gap: 0;
  }
  .nav a {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
  }
  .nav a::after {
    display: none;
    /* Hide underline on mobile */
  }
}

/* Make sure the header has proper spacing */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}