    body {
      font-family: 'Inter', sans-serif;
      background-color: #ffffff;
      color: #212529;
      margin: 0;
      line-height: 1.7;
    }

    body::-webkit-scrollbar {
      width: 0;
      background: transparent;
    }
    .navbar-glass {
      backdrop-filter: blur(12px);
      background-color: rgba(0, 0, 0, 0.9) !important;
    }
    .navbar-nav .nav-link {
      font-weight: 500;
      position: relative;
      padding: 8px 15px;
    }
    .navbar-nav .nav-link::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      background: #0d6efd;
      transition: width 0.3s ease;
    }
    .navbar-nav .nav-link:hover::after {
      width: 100%;
    }
    h2.section-title {
      font-weight: 600;
      margin-bottom: 40px;
      border-bottom: 3px solid #0d6efd;
      display: inline-block;
      padding-bottom: 5px;
    }
    .project-card {
      position: relative;
      background: #fff;
      border-radius: 12px;
      padding: 20px;
      box-shadow: 0 6px 15px rgba(0,0,0,0.08);
      margin-bottom: 30px;
      display: flex;
      align-items: center;
      gap: 20px;
      border-left: 4px solid #0d6efd;
    }
    .project-card img {
      width: 160px;
      height: 160px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      border-radius: 50%;
      object-fit: contain;
      background: #fff;
    }
    .dark-bg {
      background: #000;
      padding: 15px;
      border-radius: 50%;
      width: 180px;
      height: 180px;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      margin: 0 auto;
    }
    .dark-bg img {
      width: 120px;
      height: auto;
      object-fit: contain;
      background: transparent;
    }
    .project-type {
      margin-top: 10px;
      font-size: 0.9rem;
      color: #6c757d;
      font-weight: 500;
      text-align: center;
    }
    .project-content h5 {
      font-weight: 600;
      margin-bottom: 10px;
    }
    .project-content p {
      font-size: 0.95rem;
      color: #495057;
    }
    .project-content .btn {
      margin-right: 10px;
      margin-top: 10px;
    }

    /* 🔵 Live badge styling */
    .live-badge {
      position: absolute;
      top: 10px;
      right: 10px;
      background: #0d6efd;
      color: #fff;
      font-weight: 600;
      padding: 6px 12px;
      border-radius: 30px;
      font-size: 0.9rem;
      display: flex;
      align-items: center;
      gap: 6px;
      cursor: pointer;
      transition: all 0.3s ease;
      z-index: 5;
    }
    .live-badge:hover {
      background: #084298;
      transform: translateY(-2px);
    }
    .live-badge i {
      transition: transform 0.3s ease;
    }
    .live-badge:hover i {
      transform: translateX(4px);
    }
    .live-badge::after {
      content: "Open Live Hosting";
      position: absolute;
      top: -35px;
      right: 0;
      background: #000;
      color: #fff;
      font-size: 0.8rem;
      padding: 5px 8px;
      border-radius: 5px;
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
      white-space: nowrap;
    }
    .live-badge:hover::after {
      opacity: 1;
    }

    @media (max-width: 768px) {
      .project-card {
        flex-direction: column;
        text-align: center;
      }
      .project-card img {
        margin-bottom: 8px;
      }
      .dark-bg {
        margin-bottom: 8px;
      }
      .project-content {
        text-align: center;
      }
    }