@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@400;500;600;700;800&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary-color: #2563eb;
  --secondary-color: #f59e0b;
  --accent-color: #10b981;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f8fafc;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --gradient-error: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: var(--text-dark);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Header & Navigation */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  z-index: -1;
}

nav {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px) saturate(160%);
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 8px 32px rgba(60, 60, 120, 0.10), 0 1.5px 8px rgba(60, 60, 120, 0.08);
  border-bottom: 1.5px solid rgba(102, 126, 234, 0.08);
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

nav ul {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px) saturate(140%);
  border-radius: 50px;
  padding: 0.5rem;
  border: 1px solid rgba(102, 126, 234, 0.10);
  box-shadow: 0 2px 12px rgba(60, 60, 120, 0.06);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}

.donate-nav-btn {
  background: var(--gradient-secondary);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.donate-nav-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 ease;
}

.donate-nav-btn:hover::before {
  left: 100%;
}

.donate-nav-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: var(--shadow-lg);
}



nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-lg);
}

.nav-logo-link {
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 50%;
  padding: 8px;
}



.nav-logo {
  height: 45px;
  width: auto;
  border-radius: 50%;
  background: var(--white);
  padding: 6px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: block;
}

.nav-logo-link:hover .nav-logo {
  transform: scale(1.1);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
}



nav ul {
  list-style: none;
  display: flex;
  gap: 0;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

nav ul li {
  position: relative;
}

nav ul li a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.75rem 1.25rem;
  border-radius: 25px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Poppins', sans-serif;
}

nav ul li a:hover {
  color: var(--white);
  background: var(--gradient-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

nav ul li a.active {
  color: var(--white);
  background: var(--gradient-primary);
  box-shadow: var(--shadow-md);
}



/* Hero Section */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  /* Add a gentle gradient background and abstract SVG shape */
  background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle at 60% 40%, #c7d2fe 0%, #f8fafc 80%);
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
}

.hero-logo {
  max-width: 350px;
  width: 100%;
  border-radius: 50%;
  box-shadow: 0 8px 32px rgba(60, 60, 120, 0.18), 0 1.5px 8px rgba(60, 60, 120, 0.10);
  margin-bottom: 2rem;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  background: var(--white);
  padding: 2rem;
  border: 5px solid #e0e7ff;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}

.hero-logo:hover {
  transform: scale(1.04) rotate(2deg);
  box-shadow: 0 16px 48px rgba(60, 60, 120, 0.22);
  border-color: #a5b4fc;
}

.hero .cta-btn {
  margin-top: 2.2rem;
  padding: 1.1rem 2.8rem;
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: 32px;
  background: linear-gradient(90deg, #667eea 0%, #2563eb 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(60, 60, 120, 0.10);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.5px;
  z-index: 1;
  position: relative;
}
.hero .cta-btn:hover, .hero .cta-btn:focus {
  background: linear-gradient(90deg, #2563eb 0%, #667eea 100%);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 32px rgba(60, 60, 120, 0.18);
  outline: none;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Hero Section Heading and Tagline (original) */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', 'Poppins', serif;
  color: #22223b;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1.15;
  margin-bottom: 0.7em;
}

h1 {
  font-size: 3.2rem;
  color: #3b2f7f;
  font-weight: 900;
  letter-spacing: 1.2px;
  margin-bottom: 0.5em;
}

h2 {
  font-size: 2.2rem;
  color: #2563eb;
  font-weight: 800;
  margin-bottom: 0.4em;
}

h3 {
  font-size: 1.4rem;
  color: #4b5563;
  font-weight: 700;
}

body, p, li, label, input, select, textarea, button {
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
  font-size: 1.08rem;
  color: #23272f;
  line-height: 1.8;
  letter-spacing: 0.01em;
}

.hero h1 {
  font-size: 3.2rem;
  font-family: 'Merriweather', 'Poppins', serif;
  font-weight: 900;
  color: #3b2f7f;
  letter-spacing: 1.2px;
  margin-bottom: 1.2rem;
  text-align: center;
}

.hero-tagline {
  font-size: 1.3rem;
  color: #4b5563;
  font-weight: 600;
  background: #fff;
  border-radius: 30px;
  display: inline-block;
  padding: 0.7rem 2.2rem;
  box-shadow: var(--shadow-md);
  margin: 0 auto;
  text-align: center;
  letter-spacing: 0.2px;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-light);
  background: var(--white);
  padding: 1rem 2rem;
  border-radius: 50px;
  box-shadow: var(--shadow-md);
  display: inline-block;
  margin: 0 auto;
  font-weight: 500;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.hero p:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}



/* Sections */
section {
  background: linear-gradient(120deg, #f8fafc 60%, #e0e7ff 100%);
  margin: 2rem auto;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(60, 60, 120, 0.10), 0 1.5px 8px rgba(60, 60, 120, 0.06);
  overflow: hidden;
  max-width: 1200px;
  position: relative;
  border: 1.5px solid #e0e7ff;
  padding: 2.5rem 2.5rem 2.5rem 2.5rem;
  position: relative;
  margin-bottom: 2.5rem;
}

section + section {
  margin-top: 3.5rem;
  border-top: 2.5px solid #c7d2fe;
  box-shadow: 0 12px 36px rgba(60, 60, 120, 0.08);
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 2.7rem);
  font-family: 'Merriweather', 'Poppins', serif;
  font-weight: 900;
  color: #2563eb;
  letter-spacing: 1.2px;
  margin: 3rem 0 2rem;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  margin-top: 0;
  margin-bottom: 1.5rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}
.section-title::before {
  content: '';
  display: block;
  position: absolute;
  top: -1.2rem;
  left: 0;
  width: 48px;
  height: 3px;
  background: #2563eb;
  border-radius: 2px;
}
section > *:first-child {
  margin-top: 0 !important;
}

/* About Section */
#about {
  padding: 4rem 2rem;
}

#about p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Programs Grid */
#programs {
  padding: 4rem 2rem;
}

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

.card {
  background: linear-gradient(120deg, #fff 80%, #f1f5fd 100%);
  border-radius: 18px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(60, 60, 120, 0.08);
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  border: 1.5px solid #e0e7ff;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-secondary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.card:hover {
  transform: translateY(-16px) scale(1.045);
  box-shadow: 0 16px 48px rgba(60, 60, 120, 0.16);
  border-color: #a5b4fc;
}

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

.card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Impact Section */
#impact {
  padding: 4rem 2rem;
}

#impact p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: var(--text-light);
}

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

