
.about-hero {
  padding: 90px 20px;
    height: 55vh;
  background: linear-gradient(rgba(0,128,128,.6), rgba(0,128,128,.6)),
              url('../images/about.jpg') center/cover no-repeat;
  text-align: center;
  color: #ffffff;
}

.about-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.about-hero p {
  font-size: 18px;
}


.about-overview {
  padding: 60px 20px;
  background: #f9f9f9;
}

.about-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
    
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

.about-card.split {
  display: flex;
  gap: 40px;
  align-items: center;
}

.about-card .text {
  flex: 2;
      color: #333;

}

.about-card .text p {
  text-align: justify;
  line-height: 1.7;
  font-size: 16px;
  color: #333;
}

.about-card .image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-card .image img {
  max-width: 180px;  
  width: 100%;
  height: auto;
  object-fit: contain;
}


@media (max-width: 900px){}



.mission-vision {
  padding: 60px 20px;
  background: #f0f7f7;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.box {
  background: #ffffff;
  padding: 30px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
    color: #000000
}

.box i {
  font-size: 36px;
  color: #008080;
  margin-bottom: 15px;
}

.divisions {
  padding: 60px 20px;
    background: #ffffff;
}

.divisions h2 {
  text-align: center;
  margin-bottom: 40px;
    color: #008080;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
      color: #008080;

    
}

.card {
  background: #f0f7f7;
  color: #000000;
  padding: 30px;
  text-align: center;
  border-radius: 12px;
}

.card i {
  font-size: 32px;
  margin-bottom: 15px;
          color: #008080;

}



@media (max-width: 900px) {
  .split {
    flex-direction: column;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-hero h1 {
    font-size: 32px;
  }
}
