* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #16a34a;
  --primary-light: #22c55e;
  --primary-dark: #15803d;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --white: #ffffff;
  --red: #dc2626;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

/* Header Styles */
header {
  background-color: var(--white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.org-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.2;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: var(--primary);
}

.donate-btn {
  background-color: var(--primary);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s;
}

.donate-btn:hover {
  background-color: var(--primary-dark);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 0.4rem;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #426006 0%, #884d00 50%, #40781f 100%);

  color: var(--white);
  padding: 4rem 1.5rem;
  text-align: center;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-content {
  text-align: left; /* <-- ADDED THIS LINE */
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: flex-start; /* <-- CHANGED FROM 'center' */
}

.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background-color: var(--white);

  color: var(--primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background-color: var(--white);
  color: var(--primary);
}

.hero-image {
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
}

/* Mission Section */
.mission {
  background-color: var(--primary);
  color: var(--white);
  padding: 3rem 1.5rem;
  text-align: center;
}

.mission-container {
  max-width: 800px;
  margin: 0 auto;
}

.mission h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.mission p {
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Services Section */
.services {
  padding: 4rem 1.5rem;
  background-color: var(--bg-light);
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: var(--text-dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.service-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Impact Section */
.impact {
  padding: 4rem 1.5rem;
  background-color: var(--white);
}

.impact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.impact-card {
  padding: 2rem;
  background-color: var(--bg-light);
  border-radius: 1rem;
  border-left: 4px solid var(--primary);
}

.impact-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.impact-label {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Services Section */
.services {
  padding: 4rem 1.5rem;
  background: linear-gradient(135deg, #f6fdf7 0%, #ffffff 100%);
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 3rem;
  color: #1b4332;
  font-weight: 700;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #00b37a, #7ed957);
  margin: 0.6rem auto 0;
  border-radius: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: #ffffff;
  padding: 2.2rem;
  border-radius: 1.2rem;
  text-align: center;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.7rem;
  color: #00b37a;
  font-weight: 600;
}

.service-card p {
  color: #5c5c5c;
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 1.8rem;
}

/* Donate Button */
.donate-btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  border-radius: 2rem;
  background: linear-gradient(135deg, #00b37a, #7ed957);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 179, 122, 0.25);
}

.donate-btn:hover {
  background: linear-gradient(135deg, #00935f, #61c751);
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 179, 122, 0.4);
}

/* Responsive */
@media (max-width: 600px) {
  .section-title {
    font-size: 1.8rem;
  }

  .service-card {
    padding: 1.8rem;
  }

  .donate-btn {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
  }
}

/* Gallery Section */
.gallery {
  padding: 4rem 1.5rem;
  background-color: var(--bg-light);
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Videos Section */
.videos {
  padding: 4rem 1.5rem;
  background-color: var(--white);
}

.videos-container {
  max-width: 1200px;
  margin: 0 auto;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.video-item {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  aspect-ratio: 16 / 9;
  background-color: #000;
}

.video-item iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* FAQ Section */
.faq {
  padding: 4rem 1.5rem;
  background-color: var(--bg-light);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--white);
  margin-bottom: 1rem;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--text-dark);
  background-color: var(--white);
  border: none;
  width: 100%;
  text-align: left;
  transition: background-color 0.3s;
}

.faq-question:hover {
  background-color: var(--bg-light);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
  color: var(--text-light);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-toggle {
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

/* Contact Section */
.contact {
  padding: 4rem 1.5rem;
  background-color: var(--white);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.contact-info p {
  margin-bottom: 1rem;
  color: var(--text-light);
  line-height: 1.8;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  font-family: inherit;
  font-size: 1rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 3rem 1.5rem;
  text-align: center;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* Footer */
footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 3rem 1.5rem 1rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
  color: var(--primary-light);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  border-top: 1px solid #4b5563;
  padding-top: 2rem;
  text-align: center;
  color: #9ca3af;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  max-width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-dark);
  background: none;
  border: none;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: var(--white);
    padding: 1rem;
    gap: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
  }

  .hamburger {
    display: flex;
  }

  .hero-container {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .cta h2 {
    font-size: 1.5rem;
  }

  .logo {
    width: 50px;
    height: 50px;
  }

  .org-name {
    font-size: 0.9rem;
  }
}

/* Page Sections */
.page-section {
  display: none;
  min-height: 100vh;
}

.page-section.active {
  display: block;
}

.page-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.page-content h1 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--primary);
}

.page-content h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.page-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: var(--text-light);
}

.page-content ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.page-content li {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

/* CTA Section Styling */
.cta {
  background: linear-gradient(135deg, #e6f4ea 0%, #c3e5d0 100%);
  color: #1a3b2f;
  text-align: center;
  padding: 80px 20px;
  border-radius: 40px;
  margin: 60px auto;
  max-width: 900px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(15px, 15px);
  }
}

.cta-subtitle {
  font-size: 1.1rem;
  color: #2e7d32;
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}

.cta-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #145a32;
  line-height: 1.4;
}

.cta-text {
  font-size: 1.1rem;
  color: #2e463b;
  max-width: 650px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.cta-btn {
  background-color: #2e7d32;
  color: #fff;
  border: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

.cta-btn:hover {
  background-color: #256c28;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(46, 125, 50, 0.4);
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .cta {
    padding: 60px 15px;
  }

  .cta-title {
    font-size: 1.6rem;
  }

  .cta-text {
    font-size: 1rem;
  }

  .cta-btn {
    width: 80%;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-dark: #1a1a2e;
  --secondary-dark: #16213e;
  --accent-orange: #ff8c00;
  --accent-orange-dark: #e67e00;
  --light-text: #f0f0f0;
  --muted-text: #b0b0b0;
  --highlight: #ffd60a;
  --card-bg: #2d3561;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--light-text);
  background-color: var(--primary-dark);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero section now displays as flex row on desktop, column on mobile */
.hero {
  position: relative;
  padding: 60px 20px;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #2d3561 100%);
}

.hero-wrapper {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  width: 100%;
}

.hero-content {
  flex: 1;
  z-index: 2;
  animation: slideInUp 1s ease;
}

.org-name {
  font-size: 1.1rem;
  color: var(--accent-orange);
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.hero-subheading {
  font-size: 1.3rem;
  background: linear-gradient(135deg, var(--accent-orange), var(--highlight));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  color: white;
  font-weight: 800;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--light-text);
  line-height: 1.8;
}

/* Hero images on the right side (desktop) or below (mobile) */
.hero-images {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-images img {
  max-width: 100%;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 50px rgba(255, 140, 0, 0.3);
  transition: transform 0.3s ease;
}

.hero-images img:hover {
  transform: scale(1.03);
}

/* Buttons wrapper fix for spacing */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem; /* buttons aur text ke beech space */
}

/* Responsive view fix */
@media (max-width: 768px) {
  .hero-content {
    align-items: center; /* mobile me center alignment */
    text-align: center;
  }

  .hero-content button {
    width: 90%; /* mobile pe full width look */
    max-width: 350px;
    font-size: 1rem;
  }
}

.btn-large {
  padding: 16px 40px !important;
  font-size: 1.1rem !important;
}

/* Buttons */
.btn {
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(135deg, #ffd60a 0%, #996800 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.5);
}

.btn-secondary {
  background-color: transparent;
  color: var(--accent-orange);
  border: 2px solid var(--accent-orange);
}

.btn-secondary:hover {
  background-color: var(--accent-orange);
  color: white;
  transform: translateY(-2px);
}

.btn-donation {
  background-color: var(--accent-orange);
  color: white;
  padding: 10px 20px;
  font-size: 0.9rem;
  margin-top: 1rem;
}

.btn-donation:hover {
  background-color: var(--accent-orange-dark);
}

/* --- Align buttons side by side on larger screens --- */
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Responsive: stack buttons on mobile */
@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 90%;
    max-width: 350px;
  }
}

/* About Section */
.about {
  padding: 100px 20px;
  background-color: var(--secondary-dark);
}

.about h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--highlight);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.about-card {
  background: linear-gradient(135deg, var(--card-bg) 0%, rgba(255, 140, 0, 0.1) 100%);
  padding: 2.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--accent-orange);
  transition: all 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 140, 0, 0.2);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-card h3 {
  color: var(--highlight);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.about-card p {
  color: var(--muted-text);
  line-height: 1.8;
}

/* Impact Stats */
.impact-stats {
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.1) 0%, rgba(255, 214, 10, 0.05) 100%);
  padding: 3rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--accent-orange);
  margin-top: 3rem;
}

.impact-stats h3 {
  color: var(--highlight);
  font-size: 2rem;
  margin-bottom: 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-box {
  background-color: var(--primary-dark);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--accent-orange);
}

.stat-box h4 {
  font-size: 2.2rem;
  color: var(--accent-orange);
  margin-bottom: 0.5rem;
}

.stat-box p {
  color: var(--muted-text);
  font-size: 0.95rem;
}

/* Projects Section */
.projects {
  padding: 100px 20px;
  background-color: var(--primary-dark);
}

.projects h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--highlight);
}

.section-subtitle {
  text-align: center;
  color: var(--muted-text);
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.project-card {
  background: linear-gradient(135deg, var(--card-bg) 0%, rgba(255, 140, 0, 0.08) 100%);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 140, 0, 0.2);
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(255, 140, 0, 0.25);
  border-color: var(--accent-orange);
}

.project-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.project-card h3 {
  color: var(--highlight);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.project-card p {
  color: var(--muted-text);
  line-height: 1.8;
}

/* Gallery Section */
.gallery {
  padding: 100px 20px;
  background-color: var(--secondary-dark);
}

.gallery h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--highlight);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(255, 140, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 35px rgba(255, 140, 0, 0.35);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.gallery-item:hover img {
  opacity: 0.8;
}

.gallery-item p {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: var(--highlight);
  padding: 1rem;
  text-align: center;
  font-weight: bold;
}

/* Donation Section */
.donation-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
}

.donation-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--highlight);
}

.donation-intro {
  text-align: center;
  color: var(--muted-text);
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.donation-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.donation-tier {
  background: linear-gradient(135deg, var(--card-bg) 0%, rgba(255, 140, 0, 0.1) 100%);
  padding: 2.5rem;
  border-radius: 12px;
  border: 2px solid rgba(255, 140, 0, 0.3);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.donation-tier:hover {
  transform: translateY(-8px);
  border-color: var(--accent-orange);
  box-shadow: 0 15px 40px rgba(255, 140, 0, 0.3);
}

.donation-tier.tier-highlight {
  border: 2px solid var(--accent-orange);
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.15) 0%, rgba(255, 140, 0, 0.05) 100%);
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-orange);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

.tier-amount {
  font-size: 2.5rem;
  color: var(--accent-orange);
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.tier-title {
  font-size: 1.3rem;
  color: var(--highlight);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.tier-description {
  color: var(--muted-text);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.custom-donation {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--accent-orange);
}

.custom-donation p {
  color: var(--light-text);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.custom-input-group {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.custom-input-group input {
  flex: 1;
  min-width: 200px;
  padding: 12px 15px;
  border: 1px solid var(--accent-orange);
  border-radius: 8px;
  background-color: var(--primary-dark);
  color: var(--light-text);
  font-size: 1rem;
}

.custom-input-group input::placeholder {
  color: var(--muted-text);
}

/* Why Donate Section */
.why-donate {
  padding: 100px 20px;
  background-color: var(--secondary-dark);
}

.why-donate h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--highlight);
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.reason-card {
  background: linear-gradient(135deg, var(--card-bg) 0%, rgba(255, 140, 0, 0.08) 100%);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border-left: 4px solid var(--accent-orange);
}

.reason-icon {
  font-size: 2rem;
  color: var(--accent-orange);
  margin-bottom: 1rem;
}

.reason-card h4 {
  color: var(--highlight);
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.reason-card p {
  color: var(--muted-text);
  line-height: 1.8;
}

/* Success Stories */
.success-stories {
  padding: 100px 20px;
  background-color: var(--primary-dark);
}

.success-stories h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--highlight);
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.story-card {
  background: linear-gradient(135deg, var(--card-bg) 0%, rgba(255, 140, 0, 0.1) 100%);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 140, 0, 0.2);
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 140, 0, 0.25);
}

.story-image {
  overflow: hidden;
  height: 200px;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.story-card:hover .story-image img {
  transform: scale(1.05);
}

.story-content {
  padding: 2rem;
}

.story-content h4 {
  color: var(--highlight);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.story-content p {
  color: var(--muted-text);
  margin-bottom: 0.8rem;
  line-height: 1.8;
  font-size: 0.95rem;
}

.story-attr {
  color: var(--accent-orange);
  font-weight: bold;
}

/* CTA Section */
.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-dark) 100%);
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.cta-section p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary {
  background-color: white;
  color: var(--accent-orange);
}

.cta-buttons .btn-primary:hover {
  background-color: var(--highlight);
}

.cta-buttons .btn-secondary {
  color: white;
  border-color: white;
}

.cta-buttons .btn-secondary:hover {
  background-color: white;
  color: var(--accent-orange);
}

/* Volunteer Section */
.volunteer {
  padding: 100px 20px;
  background-color: var(--secondary-dark);
}

.volunteer h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--highlight);
}

.volunteer-content {
  background: linear-gradient(135deg, var(--card-bg) 0%, rgba(255, 140, 0, 0.1) 100%);
  padding: 3rem;
  border-radius: 12px;
  border: 1px solid var(--accent-orange);
  max-width: 900px;
  margin: 0 auto;
}

.volunteer-info {
  margin-bottom: 2rem;
}

.volunteer-point {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.point-icon {
  background-color: var(--accent-orange);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.point-text h4 {
  color: var(--highlight);
  margin-bottom: 0.5rem;
}

.point-text p {
  color: var(--muted-text);
}

.volunteer-content .btn {
  width: 100%;
  text-align: center;
}

/* Contact Section */
.contact {
  padding: 80px 20px;
  background-color: var(--primary-dark);
  border-top: 2px solid var(--accent-orange);
}

.contact h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--highlight);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.contact-box {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--accent-orange);
  text-align: center;
}

.contact-box h4 {
  color: var(--highlight);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.contact-box p {
  color: var(--muted-text);
  line-height: 1.8;
}

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: var(--accent-orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: bold;
}

.social-link:hover {
  background-color: var(--accent-orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

/* Footer */
.footer {
  background-color: #0d0d1a;
  color: var(--muted-text);
  text-align: center;
  padding: 2rem;
  border-top: 1px solid var(--accent-orange);
}

/* Floating donate buttons at bottom - fixed position */
.floating-donate-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: slideIn 0.5s ease;
}

.floating-donate-btn .btn {
  padding: 14px 24px;
  font-size: 0.95rem;
  box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
  border-radius: 50px;
  white-space: nowrap;
}

.floating-donate-btn .btn:hover {
  transform: scale(1.05) translateY(-2px);
}

.floating-donate-btn .btn-secondary {
  background-color: var(--secondary-dark);
  border-color: var(--accent-orange);
}

/* Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive design - hero layout changes to column on mobile, padding adjustments */
@media (max-width: 768px) {
  .hero-wrapper {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding: 40px 20px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .org-name {
    font-size: 0.9rem;
  }

  .hero-subheading {
    font-size: 1.1rem;
  }

  .projects h2,
  .about h2,
  .gallery h2,
  .success-stories h2,
  .why-donate h2,
  .volunteer h2,
  .contact h2 {
    font-size: 2rem;
  }

  .donation-tier.tier-highlight {
    transform: scale(1);
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn-large {
    width: 100%;
  }

  .custom-input-group {
    flex-direction: column;
  }

  .custom-input-group input {
    min-width: 100%;
  }

  .volunteer-point {
    gap: 1rem;
  }

  .floating-donate-btn {
    bottom: 15px;
    right: 15px;
  }

  .floating-donate-btn .btn {
    padding: 12px 20px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.4rem;
  }

  .donation-tiers {
    grid-template-columns: 1fr;
  }

  .tier-amount {
    font-size: 2rem;
  }

  .btn-large {
    font-size: 0.9rem !important;
    padding: 12px 25px !important;
  }

  .stories-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .floating-donate-btn {
    bottom: 10px;
    right: 10px;
    gap: 8px;
  }

  .floating-donate-btn .btn {
    padding: 10px 16px;
    font-size: 0.75rem;
  }
}

/* ✨ Updated Attractive Yellow Buttons ✨ */
.btn {
  padding: 12px 30px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
}

/* Primary Button (Donate Now etc.) */
.btn-primary {
  background: linear-gradient(135deg, #ffe600, #ffb800);
  color: #1a1a1a;
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #fff48b, #ffd600);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.7);
}

/* Secondary Button (भूख मिटाएं, दुआएं पाएं etc.) */
.btn-secondary {
  background: transparent;
  color: #ffd60a;
  border: 2px solid #ffd60a;
  box-shadow: 0 4px 15px rgba(255, 214, 10, 0.2);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #ffd60a, #ffb800);
  color: #1a1a1a;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 214, 10, 0.5);
}

/* Floating Donate Buttons (bottom right corner) */
.floating-donate-btn .btn {
  background: linear-gradient(135deg, #ffea00, #ffc107);
  color: #1a1a1a;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
  border: none;
}

.floating-donate-btn .btn:hover {
  background: linear-gradient(135deg, #fff59d, #ffd600);
  transform: scale(1.07) translateY(-2px);
  box-shadow: 0 10px 35px rgba(255, 215, 0, 0.7);
}

/* Extra animation for attention */
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  transform: skewX(-30deg);
  transition: 0.5s;
}

.btn:hover::before {
  left: 100%;
}

/* Floating Buttons - Base Layout */
.floating-donate-btn {
  position: fixed;
  bottom: 80px; /* 👈 Thoda upar rakha hai so visible */
  right: 20px;
  display: flex;
  flex-direction: column; /* buttons vertical honge */
  gap: 12px;
  z-index: 9999;
}

/* Button Styling */
.floating-donate-btn .btn {
  background: linear-gradient(135deg, #ffb400, #ff6600);
  border: none;
  color: #fff;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.floating-donate-btn .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 140, 0, 0.6);
}

/* Secondary Button */
.floating-donate-btn .btn-secondary {
  background: linear-gradient(135deg, #0072ff, #0040b0);
  box-shadow: 0 6px 20px rgba(0, 114, 255, 0.3);
}

/* ✅ Responsive: mobile screens */
@media (max-width: 768px) {
  .floating-donate-btn {
    bottom: 100px; /* mobile par thoda aur upar so visible above footer */
    right: 10px;
    flex-direction: column;
    gap: 10px;
  }

  .floating-donate-btn .btn {
    font-size: 14px;
    padding: 10px 16px;
    border-radius: 40px;
  }
}

/* Floating donate buttons at bottom - fixed position */
.floating-donate-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: slideIn 0.5s ease;
}

.floating-donate-btn .btn {
  padding: 14px 24px;
  font-size: 0.95rem;
  box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
  border-radius: 50px;
  white-space: nowrap;
}

.floating-donate-btn .btn:hover {
  transform: scale(1.05) translateY(-2px);
}

.floating-donate-btn .btn-secondary {
  background-color: var(--secondary-dark);
  border-color: var(--accent-orange);
}

/* Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive design - hero layout changes to column on mobile, padding adjustments */
@media (max-width: 768px) {
  .hero-wrapper {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding: 40px 20px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .org-name {
    font-size: 0.9rem;
  }

  .hero-subheading {
    font-size: 1.1rem;
  }

  .projects h2,
  .about h2,
  .gallery h2,
  .success-stories h2,
  .why-donate h2,
  .volunteer h2,
  .contact h2 {
    font-size: 2rem;
  }

  .donation-tier.tier-highlight {
    transform: scale(1);
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn-large {
    width: 100%;
  }

  .custom-input-group {
    flex-direction: column;
  }

  .custom-input-group input {
    min-width: 100%;
  }

  .volunteer-point {
    gap: 1rem;
  }

  .floating-donate-btn {
    bottom: 15px;
    right: 15px;
  }

  .floating-donate-btn .btn {
    padding: 12px 20px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.4rem;
  }

  .donation-tiers {
    grid-template-columns: 1fr;
  }

  .tier-amount {
    font-size: 2rem;
  }

  .btn-large {
    font-size: 0.9rem !important;
    padding: 12px 25px !important;
  }

  .stories-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .floating-donate-btn {
    bottom: 10px;
    right: 10px;
    gap: 8px;
  }

  .floating-donate-btn .btn {
    padding: 10px 16px;
    font-size: 0.75rem;
  }
}

/* ✨ Updated Attractive Yellow Buttons ✨ */
.btn {
  padding: 12px 30px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
}

/* Primary Button (Donate Now etc.) */
.btn-primary {
  background: linear-gradient(135deg, #ffe600, #ffb800);
  color: #1a1a1a;
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #fff48b, #ffd600);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.7);
}

/* Secondary Button (भूख मिटाएं, दुआएं पाएं etc.) */
.btn-secondary {
  background: transparent;
  color: #ffd60a;
  border: 2px solid #ffd60a;
  box-shadow: 0 4px 15px rgba(255, 214, 10, 0.2);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #ffd60a, #ffb800);
  color: #1a1a1a;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 214, 10, 0.5);
}

/* Floating Donate Buttons (bottom right corner) */
.floating-donate-btn .btn {
  background: linear-gradient(135deg, #ffea00, #ffc107);
  color: #1a1a1a;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
  border: none;
}

.floating-donate-btn .btn:hover {
  background: linear-gradient(135deg, #fff59d, #ffd600);
  transform: scale(1.07) translateY(-2px);
  box-shadow: 0 10px 35px rgba(255, 215, 0, 0.7);
}

/* Extra animation for attention */
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  transform: skewX(-30deg);
  transition: 0.5s;
}

.btn:hover::before {
  left: 100%;
}

/* Floating Donate Buttons in Footer */
.floating-donate-btn {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border-radius: 50px;
  padding: 10px 18px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
}

/* Primary & Secondary Buttons */
.floating-donate-btn .btn {
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Button Colors */
.floating-donate-btn .btn-primary {
  background: linear-gradient(135deg, #ff7a00, #ffb347);
  color: #fff;
}
.floating-donate-btn .btn-secondary {
  background: linear-gradient(135deg, #007bff, #00c6ff);
  color: #fff;
}

/* Hover Effects */
.floating-donate-btn .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* 🧡 Responsive for Mobile */
@media (max-width: 768px) {
  .floating-donate-btn {
    flex-direction: column;
    bottom: 15px;
    padding: 12px;
    gap: 8px;
    width: calc(100% - 40px);
    left: 50%;
    transform: translateX(-50%);
    border-radius: 20px;
  }

  .floating-donate-btn .btn {
    width: 100%;
    justify-content: center;
    font-size: 16px;
  }
}

/* ================================
   HEADER DESKTOP ALIGNMENT FIX
   ================================ */

@media (min-width: 769px) {
  header,
  .header,
  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 32px;
  }

  .header-left {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .header-right {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  /* Donate button fix */
  .header-donate-btn,
  header .donate-btn {
    padding: 12px 28px;
    font-size: 15px;
    border-radius: 999px;
    white-space: nowrap;
  }

  /* Hamburger icon fix */
  .menu-toggle,
  .hamburger {
    margin-left: 0;
    padding: 8px;
    cursor: pointer;
  }
}

/* ===============================
    NAVBAR & HEADER STYLES (Fixed)
   =============================== */
header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000; /* Z-index high taki sabke upar rahe */
  height: 80px; /* Header ki height fix ki */
  display: flex;
  align-items: center;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.org-name {
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.2;
  color: var(--primary-dark);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: var(--primary);
}

.hamburger {
  display: none; /* Desktop par hidden rahega */
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  transition: all 0.3s;
}

/* ===============================
   FIXED BOTTOM BAR (New Design)
   =============================== */
.fixed-bottom-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #16a34a, #15803d); /* Green Gradient */
  color: white;
  padding: 15px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  font-family: "Segoe UI", sans-serif;
}

.cta-text {
  font-size: 1.2rem; /* Text size bada kiya */
  font-weight: 600;
  letter-spacing: 0.5px;
}

.cta-btn-fixed {
  background-color: #fbbf24; /* Yellow button standout karega */
  color: #000;
  padding: 10px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
  white-space: nowrap;
}

.cta-btn-fixed:hover {
  transform: scale(1.05);
  background-color: #f59e0b;
}

/* Padding takay content footer ke piche na chupe */
body {
  padding-bottom: 80px;
}

/* ===============================
   MOBILE RESPONSIVENESS (Media Queries)
   =============================== */
@media (max-width: 768px) {
  .hamburger {
    display: flex; /* Mobile par dikhega */
  }

  /* Mobile Menu Style */
  .nav-menu {
    position: absolute;
    top: 80px; /* Header ke niche */
    left: 0;
    width: 100%;
    background-color: white;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    gap: 1.5rem;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%); /* Chupane ke liye */
    transition: transform 0.3s ease-in-out;
    z-index: 999;
  }

  .nav-menu.active {
    transform: translateY(0); /* Dikhane ke liye */
  }

  /* Fixed Bar Mobile Adjust */
  .fixed-bottom-cta {
    flex-direction: column; /* Mobile par upar niche */
    gap: 10px;
    padding: 12px;
    text-align: center;
  }
}

/* =========================================
   FIXED BOTTOM DONATE BAR (Start)
   ========================================= */

/* Body ko padding di hai taki footer ka content button ke piche na chupe */
body {
  padding-bottom: 90px;
}

.fixed-donate-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.9); /* Glass effect background */
  backdrop-filter: blur(10px); /* Blurs the content behind */
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 15px 20px;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideUp 0.8s ease-out;
}

.donate-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  gap: 20px;
}

.donate-text-cta {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1f2937;
}

.donate-text-cta span {
  color: #16a34a; /* Green highlight */
}

.btn-fixed-donate {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: white;
  padding: 12px 35px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(22, 163, 74, 0.4);
  transition: all 0.3s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-fixed-donate:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.6);
  background: linear-gradient(135deg, #15803d 0%, #14532d 100%);
}

/* Animation to slide up */
@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

/* =========================================
   MOBILE RESPONSIVE ADJUSTMENTS
   ========================================= */
@media (max-width: 768px) {
  .fixed-donate-bar {
    padding: 12px 15px;
  }

  .donate-text-cta {
    display: none; /* Mobile pe text chupayenge taki button bada dikhe */
  }

  .donate-bar-content {
    justify-content: center;
  }

  .btn-fixed-donate {
    width: 100%; /* Button full width ho jayega */
    justify-content: center;
    font-size: 1.2rem;
    padding: 14px 20px;
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%); /* Orange on mobile stands out more */
    box-shadow: 0 4px 15px rgba(245, 124, 0, 0.4);
  }
}

/* ================================
   HEADER DESKTOP ALIGNMENT FIX
   ================================ */

@media (min-width: 769px) {
  header,
  .header,
  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 32px;
  }

  .header-left {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .header-right {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  /* Donate button fix */
  .header-donate-btn,
  header .donate-btn {
    padding: 12px 28px;
    font-size: 15px;
    border-radius: 999px;
    white-space: nowrap;
  }

  /* Hamburger icon fix */
  .menu-toggle,
  .hamburger {
    margin-left: 0;
    padding: 8px;
    cursor: pointer;
  }
}

/* ===============================
   NAVBAR & HEADER STYLES (Fixed)
   =============================== */
header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000; /* Z-index high taki sabke upar rahe */
  height: 80px; /* Header ki height fix ki */
  display: flex;
  align-items: center;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.org-name {
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.2;
  color: var(--primary-dark);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: var(--primary);
}

.hamburger {
  display: none; /* Desktop par hidden rahega */
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  transition: all 0.3s;
}

/* ===============================
   FIXED BOTTOM BAR (New Design)
   =============================== */
.fixed-bottom-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #16a34a, #15803d); /* Green Gradient */
  color: white;
  padding: 15px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  font-family: "Segoe UI", sans-serif;
}

.cta-text {
  font-size: 1.2rem; /* Text size bada kiya */
  font-weight: 600;
  letter-spacing: 0.5px;
}

.cta-btn-fixed {
  background-color: #fbbf24; /* Yellow button standout karega */
  color: #000;
  padding: 10px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
  white-space: nowrap;
}

.cta-btn-fixed:hover {
  transform: scale(1.05);
  background-color: #f59e0b;
}

/* Padding takay content footer ke piche na chupe */
body {
  padding-bottom: 80px;
}

/* ===============================
   MOBILE RESPONSIVENESS (Media Queries)
   =============================== */
@media (max-width: 768px) {
  .hamburger {
    display: flex; /* Mobile par dikhega */
  }

  /* Mobile Menu Style */
  .nav-menu {
    position: absolute;
    top: 80px; /* Header ke niche */
    left: 0;
    width: 100%;
    background-color: white;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    gap: 1.5rem;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%); /* Chupane ke liye */
    transition: transform 0.3s ease-in-out;
    z-index: 999;
  }

  .nav-menu.active {
    transform: translateY(0); /* Dikhane ke liye */
  }

  /* Fixed Bar Mobile Adjust */
  .fixed-bottom-cta {
    flex-direction: column; /* Mobile par upar niche */
    gap: 10px;
    padding: 12px;
    text-align: center;
  }
}

/* =========================================
   FIXED BOTTOM DONATE BAR (Start)
   ========================================= */

/* Body ko padding di hai taki footer ka content button ke piche na chupe */
body {
  padding-bottom: 90px;
}

.fixed-donate-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.9); /* Glass effect background */
  backdrop-filter: blur(10px); /* Blurs the content behind */
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 15px 20px;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideUp 0.8s ease-out;
}

.donate-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  gap: 20px;
}

.donate-text-cta {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1f2937;
}

.donate-text-cta span {
  color: #16a34a; /* Green highlight */
}

.btn-fixed-donate {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: white;
  padding: 12px 35px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(22, 163, 74, 0.4);
  transition: all 0.3s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-fixed-donate:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.6);
  background: linear-gradient(135deg, #15803d 0%, #14532d 100%);
}

/* Animation to slide up */
@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

/* =========================================
   MOBILE RESPONSIVE ADJUSTMENTS
   ========================================= */
@media (max-width: 768px) {
  .fixed-donate-bar {
    padding: 12px 15px;
  }

  .donate-text-cta {
    display: none; /* Mobile pe text chupayenge taki button bada dikhe */
  }

  .donate-bar-content {
    justify-content: center;
  }

  .btn-fixed-donate {
    width: 100%; /* Button full width ho jayega */
    justify-content: center;
    font-size: 1.2rem;
    padding: 14px 20px;
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%); /* Orange on mobile stands out more */
    box-shadow: 0 4px 15px rgba(245, 124, 0, 0.4);
  }
}

/* Added CSS for Footer Social Links */
.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 12px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #d1d5db;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.social-links a:hover {
  background-color: #16a34a;
  color: #ffffff;
  transform: translateX(5px);
}

.social-links span {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Added Mobile Optimization - Footer Links Responsiveness */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }

  .social-links {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .social-links a {
    flex: 1;
    min-width: 120px;
    justify-content: center;
  }
}

/* Added Performance Optimization - Image Lazy Loading */
img {
  loading: lazy;
}

/* Added Link Styling for Clickable Elements */
a[href^="tel:"],
a[href^="mailto:"],
.footer-section a {
  word-break: break-word;
  color: inherit;
}

.footer-section a {
  color: #d1d5db;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #ffffff;
}

/* Speed Optimization - Reduce Animation on Mobile */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.whatsapp-float {
    position: fixed;
    bottom: 90px;   /* 👈 yaha value badha di */
    right: 20px;
    background-color: #25D366;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    line-height: 55px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    z-index: 2000;  /* 👈 Donate button se upar rahe */
}
