
        /* Cybernetic Color Palette */
        :root {
            --neural-blue: #00f0ff;
            --synapse-purple: #b800ff;
            --circuit-orange: #ff6d00;
            --dark-void: #0a0a1a;
            --grid-line: rgba(0, 240, 255, 0.05);
            --text-glow: rgba(184, 0, 255, 0.7);
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }


        /* Hero Section */
        .hero {
            min-height: 50vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 0 8%;
            isolation: isolate;
        }

        /* Neural Network Background */
        .neural-network {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
        }

        /* Circuit Grid Overlay */
        .circuit-grid {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--dark-void);
            background-image: 
                linear-gradient(var(--grid-line) 1px, transparent 1px),
                linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
            background-size: 40px 40px;
            z-index: -1;
            opacity: 0.5;
        }

        /* Floating Neural Nodes */
        .neural-node {
            position: absolute;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--neural-blue);
            box-shadow: 0 0 10px var(--neural-blue);
            animation: node-pulse 3s infinite alternate;
            z-index: -1;
        }

        /* 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;
            color: white;
            text-shadow: 
                0 0 10px var(--text-glow),
                0 0 20px var(--text-glow);
            letter-spacing: 0.05em;
        }

        .hero-subtitle {
            font-size: clamp(1rem, 2vw, 1.5rem);
            max-width: 600px;
            margin-bottom: 3rem;
            font-weight: 300;
            color: var(--neural-blue);
            line-height: 1.7;
            text-shadow: 0 0 5px var(--neural-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: 4px;
            font-weight: 500;
            text-decoration: none;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            letter-spacing: 0.1em;
            backdrop-filter: blur(5px);
        }

        .btn-primary {
            background: rgba(0, 240, 255, 0.1);
            color: var(--neural-blue);
            border: 1px solid var(--neural-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(--synapse-purple);
            border: 1px solid var(--synapse-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 node-pulse {
            0% { transform: scale(1); opacity: 0.7; }
            100% { transform: scale(1.3); opacity: 1; }
        }

        @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;
}

 
