* {
  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);
}
/* 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);
}

/* 🔥 Optimized image section */
.story-image {
  width: 100%;
  height: 500px; /* fixed height for uniform look */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 140, 0, 0.2);
}

.story-image img {
  width: 500px;
  height: 500px;
  object-fit: cover; /* keeps correct proportions */
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.story-card:hover .story-image img {
  transform: scale(1.08);
}

/* ✅ Responsive adjustment for mobile */
@media (max-width: 768px) {
  .story-image {
    height: 300px;
  }

  .story-image img {
    width: 100%;
    height: 100%;
  }
}

.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);
}


/* 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);
}

.floating-donate-btn .btn-secondary:hover {
  box-shadow: 0 10px 25px rgba(0, 114, 255, 0.6);
}

/* ✅ 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;
  }
}