.logo-left {
  margin-left: 0;
  margin-right: 10px;
  -o-object-fit: contain;
     object-fit: contain;
}

.navbar {
  z-index: 1050;
  position: relative;
  box-shadow: none !important;
}

.navbar-brand {
  font-size: 1.5rem;
  font-family: "Inter", sans-serif;
}

.navbar-nav .nav-link {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: #000 !important;
}
.navbar-nav .nav-link:hover {
  color: black;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link:focus, .navbar-nav .nav-link:active {
  color: #0d6efd !important;
}

.navbar-collapse {
  background-color: #fff;
  padding: 1rem;
  box-shadow: none;
}

.custom-toggler {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  outline: none !important;
  padding: 0;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 1051;
  transition: all 0.3s ease;
}
.custom-toggler:focus, .custom-toggler:active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}
.custom-toggler .toggler-icon,
.custom-toggler .toggler-icon::before,
.custom-toggler .toggler-icon::after {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #000;
  position: absolute;
  transition: all 0.3s ease;
  content: "";
  left: 0;
}
.custom-toggler .toggler-icon {
  top: 50%;
  transform: translateY(-50%);
}
.custom-toggler .toggler-icon::before {
  top: -8px;
}
.custom-toggler .toggler-icon::after {
  top: 8px;
}
.custom-toggler.active .toggler-icon {
  background-color: transparent;
}
.custom-toggler.active .toggler-icon::before {
  transform: rotate(45deg);
  top: 0;
}
.custom-toggler.active .toggler-icon::after {
  transform: rotate(-45deg);
  top: 0;
}
.custom-toggler:hover .toggler-icon::before, .custom-toggler:hover .toggler-icon::after {
  background-color: #fbd26a;
}

@media (max-width: 991px) {
  .navbar-light .navbar-nav .nav-link {
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
  }
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    box-shadow: none;
  }
  .custom-toggler {
    width: 45px;
    height: 45px;
  }
}
@media (max-width: 576px) {
  .navbar-light .navbar-nav .nav-link {
    font-size: 0.85rem;
    padding: 0.4rem 0.6rem;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
}

.hero-section {
  background-color: #0A7C36;
  min-height: 427px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
}

.text-container {
  width: 45%;
  color: #ffffff;
  z-index: 10;
  padding-left: 2rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.download-btn {
  display: flex;
  align-items: center;
  background-color: #000000;
  color: #ffffff;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.3s ease;
}
.download-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.play-icon {
  width: 24px;
  height: 24px;
  margin-right: 12px;
}

.download-text {
  display: flex;
  flex-direction: column;
}

.small-text {
  font-size: 0.7rem;
  font-weight: 400;
}

.big-text {
  font-size: 1rem;
  font-weight: 600;
}

.image-container {
  width: 55%;
  height: 600px;
  position: relative;
}

.semi-circle-image {
  position: absolute;
  top: 0;
  right: -1px; /* Extend slightly beyond container to avoid any gaps */
  height: 100%;
  width: calc(100% + 1px); /* Add 1px to ensure full coverage */
  overflow: hidden;
}
.semi-circle-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #0A7C36;
  border-radius: 0 0 0 100%;
  z-index: 1;
}

.trash-bins {
  width: 110%; /* Make image slightly larger than container to ensure full coverage */
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center right;
     object-position: center right; /* Position image to show more of the right side */
  position: relative;
  z-index: 0;
  right: -10px; /* Push image to the right edge */
}

.sdg-logo {
  position: absolute;
  top: 40px; /* Middle position for large screens */
  right: 5%;
  width: 95px;
  height: auto;
  z-index: 2;
}

@media (max-width: 991px) {
  .hero-content {
    flex-direction: row;
  }
  .text-container {
    width: 45%;
    padding-left: 1rem;
  }
  .image-container {
    width: 55%;
    height: 500px;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-description {
    font-size: 1rem;
  }
  .sdg-logo {
    width: 60px;
    right: 30%;
    top: 80px; /* Position higher for medium screens */
  }
}
@media (max-width: 768px) {
  .text-container {
    padding-left: 1rem;
  }
  .hero-title {
    font-size: 1.8rem;
  }
  .hero-description {
    font-size: 0.9rem;
  }
  .download-btn {
    padding: 0.6rem 1.2rem;
  }
  .image-container {
    height: 450px;
  }
  .sdg-logo {
    right: 35%;
    width: 55px;
    top: 100px; /* Position higher for smaller screens */
  }
}
@media (max-width: 576px) {
  .text-container {
    width: 42%;
    padding-left: 0.75rem;
  }
  .image-container {
    width: 58%;
    height: 400px;
  }
  .hero-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .hero-description {
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
  }
  .hero-description br {
    display: none;
  }
  .download-btn {
    padding: 0.5rem 1rem;
  }
  .small-text {
    font-size: 0.6rem;
  }
  .big-text {
    font-size: 0.8rem;
  }
  .sdg-logo {
    width: 45px;
    top: 15px; /* Position even higher for mobile screens */
    right: 5%;
  }
}
.download-buttons-container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}

.download-btn {
  display: flex;
  align-items: center;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 8px;
  min-width: 180px;
  height: 52px;
  transition: all 0.3s ease;
}

.download-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.play-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  -o-object-fit: contain;
     object-fit: contain;
}

