.about-welcome-sec {
  padding: 50px 0px 0px;
  background-image: url("../../../../public/images/about-welcome-sec.png");
  background-position: bottom;
  background-size: contain;
  background-repeat: no-repeat;
}

.about-welcome-left h4 {
  margin-bottom: 26px;
  margin-top: 26px;
  font-size: 18px;
  font-weight: 500;
  color: var(--green-color);
}

.about-welcome-left h2 {
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 0;
}

.about-welcome-right {
  margin-top: 45px;
}

.about-welcome-cards img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.about-welcome-cards {
  width: 100%;
  max-width: 382px;
  height: 100%;
  max-height: 326px;
  position: relative;
  margin-top: 20px;
  z-index: 1;
}

.about-welcome-cards::before {
  content: "";
  position: absolute;
  z-index: 0;
  background: #00000040;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 20px;
}
/* Tablet screens (≤991px) */
@media (max-width: 991.98px) {
  .about-welcome-sec {
    padding: 40px 0 0;
    background-size: cover;
  }

  .about-welcome-left h2 {
    font-size: 36px;
    line-height: 1.3;
  }

  .about-welcome-left h4 {
    font-size: 16px;
  }

  .about-welcome-right {
    margin-top: 30px;
  }

  .about-welcome-cards {
    max-width: 300px;
    max-height: 260px;
  }
}

/* Mobile screens (≤767px) */
@media (max-width: 767.98px) {
  .about-welcome-sec {
    padding: 30px 15px 0;
    background-size: cover;
  }

  .about-welcome-left h2 {
    font-size: 28px;
    text-align: center;
  }

  .about-welcome-left h4 {
    font-size: 14px;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .about-welcome-right {
    margin-top: 25px;
    display: flex;
    justify-content: center;
  }

  .about-welcome-cards {
    max-width: 90%;
    max-height: 220px;
  }
}

/* Extra small devices (≤575px) */
@media (max-width: 575.98px) {
  .about-welcome-sec {
    padding: 25px 10px 0;
  }

  .about-welcome-left h2 {
    font-size: 22px;
  }

  .about-welcome-left h4 {
    font-size: 13px;
  }

  .about-welcome-cards {
    max-width: 100%;
    max-height: 200px;
  }
}

/* Very small devices (≤400px) */
@media (max-width: 400px) {
  .about-welcome-left h2 {
    font-size: 20px;
  }

  .about-welcome-left h4 {
    font-size: 12px;
  }

  .about-welcome-cards {
    max-height: 180px;
  }
}

