main {
  width: 100%;
  height: auto;
}

/* Hero Banner */
.hero-section {
  position: relative;
  width: 100%;
  height: 70vh;
  background: url("../../images/bg-about.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

/* Dark overlay for readability */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 44, 72, 0.65);
  z-index: 1;
}

/* Hero text */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 2rem;
}

.line {
  margin: 5rem auto;
  width: 40%;
  border: 1px solid white;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Scroll animation shared */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.9s ease-out;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* About Us */
.main-content {
  width: 80%;
  max-width: 900px;
  margin: 3rem auto;
  line-height: 1.8;
  text-align: justify;
  text-justify: inter-word;
}

.main-content h1 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2rem;
  color: #222;
}

.main-content p {
  font-size: 1.2rem;
}

/* Mission & Vision Section */
.mission-vision {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  width: 80%;
  max-width: 1000px;
  margin: 3rem auto;
}

.mission-vision .box {
  flex: 1;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-vision .box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.mission-vision h2 {
  margin-bottom: 1rem;
  font-size: 1.6rem;
  color: #222;
}

.mission-vision p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

/* Responsive (stack on smaller screens) */
@media (max-width: 768px) {
  .mission-vision {
    flex-direction: column;
  }
}


.meet-our-team {
    width: 100%;
    max-width: 1500px;
    margin: 3rem auto;
}

.team-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.team-member {
    width: 40%;
    height: 100%;
    text-align: center;
}

.team-member img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.team-member h3 {
    margin-top: 1rem;
    font-size: 1.2rem;
    color: #222;
}

.team-member p {
    font-size: 1rem;
    color: #555;
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
    .team-member {
        width: 100%;
    }
}