.download-text {
  display: flex;
  flex-direction: column;
}

.small-text {
  font-size: 12px;
  line-height: 14px;
}

.big-text {
  font-size: 18px;
  font-weight: bold;
  line-height: 22px;
}

@media (max-width: 480px) {
  .download-btn {
    min-width: 150px;
    padding: 8px 12px;
  }
  .small-text {
    font-size: 10px;
  }
  .big-text {
    font-size: 16px;
  }
}
.bold-text {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.4;
}

.download-btn-yellow {
  display: inline-block;
  background-color: #FFDD00;
  color: #000000;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 150px;
}
.download-btn-yellow:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .bold-text {
    font-size: 0.9rem;
  }
  .download-btn-yellow {
    padding: 10px 20px;
    font-size: 1rem;
    min-width: 130px;
  }
}
@media (max-width: 480px) {
  .bold-text {
    font-size: 1.05rem;
  }
  .download-btn-yellow {
    padding: 8px 16px;
    font-size: 0.9rem;
    min-width: 120px;
  }
}
.tentang-kami-section {
  background-color: white;
  height: 660px;
}
.tentang-kami-section .green-card {
  background-color: #17863D;
  border-radius: 1rem;
  padding-left: 6pc;
}
.tentang-kami-section .green-card .green-title {
  font-size: 2rem;
}
@media (max-width: 768px) {
  .tentang-kami-section .green-card .green-title {
    font-size: 1.6rem;
  }
}
.tentang-kami-section .green-card .green-hashtag {
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  .tentang-kami-section .green-card .green-hashtag {
    font-size: 1rem;
  }
}
.tentang-kami-section .green-card .green-image o {
  height: 460px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .tentang-kami-section .green-card .green-image o {
    height: 320px;
  }
}
.tentang-kami-section .left-content {
  padding-left: 110px;
}
@media (min-width: 1200px) {
  .tentang-kami-section .left-content {
    padding-left: 180px;
  }
}
@media (max-width: 768px) {
  .tentang-kami-section .left-content {
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.tentang-kami-section .konten-kanan-title {
  font-size: 1.7rem;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .tentang-kami-section .konten-kanan-title {
    font-size: 1.8rem;
  }
}
.tentang-kami-section .konten-kanan-text {
  font-size: 1.3rem;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .tentang-kami-section .konten-kanan-text {
    font-size: 1.05rem;
  }
}
.tentang-kami-section .btn-green {
  background-color: #17863D;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}
.tentang-kami-section .btn-green:hover {
  background-color: #105a29;
  color: #fff;
}

.donasi-section {
  background-color: #F5F5F5;
  margin-top: 100px;
}
@media (max-width: 768px) {
  .donasi-section {
    margin-top: 250px;
  }
}
.donasi-section .fw-bold {
  font-size: 2rem;
  margin-top: 40px;
}
.donasi-section .kategori-box {
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 16px;
  padding: 40px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.donasi-section .kategori-box .kategori-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}
.donasi-section .kategori-box p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
}
.donasi-section .kategori-box:hover {
  background-color: #f8f9fa;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.layanan-section {
  background-color: #F5F5F5;
}
.layanan-section .layanan-card {
  background-color: #17863D;
  border-radius: 16px;
  border: none;
}
.layanan-section .layanan-icon {
  width: 56px;
  height: 56px;
  margin-right: 20px;
}
.layanan-section h5 {
  font-size: 1.25rem;
}
.layanan-section p {
  font-size: 1rem;
  line-height: 1.4;
}

.bank-sampah-section {
  background-color: #F5F5F5;
}
.bank-sampah-section .bank-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  transition: 0.3s ease;
}
.bank-sampah-section .bank-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}
.bank-sampah-section .bank-card .card-img-top {
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}
.bank-sampah-section .bank-card .card-title {
  font-size: 1.1rem;
}
.bank-sampah-section .bank-card .card-text {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.bank-sampah-section .bank-card .btn-dark-green {
  background-color: #17863D;
  color: #fff;
  border: none;
  padding: 6px 16px;
  font-weight: 500;
  border-radius: 6px;
}
.bank-sampah-section .bank-card .btn-dark-green:hover {
  background-color: #11632d;
}

.edukasi-section {
  background-color: #d6e9dd;
  padding: 5rem 0;
}
.edukasi-section .container {
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1rem;
}
.edukasi-section .container .title {
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 1rem;
  margin-top: 10px;
}
.edukasi-section .container .subtitle {
  font-size: 1.25rem;
  color: #333;
  margin-bottom: 5rem;
  line-height: 1.6;
}
.edukasi-section .container .card-edukasi {
  background: #fffef8;
  border-radius: 12px;
  padding: 2.9rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: left;
  margin-bottom: 7rem;
}
.edukasi-section .container .card-edukasi .card-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.edukasi-section .container .card-edukasi .card-content .image {
  flex-shrink: 0;
}
.edukasi-section .container .card-edukasi .card-content .image img {
  width: 150px;
  height: auto;
}
.edukasi-section .container .card-edukasi .card-content .text h5 {
  font-weight: bold;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.edukasi-section .container .card-edukasi .card-content .text p {
  margin: 0;
  padding-bottom: 10px;
  font-size: 1.2rem;
  color: #333;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .edukasi-section .card-edukasi .card-content {
    flex-direction: column;
    text-align: center;
  }
  .edukasi-section .card-edukasi .card-content .text {
    margin-top: 1rem;
  }
  .edukasi-section .card-edukasi .card-content .text h5 {
    margin-top: 1rem;
  }
}

.dokumentasi-section {
  background-color: #ffffff;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.dokumentasi-section .daun {
  position: absolute;
  width: 200px;
  height: auto;
  z-index: 0;
  opacity: 1;
}
.dokumentasi-section .daun-kiri {
  top: 0;
  left: 0;
}
.dokumentasi-section .daun-kanan {
  top: 0;
  right: 0;
}
.dokumentasi-section .container {
  position: relative;
  z-index: 2;
}
.dokumentasi-section .section-title {
  padding-top: 60px; /* dari 30px jadi 60px */
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 5rem;
  color: #333;
}
.dokumentasi-section .img-wrapper {
  padding-top: 30px;
  overflow: hidden;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.dokumentasi-section .img-wrapper img {
  width: 85%;
  height: 80%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.dokumentasi-section .img-wrapper img:hover {
  transform: scale(1.03);
}

.footer-section {
  background-color: white;
}
.footer-section a {
  text-decoration: none;
  color: #000;
}
.footer-section .footer-desc {
  color: #17863D;
  font-weight: 600;
  line-height: 1.4;
}
.footer-section .social-icons a {
  display: inline-block;
}
.footer-section .social-icons a img {
  width: 20px;
  height: 20px;
}
.footer-section .kontak-list li {
  font-size: 0.95rem;
  color: #000;
}
.footer-section .kontak-list li img {
  width: 18px;
  height: 18px;
}
.footer-section .footer-bottom {
  background-color: #17863D;
  color: #fff;
}
.footer-section .footer-col-1 {
  padding-left: 80px;
}
.footer-section .footer-col-2,
.footer-section .footer-col-3 {
  padding-left: 120px;
}
@media (max-width: 768px) {
  .footer-section {
    /* Paksa semua kolom footer */
    /* Paksa semua isi dalam kolom supaya rata kiri */
    /* List dalam kolom */
  }
  .footer-section #Kontak .row > div {
    padding-left: 30px !important;
    padding-right: 30px !important;
    text-align: left !important;
    margin-left: 30px !important;
  }
  .footer-section #Kontak .row > div * {
    text-align: left !important;
  }
  .footer-section #Kontak ul {
    padding-left: 30px !important;
    margin-left: 90px !important;
    list-style-position: inside !important;
  }
  .footer-section #Kontak ul li a {
    text-align: 60px !important;
  }
}

.scroll-to-top {
  position: fixed;
  bottom: 15px;
  right: 15px;
  border: none;
  border-radius: 48%;
  z-index: 999;
  width: 40px;
  height: 40px;
}
.scroll-to-top img {
  display: block;
  width: 40px;
  height: 40px;
}
.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}/*# sourceMappingURL=style.css.map */