* {
    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;
    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;
  }
  .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;
  }
  .projects-section {
    padding: 2rem;
    text-align: center;
    background: #555;
  }

  .projects-section h2{
    color: #ffbb00;
     margin-top: 2rem;
  }
  
  .projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .project-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.4s ease;
    position: relative;
    padding-bottom: 1rem;
  }
  
  .project-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
  
  .project-card h3 {
    margin: 0.8rem 0 0.5rem;
    color: #333;
  }
  
  .project-card i {
    font-size: 2rem;
    margin-top: 1rem;
    color: #ffbb00;
  }
  
  .project-card p {
    padding: 0 1rem;
    font-size: 0.95rem;
    color: #555;
  }
  
  .badge {
    background-color: #ffbb00;
    color: #333;
    display: inline-block;
    padding: 0.4rem 0.7rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    margin-top: 0.7rem;
  }
  
  .progress-bar {
    background: #ddd;
    border-radius: 10px;
    width: 80%;
    height: 10px;
    margin: 0.7rem auto 0;
    overflow: hidden;
  }
  
  .progress {
    background: #ffbb00;
    height: 100%;
    border-radius: 10px;
  }
  
  .blink {
    color: #ff0000;
    animation: blink 1s infinite;
    font-size: 0.9rem;
    display: inline-block;
    margin-top: 0.7rem;
    font-weight: bold;
  }
  
  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }
  

.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;
  }
}
