.our-products {
            padding: 60px 20px;
            background-color: #f5f5f5;
        }

        .section-title {
            text-align: center;
            margin-bottom: 0px;
        }

        .section-title h1 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #000;
        }

        .section-title h1 .highlight {
            color: #00D96F;
        }

        .products-grid {
            display: grid;
            gap: 30px;
            margin-bottom: 0;
        }

        .product-card {
            background: #000;
            border-radius: 2px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
        }

        .product-image {
            width: 100%;
            /* height: 250px;
            background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%); */
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .product-name {
            padding: 15px 10px;
            font-size: 14px;
            font-weight: 600;
            color: #000;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        /* Desktop Responsive */
        @media (min-width: 992px) {
            .products-grid {
                grid-template-columns: repeat(4, 1fr);
            }

            .section-title h1 {
                font-size: 2.5rem;
            }
        }

        /* Tablet Responsive */
        @media (min-width: 768px) and (max-width: 991px) {
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .section-title h1 {
                font-size: 2rem;
            }
        }

        /* Mobile Responsive */
        @media (max-width: 767px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .our-products {
                padding: 40px 15px;
            }

            .section-title h1 {
                font-size: 1.5rem;
            }

            .product-image {
                height: 180px;
            }

            .product-name {
                padding: 15px 15px;
                font-size: 0.85rem;
            }

            .section-title {
                margin-bottom: 30px;
            }
        }

        /* Extra Small Devices */
        @media (max-width: 480px) {
            .products-grid {
                grid-template-columns: 1fr;
            }

            .section-title h1 {
                font-size: 1.25rem;
            }

            .product-image {
                height: 200px;
            }
        }

        .container-fluid {
            max-width: 1320px;
            margin-left: auto;
            margin-right: auto;
        }