/* Cyberpunk Color Scheme */
        :root {
            --neon-blue: #00f0ff;
            --neon-pink: #ff00e6;
            --neon-purple: #b800ff;
            --dark-bg: #050520;
            --grid-line: rgba(0, 240, 255, 0.1);
            --text-glow: rgba(184, 0, 255, 0.7);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }


        /* Hero Section */
        .hero {
            min-height: 50vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 0 8%;
            isolation: isolate;
        }

        /* Cyber Grid Background */
        .cyber-grid {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background-color: var(--dark-bg);
            background-image: 
                linear-gradient(var(--grid-line) 1px, transparent 1px),
                linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
            background-size: 40px 40px;
            animation: grid-pulse 8s infinite alternate;
        }

        /* Interactive Particle Canvas */
        .particle-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        /* Floating Neon Elements */
        .neon-element {
            position: absolute;
            border-radius: 50%;
            filter: blur(40px);
            opacity: 0.15;
            animation: neon-pulse 8s infinite alternate;
        }

        /* Content */
        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            animation: fadeInUp 1s ease-out;
        }

        .hero-title {
            font-size: clamp(2.5rem, 6vw, 5rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            margin-top: 2rem;
            color: white;
            text-shadow: 
           
            
                0 0 10px var(--text-glow),
                0 0 20px var(--text-glow);
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .hero-subtitle {
            font-size: clamp(1rem, 2vw, 1.5rem);
            max-width: 600px;
            margin-bottom: 0rem;
            font-weight: 300;
            color: var(--neon-blue);
            line-height: 1.7;
            text-shadow: 0 0 5px var(--neon-blue);
        }

        /* CTA Buttons */
        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            padding: 1rem 2rem;
            border-radius: 2px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            text-transform: uppercase;
            backdrop-filter: blur(5px);
        }

        .btn-primary {
            background: rgba(0, 240, 255, 0.1);
            color: var(--neon-blue);
            border: 1px solid var(--neon-blue);
            box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
        }

        .btn-primary:hover {
            background: rgba(0, 240, 255, 0.2);
            box-shadow: 0 0 25px rgba(0, 240, 255, 0.4);
            transform: translateY(-3px);
        }

        .btn-secondary {
            background: rgba(184, 0, 255, 0.1);
            color: var(--neon-purple);
            border: 1px solid var(--neon-purple);
            box-shadow: 0 0 15px rgba(184, 0, 255, 0.2);
        }

        .btn-secondary:hover {
            background: rgba(184, 0, 255, 0.2);
            box-shadow: 0 0 25px rgba(184, 0, 255, 0.4);
            transform: translateY(-3px);
        }

        /* Animations */
        @keyframes grid-pulse {
            0% { opacity: 0.3; }
            100% { opacity: 0.7; }
        }

        @keyframes neon-pulse {
            0% { opacity: 0.1; box-shadow: 0 0 10px 5px var(--neon-purple); }
            50% { opacity: 0.3; box-shadow: 0 0 20px 10px var(--neon-purple); }
            100% { opacity: 0.1; box-shadow: 0 0 10px 5px var(--neon-purple); }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        
              .cta-buttons {
                justify-content: center;
            }

        /* Responsive */
        @media (max-width: 768px) {
            .hero {
                padding: 0 5%;
                text-align: center;
            }

            .hero-subtitle {
                margin-left: auto;
                margin-right: auto;
            }

            .cta-buttons {
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 280px;
                justify-content: center;
            }
        }
        
      
            .breadcrumb {
            background-color: #F0F0F0 !important;
            padding: 1rem 0 !important;
            border-bottom: 1px solid var(--light-gray) !important;
        }

        .breadcrumb-list {
            display: flex !important;
            flex-wrap: wrap !important;
            list-style: none !important;
            padding: 0 !important;
            margin: 0 !important;
            font-size: 1rem !important;
            font-weight: 500;
      
          
        }

        .breadcrumb-item {
            display: flex !important;
            align-items: center !important;
            margin-right: 0.5rem !important;
        }

        .breadcrumb-item:not(:last-child)::after {
            content: '/' !important;
            margin-left: 0.5rem !important;
            color: var(--gray) !important;
        }

        .breadcrumb-link {
            color: var(--primary) !important;
            transition: var(--transition) !important;
            text-decoration: none !important;
        }

        .breadcrumb-link:hover {
            color: var(--primary-dark) !important;
             text-decoration: underline !important;
        }

        .breadcrumb-current {
            color: var(--gray) !important;
            pointer-events: none !important;
        }


    .cta-button {
    display: inline-block;
    padding: 12px 24px;
   background: linear-gradient(to right, #3498db, #2ecc71); /* Gradient background */
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #0069d9; /* Darker blue on hover */
    color: white;
}


  
        