.impact div {
  text-align: center;
  background: var(--bg-light);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.impact div:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-color);
}

.impact h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.impact p {
  color: var(--text-light);
  font-weight: 500;
}

/* Contact Form */
#contact {
  padding: 4rem 2rem;
}

/* Contact Info */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.contact-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.contact-icon {
  font-size: 2rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.contact-item p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin: 0;
}



/* Contact Form */
.contact-form, form[action*="formcarry"] {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-items: flex-end;
  justify-content: flex-start;
  margin: 2.2rem 0 0 0;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(60,60,120,0.07);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  max-width: 700px;
  width: 100%;
}
.contact-form input,
.contact-form textarea,
form[action*="formcarry"] input,
form[action*="formcarry"] textarea {
  flex: 1 1 180px;
  min-width: 0;
  border: 1.5px solid #e0e7ef;
  border-radius: 14px;
  padding: 1rem 1.2rem;
  font-size: 1.08rem;
  font-family: 'Poppins', sans-serif;
  color: #23272f;
  background: #f8fafc;
  box-shadow: 0 1px 4px rgba(60,60,120,0.04);
  transition: border 0.2s, box-shadow 0.2s;
  margin-bottom: 0;
}
.contact-form input:focus,
.contact-form textarea:focus,
form[action*="formcarry"] input:focus,
form[action*="formcarry"] textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 2px #a5b4fc44;
  outline: none;
}
.contact-form textarea,
form[action*="formcarry"] textarea {
  min-height: 48px;
  max-height: 180px;
  resize: vertical;
}
.contact-form button,
form[action*="formcarry"] button {
  flex: 0 0 auto;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 18px;
  background: linear-gradient(90deg, #667eea 0%, #2563eb 100%);
  color: #fff;
  border: none;
  box-shadow: 0 2px 8px rgba(60,60,120,0.10);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  margin-left: 0.5rem;
}
.contact-form button:hover,
form[action*="formcarry"] button:hover,
.contact-form button:focus,
form[action*="formcarry"] button:focus {
  background: linear-gradient(90deg, #2563eb 0%, #667eea 100%);
  transform: translateY(-2px) scale(1.04);
  outline: none;
}
@media (max-width: 700px) {
  .contact-form, form[action*="formcarry"] {
    flex-direction: column;
    gap: 1rem;
    padding: 1.2rem 0.5rem;
    max-width: 100%;
  }
  .contact-form button,
  form[action*="formcarry"] button {
    width: 100%;
    margin-left: 0;
  }
}

/* Checkbox Styling */
.checkbox-group {
  margin-bottom: 2rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--text-light);
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
  accent-color: var(--primary-color);
}

/* Submit Button */
.submit-btn {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: var(--gradient-secondary);
}

.btn-icon {
  font-size: 1.2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .contact-info {
    grid-template-columns: 1fr;
    gap: 1rem;
}

  .contact-form {
    padding: 2rem 1.5rem;
  }
}

/* Donate Section */
#donate {
  padding: 4rem 2rem;
}

