    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Inter', sans-serif;
    }
    body {
      background: #0e0e0e;
      color: #f0f0f0;
      line-height: 1.6;
      position: relative;
      overflow-x: hidden;
    }
    canvas {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
    }
    header, section {
      height: 100vh;
      padding: 60px 60px 60px 80px;
      max-width: 1200px;
      margin: auto;
    }
    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .intro-text {
      flex: 1;
      padding-right: 40px;
      z-index: 5;
      position: relative;
    }

    .intro-modern {
      padding-left: 40px;
      text-align: left;
    }
    header h1 {
      font-size: 3rem;
      margin-bottom: 10px;
      z-index: 2;
      position: relative;
    }
    header p {
      font-size: 1.4rem;
      color: #ccc;
      z-index: 2;
      position: relative;
    }
    .btn {
      margin-top: 20px;
      padding: 12px 24px;
      background: #1e90ff;
      color: white;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-weight: 600;
      font-size: 1rem;
    }
    .profile-img {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .profile-img img {
      width: 300px;
      height: auto;
      border-radius: 12px;
      border: 4px solid white;
      box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .profile-img img:hover {
      transform: perspective(800px) rotateY(8deg);
      box-shadow: 0 0 40px rgba(255, 255, 255, 0.9);
    }
    .section-title {
      font-size: 1.8rem;
      margin-bottom: 30px;
      border-left: 4px solid #1e90ff;
      padding-left: 10px;
    }
    .scroll-projects {
      display: flex;
      overflow-x: auto;
      gap: 20px;
    }
    .scroll-projects .card {
  position: relative;
  width: 180px; /* You can tweak this */
  aspect-ratio: 9 / 16;
  background: black;
  border-radius: 10px;
  flex-shrink: 0;
  cursor: pointer;
  border: 4px solid white;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .scroll-projects .card:hover {
      transform: perspective(800px) rotateY(-8deg);
      box-shadow: 0 0 40px rgba(255, 255, 255, 0.9);
    }
    .journey-list {
      display: grid;
      gap: 20px;
    }
    .journey {
      background: #1a1a1a;
      padding: 20px;
      border-radius: 10px;
    }
    .journey h3 {
      margin-bottom: 10px;
    }
    .collab-logos {
      display: flex;
      gap: 40px;
      align-items: center;
      padding: 20px 0;
      animation: scroll-left 20s linear infinite;
    }
    .collab-logos img {
      height: 80px;
      filter: grayscale(100%) brightness(0) invert(1);
      transition: transform 0.3s ease, filter 0.3s ease;
    }
    .collab-logos img:hover {
      transform: scale(1.1);
      filter: grayscale(0%) brightness(1) invert(0);
    }
    footer {
      text-align: center;
      padding: 40px 20px;
      color: #777;
    }
    a {
      color: #1e90ff;
      text-decoration: none;
    }
    .sidebar {
      position: fixed;
      left: 20px;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 20px;
      z-index: 2;
    }
    .sidebar .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background-color: #888;
      transition: all 0.3s;
    }
    .sidebar .dot.active {
      background-color: #fff;
    }
    @keyframes scroll-left {
      0% { transform: translateX(100%); }
      100% { transform: translateX(-100%); }
    }
/* collab-logos already defined above, this is duplicate - removed */

.logo-bot {
  height: 90px;
  object-fit: contain;
  padding: 0 20px;
  transform: scale(3.5);
}
.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-item img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: invert(1);
}
