
    /* ===== Manufacturing Hero Section ===== */
    .mfg-hero {
        padding: 100px 0;
        background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
        position: relative;
        overflow: hidden;
    }

    .mfg-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="rgba(220,38,38,0.05)"/><circle cx="50" cy="30" r="1" fill="rgba(220,38,38,0.05)"/><circle cx="90" cy="70" r="1" fill="rgba(220,38,38,0.05)"/></svg>');
        background-size: 100px 100px;
    }

    .mfg-hero .container {
        text-align: center;
    }

    .mfg-badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: rgba(220, 38, 38, 0.15);
        padding: 10px 24px;
        border-radius: 100px;
        margin-bottom: 25px;
        border: 1px solid rgba(220, 38, 38, 0.3);
        color: #ef4444;
        font-weight: 700;
        font-size: 13px;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .mfg-badge i {
        color: #dc2626;
        font-size: 14px;
    }

    .mfg-title {
        font-size: 3.5rem;
        font-weight: 900;
        color: white;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .mfg-title span {
        color: #dc2626;
    }

    .mfg-description {
        font-size: 1.05rem;
        color: #9ca3af;
        line-height: 1.8;
        margin-bottom: 15px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .mfg-tags {
        display: flex;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
        margin: 30px 0;
    }

    .tag-badge-mfg {
        background: rgba(220, 38, 38, 0.1);
        color: #ef4444;
        padding: 8px 18px;
        border-radius: 50px;
        font-size: 0.9rem;
        font-weight: 500;
        border: 1px solid rgba(220, 38, 38, 0.2);
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .tag-badge-mfg i {
        color: #dc2626;
    }

    .trust-badges {
        display: flex;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
        margin-top: 40px;
    }

    .trust-badge {
        display: flex;
        align-items: center;
        gap: 8px;
        color: white;
    }

    .trust-badge i {
        color: #dc2626;
    }

    .btn-primary-mfg {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #dc2626;
        color: white;
        padding: 16px 40px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
    }

    .btn-primary-mfg:hover {
        background: #b91c1c;
        transform: translateY(-2px);
        box-shadow: 0 15px 40px rgba(220, 38, 38, 0.4);
    }

    .btn-secondary-mfg {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: transparent;
        color: white;
        padding: 16px 40px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        border: 2px solid rgba(255,255,255,0.3);
        transition: all 0.3s ease;
        margin-left: 20px;
    }

    .btn-secondary-mfg:hover {
        border-color: #dc2626;
        background: rgba(220, 38, 38, 0.1);
    }

    .btn-group {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 30px;
    }

    /* ===== Services Grid Section ===== */
    .mfg-service-grid-section {
        padding: 80px 0;
        background: #f8fafc;
    }

    .mfg-service-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        margin-top: 40px;
    }

    .mfg-service-card {
        background: white;
        padding: 30px;
        border-radius: 16px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        border: 1px solid #e5e7eb;
        transition: transform 0.3s ease;
    }

    .mfg-service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(220,38,38,0.1);
    }

    .mfg-service-icon-wrapper {
        width: 60px;
        height: 60px;
        background: rgba(220, 38, 38, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }

    .mfg-service-icon {
        font-size: 28px;
        color: #dc2626;
    }

    .mfg-service-card h3 {
        font-size: 1.1rem;
        font-weight: 700;
        color: #000000;
        margin-bottom: 10px;
    }

    .mfg-service-card p {
        color: #6b7280;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .mfg-service-card .learn-more {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: #dc2626;
        font-weight: 600;
        text-decoration: none;
        margin-top: 15px;
        font-size: 0.9rem;
    }

    .mfg-service-card .learn-more:hover {
        gap: 12px;
    }

    /* ===== Benefits Section ===== */
    .mfg-benefits-section {
        padding: 80px 0;
        background: white;
    }

    .mfg-benefits-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        margin-top: 40px;
    }

    .mfg-benefit-card {
        text-align: center;
        padding: 30px 25px;
        background: #f8fafc;
        border-radius: 16px;
        border: 1px solid #e5e7eb;
        transition: transform 0.3s ease;
    }

    .mfg-benefit-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(220,38,38,0.1);
    }

    .mfg-benefit-icon {
        font-size: 36px;
        color: #dc2626;
        margin-bottom: 15px;
    }

    .mfg-benefit-card h4 {
        font-size: 1.1rem;
        font-weight: 700;
        color: #000000;
        margin-bottom: 10px;
    }

    .mfg-benefit-card p {
        color: #6b7280;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    /* ===== Why Choose Section ===== */
    .mfg-why-choose {
        padding: 80px 0;
        background: #000000;
        color: white;
    }

    .mfg-why-choose .section-title {
        color: white;
    }

    .mfg-why-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-top: 40px;
    }

    .mfg-why-card {
        background: #111111;
        padding: 30px 20px;
        border-radius: 16px;
        text-align: center;
        border: 1px solid #1f1f1f;
        transition: transform 0.3s ease;
    }

    .mfg-why-card:hover {
        transform: translateY(-5px);
        border-color: #dc2626;
    }

    .mfg-why-icon {
        width: 60px;
        height: 60px;
        background: rgba(220, 38, 38, 0.15);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
    }

    .mfg-why-icon i {
        font-size: 28px;
        color: #dc2626;
    }

    .mfg-why-card h4 {
        font-size: 1.1rem;
        font-weight: 700;
        color: white;
        margin-bottom: 10px;
    }

    .mfg-why-card p {
        color: #9ca3af;
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .mfg-why-choose .stats-grid {
        display: flex;
        justify-content: center;
        gap: 60px;
        margin-top: 60px;
        flex-wrap: wrap;
    }

    .mfg-why-choose .stat-number {
        color: #dc2626;
    }

    .mfg-why-choose .stat-label {
        color: #9ca3af;
    }

    /* ===== CTA Section ===== */
    .cta-mfg {
        padding: 80px 0;
        background: #dc2626;
        text-align: center;
    }

    .cta-content-mfg {
        max-width: 800px;
        margin: 0 auto;
    }

    .cta-title-mfg {
        font-size: 2.5rem;
        font-weight: 800;
        color: white;
        margin-bottom: 20px;
    }

    .cta-text-mfg {
        font-size: 1.1rem;
        color: rgba(255,255,255,0.9);
        margin-bottom: 30px;
        line-height: 1.7;
    }

    .cta-button-mfg {
        display: inline-block;
        padding: 16px 40px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        background: white;
        color: #dc2626;
    }

    .cta-button-mfg:hover {
        background: #f3f4f6;
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

    .cta-button-mfg .phone-icon {
        margin-right: 10px;
    }

    /* ===== Responsive ===== */
    @media screen and (max-width: 1024px) {
        .mfg-title {
            font-size: 2.8rem;
        }
        
        .mfg-service-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .mfg-benefits-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .mfg-why-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media screen and (max-width: 768px) {
        .mfg-hero {
            padding: 70px 0;
        }
        
        .mfg-title {
            font-size: 2.2rem;
        }
        
        .mfg-service-grid {
            grid-template-columns: 1fr;
        }
        
        .mfg-benefits-grid {
            grid-template-columns: 1fr;
        }
        
        .mfg-why-grid {
            grid-template-columns: 1fr 1fr;
        }
        
        .section-title {
            font-size: 2rem;
        }
        
        .cta-title-mfg {
            font-size: 2rem;
        }
        
        .btn-secondary-mfg {
            margin-left: 0;
        }
        
        .btn-group {
            flex-direction: column;
            align-items: center;
        }
        
        .mfg-why-choose .stats-grid {
            flex-direction: column;
            gap: 30px;
        }
    }

    @media screen and (max-width: 480px) {
        .mfg-title {
            font-size: 1.8rem;
        }
        
        .mfg-badge {
            font-size: 11px;
            padding: 6px 14px;
        }
        
        .tag-badge-mfg {
            font-size: 0.8rem;
            padding: 6px 12px;
        }
        
        .mfg-why-grid {
            grid-template-columns: 1fr;
        }
    }
