* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    background: #f9f9f9;
    color: #333;
 
  }
  
  
  .navbar {
    position: fixed;
    width: 100%;
    background: #000;
    color: #fff;
    padding: 1rem 2rem;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
  }
  
  .navbar a {
    color: white;
    margin-left: 1.2rem;
    text-decoration: none;
    font-weight: 500;
  }
  
  nav a.active,
  nav a:hover {
    color: #ffbb00;
  }
  
  .menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
  }

  header {
    text-align: center;
    margin-bottom: 2rem;
   
  }
  
  header h1 {
    color: #ffbb00;
    font-size: 2.5rem;
    padding-top: 3rem;
  }
  
  header p {
    font-size: 1.2rem;
    color: #666;
  }
  
  .team-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
  }
  
  .team-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
  }

  .team-card p{
    background: pink;
    
  }
  
  .team-card:hover {
    transform: translateY(-10px);
  }
  
  .team-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffbb00;
    margin-bottom: 1rem;
  }
  
  .team-card h2 {
    margin: 0.5rem 0;
    color: #333;
  }
  
  .team-card p {
    color: #777;
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
  
  .btn {
    background: #ffbb00;
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-weight: bold;
    transition: background 0.3s ease;
  }
  
  .btn:hover {
    background: #e0a800;
  }
  

.footer-links{
  background: #8a7c7c;
  padding-bottom: 1rem;
}

.footer-links h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.footer-links ul li{
  text-decoration: none;
}

.footer-links a{
    color: blue;
}

.footer-links a:hover {
    color: #ffbb00;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}

.alpha{
    text-decoration: none;
    background: aqua;
    padding: 5px 12px;
    border-radius: 10px;
}

  /* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  #nav-links {
    display: none;
    flex-direction: column;
    background: #000;
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    padding: 1rem;
  }
  #nav-links.show {
    display: flex;
  }
}
