/* COMMON */
.bcontainer {
  width: 80%;
  margin: auto;
}

/* ================= ABOUT SECTION ================= */

.about-hero {
  background: #f5f5f5;
  padding: 100px 0;
}

.about-hero .container {
  max-width: 900px;
}

.about-hero .tagline {
  font-size: 14px;
  color: #666;
}

.about-hero h1 {
  font-size: 52px;
  margin: 10px 0 20px;
}

.about-hero .highlight {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-hero .desc {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
}

/* ================= TEAM SECTION ================= */

.team-section {
  background: #003e84;
  color: #fff;
  padding: 80px 0;
  overflow: hidden;
}

.team-header {
  position: relative;
  margin-bottom: 40px;
}

.team-header .sub {
  color: #aaa;
  font-size: 14px;
}

.team-header h2 {
  font-size: 44px;
  margin: 10px 0;
}

.team-header .link {
  position: absolute;
  right: 0;
  top: 20px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

/* SLIDER */
.team-slider {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.team-slider::-webkit-scrollbar {
  display: none;
}

.team-card {
  min-width: 100%;
  display: flex;
  gap: 40px;
  align-items: center;
}

.team-img img {
  width: 320px;
  height: 400px;
  object-fit: cover;
}

.team-info h3 {
  font-size: 22px;
}

.team-info .role {
  color: #fff;
  margin: 5px 0 15px;
  font-size: 16px;
}

.team-info .quote {
  font-style: italic;
  line-height: 1.6;
  color: #ddd;
}

/* NAV BUTTONS */
.team-nav {
  text-align: center;
  margin-top: 20px;
}

.team-nav button {
  background: none;
  border: 1px solid #fff;
  color: #fff;
  padding: 8px 15px;
  margin: 0 5px;
  cursor: pointer;
}

/* RESPONSIVE */
@media(max-width: 768px) {
  .container {
    width: 90%;
  }

  .team-card {
    flex-direction: column;
  }

  .team-img img {
    width: 100%;
    height: auto;
  }

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

/* SECTION */
.leadership {
  background: #114a8d; /* blue */
  color: #fff;
  padding: 80px 0;
}

/* 80% WIDTH */
.leadership .container {
  width: 80%;
  margin: auto;
}

/* HEADER */
.leadership .sub {
  font-size: 14px;
  color: #cbd6e2;
  margin-bottom: 10px;
}

.leadership h2 {
  font-size: 42px;
  margin-bottom: 50px;
}

/* GRID */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px 30px;
}

/* CARD */
.team-card2 img {
  width: 90%;
  height: auto;
  margin-bottom: 15px;
}

.team-card2 h3 {
  font-size: 20px;
  margin: 10px 0 5px;
}

.team-card2 .role {
  font-size: 16px;
  color: #cbd6e2;
	font-weight: bold;
	margin-bottom: 10px;
}

.team-card2 .desc {
  font-size: 14px;
  font-style: italic;
  color: #dbe6f2;
  line-height: 1.6;
}

/* RESPONSIVE */
@media(max-width: 1100px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width: 800px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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