/* Reset & base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 0;
}

    /* ---------- HEADER ---------- */
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 10%;
      background: white;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      position: sticky;
      top: 0;
      z-index: 999;
    }

    header a {
        text-decoration: none;
    }

    header h1 {
      color: #005a87;
      font-size: 1.6rem;
    }

    .pcmenu {
      display: flex;
      gap: 25px;
    }

    .pcmenu a {
      color: #005a87;
      text-transform: uppercase;
      font-weight: 600;
      font-size: 0.9rem;
    }

    .pcmenu a:hover {
      color: #007bbd;
    }

    .bars {
      display: none;
      cursor: pointer;
    }

    /* ---------- MOBILE MENU ---------- */
    #mobile-menu {
      display: none;
      flex-direction: column;
      background: #005a87;
    }

    #mobile-menu a {
      color: white;
      padding: 15px;
      border-bottom: 1px solid rgba(255,255,255,0.2);
    }

    #mobile-menu a:hover {
      background: #007bbd;
    }

/* HERO SECTION */
.about-hero {
  background: #f9f9f9;
  padding: 60px 0;
  background-image: url("https://i.ibb.co/LhsBWr0g/about.jpg");
  background-size: cover;
}
.about-hero h2 {
  color: #005a87;
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 20px;
}
.about-hero p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  text-align: center;
}

/* MISSION & VALUES */
.mission-values {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.mission, .values {
  flex: 1 1 300px;
}
.mission h3, .values h3 {
  color: #005a87;
  font-size: 1.6rem;
  margin-bottom: 15px;
}
.values ul {
  list-style: disc inside;
}
.values li {
  margin-bottom: 10px;
  font-size: 1rem;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 60px 0;
}

/* HEADINGS */
h2 {
  text-align: center;
  color: #005a87;
  font-size: 2rem;
  margin-bottom: 15px;
}
.subtitle {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #555;
}

/* --- CARD GRID --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
.card {
  background: #f8fbff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  transition: transform .2s ease-in-out;
}
.card:hover { transform: translateY(-5px); }
.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card-body {
  padding: 20px;
}
.card-body h3 {
  color: #005a87;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

/* --- STATS --- */
.stats {
  padding: 60px 10px;
  width: 90vw;
  align-items: center;
  justify-self: center;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 20px;
  text-align: center;
}
.stat-box {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}
.stat-box i {
  font-size: 2rem;
  color: #005a87;
  margin-bottom: 10px;
}
.stat-box h4 {
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: #444;
}
.stat-box p {
  font-size: 1.5rem;
  font-weight: bold;
  color: #005a87;
}

/* --- SPLIT SECTIONS --- */
.split-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
}
.split-item.reverse {
  flex-direction: row-reverse;
}
.split-text h3 {
  color: #005a87;
  font-size: 1.6rem;
  margin-bottom: 15px;
}
.split-text p {
  font-size: 1rem;
  color: #444;
}
.split-image img {
  width: 100%;
  max-width: 950px;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}


/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
  .pcmenu { 
    display: none; 
  }
  .bars { 
    display: block; 
    color: #005a87; 
    font-size: 28px; 
  }
  .about-hero h2 {
    font-size: 1.8rem;
  }
  .mission-values {
    flex-direction: column;
  }.split-item {
    flex-direction: column;
    text-align: center;
  }
  .split-item.reverse {
    flex-direction: column;
  }
  .split-image img {
    max-width: 100%;
  }
}