.donate-content {
  max-width: 1000px;
  margin: 0 auto;
}

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

.donate-text h3 {
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 700;
}

.donate-text p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.donate-text ul {
  list-style: none;
  padding: 0;
  display: inline-block;
  text-align: left;
}

.donate-text li {
  font-size: 1rem;
  color: var(--text-light);
  margin: 0.5rem 0;
  padding: 0.5rem 0;
}

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

.donate-card {
  background: var(--bg-light);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.donate-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.donate-card h4 {
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 700;
}

.donate-card p {
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.donate-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  width: 100%;
  justify-content: center;
}

.donate-btn.primary {
  background: var(--gradient-secondary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.donate-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.donate-btn.secondary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.donate-btn.secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.donation-note {
  text-align: center;
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  border-left: 4px solid var(--accent-color);
}

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

/* Footer */
footer {
  background: linear-gradient(120deg, #232946 60%, #3b2f7f 100%);
  color: #f3f4f6;
  padding: 4rem 2rem 2rem 2rem;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -8px 32px rgba(60, 60, 120, 0.10);
  margin-top: 4rem;
  position: relative;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-section h4 {
  color: #a5b4fc;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 1.1rem;
  letter-spacing: 0.5px;
}
.footer-section p, .footer-section ul, .footer-section li, .footer-section a {
  color: #e0e7ff;
  font-size: 1.05rem;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 0.5rem;
}
.footer-section ul {
  list-style: none;
  padding: 0;
}
.footer-section ul li {
  margin-bottom: 0.4rem;
}
.footer-section ul li a:hover {
  color: #f59e0b;
  text-decoration: underline;
}
.social-links {
  display: flex;
  gap: 1.2rem;
  margin-top: 0.7rem;
}
.social-icon {
  width: 32px;
  height: 32px;
  filter: invert(0.95);
  transition: filter 0.3s, transform 0.2s;
}
.social-links a:hover .social-icon {
  filter: invert(0.6) sepia(1) saturate(5) hue-rotate(270deg);
  transform: scale(1.18) rotate(-8deg);
}
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom p {
  color: #b6b8d6;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.footer-backtotop {
  display: inline-block;
  margin-top: 1.2rem;
  color: #a5b4fc;
  font-weight: 700;
  font-size: 1.05rem;
  background: rgba(102, 126, 234, 0.12);
  padding: 0.6rem 1.5rem;
  border-radius: 24px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.footer-backtotop:hover, .footer-backtotop:focus {
  background: #a5b4fc;
  color: #232946;
  transform: translateY(-2px) scale(1.07);
  outline: none;
}
@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 0.5rem;
  }
  footer {
    padding: 2.5rem 1rem 1.5rem 1rem;
    border-radius: 24px 24px 0 0;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  nav {
    padding: 1rem;
  }
  
  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(24px) saturate(160%);
    border-radius: 0 0 20px 20px;
    padding: 1.5rem 1rem 2rem 1rem;
    box-shadow: 0 8px 32px rgba(60, 60, 120, 0.10);
    flex-direction: column;
    gap: 0.5rem;
    animation: navSlideDown 0.45s cubic-bezier(0.4,0,0.2,1);
  }
  nav ul.show {
    display: flex;
  }
  @keyframes navSlideDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 2.1rem;
    cursor: pointer;
    color: var(--primary-color);
    padding: 0.5rem 0.8rem;
    border-radius: 50%;
    transition: background 0.2s, color 0.2s;
    z-index: 1100;
    position: relative;
  }
  .mobile-menu-btn:hover, .mobile-menu-btn:focus {
    background: rgba(102, 126, 234, 0.08);
    color: #764ba2;
    outline: none;
  }
}

.mobile-menu-btn {
  display: none;
}

.mobile-menu-close {
  display: none;
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #667eea;
  cursor: pointer;
  z-index: 1200;
  border-radius: 50%;
  padding: 0.2rem 0.7rem 0.2rem 0.7rem;
  transition: background 0.2s, color 0.2s;
  box-shadow: none;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: rgba(102, 126, 234, 0.08);
  color: #2563eb;
  outline: none;
}
@media (max-width: 768px) {
  .mobile-menu-close {
    display: block;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 6rem 1rem 3rem;
  }
  
  .hero-logo {
    max-width: 250px;
  }
  

  
  section {
    margin: 1rem;
    border-radius: 16px;
  }
  
  .grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .impact {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .card {
    padding: 2rem 1.5rem;
  }
  
  #about,
  #programs,
  #impact,
  #contact,
  #donate {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
}

  .section-title {
    font-size: 1.8rem;
  }
  
  .card h3 {
    font-size: 1.3rem;
  }
  
  .impact h3 {
    font-size: 2rem;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

body {
  opacity: 0;
  transition: opacity 0.5s ease;
}

body.loaded {
  opacity: 1;
}

section {
  animation: fadeInUp 0.6s ease-out;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gradient-secondary);
}

/* Notification Styles */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  padding: 1rem 1.5rem;
  z-index: 10000;
  transform: translateX(400px);
  transition: transform 0.3s ease;
  border-left: 4px solid var(--accent-color);
  max-width: 350px;
}

.notification.show {
  transform: translateX(0);
}

.notification.error {
  border-left-color: var(--accent-color);
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.notification-icon {
  font-size: 1.2rem;
}

.notification-text {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
}

@media (max-width: 768px) {
  .notification {
    right: 10px;
    left: 10px;
    max-width: none;
    transform: translateY(-100px);
  }
  
  .notification.show {
    transform: translateY(0);
  }
}

/* Mobile Floating Action Button */
.mobile-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  display: none;
}

.fab-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1001;
}

.fab-icon:hover {
  transform: scale(1.1);
  background: var(--gradient-accent);
}

.fab-menu {
  position: absolute;
  bottom: 70px;
  right: 0;
  background: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow-xl);
  padding: 1rem;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.fab-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fab-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: var(--text-dark);
  border-radius: 10px;
  transition: all 0.3s ease;
  margin-bottom: 0.5rem;
}

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

.fab-item:hover {
  background: var(--gradient-primary);
  color: var(--white);
  transform: translateX(5px);
}

.fab-item-icon {
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

.fab-item-text {
  font-weight: 600;
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
}

/* Mobile-specific enhancements */
@media (max-width: 768px) {
  .mobile-fab {
    display: block;
  }
  
  /* Enhanced touch targets */
  nav ul li a {
    padding: 1rem 1.5rem;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  
  .donate-nav-btn {
    padding: 1rem 2rem;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  
  /* Better form inputs for mobile */
  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 16px; /* Prevents zoom on iOS */
    padding: 1.2rem;
    min-height: 44px;
  }
  
  /* Enhanced card interactions */
  .card {
    padding: 2rem 1.5rem;
  }
  
  .card:hover {
    transform: translateY(-3px);
  }
  
  /* Better button sizing */
  .submit-btn {
    padding: 1.2rem 2rem;
    min-height: 48px;
  }
  
  /* Improved contact items */
  .contact-item {
    padding: 1.5rem;
  }
  
  /* Better spacing for mobile */
  section {
    padding: 3rem 1.5rem;
  }
  
  .hero {
    padding: 2rem 1.5rem;
  }
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 1000;
  background: var(--gradient-primary);
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px) scale(0.8);
  border: 2px solid var(--white);
  backdrop-filter: blur(10px);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-to-top:hover {
  transform: translateY(-8px) scale(1.05);
  background: var(--gradient-accent);
  box-shadow: var(--shadow-xl);
  border-color: rgba(255, 255, 255, 0.8);
}

.scroll-to-top:active {
  transform: translateY(-4px) scale(0.98);
  transition: all 0.1s ease;
}

.scroll-to-top-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  transition: all 0.3s ease;
}

.scroll-to-top:hover .scroll-to-top-content {
  transform: translateX(3px);
}

.scroll-logo {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--white);
  padding: 3px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.scroll-to-top:hover .scroll-logo {
  transform: rotate(360deg) scale(1.1);
  box-shadow: var(--shadow-md);
}

.scroll-text {
  font-weight: 600;
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.scroll-to-top:hover .scroll-text {
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Mobile adjustments for scroll to top */
@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 1rem;
    left: 1rem;
    padding: 0.6rem 1.2rem;
  }
  
  .scroll-logo {
    width: 25px;
    height: 25px;
  }
  
  .scroll-text {
    font-size: 0.8rem;
  }
  
  /* Adjust FAB position to avoid overlap */
  .mobile-fab {
    bottom: 1rem;
    right: 1rem;
  }
}

.sticky-heading-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-left: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.98);
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
  min-width: 0;
  max-width: 320px;
  white-space: nowrap;
  overflow: hidden;
  height: 0;
}
.sticky-heading-container.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  height: auto;
}
.sticky-heading-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-color);
  letter-spacing: 1px;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(102,126,234,0.08);
  transition: color 0.3s, text-shadow 0.3s;
}
.sticky-heading-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 0.1rem;
  letter-spacing: 0.2px;
  line-height: 1.1;
  text-shadow: 0 1px 4px rgba(102,126,234,0.06);
  transition: color 0.3s, text-shadow 0.3s;
}
@media (max-width: 900px) {
  .sticky-heading-container {
    max-width: 180px;
    margin-left: 0.5rem;
  }
  .sticky-heading-title {
    font-size: 0.95rem;
  }
  .sticky-heading-tagline {
    font-size: 0.7rem;
  }
}
@media (max-width: 600px) {
  .sticky-heading-container {
    display: none;
  }
}

