/* ===== Projects Page Styles ===== */
.projects-section {
    padding: 80px 10%;
    background: #f8f9fc;
    text-align: center;
  }
  
.hero {
    background: url('images/WhatsApp Image 2025-02-20 at 22.07.15_11a3ebdf.jpg') center/cover fixed;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(255, 255, 255);
    text-align: center;
    position: relative;
}
  .projects-section h2 {
    font-size: 36px;
    color: #147ED4;
    margin-bottom: 40px;
  }
  
  /* ==== Table Styling ==== */
  .project-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 60px;
    overflow-x: auto;
  }
  
  .project-table th,
  .project-table td {
    border: 1px solid #ddd;
    padding: 12px 16px;
    text-align: center;
    font-size: 16px;
  }
  
  .project-table th {
    background-color: #147ED4;
    color: white;
  }
  
  .project-table tbody tr:nth-child(even) {
    background-color: #f2f2f2;
  }
  
  .project-table tbody tr:hover {
    background-color: #e9f4ff;
    transition: 0.3s;
  }
  
  /* ===== Project Gallery Cards ===== */
  .project-gallery {
    padding: 80px 10%;
    background: #fff;
    text-align: center;
  }
  
  .project-gallery h2 {
    font-size: 36px;
    color: #147ED4;
    margin-bottom: 40px;
  }
  
  .gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  .gallery-item {
    width: 250px;
    background: #f4f4f4;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease-in-out;
    text-align: center;
  }
  
  .gallery-item:hover {
    transform: scale(1.05);
  }
  
  .gallery-item img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
  }
  
  .gallery-item h3 {
    font-size: 18px;
    color: #147ED4;
    margin-bottom: 5px;
  }
  
  .gallery-item p {
    font-size: 14px;
    color: #666;
  }
  
  /* ===== Lightbox ===== */
  .lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    background-color: rgba(0,0,0,0.85);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
  }
  
  .lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(0,0,0,0.5);
    transition: transform 0.3s;
  }
  
  .lightbox:hover img {
    transform: scale(1.03);
  }
  
  /* ===== Responsive Design ===== */
  @media (max-width: 1024px) {
    .gallery-item {
      width: 300px;
    }
  }
  
  @media (max-width: 768px) {
    .projects-section,
    .project-gallery {
      padding: 60px 5%;
    }
  
    .project-table th,
    .project-table td {
      font-size: 14px;
      padding: 10px;
    }
  
    .gallery-item {
      width: 100%;
      max-width: 90%;
    }
  
    .project-gallery h2,
    .projects-section h2 {
      font-size: 28px;
    }
  
    .lightbox img {
      max-width: 95%;
      max-height: 80%;
    }
  }
  
  @media (max-width: 480px) {
    .project-table th,
    .project-table td {
      font-size: 13px;
      padding: 8px;
    }
  
    .gallery-item h3 {
      font-size: 16px;
    }
  
    .gallery-item p {
      font-size: 12px;
    }
  }
  
  .project-details {
    background: #f4f4f4;
    padding: 80px 10%;
    text-align: left;
  }
  
  .project-details h2 {
    font-size: 32px;
    color: #147ED4;
    margin-bottom: 40px;
    text-align: center;
  }
  
  .project-box {
    background: white;
    padding: 25px;
    margin-bottom: 30px;
    border-left: 5px solid #fdb912;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
  }
  
  .project-box h3 {
    color: #147ED4;
    margin-bottom: 10px;
  }
  
  .project-box p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .project-details {
      padding: 50px 5%;
    }
  
    .project-box p {
      font-size: 14px;
    }
  
    .project-details h2 {
      font-size: 26px;
    }
  }
  