  :root {
    --bg: #0d0d0d;
    --accent: rgba(255, 255, 255, 0.25);
    --glass: rgba(255, 255, 255, 0.08);
    --blur: 20px;
    --text-light: #f5f5f7;
    --text-muted: #a1a1a6;
    --primary: #007aff; /* iOS Blue */
  }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', sans-serif;
    }

    body {
      background: var(--bg);
      color: var(--text-light);
      line-height: 1.6;
      overflow-x: hidden;
    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.5rem 5%;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      backdrop-filter: blur(var(--blur));
      background: var(--glass);
      z-index: 1000;
    }

    header h1 {
      font-size: 1.2rem;
      font-weight: 600;
    }

    nav a {
      margin-left: 1.5rem;
      color: var(--text-light);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    nav a:hover {
      color: var(--primary);
    }

    .hero {
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 0 10%;
      background: url('https://www.apple.com/v/home/ao/images/heroes/apple-vision-pro/hero_apple_vision_pro__e8407ehady6i_large.jpg') center/cover no-repeat;
    }

    .hero .glass-card {
      background: var(--glass);
      backdrop-filter: blur(var(--blur));
      border-radius: 20px;
      padding: 2rem 3rem;
      max-width: 600px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    }

    .hero h2 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    .section {
      padding: 6rem 10%;
    }

    .section h2 {
      font-size: 2rem;
      margin-bottom: 2rem;
    }

    .card {
      background: var(--glass);
      backdrop-filter: blur(var(--blur));
      border-radius: 20px;
      padding: 2rem;
      margin-bottom: 2rem;
      box-shadow: 0 8px 32px rgba(0,0,0,0.2);
      transition: transform 0.3s ease;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .projects, .blogs, .contact-info {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
    }
    a {
        color: #82aaff;
        transition: color 0.2s;
    }

    a:hover, a:focus {
        color: #b4dfff;
        text-decoration: underline;
    }
    footer {
    text-align: center;
    padding: 2rem;
    background: var(--glass);
    backdrop-filter: blur(var(--blur));
    margin-top: 3rem;
  }

  .material-icons.md-18 { font-size: 18px; }
.material-icons.md-24 { font-size: 24px; } /* Default */
.material-icons.md-36 { font-size: 36px; }
.material-icons.md-48 { font-size: 48px; }