/* Header main heading and tagline block */
.header-heading-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.2rem;
  margin-bottom: 2.2rem;
}
.header-heading-block h1 {
  font-size: 2.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  color: #7b6eea;
  margin-bottom: 0.7rem;
  letter-spacing: 1px;
  text-align: center;
}
.header-tagline {
  font-size: 1.15rem;
  color: var(--text-light);
  font-weight: 500;
  background: #fff;
  border-radius: 30px;
  display: inline-block;
  padding: 0.6rem 2rem;
  box-shadow: var(--shadow-md);
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 900px) {
  .header-heading-block h1 {
    font-size: 1.5rem;
  }
  .header-tagline {
    font-size: 0.9rem;
    padding: 0.5rem 1.2rem;
  }
}
@media (max-width: 600px) {
  .header-heading-block {
    margin-top: 0.7rem;
    margin-bottom: 1.2rem;
  }
  .header-heading-block h1 {
    font-size: 1.1rem;
  }
  .header-tagline {
    font-size: 0.7rem;
    padding: 0.3rem 0.7rem;
  }
}

/* Enhanced section fade-in/slide-up animation */
.section-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.4,0,0.2,1), transform 0.9s cubic-bezier(0.4,0,0.2,1);
  will-change: opacity, transform;
}
.section-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Gentle hover for all links */
a, .footer-section a {
  transition: color 0.22s, background 0.22s, text-shadow 0.22s;
}
a:hover, .footer-section a:hover {
  color: #2563eb;
  text-shadow: 0 2px 8px #a5b4fc33;
}

