.about-heading {
  text-align: center;
  padding: 80px 20px 40px;
}

.about-heading h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #0b3c5d;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.about-heading h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #f7931e, #d97706);
  margin: 14px auto 0;
  border-radius: 2px;
}

.about-heading p {
  font-size: 17px;
  font-weight: 500;
  color: #555;
  margin-top: 16px;
  letter-spacing: 0.6px;
}

.about-section {
  padding: 80px 40px;
  background: #ffffff;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text h2 {
  font-size: 32px;
  color: #0b3c5d;
  margin-bottom: 18px;
}

.about-text p {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 14px;
}

.about-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
  }
}

.vision-mission {
  padding: 70px 40px;
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.vm-box {
  background: linear-gradient(135deg, #0b3c5d, #144e75);
  color: #ffffff;
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.vm-box h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.vm-box p {
  line-height: 1.6;
  opacity: 0.95;
}

