/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1A2447 0%, #596AB5 100%);
    padding: 4rem 0;
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  
  .page-header::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
  }
  
  .page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  
  .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
  }
  
  .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .breadcrumb-item a:hover {
    color: #fff;
  }
  
  .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.6);
  }
  
  .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
  }
  
  /* About Section */
  .about-section {
    padding: 5rem 0;
    background: #fff;
  }
  
  .about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
    position: relative;
    padding-bottom: 1rem;
  }
  
  .about-content h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #ff7f50);
    border-radius: 2px;
  }
  
  .about-content .lead {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1.5rem;
  }
  
  .about-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.7;
  }
  
  .about-stats {
    display: flex;
    margin-top: 2rem;
  }
  
  .stat-item {
    margin-right: 2.5rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #ff6b6b, #ff7f50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
  }
  
  .stat-text {
    color: #666;
    font-size: 0.9rem;
  }
  
  .about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  }
  
  .experience-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff7f50 100%);
    color: #fff;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
  }
  
  .experience-badge span:first-child {
    font-size: 1.8rem;
    line-height: 1;
  }
  
  .experience-badge span:last-child {
    font-size: 1rem;
  }
  
  /* Mission Section */
  .mission-section {
    padding: 5rem 0;
    background: #f9f9f9;
  }
  
  .mission-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
  }
  
  .mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  }
  
  .mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 127, 80, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
  }
  
  .mission-icon i {
    font-size: 2rem;
    background: linear-gradient(90deg, #ff6b6b, #ff7f50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .mission-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
  }
  
  .mission-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
  }
  
  /* Team Section */
  .team-section {
    padding: 5rem 0;
    background: #fff;
  }
  
  .team-member {
    margin-bottom: 2rem;
    transition: all 0.3s ease;
  }
  
  .team-member:hover {
    transform: translateY(-10px);
  }
  
  .member-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
  }
  
  .member-image img {
    width: 100%;
    height: auto;
    transition: all 0.5s ease;
  }
  
  .team-member:hover .member-image img {
    transform: scale(1.05);
  }
  
  .member-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    transform: translateY(100%);
    transition: all 0.3s ease;
  }
  
  .team-member:hover .member-social {
    transform: translateY(0);
  }
  
  .member-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  .member-social a:hover {
    background: #ff6b6b;
    transform: translateY(-5px);
  }
  
  .member-info {
    text-align: center;
  }
  
  .member-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
  }
  
  .member-info p {
    color: #666;
    margin-bottom: 0;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 992px) {
    .about-stats {
      flex-wrap: wrap;
    }
  
    .stat-item {
      margin-right: 1.5rem;
      margin-bottom: 1rem;
    }
  
    .experience-badge {
      width: 80px;
      height: 80px;
    }
  
    .experience-badge span:first-child {
      font-size: 1.5rem;
    }
  
    .experience-badge span:last-child {
      font-size: 0.9rem;
    }
  }
  
  @media (max-width: 768px) {
    .page-header {
      padding: 3rem 0;
    }
  
    .page-header h1 {
      font-size: 2rem;
    }
  
    .about-content h2 {
      font-size: 2rem;
    }
  
    .about-image {
      margin-top: 2rem;
    }
  
    .mission-card {
      margin-bottom: 1.5rem;
    }
  }
  
  @media (max-width: 576px) {
    .about-stats {
      flex-direction: column;
    }
  
    .stat-item {
      margin-right: 0;
      margin-bottom: 1.5rem;
    }
  
    .experience-badge {
      bottom: 20px;
      left: 20px;
    }
  }
  
  