/* Gentle hover for all buttons */
button, .donate-btn, .submit-btn, .cta-btn {
  transition: background 0.3s, transform 0.18s, box-shadow 0.3s, filter 0.18s;
}
button:hover, .donate-btn:hover, .submit-btn:hover, .cta-btn:hover {
  filter: brightness(1.08) saturate(1.1);
}

button, .donate-btn, .submit-btn, .cta-btn {
  border: none;
  outline: none;
  border-radius: 32px;
  background: linear-gradient(90deg, #667eea 0%, #2563eb 100%);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 1rem 2.2rem;
  box-shadow: 0 4px 16px rgba(60, 60, 120, 0.10);
  cursor: pointer;
  transition: background 0.3s, transform 0.18s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
  margin: 0.5rem 0.2rem;
}
button.secondary, .donate-btn.secondary {
  background: linear-gradient(90deg, #f093fb 0%, #f5576c 100%);
  color: #fff;
}
button.primary, .donate-btn.primary {
  background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
  color: #fff;
}
button:hover, .donate-btn:hover, .submit-btn:hover, .cta-btn:hover,
button:focus, .donate-btn:focus, .submit-btn:focus, .cta-btn:focus {
  background: linear-gradient(90deg, #2563eb 0%, #667eea 100%);
  transform: translateY(-2px) scale(1.045);
  box-shadow: 0 8px 32px rgba(60, 60, 120, 0.18);
  outline: none;
}

/* Ripple effect on click */
button:active, .donate-btn:active, .submit-btn:active, .cta-btn:active {
  transform: scale(0.97);
  box-shadow: 0 2px 8px rgba(60, 60, 120, 0.10);
}

/* Accessibility: Focus states for all interactive elements */
a:focus, button:focus, .donate-btn:focus, .submit-btn:focus, .cta-btn:focus, input:focus, select:focus, textarea:focus {
  outline: 2.5px solid #2563eb;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px #a5b4fc44;
  z-index: 2;
}
nav ul li a:focus {
  background: #e0e7ff;
  color: #2563eb;
}
.social-links a:focus .social-icon {
  filter: invert(0.6) sepia(1) saturate(5) hue-rotate(270deg);
  transform: scale(1.18) rotate(-8deg);
}

/* Large touch targets on mobile */
@media (max-width: 900px) {
  a, button, .donate-btn, .submit-btn, .cta-btn, .footer-backtotop {
    min-height: 48px;
    min-width: 48px;
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
  }
  .social-icon {
    width: 40px;
    height: 40px;
  }
}

/* Testimonials Section */
#testimonials {
  padding: 4rem 2rem;
  background: linear-gradient(120deg, #e0e7ff 60%, #f8fafc 100%);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(60, 60, 120, 0.08);
  margin-top: 3.5rem;
  border: 1.5px solid #e0e7ff;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.2rem;
  margin-top: 2.5rem;
}
.testimonial-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(60, 60, 120, 0.08);
  padding: 2.2rem 2rem 1.5rem 2rem;
  border: 1.5px solid #e0e7ff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(60, 60, 120, 0.16);
  transform: translateY(-6px) scale(1.025);
}
.testimonial-quote {
  font-size: 1.18rem;
  font-style: italic;
  color: #3b2f7f;
  margin-bottom: 1.2rem;
  line-height: 1.6;
  position: relative;
}
.testimonial-quote::before {
  content: '“';
  font-size: 2.5rem;
  color: #a5b4fc;
  position: absolute;
  left: -1.2rem;
  top: -1.2rem;
}
.testimonial-author {
  font-size: 1.05rem;
  color: #2563eb;
  font-weight: 700;
  margin-top: 0.5rem;
  letter-spacing: 0.2px;
}
@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  #testimonials {
    padding: 2.5rem 1rem;
    border-radius: 16px;
  }
}

