.section-with-bgrd {
  background: linear-gradient(135deg, #534126 0%, #000 100%);

  padding: 6rem 2rem;
  display: flex;
  flex-direction: column;

  position: relative;
  overflow: hidden;
}
.section-with-bgrd::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(https://public.youware.com/users-website-assets/prod/345507db-39dc-435a-9239-875d069ea981/gf76408a8c264cb8436c8e7492ae52f2d5ec41030427e0e8c7357a30110a78e58ff2144e044f086a38c28b6291254f91f8a7611d78d49b8cb892088ec13a34aae_1280.jpg)
    center / cover;
  opacity: 0.3;
  z-index: 1;
}
.section-with-bgrd-content {
  position: relative;
  z-index: 1;
}
.hero-section img {
  height: 200px;
  width: auto;
  display: inline-block;;
}
.hero-section {
  min-height: 100vh;

  color: #fff;
  text-align: center;
  padding: 6rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #ffd700, #ffeb3b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 52px;
}

.hero-section .subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #e0e0e0;
}

.hero-section .description {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.8;
  color: #b8b8b8;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: white;
  padding: 1rem 2.5rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0.5rem;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

/* .cta-button:hover {
    background: transparent;
    color: #f96939;
    transform: translateY(-2px);
} */
/* .cta-button {
    display: inline-block;
    background: #f96939;
    color: #fff;
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin: 0.5rem;
    border: 2px solid #f96939;
} */

.section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section h2 {
  font-size: 2.5rem;
  color: #1a1a2e;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  line-height: 52px;
}

.section h2:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  border-radius: 2px;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.content-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.content-card h3 {
  color: #1a1a2e;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.content-card h3:before {
  content: "▶";
  color: #ff6b35;
  margin-right: 0.5rem;
  font-size: 1.2rem;
}

.image-section {
  background: #f8f9fa;
  padding: 4rem 2rem;
  text-align: center;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.image-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.image-card:hover {
  transform: scale(1.05);
}

.image-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.stats-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 2rem auto 0;
}

.stat-item {
  padding: 1.5rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  color: #e0e0e0;
}

.funding-section {
  background: #fff;
  padding: 5rem 2rem;
  /* text-align: center; */
  background: #ededed;
}

/* .funding-goal {
        background: linear-gradient(45deg, #ff6b35, #f7931e);
        color: white;
        padding: 3rem;
        border-radius: 20px;
        margin: 2rem auto;
        max-width: 600px;
        box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
      } */

.funding-goal {
  background: linear-gradient(135deg, #f96939, #fcbf64);
  color: #fff;
  padding: 4rem 3rem;
  border-radius: 20px;
  margin: 3rem auto;
  max-width: 600px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
  text-align: center;
}

.funding-goal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(https://public.youware.com/users-website-assets/prod/345507db-39dc-435a-9239-875d069ea981/g26f3e6263401271073971b1af2bbdf0a642c453c6ac1b7e99ffcf4702c1d2331fe6964bd163603b45f9916b2ce42bf50e42b4a1c78afb966c8d3ee7e503e648c_1280.jpg)
    center / cover;
  opacity: 0.1;
  z-index: 1;
}

.funding-goal h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #fff;
}

.funding-goal .amount {
  font-size: 4rem;
  font-weight: 700;
  margin: 1rem 0;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content .subtitle {
    font-size: 1.2rem;
  }

  .section {
    padding: 3rem 1rem;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
