
        /* Recycling Page Specific Styles */
        :root {
            --primary-color: #be1800; /* Updated to match your brand color */
            --secondary-color: #005081; /* Updated to match secondary blue */
            --accent-color: #f0f8ff;
            --text-color: #666;
            --light-bg: #f9f9f9e7; /* Matched from vision section */
            --white: #ffffff;
            --shadow: 0 8px 18px rgba(0, 0, 0, 0.229); /* Match your existing box-shadow */
            --hover-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        section {
            padding: 60px 0; /* Consistent padding for all sections */
        }

        .container, .process-container, .materials-container, .benefits-container, .stats-container, .cta-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }

        /* Section titles - matched your existing style */
        .process-title, .section-title {
            text-align: center;
            margin-bottom: 2rem;
            position: relative;
        }

        .process-title h2, .section-title h2 {
            font-size: 2.9rem;
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .process-title h2::after, .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--secondary-color);
        }

        .process-title p, .section-title p {
            margin-top: 10px;
            font-size: 20px;
            font-weight: 600;
            color: var(--secondary-color);
        }

        /* Hero Section */
        .recycling-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/metal-recycling-solutions-b2b-lohakart.webp');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0;
            text-align: center;
        }

        .recycling-hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .recycling-hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .recycling-hero span {
            color: var(--primary-color);
        }

        /* Process Section - Updated to 3 cards per row */
        .process-section {
            padding: 80px 0;
            background-color: var(--light-bg);
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr); /* Exactly 3 cards per row */
            gap: 2rem;
            padding: 1rem;
        }

        .process-step {
            background-color: var(--white);
            border-radius: 15px;
            box-shadow: var(--shadow);
            padding: 30px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
        }

        .process-step:hover {
            transform: translateY(-10px);
            box-shadow: var(--hover-shadow);
        }

        .step-icon {
            width: 60px;
            height: 60px;
            background-color: var(--secondary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
        }

        .step-icon i {
            font-size: 1.8rem;
            color: var(--white);
        }

        .process-step h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--secondary-color);
            font-weight: 700;
        }

        .process-step p {
            color: var(--text-color);
            line-height: 1.6;
        }

        /* Materials Section */
        .materials-section {
            padding: 80px 0;
        }

        .materials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr); /* 3 cards per row to match process section */
            gap: 2rem;
            margin-top: 50px;
        }

        .material-card {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
        }

        .material-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--hover-shadow);
        }

        .material-image {
            height: 220px;
            overflow: hidden;
        }

        .material-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .material-card:hover .material-image img {
            transform: scale(1.1);
        }

        .material-content {
            padding: 25px;
            background-color: var(--white);
        }

        .material-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--secondary-color);
            font-weight: 700;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }

        .material-content h3::after {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: 0;
            width: 40px;
            height: 2px;
            background: var(--primary-color);
        }

        .material-content p {
            color: var(--text-color);
            line-height: 1.6;
            margin-bottom: 15px;
            text-align: center;
        }

        .material-stats {
            display: flex;
            justify-content: space-between;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }

        .stat {
            text-align: center;
        }

        .stat-value {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-color);
        }

        /* Benefits Section */
        .benefits-section {
            padding: 80px 0;
            background-color: var(--light-bg);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-top: 50px;
        }

        .benefit-card {
            background-color: var(--white);
            border-radius: 15px;
            padding: 30px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--hover-shadow);
        }

        .benefit-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .benefit-card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--secondary-color);
            font-weight: 700;
        }

        .benefit-card p {
            color: var(--text-color);
            line-height: 1.6;
        }

        /* Stats Section */
        .stats-section {
            padding: 100px 0;
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('assets/recycle-items-brown-wooden-textured-background.jpg');
            background-size: cover;
            background-attachment: fixed;
            text-align: center;
        }

        .stats-container h2 {
            font-size: 2.5rem;
            margin-bottom: 50px;
            font-weight: 700;
            color: white;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }

        .stat-card {
            padding: 20px;
        }

        .stat-card .number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .stat-card .text {
            font-size: 1.1rem;
            color: white;
        }

        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--primary-color);
            font-weight: 700;
        }

        .cta-section p {
            font-size: 1.1rem;
            color: var(--text-color);
            margin-bottom: 30px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-req-button {
            display: inline-block;
            padding: 15px 30px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            position: relative;
            overflow: hidden;
        }

        .cta-req-button:before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background-color: rgba(255, 255, 255, 0.3);
            transition: left 0.3s ease;
        }

        .cta-req-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            color: white;
            text-decoration: none;
        }

        .cta-req-button:hover:before {
            left: 100%;
        }

        /* Remove the automatic keyframes animation */
        /* We'll use JavaScript to control the animations instead */

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .benefits-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 992px) {
            .process-steps, .materials-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .process-title h2, .section-title h2 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .process-title h2, .section-title h2, .cta-section h2 {
                font-size: 2rem;
            }
            
            .process-title p, .section-title p {
                font-size: 18px;
            }
            
            .recycling-hero h1 {
                font-size: 2.2rem;
            }
            
            .recycling-hero p {
                font-size: 1rem;
            }
        }

        @media (max-width: 576px) {
            .process-steps, .materials-grid, .benefits-grid, .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .recycling-hero h1 {
                font-size: 1.8rem;
            }
            
            .container, .process-container, .materials-container, .benefits-container, .stats-container, .cta-container {
                padding: 1rem;
            }
            
            .process-title h2, .section-title h2, .cta-section h2 {
                font-size: 1.8rem;
            }
            
            .process-title p, .section-title p {
                font-size: 16px;
            }
        }
