    /* Import Fonts */
    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;500&display=swap');

    /* CSS Variables */
    :root {
      --primary-color: #6366f1;
      --secondary-color: #8b5cf6;
      --accent-color: #06b6d4;
      --text-primary: #f8fafc;
      --text-secondary: #cbd5e1;
      --text-muted: #64748b;
      --bg-primary: #0f172a;
      --bg-secondary: #1e293b;
      --bg-tertiary: #334155;
      --border-color: #475569;
      --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
      --gradient-secondary: linear-gradient(135deg, var(--accent-color), var(--primary-color));
      --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
      --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
      --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
      --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    }

    /* Reset and Base Styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: var(--bg-primary);
      color: var(--text-primary);
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* Background Elements */
    .bg-elements {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: -1;
    }

    .floating-shape {
      position: absolute;
      border-radius: 50%;
      background: var(--gradient-primary);
      opacity: 0.1;
      animation: float 6s ease-in-out infinite;
    }

    .shape-1 {
      width: 300px;
      height: 300px;
      top: 10%;
      right: 10%;
      animation-delay: 0s;
    }

    .shape-2 {
      width: 200px;
      height: 200px;
      bottom: 20%;
      left: 5%;
      animation-delay: 2s;
    }

    .shape-3 {
      width: 150px;
      height: 150px;
      top: 60%;
      right: 30%;
      animation-delay: 4s;
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0px) rotate(0deg);
      }

      50% {
        transform: translateY(-20px) rotate(180deg);
      }
    }

    /* Navbar */
    .navbar {
      background: rgba(15, 23, 42, 0.8);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(71, 85, 105, 0.3);
      transition: all 0.3s ease;
      padding: 1rem 0;
    }

    .navbar.scrolled {
      background: rgba(15, 23, 42, 0.95);
      box-shadow: var(--shadow-lg);
    }

    .logo-container {
      width: 50px;
      height: 50px;
      background: var(--gradient-primary);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease;
    }

    .logo-container:hover {
      transform: scale(1.05);
    }

    .logo-text {
      font-family: 'JetBrains Mono', monospace;
      font-weight: 700;
      font-size: 1.2rem;
      color: white;
    }

    .navbar-nav {
      display: flex;
      align-items: center;
    }

    .navbar-nav .nav-link {
      color: var(--text-secondary) !important;
      font-weight: 500;
      padding: 0.5rem 1rem !important;
      margin: 0 0.5rem;
      border-radius: 8px;
      transition: all 0.3s ease;
      position: relative;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
      color: var(--text-primary) !important;
      background: rgba(99, 102, 241, 0.1);
    }

    .number {
      font-family: 'JetBrains Mono', monospace;
      color: var(--primary-color);
      font-size: 0.875rem;
    }

    .btn-resume {
      background: var(--gradient-primary);
      border: none;
      color: white;
      padding: 0.5rem 1.5rem;
      border-radius: 8px;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: var(--shadow-md);
    }

    .btn-resume:hover {
      background: var(--gradient-primary);
      color: white;
      transform: translateY(-2px);
      box-shadow: var(--shadow-lg);
    }

    .navbar-toggler {
      border: none;
      padding: 0.25rem 0.5rem;
    }

    .navbar-toggler:focus {
      box-shadow: none;
    }

    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28248, 250, 252, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    /* Hero Section */
    .hero-section {
      background-color: var(--bg-primary);
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      padding-top: 80px;
    }

    .hero-content {
      max-width: 100%;
      text-align: center;
    }

    .hello {
      font-family: 'JetBrains Mono', monospace;
      color: var(--primary-color);
      font-size: 1.125rem;
      font-weight: 500;
      margin-bottom: 1rem;
    }

    .name {
      font-size: clamp(2.5rem, 8vw, 5rem);
      font-weight: 800;
      color: var(--text-primary);
      margin-bottom: 0.5rem;
      line-height: 1.1;
    }

    .tagline {
      font-size: clamp(2rem, 6vw, 4rem);
      font-weight: 700;
      color: var(--text-secondary);
      margin-bottom: 2rem;
      line-height: 1.2;
    }

    .description {
      font-size: 1.125rem;
      color: var(--text-muted);
      max-width: 600px;
      margin: 0 auto 3rem;
      line-height: 1.7;
    }

    .hero-buttons {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: center;
    }

    .btn-primary-custom {
      background: var(--gradient-primary);
      border: none;
      color: white;
      padding: 0.875rem 2rem;
      border-radius: 12px;
      font-weight: 600;
      font-size: 1rem;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
    }

    .btn-primary-custom:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-xl);
      color: white;
    }

    .btn-outline-custom {
      background: transparent;
      border: 2px solid var(--border-color);
      color: var(--text-primary);
      padding: 0.875rem 2rem;
      border-radius: 12px;
      font-weight: 600;
      font-size: 1rem;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
    }

    .btn-outline-custom:hover {
      background: var(--bg-secondary);
      border-color: var(--primary-color);
      color: var(--text-primary);
      transform: translateY(-3px);
    }

    /* Animation Classes */
    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 0.8s ease forwards;
    }

    .fade-in-delay-1 {
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 0.8s ease 0.2s forwards;
    }

    .fade-in-delay-2 {
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 0.8s ease 0.4s forwards;
    }

    .fade-in-delay-3 {
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 0.8s ease 0.6s forwards;
    }

    .fade-in-delay-4 {
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 0.8s ease 0.8s forwards;
    }

    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Section Styles */
    section {
      padding: 6rem 0;
    }

    .section-header {
      margin-bottom: 4rem;
    }

    .section-title {
      font-size: clamp(2rem, 5vw, 3rem);
      font-weight: 800;
      color: var(--text-primary);
      margin-bottom: 1rem;
    }

    .title-underline {
      width: 80px;
      height: 4px;
      background: var(--gradient-primary);
      margin: 0 auto 1rem;
      border-radius: 2px;
    }

    .section-subtitle {
      font-size: 1.125rem;
      color: var(--text-muted);
      max-width: 600px;
      margin: 0 auto;
    }

    /* Skills Section */
    .skills-section {
      background: var(--bg-secondary);
    }

    /* Skills Section - Updated Grid Layout */
    .skills-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      /* Two columns of equal width */
      gap: 2rem;
    }

    /* Responsive Design - Adjust for smaller screens */
    @media (max-width: 768px) {
      .skills-grid {
        grid-template-columns: 1fr;
        /* Stack vertically on smaller screens */
      }
    }

    .skill-item {
      background: var(--bg-primary);
      padding: 1.5rem;
      border-radius: 16px;
      border: 1px solid var(--border-color);
      transition: all 0.3s ease;
    }

    .skill-item:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
      border-color: var(--primary-color);
    }

    .skill-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem;
    }

    .skill-name {
      font-weight: 600;
      color: var(--text-primary);
      font-size: 1rem;
    }

    .skill-percentage {
      font-family: 'JetBrains Mono', monospace;
      color: var(--primary-color);
      font-weight: 600;
    }

    .skill-bar {
      height: 8px;
      background: var(--bg-tertiary);
      border-radius: 4px;
      overflow: hidden;
    }

    .skill-progress {
      height: 100%;
      background: var(--gradient-primary);
      border-radius: 4px;
      width: 0;
      transition: width 1.5s ease;
    }

    /* Projects Section */
    .projects-section {
      background: var(--bg-primary);
    }

    .project-card {
      background: var(--bg-secondary);
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid var(--border-color);
      transition: all 0.3s ease;
      height: 100%;
    }

    .project-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-xl);
      border-color: var(--primary-color);
    }

    .project-image {
      position: relative;
      overflow: hidden;
      aspect-ratio: 16 / 9;
      /* Maintain aspect ratio for images */
    }

    .project-image img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      /* Show full image without cropping */
      transition: transform 0.3s ease;
    }

    .project-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(15, 23, 42, 0.9);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: all 0.3s ease;
    }

    .project-card:hover .project-overlay {
      opacity: 1;
    }

    .project-card:hover .project-image img {
      transform: scale(1.1);
    }

    .project-content {
      text-align: center;
      padding: 2rem;
    }

    .project-content h4 {
      color: var(--text-primary);
      font-weight: 700;
      margin-bottom: 0.5rem;
      font-size: 1.25rem;
    }

    .project-content p {
      color: var(--text-secondary);
      margin-bottom: 1.5rem;
    }

    .btn-project {
      background: var(--gradient-primary);
      border: none;
      color: white;
      padding: 0.75rem 1.5rem;
      border-radius: 10px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
    }

    .btn-project:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-lg);
      color: white;
    }

    /* Contact Section */
    .contact-section {
      background: var(--bg-secondary);
    }

    .contact-form-container {
      background: var(--bg-primary);
      padding: 3rem;
      border-radius: 20px;
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-lg);
    }

    .form-group {
      margin-bottom: 1.5rem;
    }

    /* Contact Section - Updated Form Input Background */
    .form-control {
      background: var(--bg-tertiary) !important;
      /* Already set to a dark shade, ensuring consistency */
      border: 2px solid var(--border-color);
      border-radius: 12px;
      padding: 1rem 1.5rem;
      color: var(--text-primary) !important;
      font-size: 1rem;
      transition: all 0.3s ease;
    }

    .form-control:focus {
      background: var(--bg-tertiary);
      /* Keep the same dark shade on focus */
      border-color: var(--primary-color);
      box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
      color: var(--text-primary) !important;
    }

    .form-control::placeholder {
      color: var(--text-muted);
    }

    textarea.form-control {
      resize: vertical;
      min-height: 120px;
    }

    /* Footer */
    .footer {
      background: var(--bg-primary);
      padding: 3rem 0 2rem;
      border-top: 1px solid var(--border-color);
    }

    .social-links {
      display: flex;
      justify-content: center;
      gap: 1rem;
    }

    .social-link {
      width: 50px;
      height: 50px;
      background: var(--bg-secondary);
      border: 1px solid var(--border-color);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-secondary);
      font-size: 1.25rem;
      transition: all 0.3s ease;
      text-decoration: none;
    }

    .social-link:hover {
      background: var(--primary-color);
      border-color: var(--primary-color);
      color: white;
      transform: translateY(-3px);
      box-shadow: var(--shadow-lg);
    }

    .footer-text {
      color: var(--text-muted);
      margin: 0;
      font-size: 0.875rem;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .hero-section {
        padding-top: 100px;
        text-align: center;
      }

      .hero-buttons {
        justify-content: center;
      }

      .btn-primary-custom,
      .btn-outline-custom {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
      }

      section {
        padding: 4rem 0;
      }

      .contact-form-container {
        padding: 2rem;
      }

      .navbar-nav {
        text-align: center;
        padding-top: 1rem;
      }

      .navbar-nav .nav-link {
        margin: 0.5rem 0;
      }
    }

    @media (max-width: 576px) {
      .hero-buttons {
        flex-direction: column;
        align-items: center;
      }

      .btn-primary-custom,
      .btn-outline-custom {
        width: 100%;
        max-width: 250px;
        justify-content: center;
      }

      .contact-form-container {
        padding: 1.5rem;
      }

      .social-links {
        gap: 0.75rem;
      }

      .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
      }
    }

    /* Custom Scrollbar */
    ::-webkit-scrollbar {
      width: 8px;
    }

    ::-webkit-scrollbar-track {
      background: var(--bg-secondary);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--primary-color);
      border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: var(--secondary-color);
    }

    /* Selection */
    ::selection {
      background: var(--primary-color);
      color: white;
    }