
        .skill-bar {
            width: 0;
            height: 12px;
            background: #0d6efd;
            border-radius: 50px;
            color: #fff;
            font-size: 10px;
            text-align: right;
            padding-right: 5px;
            line-height: 12px;
            transition: width 2s;
        }

        body {
            background-color: #0b0f14;
            color: #e6f0ff;
            font-family: 'Inter', sans-serif;
        }

        a {
            text-decoration: none;
            color: #7c3aed;
            transition: 0.3s;
        }

        a:hover {
            color: #06b6d4;
        }

        .navbar {
            background-color: #061018 !important;
        }

        .navbar {
        position: fixed;
        top: 0;
        width: 100%;
        padding: 12px 60px;
        display: flex;
        justify-content: space-between;
        align-items: center;


        backdrop-filter: blur(12px);

        border-bottom: 1px solid rgba(56, 189, 248, 0.15);
        z-index: 1000;
        }

        .nav-item {
        display: flex;
        gap: 32px;
        }

        .nav-item a {
        position: relative;
        color: #cbd5f5;
        font-size: 15px;
        transition: 0.3s;
        }

        .nav-item a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -6px;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, #38bdf8, #8b5cf6);
        transition: 0.3s;
        }

        .nav-item a:hover {
        color: #ffffff;
        }

        .nav-item a:hover::after {
        width: 100%;
        }



        .neon-text {
            text-shadow: 0 0 10px #7c3aed, 0 0 20px #06b6d4;
        }

        .btn-neon {
            color: #fff;
            background: linear-gradient(90deg, #7c3aed, #06b6d4);
            border: none;
            box-shadow: 0 0 20px #7c3aed;
            transition: 0.3s;
        }

        .btn-neon:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 30px #06b6d4;
        }

        .skill-bar {
            width: 0;
            height: 12px;
            border-radius: 6px;
            background: linear-gradient(90deg, #7c3aed, #06b6d4);
            transition: width 1.5s ease;
        }

        .card-custom {
            background: #071018;
            border: 1px solid #14232a;
            border-radius: 1rem;
        }

        .profile-img {
            width: 180px;
            height: 180px;
            border-radius: 5%;
            object-fit: cover;
            border: 3px solid #7c3aed;
            box-shadow: 0 0 20px #06b6d4;
        }

        section {
            padding: 6rem 0;
        }

        .section-title {
            font-size: 2rem;
            margin-bottom: 2rem;
            border-bottom: 2px solid #7c3aed;
            display: inline-block;
            padding-bottom: .3rem;
        }







           .timeline-with-icons {
      border-left: 1px solid hsl(0, 0%, 90%);
      position: relative;
      list-style: none;
    }

    .timeline-with-icons .timeline-item {
      position: relative;
    }

    .timeline-with-icons .timeline-item:after {
      position: absolute;
      display: block;
      top: 0;
    }

    .timeline-with-icons .timeline-icon {
      position: absolute;
      left: -53px;
      background-color: hsl(217, 88.2%, 90%);
      color: hsl(217, 88.8%, 35.1%);
      border-radius: 50%;
      height: 41px;
      width: 41px;
      display: flex;
      align-items: center;
      justify-content: center;
    }


    .about-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.card {
    color: #e6f0ff;
    opacity: 0.9;
  background: #061018;
  border: 1px solid #1f2937;
  border-radius: 18px;
  padding: 30px;
  transition: 0.3s ease;
}

.card:hover {
  border-color: #38bdf8;
  transform: translateY(-6px);
}