*{
scroll-behavior: smooth;
}

.about-us-section {
  font-family: "Poppins", sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  gap: 20px;
}

.about-content {
  flex: 1;
  padding-right: 30px;
}

.about-heading {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: black;
  text-align: center;
}

.about-paragraph {
  font-size: 1rem;
  line-height: 1.6;
  color: black;
  margin-bottom: 30px;
  text-align: justify;
}

.about-button {
  display: inline-block;
  padding: 5px 10px;
  font-size: 1rem;
  font-weight: 500;
  color: black;
  background-color: transparent;
  border: 2px solid black;
  border-radius: 15px 0 15px 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
}

.about-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: black;
  transition: left 0.5s ease;
  z-index: -1;
}

.about-button:hover::before {
  left: 0;
}

.about-button:hover {
  color: #fff;
}

.about-image {
  flex: 1;
  max-width: 400px;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .about-us-section {
    flex-direction: column;
    text-align: center;
    padding: 40px 15px;
  }

  .about-content {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .about-heading {
    font-size: 2rem;
  }

  .about-image {
    max-width: 100%;
  }
}
