:root {
    --primary-color: #2207ec;
    --secondary-color: #00cecb;
    --dark-color: #2d3436;
    --light-color: #f5f6fa;
}
  
  body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  .navbar {
    background-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.9s ease;
    font-weight: 700;
}

.navbar.scrolled {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    padding: 5px 0;
    border-radius: 30px;
    margin-top: 8px;
}
  .about-header {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/images/service/aboutus.jpg');
      background-size: cover;
      background-position: center;
      color: white;
      padding: 200px 0 200px;
  }
  
  .about-mission {
      background-color: var(--light-color);
  }
  
  .team-member {
      text-align: center;
      margin-bottom: 30px;
      transition: all 0.3s ease;
  }
  
  .team-member:hover {
      transform: translateY(-10px);
  }
  .btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    padding: 5px 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 30px;
}

.btn-primary:hover {
    background-color: #c0392b;
    border-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 50px 30px rgb(255, 254, 254);
}
  .team-img {
      width: 200px;
      height: 200px;
      object-fit: cover;
      border-radius: 50%;
      border: 5px solid white;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      margin-bottom: 20px;
      transition: all 0.3s ease;
  }
  
  .team-member:hover .team-img {
      border-color: var(--secondary-color);
      transform: scale(1.05);
  }
  
  .social-links a {
      display: inline-block;
      width: 36px;
      height: 36px;
      background: var(--primary-color);
      color: white;
      border-radius: 50%;
      line-height: 36px;
      margin: 0 5px;
      transition: all 0.3s ease;
  }
  
  .social-links a:hover {
      background: var(--secondary-color);
      transform: translateY(-3px);
  }
  
  .stats-item {
      text-align: center;
      padding: 30px;
      border-radius: 10px;
      transition: all 0.3s ease;
  }
  
  .stats-item:hover {
      background-color: white;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      transform: translateY(-5px);
  }
  
  .stats-number {
      font-size: 2.5rem;
      font-weight: bold;
      color: var(--secondary-color);
  }
  footer {
    color: white;
    padding: 50px 0 20px;
}