    /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
       

        /* --- STYLES SPECIFICALLY SCOPED TO THE MANUFACTURING PROCESS SECTION --- */
        
        /* Section Styling */
        .manufacturing-process-section {
            background: linear-gradient(135deg, #0A2814 0%, #0d3c1d 100%);
            color: white;
            font-family: 'Inter', sans-serif;
            margin: 0;
            position: relative;
            overflow: hidden;
        }

        /* Add subtle pattern overlay */
        .manufacturing-process-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231A5C2E' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.3;
        }

        /* Content Wrapper for centering and padding */
        .manufacturing-process-section .content-wrapper {
            max-width: 80rem;
            margin: 0 auto;
            padding: 5rem 1.5rem;
            position: relative;
            z-index: 1;
        }

        /* Responsive Padding for large screens */
        @media (min-width: 1024px) {
            .manufacturing-process-section .content-wrapper {
                padding: 7rem 2rem;
            }
        }

        /* Main Layout Grid */
        .manufacturing-process-section .main-layout {
            display: grid;
            grid-template-columns: 1fr;
            gap: 4rem;
            align-items: start;
        }

        /* Responsive Grid for large screens (60/40 split) */
        @media (min-width: 1024px) {
            .manufacturing-process-section .main-layout {
                grid-template-columns: repeat(5, minmax(0, 1fr));
                gap: 5rem;
                align-items: center;
            }

            .manufacturing-process-section .text-content-box {
                grid-column: span 3 / span 3;
            }

            .manufacturing-process-section .video-content-box {
                grid-column: span 2 / span 2;
            }
        }

        /* Text Content & Heading */
        .manufacturing-process-section .text-content-box h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 3rem;
            color: #FFCC00;
            line-height: 1.2;
            letter-spacing: -0.02em;
            position: relative;
            padding-bottom: 1rem;
        }

        .manufacturing-process-section .text-content-box h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #FFCC00, #FFD633);
            border-radius: 2px;
        }

        @media (min-width: 1024px) {
            .manufacturing-process-section .text-content-box h2 {
                font-size: 3.5rem;
                margin-bottom: 4rem;
            }
        }

        /* Process List */
        .manufacturing-process-section .process-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        /* Process Item Card Styling and Hover */
        .manufacturing-process-section .process-item {
            display: flex;
            gap: 1.25rem;
            padding: 2rem;
            border-radius: 1rem;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .manufacturing-process-section .process-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, #FFCC00, #FFD633);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .manufacturing-process-section .process-item:hover {
            transform: translateY(-4px);
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 204, 0, 0.3);
            box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.3);
        }

        .manufacturing-process-section .process-item:hover::before {
            transform: scaleY(1);
        }

        /* Number indicator */
        .manufacturing-process-section .process-number {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            font-size: 0.875rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.3);
        }
        
        /* Icon Wrapper */
        .manufacturing-process-section .icon-wrapper {
            flex-shrink: 0;
            width: 3rem;
            height: 3rem;
            background: linear-gradient(135deg, #FFCC00, #FFD633);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 12px rgba(255, 204, 0, 0.2);
            transition: transform 0.3s ease;
        }

        .manufacturing-process-section .process-item:hover .icon-wrapper {
            transform: scale(1.1) rotate(5deg);
        }

        .manufacturing-process-section .item-icon {
            width: 1.5rem;
            height: 1.5rem;
            color: #0A2814;
        }

        .manufacturing-process-section .item-text {
            font-size: 1.125rem;
            color: #E5E7EB;
            line-height: 1.7;
            padding-right: 1.5rem;
        }

        /* Video Wrapper Styling */
        .manufacturing-process-section .video-content-box {
            position: relative;
        }

        .manufacturing-process-section .video-content-box::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            right: -20px;
            bottom: -20px;
            background: linear-gradient(135deg, rgba(255, 204, 0, 0.1), rgba(10, 40, 20, 0.2));
            border-radius: 1.5rem;
            z-index: -1;
        }

        .manufacturing-process-section .video-wrapper {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 1rem;
            box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s ease;
        }

        .manufacturing-process-section .video-wrapper:hover {
            transform: translateY(-5px);
            box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.5);
        }

        .manufacturing-process-section .video-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 204, 0, 0.05), transparent 50%);
            border-radius: 1rem;
            z-index: 1;
            pointer-events: none;
        }

        .manufacturing-process-section .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
            border-radius: 1rem;
        }

        /* Play Button Overlay for Video */
        .manufacturing-process-section .play-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 70px;
            height: 70px;
            background: rgba(255, 204, 0, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 2;
            transition: all 0.3s ease;
            opacity: 0.9;
        }

        .manufacturing-process-section .play-overlay:hover {
            transform: translate(-50%, -50%) scale(1.1);
            background: rgba(255, 204, 0, 1);
            box-shadow: 0 0 30px rgba(255, 204, 0, 0.5);
        }

        .manufacturing-process-section .play-icon {
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 15px 0 15px 25px;
            border-color: transparent transparent transparent #0A2814;
            margin-left: 5px;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .manufacturing-process-section .text-content-box h2 {
                font-size: 2rem;
                text-align: center;
            }
            
            .manufacturing-process-section .text-content-box h2::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .manufacturing-process-section .process-item {
                flex-direction: column;
                text-align: center;
                padding: 1.5rem;
            }
            
            .manufacturing-process-section .icon-wrapper {
                margin: 0 auto;
            }
            
            .manufacturing-process-section .item-text {
                padding-right: 0;
            }
            
            .manufacturing-process-section .process-number {
                top: 1rem;
                right: 1rem;
            }
        }

        /* Animation for process items */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .manufacturing-process-section .process-item {
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
        }

        .manufacturing-process-section .process-item:nth-child(1) {
            animation-delay: 0.1s;
        }

        .manufacturing-process-section .process-item:nth-child(2) {
            animation-delay: 0.2s;
        }