 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --primary:#f8fafc;;
      --primary-dark: #f8fafc;
      --primary-light: #f8fafc;
      --secondary:rgb(64 146 205);
      --dark: #0f172a;
      --dark2: #1e293b;
      --gray: #64748b;
      --light: #f8fafc;
      --white: #ffffff;
      --border: #e2e8f0;
    }
    body {
      font-family: 'Inter', sans-serif;
      color: var(--dark);
      background: var(--white);
      line-height: 1.6;
    }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; height: auto; }
    
    /* Header */
    .header {
      background: var(--white);
      box-shadow: 0 2px 20px rgba(0,0,0,0.1);
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .nav-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
    }
    .logo img { height: 60px; width: auto; }
    .nav-menu {
      display: flex;
      list-style: none;
      gap: 2rem;
    }
    .nav-menu a {
      color: var(--dark);
      font-weight: 500;
      transition: color 0.3s ease;
      padding: 0.5rem 1rem;
      border-radius: 8px;
    }
    .nav-menu a:hover, .nav-menu a.active {
      color: var(--primary);
      background: rgb(64 146 205);
    }
    .cta-button {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: white;
      padding: 0.75rem 1.5rem;
      border-radius: 8px;
      font-weight: 600;
      transition: transform 0.3s ease;
    }
    .cta-button:hover {
      transform: translateY(-2px);
    }
    
    /* Container */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
    
    /* Page Header */
    .page-header {
      background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
      color: white;
      padding: 100px 0 60px;
      text-align: center;
      position: relative;
      overflow: hidden;
      margin-top: 30px;
    }
    .page-header::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
      opacity: 0.3;
    }
    .page-header .container { position: relative; z-index: 2; }
    .page-header h1 {
      font-size: 4rem;
      font-weight: 900;
      margin-bottom: 1rem;
      /* background: linear-gradient(135deg, #ffffff, var(--primary-light)); */
      background: linear-gradient(135deg, rgb(255 255 255 / var(--tw-text-opacity, 1)), rgb(255 255 255 / var(--tw-text-opacity, 1)));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .page-header p {
      font-size: 1.2rem;
      opacity: 0.8;
      max-width: 600px;
      margin: 0 auto;
    }
    
    /* Filter Tabs */
    .filter-section {
      padding: 60px 0 40px;
      background: var(--light);
    }
    .filter-tabs {
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .filter-tab {
      background: var(--white);
      border: 2px solid var(--border);
      color: var(--gray);
      padding: 0.75rem 1.5rem;
      border-radius: 25px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .filter-tab.active,
    .filter-tab:hover {
      background: var(--primary);
      border-color: var(--primary);
      color: white;
    }
    
    /* Projects Grid */
    .projects-section {
      padding: 40px 0 80px;
      background: var(--light);
    }
    .projects-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }
    .project-card {
      background: var(--white);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      transition: all 0.4s ease;
    }
    .project-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgb(64 146 205);
    }
    .project-image {
      height: 200px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 4rem;
      position: relative;
    }
    .project-category {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: rgb(64 146 205);
      backdrop-filter: blur(10px);
      color: white;
      padding: 0.5rem 1rem;
      border-radius: 15px;
      font-size: 0.8rem;
      font-weight: 600;
    }
    .project-content {
      padding: 2rem;
    }
    .project-content h3 {
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: var(--dark);
    }
    .project-content p {
      color: var(--gray);
      line-height: 1.6;
      margin-bottom: 1.5rem;
    }
    .project-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 1rem;
      border-top: 1px solid var(--border);
    }
    .project-status {
      padding: 0.25rem 0.75rem;
      border-radius: 15px;
      font-size: 0.8rem;
      font-weight: 600;
    }
    .status-completed {
      background: #d4edda;
      color: #155724;
    }
    .status-ongoing {
      background: #fff3cd;
      color: #856404;
    }
    .status-planning {
      background: #d1ecf1;
      color: #0c5460;
    }
    .project-date {
      color: var(--gray);
      font-size: 0.9rem;
    }
    
    /* Stats Section */
    .stats-section {
      padding: 80px 0;
      background: var(--white);
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }
    .stat-card {
      text-align: center;
      padding: 2rem;
      background: var(--light);
      border-radius: 15px;
      transition: transform 0.3s ease;
    }
    .stat-card:hover {
      transform: translateY(-5px);
    }
    .stat-number {
      font-size: 4rem;
      font-weight: 900;
      color: var(--primary);
      margin-bottom: 0.5rem;
    }
    .stat-label {
      color: var(--gray);
      font-weight: 500;
    }
    
    /* Footer */
    .footer {
      background: var(--dark);
      color: white;
      padding: 2rem 0;
      text-align: center;
    }
    .footer p {
      opacity: 0.7;
    }
    
    /* Responsive */
    @media (max-width: 768px) {
      .nav-menu {
        display: none;
      }
      .page-header h1 {
        font-size: 2rem;
      }
      .projects-grid {
        grid-template-columns: 1fr;
      }
      .filter-tabs {
        flex-direction: column;
        align-items: center;
      }
    }