@import url('https://fonts.googleapis.com/css2?family=Electrolize&family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Rock+Salt&family=Schoolbell&display=swap');

    :root {
      --color-1: #ffffff;
      --color-2: #7e7e7e;
      --color-3: #1B1E4B;
      --color-4: #080a18;
      --gradient-1: linear-gradient(135deg, var(--color-3) 0%, var(--color-4) 100%);
      --gradient-2: linear-gradient(45deg, #1B1E4B, #2a2d5f, #1B1E4B);
    }

    body {
      font-family: 'IBM Plex Mono', monospace;
      color: var(--color-1);
      margin: 0;
      padding: 0;
    }


        .menu{
            color: black;
            text-shadow: 1px 1px 1px var(--color-2);
            font-size: larger ;
            padding: 3px;
            font-family: "Electrolize";
            background: white;
            padding-left: 10px;
            border-bottom: 2px solid;
            margin-bottom: 0px;
            margin-top: 0px;
        }

.section {
  margin: 30px 0;
  border: 1px solid var(--color-1);
  border-radius: 2px;
  background: var(--color-4);
}

/* Cursor handled by main stylesheet */


    .menu::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    }

    .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 40px 20px;
    }

    .timeline {
      position: relative;
    }

    .timeline::before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      border-radius: 1px;
    }

    .timeline-item {
      position: relative;
      margin-bottom: 40px;
      background: linear-gradient(135deg, rgba(27, 30, 75, 0.3), rgba(8, 10, 24, 0.8));
      border: 1px ridge var(--color-1);
      border-radius: 1px;
      padding: 30px;
      transition: all 0.3s ease;
      overflow: hidden;
    }

    .timeline-item::before {
      content: '';
      position: absolute;
      left: -56px;
      top: 30px;
      width: 16px;
      height: 16px;
      background: var(--gradient-1);
      border: 3px solid var(--color-1);
      border-radius: 50%;
      box-shadow: 0 0 15px rgba(27, 30, 75, 0.8);
    }

    .timeline-item:hover {
      transform: translateX(10px);
      border-color: var(--color-2);
      box-shadow: 0 10px 30px rgba(27, 30, 75, 0.4);
    }

    .timeline-item::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .timeline-item:hover::after {
      opacity: 1;
    }

    .company-header {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 20px;
      flex-wrap: wrap;
    }

    .company-logo {
      width: 80px;
      height: 80px;
      background: white;
      border-radius: 12px;
      padding: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
      transition: transform 0.3s ease;
      flex-shrink: 0;
    }

    .company-logo:hover {
      transform: scale(1.05) rotate(5deg);
    }

    .company-logo img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }

    .company-info h2 {
      font-family: 'Electrolize', monospace;
      font-size: 1.8rem;
      margin: 0;
      color: var(--color-1);
      text-shadow: 1px 1px 2px var(--color-4);
    }

    .year-badge {
      background: var(--gradient-1);
      color: white;
      padding: 8px 16px;
      border-radius: 1px;
      font-size: 0.9rem;
      font-weight: 600;
      border: 1px solid rgba(255,255,255,0.2);
      margin-left: auto;
    }

    .project-details {
      margin-top: 20px;
      padding: 20px;
      background: var(--color-4);
      border-radius: 1px;
      border-left: 4px solid var(--color-3);
    }

    .project-title {
      font-size: 1.2rem;
      font-family: 'Electrolize', monospace;
      color: var(--color-1);
      margin-bottom: 10px;
      font-weight: 600;
    }

    .project-description {
      color: var(--color-1);
      margin-bottom: 15px;
      line-height: 1.6;
    }

    .project-links {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 15px;
    }

    .project-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--color-1);
      text-decoration: none;
      background: rgba(27, 30, 75, 0.4);
      padding: 8px 12px;
      border-radius: 1px;
      font-size: 0.9rem;
      transition: all 0.3s ease;
      border: 1px solid rgba(255,255,255,0.1);
    }

    .project-link:hover {
      background: var(--color-3);
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(27, 30, 75, 0.3);
    }

    .project-link i {
      font-size: 0.8rem;
    }

    .stats-highlight {
      background: linear-gradient(45deg, rgba(255,215,0,0.1), rgba(255,165,0,0.1));
      border: 1px solid rgba(255,215,0,0.3);
      border-radius: 1px;
      padding: 15px;
      margin: 15px 0;
      color: #ffd700;
    }

    .achievement-badge {
      display: inline-block;
      background: var(--gradient-1);
      color: white;
      padding: 4px 12px;
      border-radius: 15px;
      font-size: 0.8rem;
      margin: 5px 5px 5px 0;
      border: 1px solid rgba(255,255,255,0.2);
    }

    .echo-special {
      background: linear-gradient(135deg, rgba(255,0,100,0.1), rgba(0,150,255,0.1));
      border-color: rgba(255,0,100,0.3);
    }

    @media (max-width: 768px) {
      .timeline {
        padding-left: 0;
      }

      .timeline::before {
        display: none;
      }

      .timeline-item {
        margin-left: 0;
        padding: 20px;
      }

      .timeline-item::before {
        display: none;
      }

      .company-header {
        flex-direction: column;
        align-items: flex-start;
      }

      .year-badge {
        margin-left: 0;
        align-self: flex-start;
      }

      .company-logo {
        width: 60px;
        height: 60px;
      }
    }

    /* Timeline items - no animation */
    .timeline-item {
      opacity: 1;
      transform: translateY(0);
    }