    :root{
      --bg: #0f1720;
      --accent: #ff6600;
      --muted: #6b7280;
      --card-bg: #fff;
      --site-padding: 4%;
      --container-max: 1200px;
    }

* {
  padding: 0;
  margin: 0;
  font-family: "Montserrat", system-ui;
  color: rgb(0, 0, 0);
}

body{
  background-image: url(/Photos/BG2.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background: #fff;
}

ul,li {
  list-style: none;
}
a{
  text-decoration: none;
}

    /* Container and grid */
    .projects-container {
      max-width: 1200px;
      margin: 14vh auto;
      padding: 4rem 1rem;
    }

    .projects-header {
      text-align: center;
      margin-bottom: 5rem;
    }

    .projects-header h1 {
      font-weight: 800;
      font-size: 2.8rem;
      margin-bottom: 0.3rem;
      color: #222;
    }

    .projects-header p {
      font-weight: 400;
      font-size: 1.1rem;
      color: #555;
      max-width: 700px;
      margin: auto;
    }

    /* Grid layout for project cards */
    .projects-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
      gap: 2rem;
    }

    .project-card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 6px 18px rgba(0,0,0,0.1);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease;
    }

    .project-card:hover {
      transform: translateY(-8px);
    }

    .project-image {
      width: 100%;
      height: 190px;
      object-fit: cover;
      border-bottom: 3px solid #ff6600;
    }

    .project-content {
      flex: 1;
      padding: 1.5rem 1.8rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .project-title {
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 0.1rem;
      color: #222;
    }

    .project-team{
      font-size: 1rem;
      font-weight: 500;
      margin-bottom: 0.8rem;
      color: #222;
      font-style: italic;
    }

    .project-description {
      font-size: 1rem;
      color: #555;
      flex-grow: 1;
      margin-bottom: 1.2rem;
      line-height: 1.5;
      text-align: justify;
    }

    .view-btn {
      align-self: flex-start;
      background-color: #ff6600;
      color: white;
      padding: 10px 18px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.95rem;
      transition: background-color 0.3s ease;
    }

    .view-btn:hover {
      background-color: #e65500;
    }

    /* Responsive tweaks */
    @media (max-width: 768px) {
      .projects-header h1 {
        font-size: 2rem;
      }
      .projects-header p {
        font-size: 1rem;
      }
    }


    