* {
  box-sizing: border-box;
  font-family: Poppins, sans-serif;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

a.text-decoration-none.text-success:hover {
  text-decoration: underline !important;
}

.cement-plants-desc {
  width: 76.9%;
}
.safety-method-point p {
  font-size: clamp(1rem, 3vw, 1.5rem);
  text-align: justify;
  width: 95%;
}
@media (max-width: 1200px) {
  .cement-plants-desc {
    width: 100% !important;
  }
}
/* Industry-Specific Solutions section */
.industry-solutions {
  width: 100%;
  min-height: 130vh;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.industry-solutions-img-right {
  position: relative;
}
.industry-solutions-img-right img {
  display: block;
  margin: auto;
  height: 680px;
  object-fit: contain;
  margin-top: 3rem;
}
.industry-solutions-img-right::after {
  content: '';
  position: absolute;
  bottom: -3vw;
  left: 50%;
  transform: translateX(-50%);
  width: 45%;
  height: 20px;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.1) 80%
  );
  border-radius: 50%;
  filter: blur(8px);
  z-index: 0;
  pointer-events: none;
}
.industry-solutions-content-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: #292951;
}
.industry-solutions-content-left h2 {
  font-weight: 600;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  color: #292951;
}
.section-subheading {
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: #292951;
}
.industry-solutions-cards {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}
/* ✨ widened cards for better spacing balance */
.industry-solutions-card-box {
  display: flex;
  gap: 1rem;
  align-items: center;
  width: 100%;
  max-width: 38rem;
  /* increased from 35rem */
  height: auto;
  transition: all 0.3s ease-in-out;
  border-radius: 6.43px 81.44px 81.44px 6.43px;
  padding: 1rem 5rem 1rem 1rem;
  /* gives extra breathing room on right */
  background-color: transparent;
}
.industry-solutions-card-box img {
  object-fit: contain;
  height: 4.35rem;
  width: 4.35rem;
}
.industry-solutions-card-box h4 {
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 600;
}
.industry-solutions-card-box p {
  font-size: clamp(0.6rem, 3vw, 1rem);
  margin-bottom: 0;
  max-width: 90%;
}
.industry-solutions-card-box:hover {
  background-color: #2c9c4a;
  color: white;
}
.industry-solutions-card-box:hover p,
.industry-solutions-card-box:hover h4 {
  color: white;
}
.green-icon {
  transition: none !important;
  object-fit: contain;
}
.industry-solutions-card-box:hover .green-icon {
  filter: brightness(0) invert(1);
}
@media (max-width: 1200px) {
  .industry-solutions-card-box {
    max-width: 100%;
    padding: 1rem 2rem;
  }
  .industry-solutions-img-right img {
    height: auto;
    max-height: 500px;
  }
}
/* Benefits of Choosing BootsOnGround section */
.bog-benefits-section {
  color: #292951;
}
.bog-benefits-section .container {
  padding-top: 2rem;
  padding-bottom: 4rem;
}
.bog-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-left: 0;
  margin: 0;
}
.bog-benefits-list li {
  position: relative;
  padding-left: 2rem;
  font-size: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.6;
  color: #292951;
  max-width: 520px;
  font-weight: 500;
}
.bog-benefits-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 16px;
  height: 16px;
  background-color: #2c9c4a;
  border-radius: 50%;
}
.bog-benefits-img-wrapper img {
  object-position: center;
  width: 639px;
  height: 632px;
}
@media (max-width: 992px) {
  .bog-benefits-section .container {
    padding-top: 1rem;
  }
  .bog-benefits-img-wrapper img {
    min-height: 300px;
  }
  .bog-benefits-list li {
    width: 100%;
  }
}
.choosing-description {
  font-size: clamp(1rem, 3vw, 1.5rem);
  max-width: 91%;
}
@media (max-width: 991.9px) {
  .choosing-description {
    width: 100%;
  }
}
/* ai essentials section */
.ai-essential {
  background-image: url('../../../assets/images/blog/blog3/blog_ai_essential.webp');
  height: 774px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  /* padding: 0 50px; */
}
.ai-essential-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 50%;
  height: 100%;
  color: white;
  z-index: 2;
  position: relative;
  gap: 2rem;
  background-color: rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(14px);
  /* padding: 137px 101px 137px 69px; */
  padding: 3rem;
}
.ai-essential-content h2 {
  font-size: clamp(1.5rem, 3vw, 40px);
  font-weight: 600;
}
.ai-essential-content p {
  font-size: clamp(1rem, 2vw, 20px);
  color: white;
  font-weight: 400;
  /* text-align: justify; */
}
.ai-essential::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

@media (max-width: 768px) {
  /* automotive-essential */
  .ai-essential {
    flex-direction: column;
    padding: 0;
    width: 100%;
    min-height: fit-content;
  }
  .ai-essential-content {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    /* padding: 40px 20px; */
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5vw;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2;
  }
}
@media (min-width: 768.1px) and (max-width: 991.9px) {
  /* automotive-essential */
  .ai-essential-content {
    width: 100%;
    padding: 3em;
    gap: 1rem;
  }
}

@media (max-width: 1024px) {
  .ai-essential-content {
    padding: 3em;
  }
}

@media (max-width: 320px) {
  .hero-title {
    font-size: 2rem;
  }
  p {
    text-align: justify;
  }
}

.bog-logo img {
  margin-left: 1.5rem;
  margin-top: -70px;
}

.quote-icon-start {
  width: 7.5rem;
  height: auto;
  position: absolute;
  left: -3rem;
  top: -5rem;
}

.quote-icon-end {
  width: 5rem;
  height: auto;
  position: absolute;
  right: -4rem;
  bottom: 3.5rem;
}

@media screen and (max-width: 1199.98px) {
  .bog-logo img {
    margin-left: 0.5rem;
    margin-top: -2.5rem;
  }
  
  .quote-icon-start {
    left: -0.5rem;
    top: -3rem;
  }
  .quote-icon-end {
    right: 0.5rem;
    bottom: 2rem;
  }
}