* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background: linear-gradient(145deg, #f6f9fc 0%, #f0f4f9 100%);
      font-family: "Poppins", sans-serif;
      color: #1a2c3e;
    }

    /* FULL WIDTH CONTAINER — no max-width restrictions */
    .full-width-container {
      width: 100%;
      padding: 28px 32px 48px 32px;
      transition: all 0.2s ease;
    }

    /* Header Section — refined & spacious */
    .hero-section {
      margin-bottom: 32px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      padding-bottom: 24px;
    }

    .badge-tag {
      display: inline-block;
      background: rgba(92, 175, 46, 0.12);
      padding: 4px 12px;
      border-radius: 40px;
      font-size: 0.75rem;
      font-weight: 600;
      color: #2c6e1f;
      margin-bottom: 16px;
      letter-spacing: 0.3px;
    }

    .section-title {
      font-size: 2.4rem;
      font-weight: 800;
      background: linear-gradient(135deg, #1f5e2d, #2f7f3a, #0f4c2f);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      letter-spacing: -0.02em;
      margin-bottom: 12px;
    }

    .section-subtitle {
      font-size: 1rem;
      color: #4a5b6e;
      max-width: 600px;
      line-height: 1.4;
      font-weight: 400;
    }

    /* Filter & search bar — full width row with flex wrap */
    .filter-section {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      margin-bottom: 32px;
      background: #ffffffcc;
      backdrop-filter: blur(4px);
      padding: 6px 0;
    }

    .filter-group {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .filter-select {
      background: white;
      border: 1px solid #dee4ec;
      border-radius: 60px;
      padding: 10px 32px 10px 18px;
      font-size: 0.85rem;
      font-weight: 500;
      color: #1f2f3e;
      cursor: pointer;
      outline: none;
      transition: all 0.2s;
      box-shadow: 0 1px 2px rgba(0,0,0,0.02);
      appearance: none;
      background-image: url("data:image/svg+xml;utf8,<svg fill='%233b7e2c' height='14' viewBox='0 0 20 20' width='14' xmlns='http://www.w3.org/2000/svg'><path d='M5.5 7.5L10 12l4.5-4.5'/></svg>");
      background-repeat: no-repeat;
      background-position: right 16px center;
    }

    .filter-select:hover {
      border-color: #bbd4a5;
    }

    .search-wrapper {
      position: relative;
      width: 100%;
    }

    .search-box {
      width: 100%;
      padding: 10px 18px 10px 42px;
      border-radius: 60px;
      border: 0px solid #dee4ec;
      background: white;
      font-size: 0.85rem;
      transition: 0.2s;
      box-shadow: 0 1px 3px rgba(0,0,0,0.02);
    }

    .search-box:focus {
      border-color: #6fbf3c;
      outline: none;
      box-shadow: 0 0 0 3px rgba(111, 191, 60, 0.2);
    }

    .search-icon {
      position: absolute;
      left: 16px;
      top: 50%;
      transform: translateY(-50%);
      color: #8c9aaa;
      font-size: 1rem;
    }

    /* PROJECT GRID — fully responsive, dynamic columns */
    .projects-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 28px;
      margin-bottom: 48px;
    }

    /* Modern cards with sleek design */
    .project-card {
      background: #ffffff;
      border-radius: 28px;
      overflow: hidden;
      transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
      box-shadow: 0 12px 28px -8px rgba(0, 32, 12, 0.08);
      border: 1px solid rgba(110, 191, 68, 0.2);
      backdrop-filter: blur(0px);
      display: flex;
      flex-direction: column;
    }

    .project-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 36px -12px rgba(32, 77, 12, 0.2);
      border-color: #b1e082;
    }

    .project-image {
      width: 100%;
      height: 190px;
      object-fit: cover;
      transition: transform 0.4s ease;
      display: block;
    }

    .project-card:hover .project-image {
      transform: scale(1.02);
    }

    .project-content {
      padding: 20px 18px 22px;
      background: white;
    }

    .project-title {
      font-size: 1.25rem;
      font-weight: 800;
      color: #1a3527;
      margin-bottom: 6px;
      letter-spacing: -0.2px;
    }

    .project-meta {
      font-size: 0.8rem;
      font-weight: 500;
      color: #6f7d8c;
      margin-bottom: 18px;
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .capacity-badge {
      background: #eef6e8;
      padding: 4px 12px;
      border-radius: 40px;
      color: #2a7f2e;
      font-weight: 700;
      font-size: 0.7rem;
    }

    .btn-view {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: linear-gradient(105deg, #3c8d2f 0%, #5fbb3a 100%);
      color: white;
      border: none;
      padding: 9px 0;
      width: 100%;
      border-radius: 40px;
      font-weight: 700;
      font-size: 0.85rem;
      cursor: pointer;
      transition: all 0.2s;
      box-shadow: 0 3px 8px rgba(76, 175, 45, 0.25);
    }

    .btn-view i {
      font-size: 0.8rem;
    }

    .btn-view:hover {
      background: linear-gradient(105deg, #2f7322, #4ea52b);
      transform: scale(0.98);
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    /* Load more area */
    .load-more-wrap {
      display: flex;
      justify-content: center;
      margin: 8px 0 40px;
    }

    .btn-load {
      background: white;
      border: 1.5px solid #cde2bb;
      padding: 12px 32px;
      border-radius: 60px;
      font-weight: 700;
      font-size: 0.9rem;
      color: #2b6e2c;
      cursor: pointer;
      transition: 0.2s;
      box-shadow: 0 2px 6px rgba(0,0,0,0.02);
      backdrop-filter: blur(2px);
    }

    .btn-load:hover {
      background: #f5fef0;
      border-color: #86c45a;
      transform: translateY(-2px);
    }

    .btn-load:disabled {
      opacity: 0.6;
      cursor: default;
      transform: none;
    }

    /* CTA Banner - full width glam */
    .cta-banner-full {
      width: 100%;
      background: radial-gradient(circle at 10% 30%, #fef9e6, #e9f4e1);
      border-radius: 48px;
      padding: 28px 32px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      box-shadow: 0 12px 30px rgba(48, 108, 17, 0.12);
      border: 1px solid rgba(139, 207, 74, 0.5);
      margin-top: 12px;
    }

    .cta-text h3 {
      font-size: 1.5rem;
      font-weight: 800;
      color: #1f422b;
      margin-bottom: 6px;
    }

    .cta-text p {
      color: #4f6b5c;
      font-size: 0.9rem;
    }

    .btn-quote {
      background: linear-gradient(95deg, #1b6830, #3b9c28);
      border: none;
      padding: 12px 38px;
      border-radius: 60px;
      color: white;
      font-weight: 800;
      font-size: 1rem;
      display: flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      transition: 0.2s;
      box-shadow: 0 6px 14px rgba(44, 130, 29, 0.35);
    }

    .btn-quote:hover {
      transform: scale(1.02);
      background: linear-gradient(95deg, #125a26, #2d8a1c);
    }

    /* hidden card mechanism */
    .hidden-card {
      display: none;
    }

    .revealed {
      display: flex !important;
    }

    /* Empty state */
    .empty-state {
      grid-column: 1 / -1;
      text-align: center;
      padding: 60px 20px;
      background: #fff7e8;
      border-radius: 56px;
      color: #5b6e4a;
    }

    /* Responsive touch */
    @media (max-width: 680px) {
      .full-width-container {
        padding: 20px 18px 40px;
      }
      .section-title {
        font-size: 1.8rem;
      }
      .filter-section {
        flex-direction: column;
        align-items: stretch;
      }
      .filter-group {
        justify-content: space-between;
      }
      .filter-select {
        flex: 1;
      }
      .projects-grid {
        gap: 18px;
      }
      .cta-banner-full {
        flex-direction: column;
        text-align: center;
        padding: 24px;
      }
    }

    @media (max-width: 480px) {
      .project-title {
        font-size: 1.1rem;
      }
      .project-image {
        height: 150px;
      }
    }