/* 
  Basic Reset & Global Styles
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html,
  body {
    font-family: 'Inter', sans-serif;
    background-color: #0f0f0f;
    color: #fff;
    scroll-behavior: smooth;
  }
  
  img {
    display: block;
    max-width: 100%;
    height: auto;
  }
  
  /* 
    Utility & Layout
  */
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .section {
    padding: 4rem 0;
    position: relative;
    z-index: 1;
  }
  
  /* 
    Navigation 
  */
  .header {
    position: fixed;
    width: 100%;
    background-color: #0f0f0f;
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
  }
  
  .nav__logo {
    font-size: 1.5rem;
    font-weight: 700;
  }
  
  .nav__menu {
    display: flex;
    list-style: none;
    gap: 2rem;
  }
  
  .nav__menu li a {
    color: #aaa;
    transition: color 0.3s;
  }
  
  .nav__menu li a:hover,
  .nav__menu li a.active {
    color: #fff;
  }
  
  /* Mobile Nav Toggle */
  .nav__toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
  }
  
  .nav__toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: transform 0.3s;
  }
  
  /* 
    Hero (Home) 
  */
  .hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding-top: 70px; /* offset for fixed nav */
    background: #121212;
    text-align: center;
  }
  
  .hero__content {
    max-width: 700px;
  }
  
  .hero__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  
  .hero__subtitle {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #ccc;
  }
  
  .hero__description {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #aaa;
  }
  
  .hero__buttons .btn {
    margin-right: 1rem;
  }
  
  .hero__stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .stat h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    color: #fff;
  }
  
  .stat p {
    font-size: 0.9rem;
    color: #aaa;
  }
  
  /* 
    Buttons 
  */
  .btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .btn--primary {
    background: #007bff;
    color: #fff;
  }
  
  .btn--primary:hover {
    background: #0056b3;
  }
  
  .btn--outline {
    border: 2px solid #007bff;
    color: #007bff;
    background: transparent;
  }
  
  .btn--outline:hover {
    background: #007bff;
    color: #fff;
  }
  
  /* 
    About 
  */
  .about__content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    align-items: center;
  }
  
  .about__image img {
    border-radius: 8px;
  }
  
  .about__text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .about__text p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #bbb;
  }
  
  .tech-stack {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  /* 
    Badges 
  */
  .badge {
    background: #1e1e1e;
    color: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    white-space: nowrap;
  }
  
  /* 
    Experience 
  */
  .experience h2 {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .experience__wrapper {
    display: grid;
    gap: 2rem;
  }
  
  .experience__item {
    background: #1e1e1e;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .experience__item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  
  .experience__company {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 1rem;
  }
  
  .experience__desc {
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  
  /* 
    Footer 
  */
  .footer {
    background: #0f0f0f;
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .footer p {
    color: #777;
    font-size: 0.9rem;
  }
  
  /* 
    Responsive 
  */
  @media screen and (max-width: 768px) {
    .nav__menu {
      position: fixed;
      top: 70px;
      right: -100%;
      background: #0f0f0f;
      flex-direction: column;
      width: 200px;
      transition: right 0.3s ease;
      height: 100vh;
      padding-top: 2rem;
    }
  
    .nav__menu li {
      margin-bottom: 1rem;
      text-align: center;
    }
  
    .nav__menu--active {
      right: 0;
    }
  
    .nav__toggle {
      display: flex;
    }
  
    .about__content {
      grid-template-columns: 1fr;
    }
  
    .hero__stats {
      flex-direction: column;
      gap: 1rem;
    }
  }
  