:root {
    /* Option C: Warm Sunset */
    --bg-primary: #fff7ed;
    --bg-secondary: #ffedd5;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --accent-primary: #f97316;
    --accent-secondary: #db2777;
    --card-bg: #ffffff;
    --card-border: rgba(31, 41, 55, 0.08);
    --timeline-line: rgba(31, 41, 55, 0.12);
    --shadow: rgba(31, 41, 55, 0.06);
    --hover-shadow: rgba(31, 41, 55, 0.14);
    --gradient-start: #f97316;
    --gradient-end: #db2777;
    --nav-bg: rgba(255, 247, 237, 0.85);
    --section-divider: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  }
  
  .dark-theme {
    --bg-primary: #111827;
    --bg-secondary: #0b1220;
    --text-primary: #f9fafb;
    --text-secondary: #cbd5e1;
    --accent-primary: #423cfb;
    --accent-secondary: #f472b6;
    --card-bg: #0b1220;
    --card-border: rgba(249, 250, 251, 0.08);
    --timeline-line: rgba(249, 250, 251, 0.12);
    --shadow: rgba(0, 0, 0, 0.35);
    --hover-shadow: rgba(0, 0, 0, 0.55);
    --gradient-start: #423cfb;
    --gradient-end: #f472b6;
    --nav-bg: rgba(17, 24, 39, 0.85);
    --section-divider: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
  }
  
  body {
    font-family: "Inter", sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Theme Toggle */
  .theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
  }
  
  #themeToggle {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--card-bg);
    box-shadow: 0 2px 10px var(--shadow);
    transition: all 0.3s ease;
  }
  
  #themeToggle:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px var(--hover-shadow);
  }
  
  .dark-theme #themeToggle .fa-moon {
    display: none;
  }
  
  .dark-theme #themeToggle .fa-sun {
    display: inline-block;
  }
  
  #themeToggle .fa-sun {
    display: none;
  }
  
  #themeToggle .fa-moon {
    display: inline-block;
  }
  
  /* Navigation */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--nav-bg);
    backdrop-filter: blur(10px);
    z-index: 100;
    box-shadow: 0 2px 10px var(--shadow);
    transition: all 0.3s ease;
  }
  
  .navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
  }
  
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-primary);
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
  }
  
  .nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
  }
  
  .nav-link::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    transition: width 0.3s ease;
  }
  
  .nav-link:hover {
    color: var(--accent-primary);
  }
  
  .nav-link:hover::after {
    width: 100%;
  }
  
  /* Hero Section */
  .hero {
    padding: 120px 0 60px;
    background-color: var(--bg-primary);
  }
  
  .hero-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
  }
  
  .profile-container {
    flex: 0 0 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .profile-image-container {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    border: 4px solid var(--accent-primary);
    transition: all 0.3s ease;
  }
  
  .profile-image-container:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px var(--hover-shadow);
  }
  
  .profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
  }
  
  .social-links a {
    color: var(--text-primary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px var(--shadow);
  }
  
  .social-links a:hover {
    color: var(--accent-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--hover-shadow);
  }
  
  .hero-text {
    flex: 1;
    min-width: 300px;
  }
  
  .name {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .typewriter {
    font-family: "Fira Code", monospace;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    height: 30px;
  }
  
  .cursor {
    display: inline-block;
    width: 2px;
    background-color: var(--text-primary);
    animation: blink 1s infinite;
  }
  
  @keyframes blink {
    0%,
    100% {
      opacity: 1;
    }
    50% {
      opacity: 0;
    }
  }
  
  .about-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
  }
  
  .about-text p {
    margin-bottom: 15px;
  }
  
  .about-text a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
  }
  
  .about-text a:hover {
    color: var(--accent-secondary);
    text-decoration: underline;
  }
  
  .easter-egg {
    position: relative;
  }
  
  .easter-egg:hover {
    animation: pulse 1s infinite;
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
  }
  
  /* Section Styles */
  section {
    padding: 80px 0;
  }
  
  .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .section-divider {
    height: 4px;
    width: 100px;
    margin: 0 auto 50px;
    background: var(--section-divider);
    border-radius: 2px;
  }
  
  /* Projects Section */
  .projects-section {
    background-color: var(--bg-secondary);
  }
  
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
  }

  .project-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--card-border);
  }

  
  .project-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
  
  .project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--hover-shadow);
  }
  
  .project-content {
    padding: 25px;
  }
  
  .project-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
  }
  
  .project-title a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .project-title a:hover {
    color: var(--accent-secondary);
    text-decoration: underline;
  }
  
  .project-status {
    font-size: 0.8rem;
    font-weight: 500;
    padding: 3px 8px;
    border-radius: 20px;
    color: white;
    margin-left: 8px;
    vertical-align: middle;
  }

  .project-status-complete {
    background-color: var(--accent-primary);
  }

  .project-status-inprogress {
    background-color: #d81f47;
  }

  
  .demo-link {
    font-size: 0.9rem;
    color: var(--accent-primary);
    text-decoration: none;
    margin-left: 10px;
    transition: color 0.3s ease;
  }
  
  .demo-link:hover {
    color: var(--accent-secondary);
  }
  
  .project-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
  }
  
  /* Experience Section */
  .experience-section {
    background-color: var(--bg-primary);
  }
  
  .timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .timeline::before {
    content: "";
    position: absolute;
    width: 2px;
    background-color: var(--timeline-line);
    top: 0;
    bottom: 0;
    left: 20px;
  }
  
  .timeline-item {
    position: relative;
    margin-bottom: 50px;
    padding-left: 60px;
  }
  
  .timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    left: 11px;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    z-index: 1;
  }
  
  .timeline-content {
    background-color: var(--card-bg);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--card-border);
  }
  
  .timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--hover-shadow);
  }
  
  .timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .timeline-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
  }
  
  .timeline-period {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
  }
  
  .timeline-position {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 15px;
  }
  
  .timeline-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
  }
  
  /* Footer */
  footer {
    background-color: var(--bg-secondary);
    padding: 30px 0;
    text-align: center;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .footer-links {
    display: flex;
    gap: 15px;
  }
  
  .footer-links a {
    color: var(--text-primary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
  }
  
  .footer-links a:hover {
    color: var(--accent-primary);
    transform: translateY(-3px);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .hero-content {
      flex-direction: column;
      text-align: center;
    }
  
    .profile-container {
      margin: 0 auto;
    }
  
    .section-title {
      font-size: 2rem;
    }
  
    .name {
      font-size: 2.5rem;
    }
  
    .projects-grid {
      grid-template-columns: 1fr;
    }

    .project-card {
      grid-template-columns: 1fr;
    }

    .project-card img {
      height: 200px;
    }
  
    .timeline::before {
      left: 15px;
    }
  
    .timeline-item {
      padding-left: 50px;
    }
  
    .timeline-dot {
      left: 6px;
    }
  
    .footer-content {
      flex-direction: column;
    }
  }
  
  @media (max-width: 480px) {
    .nav-links {
      gap: 15px;
    }
  
    .profile-image-container {
      width: 150px;
      height: 150px;
    }
  
    .section-title {
      font-size: 1.8rem;
    }
    .timeline-header {
        flex-direction: column;
        align-items: flex-start;
      }
      
    .name {
      font-size: 2rem;
    }
  
    
  }
  
  
