 /* Hero Section */
  .video-hero {
    position: relative;
    height: 50vh;
    overflow: hidden;
  }
  
  .background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 20px;
  }
  
  .overlay h1 {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  
  .overlay p {
    font-size: 1.2rem;
  }
  
  /* Filter Section */
  .filter-section {
    text-align: center;
    padding: 20px 10px;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  
  .filter-btn {
    margin: 5px;
    padding: 10px 18px;
    border: none;
    background: #eee;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s ease;
  }
  
  .filter-btn.active,
  .filter-btn:hover {
    background-color: #2b2f83;
    color: white;
  }
  
  /* Projects Section */
  .projects-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    padding: 40px 20px;
  }
  
  .project-card {
    width: 300px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    position: relative;
  }
  
  .project-card:hover {
    transform: translateY(-10px);
  }
  
  .project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .project-card h3 {
    margin: 15px;
    font-size: 1.4rem;
  }
  
  .project-card p {
    margin: 0 15px 20px 15px;
    color: #555;
  }
  
  /* Status Tags */
  .tag {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    border-radius: 4px;
    color: white;
    font-size: 0.8rem;
    text-transform: uppercase;
  }
  
  .ongoing {
    background: orange;
  }
  
  .completed {
    background: green;
  }
  
  .coming-soon {
    background: #555;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .overlay h1 {
      font-size: 2rem;
    }
  
    .projects-container {
      flex-direction: column;
      align-items: center;
    }
  }


  .view-details-btn {

    position: relative;
    left: 180px ;
    bottom: 10px;
    padding: 8px 14px;
    background-color: #2563eb;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }
  
  .project-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }
  
  .overlay-content {
    background: white;
    width: 90%;
    max-width: 700px;
    padding: 30px;
    border-radius: 12px;
    position: relative;
  }
  
  .overlay-images {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .overlay-images img {
    width: 48%;
    border-radius: 8px;
    object-fit: cover;
  }
  
  .close-btn {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 24px;
    cursor: pointer;
  }

