.hero-section-container {
  /* height: 100vh; */
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
  box-sizing: border-box;
}

.hero-section {
  position: relative;
  width: 100%;
}

.hero-green {
  position: absolute;
  top: 55%;
  left: 71%;
  transform: translate(-50%, 0);
  z-index: 2;
}

.hero-left {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  top: 35%;
  left: 12%;
  width: 50%;
  color: #2e3c42;
  padding-right: 5%;
}

.hero-left h1 {
  font-weight: 700;
  font-size: 64px;
  line-height: 80px;
  margin-bottom: 20px;
  color: #fff;
}

.hero-left p {
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  width: 80%;
  color: #fff;
}

.hero-green img {
  width: 22vw;
  max-width: 310px;
  min-width: 150px;
  height: auto;
}

.bg-landing {
  width: 100%;
}

.bg-landing-mobile {
  display: none;
}

.hero-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 5px;
  padding-right: 70px;
  overflow-x: visible;
  margin-top: 5%;
}

.hero-buttons a {
  text-decoration: none;
}

.btn-white {
  font-family: "Roboto", sans-serif;
  width: 333px;
  height: 48px;
  border-radius: 999px;
  gap: 15px;
  /* padding: 10px 35px 10px 34px; */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  background: #fff;
  color: var(--text-gray);
  border: none;
  text-decoration: none;
}

.btn-white:hover {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-icon {
  width: 24px;
  cursor: pointer;
  pointer-events: auto;
  transition: color 0.3s ease, transform 0.3s ease;
}

.btn-icon path {
  fill: var(--text-gray);
  transition: fill 0.3s ease;
}

/* Change icon fill only when .btn-white-secondary is hovered */
.btn-white:hover .btn-icon path {
  fill: #fff;
}

.btn-white-secondary {
  font-family: "Roboto", sans-serif;
  width: 293px;
  height: 48px;
  border-radius: 100px;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-white-secondary:hover {
  background-color: #fff;
  color: var(--text-gray);
  border-color: #fff;
}

.btn-secondary-icon {
  width: 24px;
  height: 24px;
  cursor: pointer;
  pointer-events: auto;
  transition: color 0.3s ease, transform 0.3s ease;
}

.btn-secondary-icon path {
  fill: #fff;
  transition: fill 0.3s ease;
}

/* Change icon fill only when .btn-white-secondary is hovered */
.btn-white-secondary:hover .btn-secondary-icon path {
  fill: var(--text-gray);
}

/* Responsive Styles */
@media (max-width: 1650px) {
  .hero-buttons {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: row;
    width: 100%;
  }

  .hero-left h1 {
    font-size: 50px;
  }

  .hero-left p {
    font-size: 20px;
  }

  .btn-white,
  .btn-white-secondary {
    width: 250px;
    font-size: 12px;
  }
}

@media (max-width: 1400px) {
  .hero-left {
    position: relative;
    width: 100%;
    justify-content: center;
    align-items: center;
    left: 0;
    padding-right: 0;
  }

  .hero-green {
    top: 30%;
  }

  .hero-buttons {
    padding-right: 0;
    width: 100%;
    justify-content: center;
  }

  .hero-green img {
    width: 22vw;
    max-width: 310px;
    min-width: 150px;
    height: auto;
  }

  .hero-left h1 {
    color: var(--text-dark);
  }

  .hero-left p {
    font-family: "Roboto", sans-serif;
    text-align: center;
    color: var(--text-gray);
    line-height: 22px;
  }

  .bold-on-small {
    font-weight: 700;
  }

  .btn-white {
    cursor: pointer;
    background: #3fb84b;
    color: #fff;
    border: none;
  }

  .btn-icon {
    width: 24px;
    cursor: pointer;
    pointer-events: auto;
    transition: color 0.3s ease, transform 0.3s ease;
  }

  .btn-icon path {
    fill: #fff;
    transition: fill 0.3s ease;
  }

  .btn-white-secondary {
    cursor: pointer;
    background: #fff;
    color: #3fb84b;
    border: 2px solid #3fb84b;
  }

  .btn-secondary-icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
    pointer-events: auto;
    transition: color 0.3s ease, transform 0.3s ease;
  }

  .btn-secondary-icon path {
    fill: #3fb84b;
    transition: fill 0.3s ease;
  }
}

@media (max-width: 768px) {
  .hero-green {
    top: 25%;
  }

  .hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
  }

  .btn-white,
  .btn-white-secondary {
    width: 80%;
    font-size: 14px;
  }
}

@media (max-width: 650px) {
  .hero-green {
    top: 31%;
  }

  .hero-left h1 {
    font-size: 40px;
  }

  .bg-landing {
    display: none;
  }

  .bg-landing-mobile {
    display: block;
    width: 100%;
  }

  .hero-buttons {
    padding: 0;
  }
}

@media (max-width: 500px) {
  .hero-buttons {
    width: 90%;
  }

  .btn-white,
  .btn-white-secondary {
    flex-basis: auto;
    width: 100%;
    height: 48px;
    font-size: 14px;
  }
}

@media (max-width: 450px) {
  .hero-green {
    top: 25%;
  }

  .hero-green img {
    width: 22vw;
    max-width: 110px;
    min-width: 130px;
    height: auto;
  }

  .hero-left h1 {
    font-size: 30px;
  }

  .btn-white,
  .btn-white-secondary {
    font-size: 12px;
  }
}

@media (max-width: 350px) {
  .hero-green {
    top: 20%;
  }

  .hero-green img {
    width: 22vw;
    max-width: 110px;
    min-width: 100px;
    height: auto;
  }
}

.hero-buttons::-webkit-scrollbar {
  height: 6px;
}
.hero-buttons::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}
