.mproduct {
            background: #fff;
            border-radius: 15px;
            padding: 15px;
            text-align: center;
            transition: 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
        }

        .mproduct img {
            height: 180px;
            object-fit: contain;
            transition: 0.3s;
        }

        /* Hover Effect */
        .mproduct:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .mproduct:hover img {
            transform: scale(1.05);
        }

        /* Title */
        .mproduct h4 {
            font-size: 18px;
            margin-top: 15px;
            font-weight: 600;
            color: #333;
        }

        /* Responsive spacing */
        .product-section {
            padding: 60px 0;
        }

    
       

       

        .team-card {
            background: #fff;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            height: 100%;
            transition: 0.3s;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }

        .team-card:hover {
            transform: translateY(-10px);
        }

        .team-img {
            width: 90px;
            height: 90px;
            margin: 0 auto 15px;
        }

        .team-img img {
            width: 100%;
            border-radius: 50%;
        }

        .team-text {
            font-size: 15px;
            color: #555;
            margin-bottom: 15px;
        }

        .team-name {
            font-weight: 600;
            font-size: 18px;
        }

        .quote-icon {
            font-size: 30px;
            color: #ddd;
            margin-bottom: 10px;
        }
    