
/*fundraiser header start*/
.about-hero {
  position: relative;
  height: 500px;
  overflow: hidden;
  
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-position: center;
}


.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.5),
    rgba(0,0,0,0.1)
  );
}


.about-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0 40px;
  color: white;
}

.about-text h1 {
  font-family: 'Fredoka', cursive;
  font-size: 60px;
  line-height: 1.1;
}
/*fundraiser header end*/


/*stats section start*/
.fundraiser-stats {
  background: #2BAAF7;
  padding: 60px 20px;
}

.fundraiser-stats-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-box {
  text-align: center;
  color: white;
}

.stat-box h2 {
  font-family: 'Fredoka', cursive;
  font-size: 42px;
  margin-bottom: 6px;
}

.stat-box p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 768px) {
  .fundraiser-stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
/*stats section end*/

/*get started section start*/
.steps-section {
  padding: 80px 20px;
}

.steps-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.step-card {
  position: relative;
  background: white;
  border: 1px solid #eee;
  border-radius: 24px;
  padding: 30px 20px;
  text-align: center;
  transition: 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: #2BAAF7;
  box-shadow: 0 10px 25px rgba(43, 170, 247, 0.15);
}


.step-number {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 60px;
  font-weight: bold;
  color: rgba(43, 170, 247, 0.1);
}


.step-icon {
  width: 60px;
  height: 60px;
  margin: auto;
  margin-bottom: 15px;
  background: rgba(43, 170, 247, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon i {
  font-size: 24px;
  color: #2BAAF7;
}


.step-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 14px;
  color: #666;
}


@media (max-width: 768px) {
  .steps-container {
    grid-template-columns: 1fr;
  }
}
/*get started section end*/

/*why us section start*/
.why-section {
  padding: 80px 20px;
}

.why-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.why-tag {
  color: #2BAAF7;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.why-left h2 {
  font-family: 'Fredoka', cursive;
  font-size: 42px;
  margin: 12px 0 25px;
}

.why-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.why-item i {
  color: #2BAAF7;
  margin-top: 3px;
}

.why-item p {
  font-size: 14px;
  color: #444;
}

/* right card */
.why-card {
  background: linear-gradient(to bottom right, #2BAAF7, #FFB3EF);
  border-radius: 28px;
  padding: 40px 30px;
  text-align: center;
  color: white;
}

.why-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-card-icon i {
  font-size: 26px;
}

.why-card h3 {
  font-family: 'Fredoka', cursive;
  font-size: 28px;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 22px;
}

.why-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: #111;
  text-decoration: none;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 999px;
}

.why-btn:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .why-container {
    grid-template-columns: 1fr;
  }

  .why-list {
    grid-template-columns: 1fr;
  }

  .why-left h2 {
    font-size: 34px;
  }
}
/*why us section end*/