body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100vh;
  }
  
  .section-container {
    height: 100vh;
    width: 100vw;
    display: flex;
    position: relative;
  }
  
  .nav-buttons {
    display: flex;
    gap: 1rem;
    margin-left: auto;
    padding-right: 2rem;
  }
  
  .nav-btn {
    background: transparent;
    border: none;
    color: #64748b;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
  }
  
  .nav-btn.active {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.1);
  }
  
  .nav-btn:hover {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.1);
  }
  
  .sections-wrapper {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow-y: auto;
  }
  
  section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    margin-top: 80px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    display: none;
  }
  
  section.active {
    opacity: 1;
    visibility: visible;
    display: block;
  }
  
  /* Header/Navigation */
  header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  }
  
  nav {
    padding: 1rem;
  }
  
  .nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
  }
  
  .nav-content h1 {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(120deg, #2563eb, #4f46e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .social-links {
    display: flex;
    gap: 1.5rem;
  }
  
  .social-links a {
    color: #4b5563;
    transition: all 0.3s ease;
  }
  
  .social-links a:hover {
    color: #2563eb;
    transform: translateY(-2px);
  }
  
  /* Hero Section */
  #hero {
    padding: 2rem;
    background: linear-gradient(to bottom, #fff, #f8fafc);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 80px);
  }
  
  .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
  }
  
  .profile-image {
    flex-shrink: 0;
    width: 280px;
    height: 280px;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
      0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }
  
  .profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .profile-image:hover img {
    transform: scale(1.05);
  }
  
  .hero-text {
    flex: 1;
  }
  
  .hero-text h2 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(120deg, #1e40af, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
  }
  
  .hero-text p {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2.5rem;
    line-height: 1.8;
  }
  
  /* Projects Section */
  #projects {
    padding: 2rem;
    background: white;
    min-height: calc(100vh - 80px);
    overflow-y: auto;
  }
  
  #projects h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1e293b;
    font-weight: 800;
  }
  
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
  }
  
  /* Project Cards */
  .project-card {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
      0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 300px;
  }
  
  .project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
      0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }
  
  .project-image {
    position: relative;
    height: 100%;
    background: #f1f5f9;
  }
  
  .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }
  
  .project-card:hover .project-image img {
    transform: scale(1.05);
  }
  
  .project-buttons {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
    z-index: 20;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
  }
  
  .project-card:hover .project-buttons {
    opacity: 1;
    transform: translateY(0);
  }
  
  .project-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .project-btn.github {
    background-color: #1f2937;
    color: white;
  }
  
  .project-btn.demo {
    background-color: #2563eb;
    color: white;
  }
  
  .project-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  .project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0.7) 50%,
      rgba(0, 0, 0, 0.9) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: all 0.3s ease;
  }
  
  .project-card:hover .project-overlay {
    opacity: 1;
  }
  
  .project-overlay h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .project-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
  }
  
  /* Skills Section */
  #skills {
    padding: 2rem;
    background: linear-gradient(to bottom, #fff, #f8fafc);
    min-height: calc(100vh - 80px);
  }
  
  #skills h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1e293b;
    font-weight: 800;
  }
  
  .skills-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
  }
  
  .skill-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    font-weight: 600;
    color: #1e293b;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
      0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
  }
  
  .skill-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
      0 4px 6px -2px rgba(0, 0, 0, 0.05);
    background: linear-gradient(120deg, #3b82f6, #2563eb);
    color: white;
  }
  
  /* Contact Section */
  #contact {
    padding: 2rem;
    background: white;
    min-height: calc(100vh - 80px);
  }
  
  #contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1e293b;
    font-weight: 800;
  }
  
  .contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
      0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }
  
  .form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: #1e293b;
    font-weight: 600;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  }
  
  /* Button Styles */
  .btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
  }
  
  .btn.primary {
    background-color: #2563eb;
    color: white;
  }
  
  .btn.secondary {
    background-color: #e2e8f0;
    color: #1e293b;
  }
  
  .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    body {
      overflow-y: auto;
    }
  
    .nav-content {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
      padding: 1rem;
    }
  
    .nav-buttons {
      order: 2;
      margin: 0;
      padding: 0;
      flex-wrap: wrap;
      justify-content: center;
    }
  
    .social-links {
      order: 3;
    }
  
    .hero-content {
      flex-direction: column;
      text-align: center;
      gap: 2rem;
      padding: 1rem;
    }
  
    .hero-text h2 {
      font-size: 2rem;
    }
  
    .profile-image {
      width: 200px;
      height: 200px;
      margin: 0 auto;
    }
  
    .hero-buttons {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      align-items: center;
    }
  
    .projects-grid {
      grid-template-columns: 1fr;
      padding: 1rem;
    }
  
    .project-card {
      height: 250px;
    }
  
    .project-buttons {
      opacity: 1;
      transform: translateY(0);
    }
  
    .project-overlay {
      opacity: 1;
      padding: 1.5rem;
    }
  
    .project-overlay h3 {
      font-size: 1.25rem;
    }
  
    .project-overlay p {
      font-size: 0.9rem;
      margin-bottom: 2rem;
    }
  
    .contact-form {
      padding: 1.5rem;
      margin: 1rem;
    }
  
    .form-row {
      grid-template-columns: 1fr;
    }
  }
  
  @media (min-width: 769px) and (max-width: 1024px) {
    .projects-grid {
      grid-template-columns: repeat(2, 1fr);
      padding: 1.5rem;
    }
  
    .project-card {
      height: 280px;
    }
  
    .hero-text h2 {
      font-size: 2.5rem;
    }
  }