    .hub-container {
        max-width: 1600px;
        margin: 0 auto;
        padding: 2rem;
    }

    /* Hero Section */
    .hub-hero {
        text-align: center;
        padding: 4rem 2rem;
        background: linear-gradient(135deg, rgba(79, 195, 247, 0.1) 0%, rgba(156, 39, 176, 0.1) 100%);
        border-radius: 20px;
        margin-bottom: 3rem;
        border: 1px solid rgba(79, 195, 247, 0.3);
    }

    .hub-hero h1 {
        font-size: 3rem;
        background: linear-gradient(135deg, #4FC3F7 0%, #9C27B0 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 1rem;
    }

    .hub-hero p {
        font-size: 1.3rem;
        color: rgba(255, 255, 255, 0.8);
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.6;
    }

    .hub-tagline {
    font-size: 1.2rem;
    background: linear-gradient(135deg, #4FC3F7 0%, #9C27B0 50%, #4CAF50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;  /* Animated! */
    margin-top: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 0 20px rgba(79, 195, 247, 0.3);
    position: relative;
    display: inline-block;
    padding: 0.5rem 2rem;
}

    /* Services Grid */
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .service-card {
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(10px);
        border: 2px solid rgba(79, 195, 247, 0.3);
        border-radius: 15px;
        padding: 2rem;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #4FC3F7 0%, #9C27B0 100%);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }

    .service-card:hover {
        transform: translateY(-5px);
        border-color: #4FC3F7;
        box-shadow: 0 15px 40px rgba(79, 195, 247, 0.3);
    }

    .service-card:hover::before {
        transform: scaleX(1);
    }

    .service-header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #4FC3F7 0%, #9C27B0 100%);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        flex-shrink: 0;
    }

    .service-title {
        flex: 1;
    }

    .service-title h2 {
        color: #4FC3F7;
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
    }

    .service-subtitle {
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.9rem;
    }

    .service-description {
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .service-features {
        margin-bottom: 1.5rem;
    }

    .service-features h4 {
        color: #fff;
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
        font-weight: 600;
    }

    .feature-list {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .feature-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
    }

    .feature-item::before {
        content: '✓';
        color: #4CAF50;
        font-weight: bold;
        font-size: 1.1rem;
    }

    .service-action {
        display: flex;
        gap: 1rem;
    }

    .btn-primary {
        flex: 1;
        background: linear-gradient(135deg, #4FC3F7 0%, #9C27B0 100%);
        color: white;
        border: none;
        padding: 0.75rem 1.5rem;
        border-radius: 8px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(79, 195, 247, 0.4);
    }

    .btn-secondary {
        background: rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.8);
        border: 2px solid rgba(255, 255, 255, 0.2);
        padding: 0.75rem 1.5rem;
        border-radius: 8px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.3);
    }

    /* Workflow Section */
    .workflow-section {
        background: rgba(156, 39, 176, 0.05);
        border-radius: 15px;
        padding: 3rem 2rem;
        margin-bottom: 3rem;
        border: 1px solid rgba(156, 39, 176, 0.2);
    }

    .workflow-title {
        text-align: center;
        color: #9C27B0;
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .workflow-steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
        position: relative;
    }

    .workflow-step {
        text-align: center;
        position: relative;
    }

    .workflow-step-number {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #9C27B0 0%, #7B1FA2 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: bold;
        font-size: 1.2rem;
        margin: 0 auto 1rem auto;
    }

    .workflow-step-title {
        color: #fff;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .workflow-step-desc {
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.9rem;
    }

    .workflow-arrow {
        display: none;
    }

    @media (min-width: 1000px) {
        .workflow-step::after {
            content: '→';
            position: absolute;
            right: -2rem;
            top: 20px;
            font-size: 2rem;
            color: rgba(156, 39, 176, 0.5);
        }

        .workflow-step:last-child::after {
            display: none;
        }
    }

    /* Stats Section */
    .stats-section {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .stat-card {
        background: rgba(76, 175, 80, 0.1);
        border: 2px solid rgba(76, 175, 80, 0.3);
        border-radius: 12px;
        padding: 2rem;
        text-align: center;
    }

    .stat-number {
        font-size: 3rem;
        font-weight: bold;
        background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .stat-label {
        color: rgba(255, 255, 255, 0.7);
        font-size: 1rem;
        margin-top: 0.5rem;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .hub-hero h1 {
            font-size: 2rem;
        }

        .hub-hero p {
            font-size: 1.1rem;
        }

        .services-grid {
            grid-template-columns: 1fr;
        }

        .service-action {
            flex-direction: column;
        }
    }