/* 
   
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --bg-dark: #0f0f0f;
      --bg-light: #ffffff;
      --text-dark: #ffffff;
      --text-light: #000000;
      --primary: #3b82f6;
    }

    body {
      margin: 0;
      font-family: Arial, sans-serif;
      background: var(--bg-dark);
      color: var(--text-dark);
      transition: background 0.3s, color 0.3s;
    }


    .learning-path .steps {
    position: relative;
    margin-left: 30px;
    padding-left: 30px;
    height: auto;
    border-left: 2px solid #333;
    }

    .learning-path .step {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
    }

    .learning-path .circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
    position: absolute;
    left: -45px;
    }

    .learning-path .content {
    background: #111;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid #333;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    }

    .learning-path .content p {
    margin: 0;
    font-size: 0.95rem;
    color: #ddd;
    }

 
    .circle.beginner { background: #22c55e33; color: #22c55e; }
    .circle.intermediate { background: #f9731633; color: #f97316; }
    .circle.advanced { background: #ef444433; color: #ef4444; }

    body {
      font-family: Arial, sans-serif;
      background-color: #0f0f0f;
      color: #fff;
      line-height: 1.6;
      padding: 20px;
    }

    h2 {
      font-size: 1.6rem;
      margin-bottom: 20px;
    }

    .container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 25px;
      padding: 10px;
    }

    .container div {
        margin-bottom: 25px;
    }

    .card {
      background-color: #1a1a1a;
      border: 1px solid #2e2e2e;
      border-radius: 14px;
      padding: 22px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.5);
    }

    .card h3 {
      margin-bottom: 15px;
      font-size: 1.2rem;
      color: #f5f5f5;
    }

    .card ul {
      list-style: none;
    }

    .card ul li {
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }


    .learn-box ul {
    list-style: none;
    padding-left: 0;
    }

    .learn-box ul li {
    display: flex;
    align-items: center;
    justify-content: start;
    margin-bottom: 14px;
    font-size: 0.95rem;
    color: #ddd;
    }

    .learn-box .icon {
    font-size: 1.1rem;
    margin-right: 20px;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    }


    .icon.beginner {
    background: #22c55e33;
    color: #22c55e;
    }
    .icon.intermediate {
    background: #f9731633;
    color: #f97316;
    }
    .icon.advanced {
    background: #3b82f633;
    color: #3b82f6;
    }




    .badge {
      padding: 4px 10px;
      border-radius: 8px;
      font-size: 0.75rem;
      font-weight: bold;
    }

    .beginner { background: #22c55e33; color: #22c55e; }
    .intermediate { background: #f9731633; color: #f97316; }
    .advanced { background: #ef444433; color: #ef4444; }


    .tech-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
      gap: 10px;
    }

    .tech-item {
      user-select: none;
      padding: 8px 8px;
      text-align: center;
      border: 1px solid #333;
      border-radius: 10px;
      transition: transform 0.3s ease, background 0.3s ease;
    }

    .tech-item:hover {
      background: #222;
      transform: translateY(-4px);
    }

    .button {
      display: inline-block;
      margin-top: 20px;
      padding: 14px 20px;
      background: #3b82f6;
      color: #fff;
      border: none;
      border-radius: 10px;
      font-weight: bold;
      text-decoration: none;
      text-align: center;
      transition: all 0.3s ease;
    }

    .button:hover {
      background: #2563eb;
      transform: scale(1.05);
      box-shadow: 0 0 12px rgba(59, 130, 246, 0.6);
    }

    
    @media (max-width: 900px) {
      .container {
        grid-template-columns: 1fr;
      }
    } */



    body {
      margin: 0;
      font-family: "Inter", sans-serif;
      background: #0d1117;
      color: #e6e6e6;
      line-height: 1.6;
    }

    h2 {
      font-size: 1.4rem;
      margin-bottom: 1rem;
      background: linear-gradient(90deg, #6ba9ff, #9ecffb);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .container {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 2rem;
      max-width: 1200px;
      margin: auto;
      padding: 2rem;
    }

    .card {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 16px;
      padding: 1.8rem;
      backdrop-filter: blur(10px);
      box-shadow: 0 4px 20px rgba(0,0,0,0.4);
      animation: fadeUp 0.8s ease both;
    }

    ul { padding: 0; list-style: none; }
    ul li {
      margin-bottom: 0.8rem;
      padding-left: 1.4rem;
      position: relative;
    }
    ul li::before {
      content: "✔";
      position: absolute;
      left: 0;
      color: #6ba9ff;
      font-size: 0.85rem;
    }

    .tech-stack {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
    }
    .tech-stack span {
      padding: 0.4rem 0.9rem;
      border-radius: 8px;
      font-size: 0.85rem;
      background: linear-gradient(135deg, #1e2a3a, #151b23);
      border: 1px solid rgba(255, 255, 255, 0.08);
      color: #cfcfcf;
    }

    .timeline {
      position: relative;
      margin-top: 1rem;
      padding-left: 2rem;
    }
    .timeline::before {
      content: "";
      position: absolute;
      left: 12px;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(180deg, #6ba9ff, #9ecffb);
    }
    .timeline-step {
      position: relative;
      margin-bottom: 2rem;
    }
    .timeline-step::before {
      content: "";
      position: absolute;
      left: -26px;
      top: 4px;
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: #6ba9ff;
      box-shadow: 0 0 10px #6ba9ff;
    }
    .timeline-step strong {
      display: block;
      margin-bottom: 0.2rem;
      font-weight: 600;
      text-overflow: ellipsis;
    }
    .timeline-step span {
      font-size: 0.8rem;
      color: #9aa0a6;
    }

    .btn {
      display: inline-block;
      margin-top: 1.2rem;
      padding: 0.8rem 1.4rem;
      border-radius: 8px;
      background: linear-gradient(90deg, #6ba9ff, #9ecffb);
      color: #0d1117;
      font-weight: 600;
      border: none;
      cursor: pointer;
      transition: transform 0.2s ease;
    }
    .btn:hover { transform: translateY(-2px); }

    @keyframes fadeUp {
      from {opacity: 0; transform: translateY(20px);}
      to {opacity: 1; transform: translateY(0);}
    }

    @media (max-width: 900px) {
      .container { grid-template-columns: 1fr; }
    }