
.banner {
  height: 400px;
  overflow: hidden;
}

.banner-img {
  object-fit: cover;
  height: 100%;
  filter: brightness(0.7);
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.feature-icon svg {
  color: #333;
}

.text-muted {
  color: #6c757d !important;
}
.text-justifys{
    text-align: justify;
}

.company-section {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.text-column {
  flex: 1;
  
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.content-block h3 {
  font-weight: 600;
}

.text-justify {
  text-align: justify;
  line-height: 1.6;
  padding: 0;
  width: 100%;
}

.image-column {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

/* Media Queries */
@media (max-width: 768px) {
  .company-section {
    flex-direction: column;
    gap: 40px;
  }

  .content-wrapper {
    gap: 40px;
    width: 100%;
  }

  .image-column {
    width: 100%;
  }

}

