body {
  background-color: #c5c5c5;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: white;
}

/* Navbar (same style as your other pages) */
.navbar {
        position: fixed;
        display: flex;
        align-items: center;
        z-index: 1000 !important;
        
        top: 0;
        width: 100%;
        height: 50px;

        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        background: #979797;
        color: white;
      }

.home-logo {
  font-size: 1rem; /* same as other pages */
  font-weight: 700;
  color: white;
  text-decoration: none;
  position: absolute;
  left: 10px;
}

.navbar-icons-flex {
  display: flex;
  gap: 20px;
}

.navbar-icons {
  text-decoration: none;
  color: white;
  font-weight: 500;
}

.navbar-icons:hover {
  text-decoration: underline;
}

/* Header box */
.headerbox-updates {
  position: relative;
  display: block;
  left: calc(50% - 225px);
  top: 60px;
  width: 450px;
  height: 100px;
  padding: 10px 20px;
  border-radius: 5px;
  text-align: center;
  background: #aaaaaa;
  color: white;
  box-shadow: 0 5px 5px rgba(15, 15, 15, 0.3);
}
  .headerbox-updates h2{
    padding-top: 10px;
    font-size: 1.6rem;
  }
  .headerbox-updates h4{
    margin-top: 15px;
    font-weight: 600;
  }
/* Project layout */
.projects-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 150px;
  padding-bottom: 80px;
}

/* Project cards */
.project-card {
  background: #aaaaaa;
  color: white;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(15, 15, 15, 0.4);
  width: 320px;
  padding: 20px;
  transition: transform 0.2s, background 0.3s;
}

.project-card:hover {
  transform: translateY(-5px);
  background: #9a9a9a;
}

.project-card h2 {
  margin-top: 0;
  color: #ffffff;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 5px;
  font-size: 20px;
}

.project-card p {
  margin: 8px 0;
  font-size: 15px;
  line-height: 1.4em;
}

.popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-box {
  background: white;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.search-input {
  width: 300px;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.close-btn {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}