* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  overflow-x: hidden;
}

.navbar {
  padding: 20px 0;
  background: rgb(3, 73, 3);
  backdrop-filter: blur(15px);
}

.logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.nav-link {
  color: #fff !important;
  margin: 0 12px;
  font-weight: 500;
}

.donate-btn {
  background: #ff6b00;
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
}

.hero {
  height: 100vh;
  background: url(./img/image.jpg) center center/cover;
  position: relative;
  display: flex;
  align-items: center;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h5 {
  color: #ff6b00;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 50px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero p {
  color: #ddd;
  font-size: 18px;
  line-height: 1.8;
  max-width: 550px;
}

.hero-btn {
  background: #ff6b00;
  color: #fff;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
}

.play-btn {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  margin-left: 20px;
  text-decoration: none;
  color: #ff6b00;
  font-size: 20px;
}

/*=========================
    ABOUT SECTION
=========================*/

.about-section {
  padding: 120px 0;
  background: #fff;
}

.about-images {
  position: relative;
  width: 100%;
  min-height: 700px;
}

.about-images img {
  object-fit: cover;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  transition: 0.4s;
}

.about-images img:hover {
  transform: translateY(-8px);
}

.img-main {
  width: 360px;
  height: 520px;
  position: absolute;
  left: 80px;
  top: 70px;
}

.img-top {
  width: 210px;
  height: 230px;
  position: absolute;
  right: 10px;
  top: 0;
  border: 8px solid #fff;
}

.img-bottom {
  width: 240px;
  height: 250px;
  position: absolute;
  left: 0;
  bottom: 0;
  border: 8px solid #fff;
}

/*=========================
     RIGHT CONTENT
=========================*/

.section-tag {
  display: inline-block;
  background: #fff5f2;
  color: #e74c3c;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-section h2 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  color: #1e293b;
  margin-bottom: 25px;
}

.about-section p {
  color: #6b7280;
  font-size: 17px;
  line-height: 32px;
}

/*=========================
        INFO CARD
=========================*/

.info-box {
  background: #fff;
  margin-top: 35px;
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.info-item {
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

.info-item + .info-item {
  margin-top: 35px;
}

.info-item .icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #e74c3c;
  color: #fff;

  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 24px;
}

.info-item h5 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1e293b;
}

.info-item p {
  margin: 0;
  line-height: 30px;
}

.info-box hr {
  margin: 35px 0;
  opacity: 0.15;
}

/*=========================
     BUTTON
=========================*/

.btn-danger {
  background: #e74c3c;
  border: none;
  border-radius: 10px;
  padding: 16px 35px;
  font-weight: 600;
  transition: 0.4s;
}

.btn-danger:hover {
  background: #d53d2c;
  transform: translateY(-3px);
}

/*=========================
      FOUNDER
=========================*/

.about-footer {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-top: 40px;
}

.founder {
  display: flex;
  align-items: center;
  gap: 15px;
}

.founder img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
}

.founder h6 {
  font-size: 22px;
  margin: 0;
  color: #1e293b;
}

.founder span {
  color: #6b7280;
}

/*=========================
      RESPONSIVE
=========================*/

@media (max-width: 991px) {
  .about-images {
    min-height: 550px;
    margin-bottom: 80px;
  }

  .img-main {
    width: 300px;
    height: 430px;
    left: 50%;
    transform: translateX(-50%);
  }

  .img-top {
    width: 180px;
    height: 180px;
    right: 30px;
  }

  .img-bottom {
    width: 180px;
    height: 180px;
    left: 30px;
  }

  .about-section h2 {
    font-size: 40px;
  }

  .about-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .about-images {
    min-height: 480px;
  }

  .img-main {
    width: 260px;
    height: 350px;
  }

  .img-top {
    width: 150px;
    height: 150px;
  }

  .img-bottom {
    width: 150px;
    height: 150px;
  }

  .about-section h2 {
    font-size: 34px;
  }

  .info-box {
    padding: 25px;
  }

  .info-item {
    flex-direction: column;
  }

  .info-item .icon {
    margin-bottom: 10px;
  }
}
