:root {
    --dark: #0F172A;
    --accent: #00D4FF;
    --gray: #1E293B;
    --font: 'Inter', sans-serif;
  }
  
  body {
    margin: 0;
    font-family: var(--font);
    background: var(--dark);
    color: #fff;
    min-height: 100vh;
  }
  
  /* Navbar */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--dark);
    padding: 1.2rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    border-radius: 0 0 1.5rem 1.5rem;
    box-shadow: 0 2px 16px #0004;
  }
  .logo {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-decoration: none;
    border-bottom: none;
  }
  .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s, border-bottom 0.2s;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
  }
  .nav-links a:hover {
    color: var(--accent);
    border-bottom: 2px solid var(--accent);
  }
  .hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
  }
  
  /* Hero Section */
  .hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 5rem 2rem 2rem 2rem;
    min-height: 80vh;
  }
  .hero-left {
    flex: 1 1 350px;
    max-width: 500px;
  }
  .hero-left h1 {
    font-size: 1.5rem;
    font-weight: 600;
  }
  .hero-left h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0.5rem 0;
  }
  .hero-left h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }
  .accent {
    color: var(--accent);
  }
  .hero-left p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
  }
  .socials {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
  }
  .socials a {
    color: #fff;
    font-size: 1.7rem;
    transition: color 0.2s;
  }
  .socials a:hover {
    color: var(--accent);
  }
  .btn-glow {
    display: inline-block;
    padding: 0.8rem 2.2rem;
    background: var(--accent);
    color: var(--dark);
    font-weight: 700;
    border-radius: 999px;
    box-shadow: 0 0 16px 2px #00D4FF99, 0 0 32px 8px #00D4FF33;
    text-decoration: none;
    transition: box-shadow 0.2s, background 0.2s;
  }
  .btn-glow:hover {
    background: #fff;
    color: var(--accent);
    box-shadow: 0 0 32px 8px #00D4FF99;
  }
  
  /* Hero Right (Hexagon Glow) */
  .hero-right {
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .hexagon-glow {
    background: radial-gradient(circle at 50% 50%, #00d4ff44 0%, #0F172A 70%);
    border-radius: 2rem;
    box-shadow: 0 0 40px 10px #00D4FF55;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .profile-img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 2rem;
    clip-path: polygon(25% 6.7%, 75% 6.7%, 100% 50%, 75% 93.3%, 25% 93.3%, 0% 50%);
    box-shadow: 0 0 32px 8px #00D4FF99;
  }
  
  /* Portfolio Section */
  .portfolio {
    padding: 4rem 2rem 2rem 2rem;
    background: var(--dark);
  }
  .portfolio h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
  }
  .portfolio-headings {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .coming-soon {
    color: #94a3b8;
  }
  .portfolio-content {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
  }
  .portfolio-grid {
    flex: 2 1 400px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
  }
  .portfolio-item {
    background: var(--gray);
    border-radius: 1.2rem;
    box-shadow: 0 2px 16px #00D4FF22;
    overflow: hidden;
    transition: transform 0.2s;
    cursor: pointer;
  }
  .portfolio-item:hover {
    transform: scale(1.04);
    box-shadow: 0 4px 32px #00D4FF55;
  }
  .portfolio-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
  }
  .portfolio-item .caption {
    padding: 0.7rem 1rem;
    text-align: center;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
  }
  .coming-soon-box {
    flex: 1 1 220px;
    background: var(--gray);
    border-radius: 1.2rem;
    box-shadow: 0 2px 16px #00D4FF22;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 1.3rem;
    font-weight: 600;
    min-height: 220px;
    margin-top: 1.5rem;
  }
  
  /* Image Zoom Modal */
  .zoom-modal {
    display: none;
    position: fixed;
    z-index: 200;
    left: 0; top: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.85);
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .zoom-modal.open {
    display: flex;
  }
  .zoom-modal-content {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 1.2rem;
    box-shadow: 0 0 32px #00D4FF99;
    margin-bottom: 1rem;
    cursor: grab;
  }
  .close {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 800;
    position: absolute;
    top: 2rem;
    right: 3rem;
    cursor: pointer;
    z-index: 201;
  }
  .modal-desc {
    color: #cbd5e1;
    margin-top: 1rem;
    font-size: 1.1rem;
    text-align: center;
    max-width: 90vw;
    line-height: 1.5;
  }
  
  /* Contact Section */
  .contact-section {
    background: var(--gray);
    margin: 3rem auto 0 auto;
    padding: 2.5rem 2rem 2rem 2rem;
    border-radius: 1.5rem;
    max-width: 600px;
    box-shadow: 0 2px 16px #00D4FF22;
  }
  .contact-section h2 {
    color: var(--accent);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
  }
  .contact-info p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .contact-info a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
  }
  .contact-info a:hover {
    color: #fff;
    text-decoration: underline;
  }
  .contact-links {
    margin-top: 1.5rem;
  }
  .contact-links h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
  }
  .contact-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .contact-links li {
    margin: 0;
  }
  .contact-links a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
  }
  .contact-links a:hover {
    color: #fff;
    text-decoration: underline;
  }
  .bio-summary {
    font-weight: 600;
  }
  .mobile-only-heading {
    display: none;
  }
  .desktop-only-heading {
    display: block;
  }
  @media (max-width: 600px) {
    .desktop-only-heading {
      display: none;
    }
    .mobile-only-heading {
      display: block;
      margin-top: 2rem;
      margin-bottom: 0.5rem;
    }
    #frontend-heading {
      margin: 0;
      text-align: left;
    }
  }
  
  /* Responsive */
  @media (max-width: 900px) {
    .hero {
      flex-direction: column;
      padding-top: 4rem;
    }
    .portfolio-content {
      flex-direction: column;
    }
    .portfolio-headings {
      flex-direction: column;
      align-items: flex-start;
    }
  }
  @media (max-width: 600px) {
    .navbar {
      padding: 1.2rem 0.5rem 1.2rem 0.3rem;
      min-height: 64px;
      height: 64px;
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      z-index: 300;
      border-radius: 0 0 1.5rem 1.5rem;
      box-shadow: 0 2px 16px #0004;
      display: flex;
      align-items: center;
      justify-content: space-between;
      overflow: visible;
      flex-wrap: nowrap;
    }
    .logo {
      margin: 0;
      padding: 0;
    }
    .hamburger {
      min-width: 44px;
      min-height: 44px;
      padding: 2px;
      box-sizing: content-box;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0;
      margin-right: -2px;
    }
    body {
      padding-top: 72px;
    }
    .nav-links {
      display: none;
      flex-direction: column;
      background: var(--dark);
      position: absolute;
      top: 100%;
      left: 0;
      width: 100vw;
      border-radius: 0 0 1.5rem 1.5rem;
      box-shadow: 0 8px 24px #0006;
      z-index: 200;
      padding: 1.2rem 0;
      align-items: flex-start;
      gap: 1.2rem;
    }
    .nav-links.open {
      display: flex;
    }
    .nav-links a {
      width: 100%;
      padding: 0.7rem 2rem;
      font-size: 1.2rem;
      border-bottom: 2px solid transparent;
      transition: color 0.2s, border-bottom 0.2s, background 0.2s;
    }
    .nav-links a:hover {
      background: var(--gray);
      color: var(--accent);
      border-bottom: 2px solid var(--accent);
    }
    .hero-left, .hero-right {
      max-width: 100%;
    }
    .portfolio-headings {
      flex-direction: column;
      align-items: flex-start;
    }
    .portfolio-content {
      flex-direction: column;
    }
    #frontend-heading {
      order: 2;
      margin-top: 2rem;
      margin-bottom: 0.5rem;
      align-self: flex-start;
      width: 100%;
      text-align: left;
    }
    .coming-soon-box {
      order: 3;
    }
    .portfolio-grid {
      grid-template-columns: 1fr;
    }
    .portfolio-item img {
      width: 100%;
      height: auto;
      min-height: 180px;
      object-fit: cover;
      display: block;
      background: #222;
    }
    .modal-desc {
      font-size: 1rem;
      padding: 0 0.5rem;
    }
    .mobile-only-heading {
      display: block;
      margin-top: 2rem;
      margin-bottom: 0.5rem;
    }
    #frontend-heading {
      margin: 0;
      text-align: left;
    }
  }
  @media (max-width: 700px) {
    .contact-section {
      padding: 1.2rem 0.7rem 1.5rem 0.7rem;
      max-width: 98vw;
    }
    .contact-links ul {
      flex-direction: column;
      gap: 0.5rem;
    }
  }
  @media (max-width: 768px) {
    .navbar {
      padding: 0.5rem 0.2rem;
    }
    .hamburger {
      display: block;
      font-size: 1.6rem;
      cursor: pointer;
      color: #ffffff;
      margin-right: 0;
      min-width: 44px;
      min-height: 44px;
      padding: 2px;
      box-sizing: content-box;
      align-items: center;
      justify-content: center;
    }
  }