/* Hero Section */
.hero-section {
  background: url('assets/hero-background.jpg') center/cover no-repeat;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-section .intro-text {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.2rem;
  color: #ffffff;
}

/* What We Do Section */
.what-we-do {
  background-color: #f9f9f9;
}

.what-we-do h2 {
  font-weight: 700;
  margin-bottom: 2rem;
}

.card {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

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

.card-title {
  font-weight: 600;
  color: #4d4d4d;
}

.card-text {
  font-size: 0.95rem;
  color: #666;
}

/* Donate Section */
.donate-section {
  background: #333333;
  padding: 60px 0;
}

.donate-section h2 {
  font-size: 2rem;
  font-weight: 700;
}

.donate-section p {
  font-size: 1.1rem;
  color: #d3d3d3;
}

.donate-section .btn {
  font-weight: 600;
  padding: 12px 30px;
}

@media (max-width: 768px) {
  .hero-section {
      height: auto;
      padding: 80px 20px;
  }

  .hero-section h1 {
      font-size: 2.5rem;
  }
}

.section {
  width: 100%;
  height: 100dvh;
}

/* How We Started Section */
/* How We Started Full-Screen Section */
.full-screen-section {
  height: 100vh;
  display: flex;
}

.image-section {
  background: url('assets/background-story.jpg') center/cover no-repeat;
  position: relative;
}

.overlay-text {
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 40px;
  max-width: 500px;
  border-radius: 8px;
}

.impact-section {
  background-color: #f5f5f5;
  padding: 40px;
}

.impact-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

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

.card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-body {
  padding: 15px;
}

.count {
  font-size: 2rem;
  font-weight: bold;
  color: #ff6b6b;
}

.small {
  font-size: 1rem;
  color: #666;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .overlay-text, .impact-section {
      padding: 20px;
  }
  
  .full-screen-section {
      height: auto;
  }
}




/* Support Us Section */
.support-us {
  background-color: #f9f9f9;
  padding: 60px 0;
}

.support-us h2 {
  font-weight: 700;
}

.qr-code {
  text-align: center;
  padding: 15px;
  border: 2px solid #ddd;
  border-radius: 8px;
  width: 200px;
  margin: 0 auto;
}

.payment-options {
  list-style-type: none;
  padding: 0;
}

.payment-options li {
  margin: 10px 0;
  font-size: 1rem;
  color: #333;
}

.instagram-frame {
  border: 2px solid #ddd;
  padding: 10px;
  border-radius: 8px;
}

.instagram-frame img {
  max-width: 100%;
  border-radius: 8px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .support-us {
      padding: 30px 0;
  }
  
  .qr-code,
  .instagram-frame {
      min-width: 350px;
      position: relative;
  }
}
#qr-img{
  min-width: 100px;
}

/* Blurred Background Styling */
.blur-bg {
  background: rgba(0, 0, 0, 0.3); /* Semi-transparent background */
  padding: 20px;
  border-radius: 10px;
  backdrop-filter: blur(10px); /* Applies the blur effect */
  -webkit-backdrop-filter: blur(10px); /* For Safari support */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: auto ;
  
}