/* Partners & Supporters Section */
#partners {
  padding: 4rem 2rem;
  background: linear-gradient(120deg, #f8fafc 60%, #e0e7ff 100%);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(60, 60, 120, 0.08);
  margin-top: 3.5rem;
  border: 1.5px solid #e0e7ff;
}
.partners-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
  align-items: center;
  margin-top: 2.5rem;
}
.partner-logo-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(60, 60, 120, 0.08);
  padding: 1.2rem 2.2rem;
  border: 1.5px solid #e0e7ff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.3s, transform 0.3s;
  min-width: 120px;
  min-height: 80px;
}
.partner-logo-card:hover {
  box-shadow: 0 8px 32px rgba(60, 60, 120, 0.16);
  transform: translateY(-4px) scale(1.04);
}
.partner-logo-card img {
  max-width: 90px;
  max-height: 48px;
  object-fit: contain;
  filter: grayscale(0.2) brightness(0.95);
  transition: filter 0.3s, transform 0.2s;
}
.partner-logo-card:hover img {
  filter: grayscale(0) brightness(1.1) drop-shadow(0 2px 8px #a5b4fc33);
  transform: scale(1.08) rotate(-2deg);
}
@media (max-width: 900px) {
  .partners-logos {
    gap: 1.2rem;
  }
  #partners {
    padding: 2.5rem 1rem;
    border-radius: 16px;
  }
  .partner-logo-card {
    min-width: 80px;
    min-height: 60px;
    padding: 0.7rem 1.2rem;
  }
  .partner-logo-card img {
    max-width: 60px;
    max-height: 32px;
  }
}

