/*====================================
WHY VOLUNTEER
====================================*/

.volunteer-about {
  padding: 100px 0;

  background: #f8fbff;
}

.volunteer-image {
  position: relative;
}

.volunteer-image img {
  width: 100%;

  border-radius: 25px;

  object-fit: cover;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.experience-card {
  position: absolute;

  bottom: 30px;

  left: 30px;

  background: #fff;

  padding: 18px 25px;

  border-radius: 18px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.experience-card h3 {
  color: var(--primary);

  font-size: 30px;

  margin-bottom: 5px;

  font-weight: 700;
}

.experience-card p {
  margin: 0;

  color: #666;
}

.volunteer-about h2 {
  font-size: 48px;

  font-weight: 700;

  margin: 20px 0;

  line-height: 1.3;
}

.volunteer-about h2 span {
  color: var(--primary);
}

.volunteer-about p {
  color: #666;

  line-height: 1.9;
}

.volunteer-features {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 20px;

  margin: 35px 0;
}

.feature-box {
  background: #fff;

  padding: 25px;

  border-radius: 18px;

  text-align: center;

  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);

  transition: 0.35s;
}

.feature-box:hover {
  transform: translateY(-8px);
}

.feature-box i {
  font-size: 35px;

  color: var(--primary);

  margin-bottom: 15px;
}

.feature-box h5 {
  font-size: 18px;

  margin: 0;
}

.volunteer-btn {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 16px 35px;

  background: linear-gradient(90deg, var(--primary), #245dc9);

  color: #fff;

  border-radius: 50px;

  text-decoration: none;

  font-weight: 600;

  transition: 0.35s;
}

.volunteer-btn:hover {
  background: linear-gradient(90deg, var(--accent), #ff9800);

  color: #fff;
}

@media (max-width: 991px) {
  .volunteer-about {
    padding: 80px 0;
  }

  .volunteer-about h2 {
    font-size: 38px;
  }

  .volunteer-image {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .volunteer-about {
    padding: 70px 0;
  }

  .volunteer-about h2 {
    font-size: 30px;
  }

  .volunteer-features {
    grid-template-columns: 1fr;
  }

  .experience-card {
    left: 15px;

    bottom: 15px;

    padding: 15px 20px;
  }

  .experience-card h3 {
    font-size: 24px;
  }

  .volunteer-btn {
    width: 100%;

    justify-content: center;
  }
}

/*====================================
VOLUNTEER BENEFITS
====================================*/

.volunteer-benefits {
  padding: 100px 0;

  background: #fff;
}

.benefit-card {
  background: #fff;

  border-radius: 22px;

  padding: 35px 30px;

  text-align: center;

  height: 100%;

  border: 1px solid #edf2f7;

  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);

  transition: 0.35s;
}

.benefit-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
  width: 80px;

  height: 80px;

  margin: 0 auto 25px;

  border-radius: 50%;

  background: linear-gradient(135deg, var(--primary), #2b68d9);

  display: flex;

  align-items: center;

  justify-content: center;
}

.benefit-icon i {
  color: #fff;

  font-size: 34px;
}

.benefit-card h4 {
  font-size: 24px;

  font-weight: 700;

  margin-bottom: 15px;

  color: #222;
}

.benefit-card p {
  color: #666;

  line-height: 1.8;

  margin: 0;
}

@media (max-width: 991px) {
  .volunteer-benefits {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .volunteer-benefits {
    padding: 70px 0;
  }

  .benefit-card {
    padding: 30px 20px;
  }

  .benefit-card h4 {
    font-size: 21px;
  }
}

/*====================================
VOLUNTEER CTA
====================================*/

.volunteer-cta {
  padding: 100px 0;

  background: #f8fbff;
}

.volunteer-cta-box {
  background: linear-gradient(135deg, var(--primary), #1d57c7);

  border-radius: 30px;

  padding: 60px;

  color: #fff;

  overflow: hidden;

  position: relative;
}

.volunteer-cta-box::before {
  content: "";

  position: absolute;

  width: 320px;

  height: 320px;

  background: rgba(255, 255, 255, 0.05);

  border-radius: 50%;

  top: -160px;

  right: -120px;
}

.volunteer-cta-box::after {
  content: "";

  position: absolute;

  width: 220px;

  height: 220px;

  background: rgba(255, 255, 255, 0.04);

  border-radius: 50%;

  bottom: -90px;

  left: -80px;
}

.volunteer-cta-box > * {
  position: relative;

  z-index: 2;
}

.volunteer-cta h2 {
  color: #fff;

  font-size: 48px;

  font-weight: 700;

  margin: 20px 0;
}

.volunteer-cta p {
  color: #eef3ff;

  line-height: 1.9;
}

.cta-highlights {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 18px;

  margin-top: 35px;
}

.cta-highlights div {
  display: flex;

  align-items: center;

  gap: 10px;

  font-weight: 500;
}

.cta-highlights i {
  color: #ffd54f;

  font-size: 20px;
}

.volunteer-apply-btn {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 16px 40px;

  border-radius: 50px;

  background: #fff;

  color: var(--primary);

  text-decoration: none;

  font-weight: 700;

  transition: 0.35s;
}

.volunteer-apply-btn:hover {
  background: var(--accent);

  color: #fff;
}

.volunteer-circle {
  width: 280px;

  height: 280px;

  margin: auto;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.12);

  border: 2px solid rgba(255, 255, 255, 0.15);

  display: flex;

  justify-content: center;

  align-items: center;
}

.circle-content {
  text-align: center;
}

.circle-content h3 {
  font-size: 48px;

  color: #fff;

  font-weight: 700;

  margin-bottom: 10px;
}

.circle-content span {
  display: block;

  font-size: 24px;

  font-weight: 600;

  margin-bottom: 15px;
}

.circle-content small {
  color: #eef3ff;

  font-size: 15px;

  line-height: 1.8;
}

@media (max-width: 991px) {
  .volunteer-cta {
    padding: 80px 0;
  }

  .volunteer-cta-box {
    padding: 40px;
  }

  .volunteer-cta h2 {
    font-size: 36px;
  }

  .volunteer-circle {
    width: 230px;

    height: 230px;

    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .volunteer-cta {
    padding: 70px 0;
  }

  .volunteer-cta-box {
    padding: 30px 22px;

    border-radius: 22px;
  }

  .volunteer-cta h2 {
    font-size: 28px;
  }

  .cta-highlights {
    grid-template-columns: 1fr;
  }

  .volunteer-apply-btn {
    width: 100%;

    justify-content: center;
  }

  .volunteer-circle {
    width: 200px;

    height: 200px;
  }

  .circle-content h3 {
    font-size: 34px;
  }

  .circle-content span {
    font-size: 20px;
  }
}
