/* Container for About Us Section */
.bg-about {
  /* background: url("../images/bg/bg-repeat.png") no-repeat; */
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.about-us {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  background-color: #343047;
  margin: 40px auto;
  max-width: 1200px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* SVG Background */
.about-us-svg {
  width: 100%;
  height: 80px; /* Reduced height for a sleeker look */
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M0,6V0h1000v100L0,6z" fill="%23343047"/></svg>')
    no-repeat;
  background-size: cover;
  transform: scaleX(-1); /* Flips the SVG horizontally */
  margin-bottom: -5px; /* Adjust overlap with the above section */
}

/* Image and Content Containers */
.about-img-container,
.about-content {
  flex: 1 1 45%;
  padding: 20px;
  box-sizing: border-box;
}

/* Image Container */
.about-img-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Image Styling */
.success-img {
  width: 100%;
  max-width: 350px; /* Adjusted max width for a better balance */
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Content Styling */
.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
}

.about-heading {
  margin-bottom: 20px;
  font-family: "Poppins", Sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.about-subheading {
  margin-bottom: 20px;
  font-family: "Poppins", Sans-serif;
  font-size: 1.125rem;
  color: #9eefff;
}

.about-content p {
  font-family: "Poppins", Sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #d1d1d1;
}

/* Icon Styling */
.icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #2a9d8f, #264653);
  border-radius: 50%;
  margin: auto;
}

.feature-icon {
  width: 80px;
  height: 40px;

  /* filter: brightness(0) invert(1);  */
}

.white-icon {
  filter: brightness(0) invert(1);
  width: 40px;
  height: 40px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .about-us {
    flex-direction: column;
    padding: 20px 10px;
  }

  .about-img-container,
  .about-content {
    flex: 1 1 100%;
    padding: 10px 0;
  }

  .about-heading {
    font-size: 2rem;
  }

  .about-subheading {
    font-size: 1rem;
  }

  .success-img {
    max-width: 300px;
  }
}