/* Events Section */
#events {
  padding: 4rem 2rem;
  background: linear-gradient(120deg, #e0e7ff 60%, #f8fafc 100%);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(60, 60, 120, 0.08);
  margin-top: 3.5rem;
  border: 1.5px solid #e0e7ff;
}
.events-columns {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  align-items: flex-start;
  margin-top: 2.5rem;
}
.events-column {
  flex: 1 1 320px;
  min-width: 280px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.events-subtitle {
  font-size: 1.25rem;
  color: #2563eb;
  font-weight: 800;
  margin-bottom: 1.2rem;
  font-family: 'Merriweather', serif;
}
.event-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(60, 60, 120, 0.08);
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  border: 1.5px solid #e0e7ff;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
}
.event-card.upcoming {
  border-left: 5px solid #10b981;
}
.event-card.past {
  border-left: 5px solid #f59e0b;
}
.event-date {
  font-size: 1.05rem;
  color: #7b6eea;
  font-weight: 700;
  margin-bottom: 0.2rem;
  font-family: 'Poppins', sans-serif;
}
.event-title {
  font-size: 1.15rem;
  color: #22223b;
  font-weight: 700;
  margin-bottom: 0.1rem;
  font-family: 'Merriweather', serif;
}
.event-desc {
  font-size: 1rem;
  color: #4b5563;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
}
.event-photo {
  width: 100%;
  max-width: 320px;
  border-radius: 12px;
  margin: 1rem 0;
  box-shadow: 0 2px 12px rgba(60,60,120,0.10);
  object-fit: cover;
  display: block;
}
.event-info {
  font-size: 0.98rem;
  color: #374151;
  background: #f1f5fd;
  border-radius: 10px;
  padding: 0.8rem 1rem;
  margin-top: 0.7rem;
  box-shadow: 0 1px 4px rgba(60,60,120,0.06);
  font-family: 'Poppins', sans-serif;
}
.event-card:hover {
  box-shadow: 0 8px 32px rgba(60, 60, 120, 0.16);
  transform: translateY(-4px) scale(1.03);
}
.event-toggle-btn {
  margin: 0.7rem 0 0.5rem 0;
  padding: 0.5rem 1.2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 16px;
  background: #f4f6fa;
  color: #2563eb;
  border: 1.5px solid #2563eb;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s;
  font-family: 'Poppins', sans-serif;
  box-shadow: none;
}
.event-toggle-btn:hover, .event-toggle-btn:focus {
  background: #2563eb;
  color: #fff;
  border-color: #1e40af;
  outline: none;
}
.event-details {
  margin-top: 0.5rem;
  animation: fadeInEvent 0.4s;
}
@keyframes fadeInEvent {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 900px) {
  .events-columns {
    flex-direction: column;
    gap: 1.5rem;
  }
  #events {
    padding: 2.5rem 1rem;
    border-radius: 16px;
  }
  .events-column {
    max-width: 100%;
  }
}

.event-featured-row {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 2rem;
}
.event-featured-img {
  flex: 1 1 320px;
  max-width: 420px;
}
.event-featured-content {
  flex: 2 1 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 900px) {
  .event-featured-row {
    flex-direction: column;
    gap: 1.2rem;
    align-items: stretch;
  }
  .event-featured-img {
    max-width: 100%;
  }
}

.card h3, .testimonial-card h3, .event-card h3, .event-featured-content .event-title {
  margin-top: 0;
}

section {
  padding: 2.5rem 2.5rem 2.5rem 2.5rem;
  position: relative;
  margin-bottom: 2.5rem;
}
.card, .testimonial-card, .event-featured-row, .event-featured-img img {
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(60, 60, 120, 0.08);
  transition: box-shadow 0.3s, transform 0.3s, border-radius 0.2s;
}
.card:hover, .testimonial-card:hover, .event-featured-row:hover, .event-featured-img img:hover {
  box-shadow: 0 8px 32px rgba(60, 60, 120, 0.13);
  transform: translateY(-4px) scale(1.02);
}
img, .event-photo, .event-featured-img img {
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(60,60,120,0.10);
  object-fit: cover;
  transition: box-shadow 0.3s, border-radius 0.2s;
}
.section-title, h1, h2, h3, h4 {
  margin-top: 0 !important;
}
button, .donate-btn, .submit-btn, .cta-btn, a {
  outline: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
}
button:focus, .donate-btn:focus, .submit-btn:focus, .cta-btn:focus, a:focus {
  box-shadow: 0 0 0 3px #a5b4fc44;
  outline: 2px solid #2563eb;
}

