:root {
    --primary: #ffbb00;
    --dark: #333;
    --light: #f9f9f9;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    color: var(--dark);
    background: var(--light);
    line-height: 1.6;
  }

  .navbar {
    position: fixed;
    width: 100%;
    background: #000;
    color: #fff;
    padding: 1rem 2rem;
    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;
  }
  
  
  .hero {
    background: url('https://images.unsplash.com/photo-1581093588401-1d59f94f55c8') center/cover no-repeat;
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    color: white;
    text-align: center;
    width: 100%;
  }
  
  .overlay h1 {
    font-size: 2rem;
    animation: fadeInDown 1.5s ease-in-out;
  }
  
  .section {
    padding: 3rem 1rem;
    text-align: center;
  }
  
  .container {
    max-width: 1100px;
    margin: auto;
  }
  
  .cards, .team-grid, .value-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .cards {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .card {
    background: white;
    padding: 1rem;
    border-left: 5px solid var(--primary);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-5px);
  }
  
  .card i {
    margin-right: 0.5rem;
    color: var(--primary);
  }
  
  .timeline-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .timeline-item {
    background: white;
    padding: 1rem;
    border-left: 3px solid var(--primary);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: background 0.3s;
  }
  
  .timeline-item:hover {
    background: #fff4cc;
  }
  
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .member {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
  }
  
  .member:hover {
    transform: scale(1.05);
  }
  
  .member img {
    width: 30rem;
    height: 30rem;
    border-radius: 50%;
    margin-bottom: 1rem;
  }
  
  .value-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .value {
    background: var(--primary);
    color: white;
    padding: 1.5rem;
    border-radius: 6px;
    transition: transform 0.3s;
  }
  
  .value:hover {
    transform: scale(1.05);
  }
  
  .value i {
    margin-right: 0.5rem;
  }
  

.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;
}

  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
    @media (max-width: 768px) {
      .overlay h1 {
        font-size: 1.5rem;
      }
      .member{
        display: flex;
        flex-direction: column;
      }
      .member img{
        width: 10rem;
        height: 10rem;
        border-radius: 50%;
        margin-bottom: 1rem;
      }
    }
  

    @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;
      }
    }
