
  

    .project-card {
      background: #fff;
      width: 350px;
      border-radius: 12px;
      box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
      overflow: hidden;
    }

    .project-header {
      position: relative;
    }

    .project-header img {
      width: 100%;
      height: auto;
      display: block;
    }

    .project-tag {
      position: absolute;
      top: 0;
      left: 0;
      background-color: #f58220;
      color: white;
      padding: 6px 12px;
      font-weight: bold;
      border-radius: 0 0 6px 0;
    }

    .project-starts {
      position: absolute;
      top: 0;
      right: 0;
      background-color: black;
      color: white;
      font-size: 14px;
      padding: 4px 8px;
      border-radius: 0 0 0 6px;
    }

    .project-details {
      padding: 16px;
    }

    .project-location {
      font-size: 16px;
      font-weight: bold;
      color: #333;
    }

    .project-location i {
      color: orange;
      margin-right: 5px;
    }

    .project-info {
      margin: 8px 0;
      font-size: 14px;
      color: #555;
    }

    .highlight {
      color: #f58220;
      font-weight: bold;
    }

    .buttons {
      display: flex;
      gap: 8px;
      margin: 12px 0;
    }

    .buttons a {
      text-decoration: none;
      padding: 8px 12px;
      border-radius: 6px;
      font-size: 14px;
      font-weight: bold;
    }

    .visit-btn {
      background-color: #f58220;
      color: white;
    }

    .download-btn {
      background-color: #eee;
      color: #333;
    }

    .send-details {
      border-top: 1px solid #ddd;
      margin-top: 12px;
      padding-top: 8px;
      font-size: 13px;
      color: #333;
    }
