/* About Text Section CSS */
.about-text-section {
  padding: 60px 20px;
}

.about-container {
  margin: auto;
  text-align: center;
  max-width: 1280px;
}

.about-container h2 {
  font-size: 32px;
  color: #25388d;
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 1px;
}

.about-container p {
  font-size: 18px;
  line-height: 1.8;
  color: #000000;
  margin-bottom: 40px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.certificate-images {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.certificate-images img {
  max-width: 440px;
  width: 100%;
  height: 500px;
  border: 2px solid #ccc;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.certificate-images img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .about-container h2 {
    font-size: 22px;
  }

  .about-container p {
    font-size: 16px;
  }

  .certificate-images {
    flex-direction: column;
    align-items: center;
  }
}

/* about misoon and quality css start */
.about-section-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 50px 10%;
  gap: 40px;
}

.about-section-text {
  flex: 1;
  min-width: 300px;
  color: black;
}

.about-section-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: black;
}

.about-section-text p,
.about-section-text ul {
  font-size: 1rem;
  line-height: 1.6;
  color: black;
}

.about-section-text ul {
  list-style: none;
  padding-left: 0;
}

.about-section-text ul li {
  margin-bottom: 10px;
}

.about-section-image {
  flex: 1;
  min-width: 300px;
}

.about-section-image img {
  width: 100%;
  height: 480px;
}

/* Alternate direction for sections */
.about-section-container.reverse {
  flex-direction: row-reverse;
}

/* Responsive design */
@media (max-width: 768px) {
  .about-section-container,
  .about-section-container.reverse {
    flex-direction: column;
    padding: 30px 5%;
    text-align: center;
  }
}

/* mission qulaity css end */