/* --- CONTACT FORM POLISH --- */
#contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 2.5rem 0 2.5rem 0;
}

/* Center and compact the contact form */
.contact-form-pro {
  margin: 1.2rem auto 0 auto;
  max-width: 320px;
  width: 100%;
  padding: 1.1rem 0.7rem 0.7rem 0.7rem;
  box-shadow: 0 2px 12px rgba(60, 60, 120, 0.08);
  border-radius: 14px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: stretch;
}
.form-group-pro label {
  font-size: 0.97rem;
  font-weight: 500;
  color: #6b7280;
  margin-bottom: 0.1rem;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.01em;
  text-align: left;
}
.form-group-pro input,
.form-group-pro textarea {
  font-size: 0.97rem;
  border-radius: 8px;
  padding: 0.45rem 0.9rem 0.45rem 2.1rem;
  min-height: 32px;
  max-height: 90px;
  width: 100%;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  color: #23272f;
  box-shadow: none;
  transition: border 0.18s, box-shadow 0.18s;
  resize: vertical;
}
.form-group-pro textarea {
  min-height: 48px;
}
.contact-btn-pro {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0.6rem 0 0 0;
  align-self: stretch;
  box-sizing: border-box;
}
@media (max-width: 500px) {
  .contact-form-pro {
    max-width: 98vw;
    padding: 0.5rem 0.1rem 0.5rem 0.1rem;
  }
}

/* Contact section two-column layout */
.contact-flex-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
}
.contact-illustration {
  flex: 1 1 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
}
.contact-form-col {
  flex: 1 1 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 800px) {
  .contact-flex-row {
    flex-direction: column;
    gap: 1.2rem;
    max-width: 98vw;
  }
  .contact-illustration, .contact-form-col {
    width: 100%;
    justify-content: center;
  }
}

/* Reduce size of contact illustration and form */
.contact-illustration img {
  max-width: 180px !important;
}
/* Contact Card Professional Polish */
.contact-card {
  background: linear-gradient(120deg, #f8fafc 80%, #e0e7ff 100%);
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(60, 60, 120, 0.10), 0 1.5px 8px rgba(60, 60, 120, 0.06);
  border: 1.5px solid #e0e7ff;
  padding: 2.2rem 1.2rem;
  max-width: 760px;
  margin: 1.5rem auto 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-illustration img {
  max-width: 180px !important;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(60, 60, 120, 0.10);
  border: 1.5px solid #e0e7ff;
  background: #fff;
  padding: 0.5rem;
}
.contact-form-pro {
  max-width: 260px;
  padding: 0.8rem 0.4rem 0.5rem 0.4rem;
  gap: 0.4rem;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(60, 60, 120, 0.08);
  border: 1px solid #e5e7eb;
}
.contact-form-pro label {
  font-size: 1.01rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.1rem;
  letter-spacing: 0.01em;
  text-align: left;
}
.form-group-pro input,
.form-group-pro textarea {
  font-size: 0.97rem;
  border-radius: 8px;
  padding: 0.45rem 0.9rem 0.45rem 2.1rem;
  min-height: 32px;
  max-height: 90px;
  width: 100%;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  color: #23272f;
  box-shadow: none;
  transition: border 0.18s, box-shadow 0.18s;
  resize: vertical;
}
.form-group-pro input::placeholder,
.form-group-pro textarea::placeholder {
  color: #b6b8d6;
  opacity: 1;
  font-size: 0.96em;
}
.contact-btn-pro {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0.6rem 0 0 0;
  align-self: stretch;
  box-sizing: border-box;
  padding: 0.7rem 0;
  font-size: 1.09rem;
  font-weight: 700;
  border-radius: 12px;
  background: linear-gradient(90deg, #667eea 0%, #2563eb 100%);
  color: #fff;
  box-shadow: 0 2px 8px rgba(60,60,120,0.10);
  border: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.contact-btn-pro:hover,
.contact-btn-pro:focus {
  background: linear-gradient(90deg, #2563eb 0%, #667eea 100%);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 32px rgba(60, 60, 120, 0.18);
  outline: none;
}
.contact-flex-row {
  gap: 1.2rem;
}
@media (max-width: 800px) {
  .contact-card {
    padding: 1.2rem 0.2rem;
    max-width: 98vw;
  }
  .contact-illustration img {
    max-width: 120px !important;
  }
  .contact-form-pro {
    max-width: 98vw;
  }
}
