
        /* Custom styles from your provided CSS */
        .glow-btn {
            box-shadow: 0 0 10px rgba(147, 51, 234, 0.6);
            transition: all 0.3s ease-in-out;
        }

        .glow-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 0 20px rgba(147, 51, 234, 0.9);
        }

        .glow-circle {
            border: 4px solid transparent;
            background: linear-gradient(#1f2937, #1f2937) padding-box, linear-gradient(to right, #8b5cf6, #3b82f6) border-box;
            box-shadow: 0 0 20px rgba(147, 51, 234, 0.5);
        }

        .nav-link {
            position: relative;
        }

        .nav-link::after {
            content: "";
            position: absolute;
            width: 0%;
            height: 2px;
            bottom: -2px;
            left: 0;
            background: linear-gradient(to right, #8b5cf6, #3b82f6);
            transition: width 0.3s ease-in-out;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-link.active {
            color: #c084fc;
            font-weight: bold;
        }

        .skill-card {
            background: linear-gradient(145deg, #1f2937, #111827);
            color: white;
            border: none;
            border-radius: 2rem;
            padding: 2rem 1rem;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.4s ease-in-out;
            display: flex;
            flex-direction: column;
            align-items: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
            opacity: 1;
        }

        .skill-card:hover {
            transform: translateY(-8px) scale(1.02);
            background: linear-gradient(to right, #8b5cf6, #3b82f6);
            color: white;
            border-color: transparent;
        }

        .animate-slide {
            animation: fadeInUp 1s ease-in-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .filter-btn {
            background: linear-gradient(to right, #8b5cf6, #3b82f6);
            color: white;
            padding: 0.5rem 1.25rem;
            border-radius: 9999px;
            font-weight: 600;
            transition: all 0.3s ease-in-out;
            margin: 0.25rem;
            box-shadow: 0 0 8px rgba(139, 92, 246, 0.4);
            border: none;
            cursor: pointer;
        }

        .filter-btn:hover {
            box-shadow: 0 0 10px rgba(139, 92, 246, 0.6), 0 0 20px rgba(59, 130, 246, 0.4);
            background: linear-gradient(to right, #8b5cf6, #3b82f6);
            color: white;
            transform: scale(1.05);
        }

        .filter-btn.active {
            background-color: rgba(139, 92, 246, 0.3);
            border: 1px solid rgba(139, 92, 246, 0.7);
        }

        .tech-tag {
            background: linear-gradient(to right, #8b5cf6, #3b82f6);
            color: white;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 9999px;
            font-size: 0.75rem;
            box-shadow: 0 0 10px rgba(139, 92, 246, 0.6);
            display: inline-block;
            margin: 2px;
        }

        .tech-tag:hover {
            transform: scale(1.05);
            box-shadow: 0 0 20px rgba(139, 92, 246, 0.8), 0 0 30px rgba(59, 130, 246, 0.6);
            transition: all 0.3s ease-in-out;
        }

        .project-card {
            transition: all 0.3s ease;
        }

        .project-card:hover {
            border-color: rgba(139, 92, 246, 0.5) !important;
        }

        @keyframes softPulse {
            0%, 100% {
                opacity: 0.06;
                transform: scale(1);
            }
            50% {
                opacity: 0.1;
                transform: scale(1.04);
            }
        }

        .soft-blob {
            animation: softPulse 16s ease-in-out infinite;
        }

        html {
            scroll-behavior: smooth;
        }

        .hidden {
            display: none;
        }

        .card {
            background: rgba(31, 41, 55, 0.5);
            border: 1px solid rgba(75, 85, 99, 1);
            border-radius: 0.5rem;
            overflow: hidden;
        }

        .badge {
            background: rgba(75, 85, 99, 1);
            color: rgba(209, 213, 219, 1);
            padding: 0.25rem 0.5rem;
            border-radius: 0.25rem;
            font-size: 0.75rem;
            display: inline-block;
            margin: 2px;
        }

        .input, .textarea {
            background: rgba(55, 65, 81, 1);
            border: 1px solid rgba(75, 85, 99, 1);
            color: white;
            padding: 0.5rem;
            border-radius: 0.375rem;
            width: 100%;
        }

        .btn {
            padding: 0.5rem 1rem;
            border-radius: 0.375rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }

        .btn-primary {
            background: linear-gradient(to right, #8b5cf6, #3b82f6);
            color: white;
        }

        .btn-outline {
            background: transparent;
            border: 1px solid #8b5cf6;
            color: #c084fc;
        }

        .btn-outline:hover {
            background: rgba(139, 92, 246, 0.1);
        }
   
/* Project Page Main Styling */
html { scroll-behavior: smooth; }
    .glow-btn {
      box-shadow: 0 0 10px rgba(147, 51, 234, 0.6);
      transition: all 0.3s ease-in-out;
    }
    .glow-btn:hover {
      transform: scale(1.05);
      box-shadow: 0 0 20px rgba(147, 51, 234, 0.9);
    }
    .timeline-item {
      position: relative;
      padding-left: 2rem;
    }
    .timeline-item::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0.5rem;
      width: 12px;
      height: 12px;
      background: linear-gradient(45deg, #8b5cf6, #3b82f6);
      border-radius: 50%;
      box-shadow: 0 0 10px rgba(139, 92, 246, 0.6);
    }
    .timeline-item::after {
      content: '';
      position: absolute;
      left: 5px;
      top: 1.25rem;
      width: 2px;
      height: calc(100% - 0.5rem);
      background: linear-gradient(to bottom, #8b5cf6, transparent);
    }
    .timeline-item:last-child::after {
      display: none;
    }
    .feature-card {
      background: linear-gradient(145deg, #1f2937, #111827);
      transition: all 0.3s ease;
    }
    .feature-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
    }
    .stat-counter {
      background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.1));
      border: 1px solid rgba(139, 92, 246, 0.3);
    }
    .scrollbox::-webkit-scrollbar {
  width: 6px;
}

.scrollbox::-webkit-scrollbar-track {
  background: #1f2937; /* Tailwind gray-800 */
  border-radius: 6px;
}

.scrollbox::-webkit-scrollbar-thumb {
  background-color: red; /* Tailwind purple-500 */
  border-radius: 6px;
  border: 2px solid #1f2937; /* Creates thumb padding */
}

.scrollbox::-webkit-scrollbar-thumb:hover {
  background-color: #c084fc; /* Tailwind purple-400 */
}

/* Firefox support */
.scrollbox {
  scrollbar-width: thin;
  scrollbar-color: #a855f7 #1f2937;
}


/* BrimmBot */

html { scroll-behavior: smooth; }
    .glow-btn {
      box-shadow: 0 0 10px rgba(147, 51, 234, 0.6);
      transition: all 0.3s ease-in-out;
    }
    .glow-btn:hover {
      transform: scale(1.05);
      box-shadow: 0 0 20px rgba(147, 51, 234, 0.9);
    }
    .timeline-item {
      position: relative;
      padding-left: 2rem;
    }
    .timeline-item::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0.5rem;
      width: 12px;
      height: 12px;
      background: linear-gradient(45deg, #8b5cf6, #3b82f6);
      border-radius: 50%;
      box-shadow: 0 0 10px rgba(139, 92, 246, 0.6);
    }
    .timeline-item::after {
      content: '';
      position: absolute;
      left: 5px;
      top: 1.25rem;
      width: 2px;
      height: calc(100% - 0.5rem);
      background: linear-gradient(to bottom, #8b5cf6, transparent);
    }
    .timeline-item:last-child::after {
      display: none;
    }
    .feature-card {
      background: linear-gradient(145deg, #1f2937, #111827);
      transition: all 0.3s ease;
    }
    .feature-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
    }
    .stat-counter {
      background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.1));
      border: 1px solid rgba(139, 92, 246, 0.3);
    }
    .chat-bubble {
      animation: float 3s ease-in-out infinite;
    }
    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
    }
    .ai-glow {
      box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
    }

    /* Brimmbot */

    #brimmbot-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

#brimmbot-button {
  background-color: #7c3aed; /* purple-600 */
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: background 0.3s;
}

#brimmbot-button:hover {
  background-color: #a855f7; /* purple-500 */
}

#brimmbot-frame {
  width: 360px;
  height: 500px;
  border: none;
  margin-top: 10px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.glow {
  background-color: #7c3aed;
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 10px #a855f7, 0 0 20px #a855f7, 0 0 30px #a855f7;
  animation: glowPulse 1.5s ease-in-out infinite;
  cursor: pointer;
  transition: background 0.3s;
}

@keyframes glowPulse {
  0% {
    box-shadow: 0 0 5px #a855f7, 0 0 10px #a855f7;
  }
  50% {
    box-shadow: 0 0 20px #c084fc, 0 0 30px #c084fc;
  }
  100% {
    box-shadow: 0 0 5px #a855f7, 0 0 10px #a855f7;
  }
}

/* HDD style */

html { scroll-behavior: smooth; }
    .glow-btn {
      box-shadow: 0 0 10px rgba(147, 51, 234, 0.6);
      transition: all 0.3s ease-in-out;
    }
    .glow-btn:hover {
      transform: scale(1.05);
      box-shadow: 0 0 20px rgba(147, 51, 234, 0.9);
    }
    .timeline-item {
      position: relative;
      padding-left: 2rem;
    }
    .timeline-item::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0.5rem;
      width: 12px;
      height: 12px;
      background: linear-gradient(45deg, #8b5cf6, #3b82f6);
      border-radius: 50%;
      box-shadow: 0 0 10px rgba(139, 92, 246, 0.6);
    }
    .timeline-item::after {
      content: '';
      position: absolute;
      left: 5px;
      top: 1.25rem;
      width: 2px;
      height: calc(100% - 0.5rem);
      background: linear-gradient(to bottom, #8b5cf6, transparent);
    }
    .timeline-item:last-child::after {
      display: none;
    }
    .feature-card {
      background: linear-gradient(145deg, #1f2937, #111827);
      transition: all 0.3s ease;
    }
    .feature-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
    }
    .stat-counter {
      background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.1));
      border: 1px solid rgba(139, 92, 246, 0.3);
    }
    .weather-icon {
      animation: float 3s ease-in-out infinite;
    }
    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
    }

    /* Weather APP */

    html { scroll-behavior: smooth; }
    .glow-btn {
      box-shadow: 0 0 10px rgba(147, 51, 234, 0.6);
      transition: all 0.3s ease-in-out;
    }
    .glow-btn:hover {
      transform: scale(1.05);
      box-shadow: 0 0 20px rgba(147, 51, 234, 0.9);
    }
    .timeline-item {
      position: relative;
      padding-left: 2rem;
    }
    .timeline-item::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0.5rem;
      width: 12px;
      height: 12px;
      background: linear-gradient(45deg, #8b5cf6, #3b82f6);
      border-radius: 50%;
      box-shadow: 0 0 10px rgba(139, 92, 246, 0.6);
    }
    .timeline-item::after {
      content: '';
      position: absolute;
      left: 5px;
      top: 1.25rem;
      width: 2px;
      height: calc(100% - 0.5rem);
      background: linear-gradient(to bottom, #8b5cf6, transparent);
    }
    .timeline-item:last-child::after {
      display: none;
    }
    .feature-card {
      background: linear-gradient(145deg, #1f2937, #111827);
      transition: all 0.3s ease;
    }
    .feature-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
    }
    .stat-counter {
      background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.1));
      border: 1px solid rgba(139, 92, 246, 0.3);
    }
    .data-icon {
      animation: pulse 2s ease-in-out infinite;
    }
    @keyframes pulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.05); }
    }

    /* Jobseeker */

    html { scroll-behavior: smooth; }
    .glow-btn {
      box-shadow: 0 0 10px rgba(147, 51, 234, 0.6);
      transition: all 0.3s ease-in-out;
    }
    .glow-btn:hover {
      transform: scale(1.05);
      box-shadow: 0 0 20px rgba(147, 51, 234, 0.9);
    }
    .timeline-item {
      position: relative;
      padding-left: 2rem;
    }
    .timeline-item::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0.5rem;
      width: 12px;
      height: 12px;
      background: linear-gradient(45deg, #8b5cf6, #3b82f6);
      border-radius: 50%;
      box-shadow: 0 0 10px rgba(139, 92, 246, 0.6);
    }
    .timeline-item::after {
      content: '';
      position: absolute;
      left: 5px;
      top: 1.25rem;
      width: 2px;
      height: calc(100% - 0.5rem);
      background: linear-gradient(to bottom, #8b5cf6, transparent);
    }
    .timeline-item:last-child::after {
      display: none;
    }
    .feature-card {
      background: linear-gradient(145deg, #1f2937, #111827);
      transition: all 0.3s ease;
    }
    .feature-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
    }
    .stat-counter {
      background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.1));
      border: 1px solid rgba(139, 92, 246, 0.3);
    }
    .career-icon {
      animation: bounce 2s ease-in-out infinite;
    }
    @keyframes bounce {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
    }

    /* Proposal AI */

    html { scroll-behavior: smooth; }
    .glow-btn {
      box-shadow: 0 0 10px rgba(147, 51, 234, 0.6);
      transition: all 0.3s ease-in-out;
    }
    .glow-btn:hover {
      transform: scale(1.05);
      box-shadow: 0 0 20px rgba(147, 51, 234, 0.9);
    }
    .timeline-item {
      position: relative;
      padding-left: 2rem;
    }
    .timeline-item::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0.5rem;
      width: 12px;
      height: 12px;
      background: linear-gradient(45deg, #8b5cf6, #3b82f6);
      border-radius: 50%;
      box-shadow: 0 0 10px rgba(139, 92, 246, 0.6);
    }
    .timeline-item::after {
      content: '';
      position: absolute;
      left: 5px;
      top: 1.25rem;
      width: 2px;
      height: calc(100% - 0.5rem);
      background: linear-gradient(to bottom, #8b5cf6, transparent);
    }
    .timeline-item:last-child::after {
      display: none;
    }
    .feature-card {
      background: linear-gradient(145deg, #1f2937, #111827);
      transition: all 0.3s ease;
    }
    .feature-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
    }
    .stat-counter {
      background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.1));
      border: 1px solid rgba(139, 92, 246, 0.3);
    }
    .business-icon {
      animation: float 3s ease-in-out infinite;
    }
    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-8px); }
    }