/* About Us Page Specific Styles */
@import url("base.css");

/* Enhanced About Section Styles */
.about-hero {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  padding: 120px 0 80px;
  margin-top: 70px;
}

.about-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.about-hero p {
  font-size: 1.2rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Team Section */
.team-section {
  padding: 80px 0;
  background: #f9fafb;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
}

.team-member h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.team-member .role {
  color: #2563eb;
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-member p {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Values Section */
.values-section {
  padding: 80px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-top: 4px solid #2563eb;
}

.value-card i {
  font-size: 3rem;
  color: #2563eb;
  margin-bottom: 1.5rem;
}

.value-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
}

.value-card p {
  color: #6b7280;
  line-height: 1.6;
}
.about-banner {
    padding-top: 95px;
    height: 350px;
    background: #0955ac;
    align-items: center;
    display: block;
    background-image: url(images/bim-image-02.jpg);
    position: relative;
}
.about-banner h1 {
    color: #ffffff;
    font-weight: 500;
}
.about-banner p {
    color: #fff;
}
nav.breadcrumb {
    color: #fff;
}
nav.breadcrumb a {
    color: #fff;
}
.page-header-content {
    display: inline-block;
    background: #00000087;
    padding: 20px;
    margin-top: 70px;
    font-weight: 300;
    border-radius: 7px;
}
section.values {
    margin-bottom: 50px;
}
@media (max-width: 768px) {
  .about-hero {
    padding: 100px 0 60px;
  }

  .about-hero h1 {
    font-size: 2.5rem;
  }

  .team-section,
  .values-section {
    padding: 60px 0;
  }
}
