.hero-section {
  background-color: #f4fdf8;
  padding: 0;
  overflow: hidden;
  margin-top: 0;
}

.hero-row {
  height: 695px;
}

.hero-text-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  width: min(774px, 90%);
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 20px;
}

.hero-title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 4.4vw, 64px);
  line-height: 1.03;
  letter-spacing: -0.02em;
  color: #292951;
  margin: 0;
}

.hero-description {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.4;
  letter-spacing: 0;
  color: #292951;
  margin: 0;
  max-width: 627px;
}

.hero-image-col {
  padding: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .hero-row {
    height: auto;
    flex-direction: column;
  }

  .hero-text-col {
    order: 1;
    padding: 40px 20px;
  }

  .hero-image-col {
    order: 2;
    height: 400px;
  }

  .hero-content {
    gap: 30px;
    padding: 0;
  }

  .hero-title {
    font-size: clamp(28px, 5vw, 48px);
    text-align: center;
  }

  .hero-description {
    text-align: center;
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .hero-text-col {
    padding: 30px 15px;
  }

  .hero-image-col {
    height: 300px;
  }

  .hero-content {
    gap: 25px;
    width: 100%;
  }

  .hero-title {
    font-size: clamp(24px, 6vw, 36px);
    line-height: 1.1;
  }

  .hero-description {
    font-size: 14px;
    line-height: 1.5;
  }
}

@media (max-width: 575.98px) {
  .hero-text-col {
    padding: 25px 10px;
  }

  .hero-image-col {
    height: 250px;
  }

  .hero-content {
    gap: 20px;
  }

  .hero-title {
    font-size: clamp(20px, 7vw, 32px);
  }
}

.text-primary-dark {
  color: #292951;
}

.hero-section {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
  height: max-content;
}

.content-box {
  width: 50vw;
  height: 100vh;
  background: #46434366;
  backdrop-filter: blur(5px);
  padding: 40px;
  color: #292951;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-box h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
  margin-left: 30px;
  line-height: 122%;
  margin-top: 90px;
  color: #ffffff;
}

.content-box p {
  font-weight: 400;
  font-size: 24px;
  color: #ffffff;
  line-height: 1.6;
  margin-left: 30px;
}

@media (max-width: 768px) {
  .content-box {
    width: 100%;
    padding: 20px;
  }

  .hero-section {
    justify-content: center;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    justify-content: center;
  }

  .content-box {
    width: 100vw;
    height: auto;
    padding: 20px;
    text-align: center;
  }

  .content-box h2 {
    font-size: 28px;
    margin-left: 0;
    margin-top: 30px;
  }

  .content-box p {
    font-size: 18px;
    margin-left: 0;
  }
}

@media screen and (max-width: 480px) {
  .content-box h2 {
    font-size: 24px;
  }

  .content-box p {
    font-size: 16px;
  }
}

.bog-EHS-software {
  margin-top: 2.8rem;
}

.bog-EHS-software h2 {
  font-size: 40px;
  font-weight: 600;
  color: #292951;
}

.bog-EHS-software p {
  font-size: 40px;
  font-weight: 400;
  color: #292951;
  line-height: 122%;
  margin-bottom: 100px;
}

.machinery-title {
  font-size: 40px;
  font-weight: 600;
}

/* bog-helps */

.benefits-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.benefit-item {
  background-color: #e9f5eb;
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  flex: 1 1 calc(31% - 20px);
  min-width: 280px;
  max-width: 317px;
  height: 108px;
  box-sizing: border-box;
}

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

.benefit-icon svg {
  color: #2c9c4a;
  width: 56px;
  height: 46px;
}

.benefit-text {
  font-size: 16px;
  color: #1c2711;
  line-height: 1.4;
}

.benefit-item:hover {
  background-color: #2c9c4a;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.benefit-item:hover .benefit-text {
  color: #fff;
}

.benefit-item:hover .benefit-icon svg {
  color: #fff;
  fill: currentColor;
}

@media (max-width: 992px) {
  .benefit-item {
    flex: 1 1 calc(48% - 20px);
  }
}

@media (max-width: 576px) {
  .benefit-item {
    flex: 1 1 100%;
    max-width: 100%;
    align-items: center;
    text-align: center;
  }

  .benefit-content {
    flex-direction: column;
    gap: 10px;
  }

  .benefit-text {
    font-size: 14px;
  }
}

/* BOG Benefits Section */

.bog-left {
  width: 600px;
}

.bog-heading {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 122%;
  letter-spacing: -0.02em;
  color: #292951;
  margin-bottom: 30px;
}

.bog-benefit-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.bog-benefit {
  display: flex;
  align-items: center;
  /* background-color: #eaf5ed; */
  width: 596px;
  height: 111px;
  border-radius: 6.43px 81.44px 81.44px 6.43px;
  padding: 15px 26px;
  gap: 1.25rem;
  transition: background-color 0.3s ease;
  cursor: pointer;
  border: 0.54px solid transparent;
}

.bog-benefit:hover {
  background-color: #2c9c4a;
}

.bog-benefit:hover .bog-title,
.bog-benefit:hover .bog-subtext,
.bog-benefit:hover .bog-icon {
  color: white;
}

.bog-icon {
  width: 46px;
  height: 45px;
  font-size: 28px;
  color: #2c9c4a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bog-text {
  width: 351px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bog-title {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 25.72px;
  line-height: 122%;
  letter-spacing: -0.02em;
  color: #292951;
}

.bog-subtext {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 17.14px;
  line-height: 122%;
  letter-spacing: -0.02em;
  color: #8090b5;
  margin-top: 5px;
}

.bog-mobile-shadow {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 1;
}

.bog-mobile {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .bog-section {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 40px 20px;
  }

  .bog-left {
    width: 100%;
    max-width: 100%;
  }

  .bog-heading {
    font-size: clamp(28px, 5vw, 48px);
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.2;
  }

  .bog-benefit-list {
    gap: 18px;
  }

  .bog-benefit {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 100px;
    padding: 18px 22px;
    gap: 18px;
  }

  .bog-icon {
    width: 42px;
    height: 42px;
    font-size: 26px;
  }

  .bog-text {
    width: auto;
    flex: 1;
  }

  .bog-title {
    font-size: clamp(20px, 4vw, 24px);
    line-height: 1.3;
  }

  .bog-subtext {
    font-size: clamp(14px, 3.5vw, 16px);
    line-height: 1.4;
    margin-top: 4px;
  }

  .bog-mobile {
    width: 85%;
  }
}

@media (max-width: 767.98px) {
  .bog-left {
    width: 100%;
    padding: 0 15px;
  }

  .bog-heading {
    font-size: 28px;
    text-align: center;
  }

  .bog-benefit-list {
    align-items: center;
  }

  .bog-benefit {
    width: 100%;
    max-width: 100%;
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    border-radius: 20px;
  }

  .bog-icon {
    width: 40px;
    height: 40px;
    font-size: 24px;
    margin-bottom: 10px;
  }

  .bog-text {
    width: 100%;
  }

  .bog-title {
    font-size: 20px;
  }

  .bog-subtext {
    font-size: 14px;
  }

  .bog-mobile {
    width: 100%;
    height: auto;
  }

  .bog-mobile-shadow {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .bog-section {
    padding: 25px 10px;
    gap: 30px;
  }

  .bog-heading {
    font-size: clamp(20px, 7vw, 32px);
    margin-bottom: 20px;
  }

  .bog-benefit-list {
    gap: 12px;
  }

  .bog-benefit {
    min-height: 80px;
    padding: 14px 16px;
    gap: 12px;
    border-radius: 5px 30px 30px 5px;
  }

  .bog-icon {
    width: 34px;
    height: 34px;
    font-size: 20px;
  }

  .bog-title {
    font-size: clamp(16px, 5vw, 20px);
    line-height: 1.2;
  }

  .bog-subtext {
    font-size: clamp(12px, 4vw, 14px);
    line-height: 1.3;
  }

  .bog-mobile {
    width: 95%;
  }
}

@media (max-width: 414px) {
  .bog-section {
    padding: 20px 8px;
    gap: 25px;
  }

  .bog-heading {
    font-size: clamp(18px, 6vw, 28px);
    margin-bottom: 18px;
  }

  .bog-benefit-list {
    gap: 10px;
  }

  .bog-benefit {
    min-height: 75px;
    padding: 12px 14px;
    gap: 10px;
  }

  .bog-icon {
    width: 30px;
    height: 30px;
    font-size: 18px;
  }

  .bog-title {
    font-size: 15px;
    line-height: 1.2;
  }

  .bog-subtext {
    font-size: 12px;
    line-height: 1.3;
  }
}

/* Real impact section */
.real-impact-section {
  background-color: #ffffff;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 96px 99px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.real-impact-left {
  max-width: 600px;
  flex: 1;
}

.real-impact-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.impact-image {
  width: 100%;
  max-width: 825px;
  height: auto;
}

.impact-heading {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 122%;
  letter-spacing: -0.02em;
  color: #292951;
  margin-bottom: 16px;
}

.impact-subtext {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 122%;
  letter-spacing: -0.02em;
  color: #8090b5;
  margin-bottom: 32px;
}

.impact-points {
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
}

.impact-points li {
  position: relative;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 122%;
  letter-spacing: -0.02em;
  color: #292951;
  margin-bottom: 20px;
  padding-left: 32px;
}

.impact-points .bullet {
  width: 16px;
  height: 16px;
  background-color: #2c9c4a;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 6px;
}

.impact-summary {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 122%;
  letter-spacing: -0.02em;
  color: #292951;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .real-impact-section {
    height: auto;
    flex-direction: column;
    padding: 60px 40px;
    gap: 30px;
  }

  .real-impact-left {
    order: 1;
    max-width: 100%;
    text-align: center;
  }

  .real-impact-right {
    order: 2;
    justify-content: center;
  }

  .impact-heading {
    font-size: clamp(28px, 5vw, 40px);
    text-align: center;
  }

  .impact-subtext {
    text-align: center;
    font-size: clamp(18px, 3vw, 24px);
  }

  .impact-points {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 40px auto;
  }

  .impact-points li {
    font-size: clamp(18px, 3vw, 24px);
  }

  .impact-summary {
    text-align: center;
    font-size: clamp(18px, 3vw, 24px);
  }

  .impact-image {
    max-width: 600px;
  }
}

@media (max-width: 767.98px) {
  .real-impact-section {
    padding: 50px 30px;
    gap: 25px;
  }

  .real-impact-left {
    width: 100%;
  }

  .impact-heading {
    font-size: clamp(24px, 6vw, 32px);
    line-height: 1.1;
    margin-bottom: 20px;
  }

  .impact-subtext {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 25px;
  }

  .impact-points {
    margin-bottom: 30px;
  }

  .impact-points li {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 16px;
    padding-left: 28px;
  }

  .impact-points .bullet {
    width: 14px;
    height: 14px;
    top: 4px;
  }

  .impact-summary {
    font-size: 16px;
    line-height: 1.5;
  }

  .impact-image {
    max-width: 500px;
  }
}

@media (max-width: 575.98px) {
  .real-impact-section {
    padding: 40px 20px;
    gap: 20px;
  }

  .impact-heading {
    font-size: clamp(20px, 7vw, 28px);
    margin-bottom: 16px;
  }

  .impact-subtext {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .impact-points {
    margin-bottom: 25px;
  }

  .impact-points li {
    font-size: 14px;
    margin-bottom: 14px;
    padding-left: 24px;
  }

  .impact-points .bullet {
    width: 12px;
    height: 12px;
    top: 3px;
  }

  .impact-summary {
    font-size: 14px;
  }

  .impact-image {
    max-width: 100%;
  }
}

.final-thoughts {
  background-color: #e9f5eb;
  border-radius: 40px;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  margin: 90px;
  margin-top: -35px;
}

.final-thoughts h2 {
  font-weight: 600;
  font-size: 40px;
  color: #292951;
  margin-left: 27px;
}

.final-thoughts-p {
  font-size: 24px;
  font-weight: 400;
  color: #8090b5;
}

.final-thoughts-content {
  padding: 25px;
  margin-top: -22px;
}

.open-quote-img {
  display: flex;
  justify-content: start;
  width: 120px;
  height: auto;
}

.closed-quote-img {
  display: flex;
  justify-content: end;
  width: 80px;
  height: auto;
  position: absolute;
  right: 52px;
  bottom: 46px;
}

@media (max-width: 991.98px) {
  .final-thoughts {
    margin: 40px 30px;
    border-radius: 30px;
    padding: 20px;
  }

  .final-thoughts h2 {
    font-size: 32px;
    margin-left: 0;
    text-align: center;
  }

  .final-thoughts-content {
    padding: 20px 10px;
    margin-top: 0;
    text-align: center;
  }

  .final-thoughts-p {
    font-size: 20px;
  }

  .open-quote-img {
    width: 80px;
    justify-content: center;
    margin: 0 auto 10px;
  }

  .closed-quote-img {
    width: 60px;
    justify-content: center;
    position: static;
    margin: 20px auto 0;
  }
}

@media (max-width: 575.98px) {
  .final-thoughts {
    margin: 20px 10px;
    border-radius: 20px;
    padding: 15px;
  }

  .final-thoughts h2 {
    font-size: 26px;
  }

  .final-thoughts-p {
    font-size: 16px;
    line-height: 1.5;
  }

  .open-quote-img {
    width: 60px;
  }

  .closed-quote-img {
    width: 50px;
  }
}

/* bog support section */
.intro-part {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 0 0 4.5rem 0;
}

.intro-part h1 {
  font-size: clamp(1.5rem, 5vw, 2.5rem);

  font-weight: 600;
  max-width: 900px;
  width: 100%;
  color: #292951;
}

.intro-part p {
  max-width: 1200px;
  width: 100%;
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 400;
  color: #8090b5;
}

.info-part-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* left side option */
.option-part-left ul {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.option-part-left ul li {
  display: flex;
  align-items: center;
  height: 104px;
  padding: 0 120px 0 20px;
  max-width: 557px;
  width: 100%;
  /* max-width: 430px; */
  border-radius: 10px 50px 50px 10px;
  font-size: clamp(1rem, 1.2vw, 1.5rem);
  font-weight: 500;
  color: #292951;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* .option-part-left ul li:hover {
  background-color: #299c5b;
  color: white;
} */

.option-part-left ul li.active {
  background-color: #299c5b;
  color: white;
}

/* right side option */
.card-box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  flex: 1 1 100%;
}

.card-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  background: #ebf6ee;
  border-radius: 1rem;
  padding: 0 1.5rem;
  max-height: 261px;
  /* width: 100%; */
  height: 205px;
  flex: 1 1 47.8%;
}

/* .card-box.col-6 {
  max-width: 293px;
}

.card-box.col-12 {
  max-width: 614px;
  flex: 1 1 100%;
} */

/* green card box for icon  */
.card-box-icon {
  background-color: #2c9c4a;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  max-width: 103px;
  max-height: 127px;
  width: 35%;
  height: 100px;
  transform: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;

  img {
    width: 44px;
    margin-top: 1rem;
    height: 44px;
    object-fit: contain;
  }
}

.card-outer-text {
  font-size: clamp(1rem, 1.2vw, 1.5rem);
  font-weight: 500;
  color: #8090b5;
}

.card-box p {
  font-size: clamp(0.8rem, 1.1vw, 1.25rem);
  font-weight: 500;
  color: #292951;
  margin-top: 1rem;
  letter-spacing: -1px;
}

.key-features-right {
  display: none;

  span {
    display: none;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 500;
    color: #292951;
  }
}

.key-features-right.active {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.key-features-right-text {
  display: none;
  margin: 0;
  padding: 1.5em;

  p {
    font-size: clamp(0.8rem, 1.2vw, 1.25rem);
    color: #292951;
    font-weight: 500;
  }
}

.key-features-right-text.active {
  display: flex;
}

@media (max-width: 576px) {
  .card-box-container {
    padding: 1em;
  }

  .machinery-key-features.container {
    padding-left: 0.9rem !important;
    padding-right: 0.9rem !important;
  }
}

@media (max-width: 768px) {
  .machinery-key-features {
    width: 100%;
  }

  .intro-part {
    margin-bottom: -3rem !important;
  }

  .option-part-left {
    display: none;
  }

  .key-features-right {
    display: flex;

    span {
      display: block;
    }
  }

  .key-features-right-text {
    display: flex;
    margin-top: 1.5em;
  }

  .key-features-right:not(:first-child) {
    margin-top: 2rem;
  }

  .card-box-container {
    justify-content: center;
  }

  .card-box {
    display: flex;
    flex-direction: row;
    max-width: 100%;
    max-height: 80px;
    width: 85%;
  }

  .card-box p {
    margin-top: auto;
    margin-bottom: auto;
  }

  .card-box-icon {
    width: 50px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .card-box-icon img {
    width: 1.5rem;
    height: 1.5rem;
    object-fit: contain;
  }
}

@media (min-width: 768.1px) and (max-width: 991.98px) {
  .machinery-key-features {
    width: 100%;
  }

  .intro-part {
    margin-bottom: -3rem !important;
  }

  .option-part-left {
    display: none;
  }

  .key-features-right {
    display: flex;

    span {
      display: block;
    }
  }

  .card-box-container {
    justify-content: center;
  }

  .card-box {
    height: auto;
  }

  .card-box.col-6 {
    max-width: 293px;
  }

  .card-box.col-12 {
    max-width: 614px;
    flex: 1 1 100%;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .machinery-key-features {
    width: 100%;
  }

  .intro-part {
    margin-bottom: -3rem !important;
  }

  .option-part-left {
    display: none;
  }

  .key-features-right {
    display: flex;

    span {
      display: block;
    }
  }

  .card-box-container {
    flex-wrap: wrap;
    width: 100%;
    gap: 1.5em 2em;
    justify-content: center;
  }

  .card-box {
    height: auto;
  }

  .card-box.col-6 {
    max-width: 293px;
  }

  .card-box.col-12 {
    max-width: 614px;
    flex: 1 1 100%;
  }

  .card-box-icon {
    width: 70px;
    height: 80px;

    img {
      width: 35px;
      height: 35px;
      object-fit: contain;
    }
  }

  .key-features-right-text {
    display: flex;
    padding-left: 1em !important;
    margin-top: 1.5em;
  }

  .key-features-right:not(:first-child) {
    margin-top: 2rem;
  }
}

/* fixed alignment for 1200px */
@media (min-width: 1199.9px) and (max-width: 1200.1px) {
  .info-part-right.col-xl-6 {
    width: 100% !important;
  }

  .card-box-container {
    gap: 1.5em 7.5em;
  }
}

@media (min-width: 1200px) {
  .card-box {
    width: calc(50% - 0.75rem);
  }
}

@media (max-width: 1200px) {
  .key-features-right-text {
    display: block;
    margin-top: 1.5em;
  }
}


